Whamcloud - gitweb
LU-8648 all: remove all Sun license and URL references
[fs/lustre-release.git] / libcfs / include / libcfs / bitmap.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2014, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  */
32 #ifndef _LIBCFS_BITMAP_H_
33 #define _LIBCFS_BITMAP_H_
34
35 struct cfs_bitmap {
36         unsigned int size;
37         unsigned long data[0];
38 };
39
40 #define CFS_BITMAP_SIZE(nbits) \
41         (((nbits / BITS_PER_LONG) + 1) * sizeof(long) + \
42         sizeof(struct cfs_bitmap))
43
44 static inline
45 struct cfs_bitmap *CFS_ALLOCATE_BITMAP(int size)
46 {
47         struct cfs_bitmap *ptr;
48
49         LIBCFS_ALLOC(ptr, CFS_BITMAP_SIZE(size));
50         if (ptr == NULL)
51                 RETURN(ptr);
52
53         ptr->size = size;
54
55         RETURN(ptr);
56 }
57
58 static inline void CFS_RESET_BITMAP(struct cfs_bitmap *bitmap)
59 {
60         if (bitmap->size > 0) {
61                 int nbits = bitmap->size;
62
63                 memset(bitmap, 0, CFS_BITMAP_SIZE(nbits));
64                 bitmap->size = nbits;
65         }
66 }
67
68 #define CFS_FREE_BITMAP(ptr)    LIBCFS_FREE(ptr, CFS_BITMAP_SIZE(ptr->size))
69
70 static inline
71 void cfs_bitmap_set(struct cfs_bitmap *bitmap, int nbit)
72 {
73         set_bit(nbit, bitmap->data);
74 }
75
76 static inline
77 void cfs_bitmap_clear(struct cfs_bitmap *bitmap, int nbit)
78 {
79         test_and_clear_bit(nbit, bitmap->data);
80 }
81
82 static inline
83 int cfs_bitmap_check(struct cfs_bitmap *bitmap, int nbit)
84 {
85         return test_bit(nbit, bitmap->data);
86 }
87
88 static inline
89 int cfs_bitmap_test_and_clear(struct cfs_bitmap *bitmap, int nbit)
90 {
91         return test_and_clear_bit(nbit, bitmap->data);
92 }
93
94 /* return 0 is bitmap has none set bits */
95 static inline
96 int cfs_bitmap_check_empty(struct cfs_bitmap *bitmap)
97 {
98         return find_first_bit(bitmap->data, bitmap->size) == bitmap->size;
99 }
100
101 static inline
102 void cfs_bitmap_copy(struct cfs_bitmap *new, struct cfs_bitmap *old)
103 {
104         size_t newsize;
105
106         LASSERT(new->size >= old->size);
107         newsize = new->size;
108         memcpy(new, old, CFS_BITMAP_SIZE(old->size));
109         new->size = newsize;
110 }
111
112 #define cfs_foreach_bit(bitmap, pos)                                    \
113         for ((pos) = find_first_bit((bitmap)->data, bitmap->size);      \
114              (pos) < (bitmap)->size;                                    \
115              (pos) = find_next_bit((bitmap)->data, (bitmap)->size, (pos) + 1))
116
117 #endif