1 #ifndef __LINUX_NODEMASK_H
2 #define __LINUX_NODEMASK_H
93 #include <linux/kernel.h>
95 #include <linux/bitmap.h>
101 #define node_set(node, dst) __node_set((node), &(dst))
102 static inline void __node_set(
int node,
volatile nodemask_t *dstp)
107 #define node_clear(node, dst) __node_clear((node), &(dst))
108 static inline void __node_clear(
int node,
volatile nodemask_t *dstp)
113 #define nodes_setall(dst) __nodes_setall(&(dst), MAX_NUMNODES)
114 static inline void __nodes_setall(
nodemask_t *dstp,
int nbits)
116 bitmap_fill(dstp->bits, nbits);
119 #define nodes_clear(dst) __nodes_clear(&(dst), MAX_NUMNODES)
120 static inline void __nodes_clear(
nodemask_t *dstp,
int nbits)
122 bitmap_zero(dstp->bits, nbits);
126 #define node_isset(node, nodemask) test_bit((node), (nodemask).bits)
128 #define node_test_and_set(node, nodemask) \
129 __node_test_and_set((node), &(nodemask))
135 #define nodes_and(dst, src1, src2) \
136 __nodes_and(&(dst), &(src1), &(src2), MAX_NUMNODES)
140 bitmap_and(dstp->bits, src1p->bits, src2p->bits, nbits);
143 #define nodes_or(dst, src1, src2) \
144 __nodes_or(&(dst), &(src1), &(src2), MAX_NUMNODES)
148 bitmap_or(dstp->bits, src1p->bits, src2p->bits, nbits);
151 #define nodes_xor(dst, src1, src2) \
152 __nodes_xor(&(dst), &(src1), &(src2), MAX_NUMNODES)
156 bitmap_xor(dstp->bits, src1p->bits, src2p->bits, nbits);
159 #define nodes_andnot(dst, src1, src2) \
160 __nodes_andnot(&(dst), &(src1), &(src2), MAX_NUMNODES)
164 bitmap_andnot(dstp->bits, src1p->bits, src2p->bits, nbits);
167 #define nodes_complement(dst, src) \
168 __nodes_complement(&(dst), &(src), MAX_NUMNODES)
169 static inline void __nodes_complement(
nodemask_t *dstp,
172 bitmap_complement(dstp->bits, srcp->bits, nbits);
175 #define nodes_equal(src1, src2) \
176 __nodes_equal(&(src1), &(src2), MAX_NUMNODES)
177 static inline int __nodes_equal(
const nodemask_t *src1p,
180 return bitmap_equal(src1p->bits, src2p->bits, nbits);
183 #define nodes_intersects(src1, src2) \
184 __nodes_intersects(&(src1), &(src2), MAX_NUMNODES)
185 static inline int __nodes_intersects(
const nodemask_t *src1p,
188 return bitmap_intersects(src1p->bits, src2p->bits, nbits);
191 #define nodes_subset(src1, src2) \
192 __nodes_subset(&(src1), &(src2), MAX_NUMNODES)
193 static inline int __nodes_subset(
const nodemask_t *src1p,
196 return bitmap_subset(src1p->bits, src2p->bits, nbits);
199 #define nodes_empty(src) __nodes_empty(&(src), MAX_NUMNODES)
200 static inline int __nodes_empty(
const nodemask_t *srcp,
int nbits)
202 return bitmap_empty(srcp->bits, nbits);
205 #define nodes_full(nodemask) __nodes_full(&(nodemask), MAX_NUMNODES)
206 static inline int __nodes_full(
const nodemask_t *srcp,
int nbits)
208 return bitmap_full(srcp->bits, nbits);
211 #define nodes_weight(nodemask) __nodes_weight(&(nodemask), MAX_NUMNODES)
212 static inline int __nodes_weight(
const nodemask_t *srcp,
int nbits)
214 return bitmap_weight(srcp->bits, nbits);
217 #define nodes_shift_right(dst, src, n) \
218 __nodes_shift_right(&(dst), &(src), (n), MAX_NUMNODES)
219 static inline void __nodes_shift_right(
nodemask_t *dstp,
222 bitmap_shift_right(dstp->bits, srcp->bits, n, nbits);
225 #define nodes_shift_left(dst, src, n) \
226 __nodes_shift_left(&(dst), &(src), (n), MAX_NUMNODES)
227 static inline void __nodes_shift_left(
nodemask_t *dstp,
230 bitmap_shift_left(dstp->bits, srcp->bits, n, nbits);
236 #define first_node(src) __first_node(&(src))
237 static inline int __first_node(
const nodemask_t *srcp)
242 #define next_node(n, src) __next_node((n), &(src))
243 static inline int __next_node(
int n,
const nodemask_t *srcp)
254 #define nodemask_of_node(node) \
256 typeof(_unused_nodemask_arg_) m; \
257 if (sizeof(m) == sizeof(unsigned long)) { \
258 m.bits[0] = 1UL << (node); \
260 init_nodemask_of_node(&m, (node)); \
265 #define first_unset_node(mask) __first_unset_node(&(mask))
266 static inline int __first_unset_node(
const nodemask_t *maskp)
272 #define NODE_MASK_LAST_WORD BITMAP_LAST_WORD_MASK(MAX_NUMNODES)
274 #if MAX_NUMNODES <= BITS_PER_LONG
276 #define NODE_MASK_ALL \
278 [BITS_TO_LONGS(MAX_NUMNODES)-1] = NODE_MASK_LAST_WORD \
283 #define NODE_MASK_ALL \
285 [0 ... BITS_TO_LONGS(MAX_NUMNODES)-2] = ~0UL, \
286 [BITS_TO_LONGS(MAX_NUMNODES)-1] = NODE_MASK_LAST_WORD \
291 #define NODE_MASK_NONE \
293 [0 ... BITS_TO_LONGS(MAX_NUMNODES)-1] = 0UL \
296 #define nodes_addr(src) ((src).bits)
298 #define nodemask_scnprintf(buf, len, src) \
299 __nodemask_scnprintf((buf), (len), &(src), MAX_NUMNODES)
300 static inline int __nodemask_scnprintf(
char *
buf,
int len,
306 #define nodemask_parse_user(ubuf, ulen, dst) \
307 __nodemask_parse_user((ubuf), (ulen), &(dst), MAX_NUMNODES)
308 static inline int __nodemask_parse_user(
const char __user *
buf,
int len,
314 #define nodelist_scnprintf(buf, len, src) \
315 __nodelist_scnprintf((buf), (len), &(src), MAX_NUMNODES)
316 static inline int __nodelist_scnprintf(
char *
buf,
int len,
322 #define nodelist_parse(buf, dst) __nodelist_parse((buf), &(dst), MAX_NUMNODES)
323 static inline int __nodelist_parse(
const char *
buf,
nodemask_t *dstp,
int nbits)
328 #define node_remap(oldbit, old, new) \
329 __node_remap((oldbit), &(old), &(new), MAX_NUMNODES)
330 static inline int __node_remap(
int oldbit,
336 #define nodes_remap(dst, src, old, new) \
337 __nodes_remap(&(dst), &(src), &(old), &(new), MAX_NUMNODES)
341 bitmap_remap(dstp->bits, srcp->bits, oldp->bits, newp->bits, nbits);
344 #define nodes_onto(dst, orig, relmap) \
345 __nodes_onto(&(dst), &(orig), &(relmap), MAX_NUMNODES)
349 bitmap_onto(dstp->bits, origp->bits, relmapp->bits, nbits);
352 #define nodes_fold(dst, orig, sz) \
353 __nodes_fold(&(dst), &(orig), sz, MAX_NUMNODES)
361 #define for_each_node_mask(node, mask) \
362 for ((node) = first_node(mask); \
363 (node) < MAX_NUMNODES; \
364 (node) = next_node((node), (mask)))
366 #define for_each_node_mask(node, mask) \
367 if (!nodes_empty(mask)) \
368 for ((node) = 0; (node) < 1; (node)++)
378 #ifdef CONFIG_HIGHMEM
400 static inline void node_set_state(
int node,
enum node_states
state)
402 __node_set(node, &node_states[state]);
405 static inline void node_clear_state(
int node,
enum node_states
state)
407 __node_clear(node, &node_states[state]);
410 static inline int num_node_state(
enum node_states
state)
415 #define for_each_node_state(__node, __state) \
416 for_each_node_mask((__node), node_states[__state])
418 #define first_online_node first_node(node_states[N_ONLINE])
419 #define next_online_node(nid) next_node((nid), node_states[N_ONLINE])
443 static inline void node_set_state(
int node,
enum node_states
state)
447 static inline void node_clear_state(
int node,
enum node_states
state)
451 static inline int num_node_state(
enum node_states
state)
456 #define for_each_node_state(node, __state) \
457 for ( (node) = 0; (node) == 0; (node) = 1)
459 #define first_online_node 0
460 #define next_online_node(nid) (MAX_NUMNODES)
461 #define nr_node_ids 1
462 #define nr_online_nodes 1
464 #define node_set_online(node) node_set_state((node), N_ONLINE)
465 #define node_set_offline(node) node_clear_state((node), N_ONLINE)
469 #if defined(CONFIG_NUMA) && (MAX_NUMNODES > 1)
478 #define node_online_map node_states[N_ONLINE]
479 #define node_possible_map node_states[N_POSSIBLE]
481 #define num_online_nodes() num_node_state(N_ONLINE)
482 #define num_possible_nodes() num_node_state(N_POSSIBLE)
483 #define node_online(node) node_state((node), N_ONLINE)
484 #define node_possible(node) node_state((node), N_POSSIBLE)
486 #define for_each_node(node) for_each_node_state(node, N_POSSIBLE)
487 #define for_each_online_node(node) for_each_node_state(node, N_ONLINE)
495 #define NODEMASK_ALLOC(type, name, gfp_flags) \
496 type *name = kmalloc(sizeof(*name), gfp_flags)
497 #define NODEMASK_FREE(m) kfree(m)
499 #define NODEMASK_ALLOC(type, name, gfp_flags) type _##name, *name = &_##name
500 #define NODEMASK_FREE(m) do {} while (0)
509 #define NODEMASK_SCRATCH(x) \
510 NODEMASK_ALLOC(struct nodemask_scratch, x, \
511 GFP_KERNEL | __GFP_NORETRY)
512 #define NODEMASK_SCRATCH_FREE(x) NODEMASK_FREE(x)