GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / include / linux / nodemask.h
blob23a72e2cc2eead5b42f4cced9633821e3153ff89
1 #ifndef __LINUX_NODEMASK_H
2 #define __LINUX_NODEMASK_H
4 /*
5 * Nodemasks provide a bitmap suitable for representing the
6 * set of Node's in a system, one bit position per Node number.
8 * See detailed comments in the file linux/bitmap.h describing the
9 * data type on which these nodemasks are based.
11 * For details of nodemask_scnprintf() and nodemask_parse_user(),
12 * see bitmap_scnprintf() and bitmap_parse_user() in lib/bitmap.c.
13 * For details of nodelist_scnprintf() and nodelist_parse(), see
14 * bitmap_scnlistprintf() and bitmap_parselist(), also in bitmap.c.
15 * For details of node_remap(), see bitmap_bitremap in lib/bitmap.c.
16 * For details of nodes_remap(), see bitmap_remap in lib/bitmap.c.
17 * For details of nodes_onto(), see bitmap_onto in lib/bitmap.c.
18 * For details of nodes_fold(), see bitmap_fold in lib/bitmap.c.
20 * The available nodemask operations are:
22 * void node_set(node, mask) turn on bit 'node' in mask
23 * void node_clear(node, mask) turn off bit 'node' in mask
24 * void nodes_setall(mask) set all bits
25 * void nodes_clear(mask) clear all bits
26 * int node_isset(node, mask) true iff bit 'node' set in mask
27 * int node_test_and_set(node, mask) test and set bit 'node' in mask
29 * void nodes_and(dst, src1, src2) dst = src1 & src2 [intersection]
30 * void nodes_or(dst, src1, src2) dst = src1 | src2 [union]
31 * void nodes_xor(dst, src1, src2) dst = src1 ^ src2
32 * void nodes_andnot(dst, src1, src2) dst = src1 & ~src2
33 * void nodes_complement(dst, src) dst = ~src
35 * int nodes_equal(mask1, mask2) Does mask1 == mask2?
36 * int nodes_intersects(mask1, mask2) Do mask1 and mask2 intersect?
37 * int nodes_subset(mask1, mask2) Is mask1 a subset of mask2?
38 * int nodes_empty(mask) Is mask empty (no bits sets)?
39 * int nodes_full(mask) Is mask full (all bits sets)?
40 * int nodes_weight(mask) Hamming weight - number of set bits
42 * void nodes_shift_right(dst, src, n) Shift right
43 * void nodes_shift_left(dst, src, n) Shift left
45 * int first_node(mask) Number lowest set bit, or MAX_NUMNODES
46 * int next_node(node, mask) Next node past 'node', or MAX_NUMNODES
47 * int first_unset_node(mask) First node not set in mask, or
48 * MAX_NUMNODES.
50 * nodemask_t nodemask_of_node(node) Return nodemask with bit 'node' set
51 * NODE_MASK_ALL Initializer - all bits set
52 * NODE_MASK_NONE Initializer - no bits set
53 * unsigned long *nodes_addr(mask) Array of unsigned long's in mask
55 * int nodemask_scnprintf(buf, len, mask) Format nodemask for printing
56 * int nodemask_parse_user(ubuf, ulen, mask) Parse ascii string as nodemask
57 * int nodelist_scnprintf(buf, len, mask) Format nodemask as list for printing
58 * int nodelist_parse(buf, map) Parse ascii string as nodelist
59 * int node_remap(oldbit, old, new) newbit = map(old, new)(oldbit)
60 * void nodes_remap(dst, src, old, new) *dst = map(old, new)(src)
61 * void nodes_onto(dst, orig, relmap) *dst = orig relative to relmap
62 * void nodes_fold(dst, orig, sz) dst bits = orig bits mod sz
64 * for_each_node_mask(node, mask) for-loop node over mask
66 * int num_online_nodes() Number of online Nodes
67 * int num_possible_nodes() Number of all possible Nodes
69 * int node_online(node) Is some node online?
70 * int node_possible(node) Is some node possible?
72 * node_set_online(node) set bit 'node' in node_online_map
73 * node_set_offline(node) clear bit 'node' in node_online_map
75 * for_each_node(node) for-loop node over node_possible_map
76 * for_each_online_node(node) for-loop node over node_online_map
78 * Subtlety:
79 * 1) The 'type-checked' form of node_isset() causes gcc (3.3.2, anyway)
80 * to generate slightly worse code. So use a simple one-line #define
81 * for node_isset(), instead of wrapping an inline inside a macro, the
82 * way we do the other calls.
84 * NODEMASK_SCRATCH
85 * When doing above logical AND, OR, XOR, Remap operations the callers tend to
86 * need temporary nodemask_t's on the stack. But if NODES_SHIFT is large,
87 * nodemask_t's consume too much stack space. NODEMASK_SCRATCH is a helper
88 * for such situations. See below and CPUMASK_ALLOC also.
91 #include <linux/kernel.h>
92 #include <linux/threads.h>
93 #include <linux/bitmap.h>
94 #include <linux/numa.h>
96 typedef struct { DECLARE_BITMAP(bits, MAX_NUMNODES); } nodemask_t;
97 extern nodemask_t _unused_nodemask_arg_;
99 #define node_set(node, dst) __node_set((node), &(dst))
100 static inline void __node_set(int node, volatile nodemask_t *dstp)
102 set_bit(node, dstp->bits);
105 #define node_clear(node, dst) __node_clear((node), &(dst))
106 static inline void __node_clear(int node, volatile nodemask_t *dstp)
108 clear_bit(node, dstp->bits);
111 #define nodes_setall(dst) __nodes_setall(&(dst), MAX_NUMNODES)
112 static inline void __nodes_setall(nodemask_t *dstp, int nbits)
114 bitmap_fill(dstp->bits, nbits);
117 #define nodes_clear(dst) __nodes_clear(&(dst), MAX_NUMNODES)
118 static inline void __nodes_clear(nodemask_t *dstp, int nbits)
120 bitmap_zero(dstp->bits, nbits);
123 /* No static inline type checking - see Subtlety (1) above. */
124 #define node_isset(node, nodemask) test_bit((node), (nodemask).bits)
126 #define node_test_and_set(node, nodemask) \
127 __node_test_and_set((node), &(nodemask))
128 static inline int __node_test_and_set(int node, nodemask_t *addr)
130 return test_and_set_bit(node, addr->bits);
133 #define nodes_and(dst, src1, src2) \
134 __nodes_and(&(dst), &(src1), &(src2), MAX_NUMNODES)
135 static inline void __nodes_and(nodemask_t *dstp, const nodemask_t *src1p,
136 const nodemask_t *src2p, int nbits)
138 bitmap_and(dstp->bits, src1p->bits, src2p->bits, nbits);
141 #define nodes_or(dst, src1, src2) \
142 __nodes_or(&(dst), &(src1), &(src2), MAX_NUMNODES)
143 static inline void __nodes_or(nodemask_t *dstp, const nodemask_t *src1p,
144 const nodemask_t *src2p, int nbits)
146 bitmap_or(dstp->bits, src1p->bits, src2p->bits, nbits);
149 #define nodes_xor(dst, src1, src2) \
150 __nodes_xor(&(dst), &(src1), &(src2), MAX_NUMNODES)
151 static inline void __nodes_xor(nodemask_t *dstp, const nodemask_t *src1p,
152 const nodemask_t *src2p, int nbits)
154 bitmap_xor(dstp->bits, src1p->bits, src2p->bits, nbits);
157 #define nodes_andnot(dst, src1, src2) \
158 __nodes_andnot(&(dst), &(src1), &(src2), MAX_NUMNODES)
159 static inline void __nodes_andnot(nodemask_t *dstp, const nodemask_t *src1p,
160 const nodemask_t *src2p, int nbits)
162 bitmap_andnot(dstp->bits, src1p->bits, src2p->bits, nbits);
165 #define nodes_complement(dst, src) \
166 __nodes_complement(&(dst), &(src), MAX_NUMNODES)
167 static inline void __nodes_complement(nodemask_t *dstp,
168 const nodemask_t *srcp, int nbits)
170 bitmap_complement(dstp->bits, srcp->bits, nbits);
173 #define nodes_equal(src1, src2) \
174 __nodes_equal(&(src1), &(src2), MAX_NUMNODES)
175 static inline int __nodes_equal(const nodemask_t *src1p,
176 const nodemask_t *src2p, int nbits)
178 return bitmap_equal(src1p->bits, src2p->bits, nbits);
181 #define nodes_intersects(src1, src2) \
182 __nodes_intersects(&(src1), &(src2), MAX_NUMNODES)
183 static inline int __nodes_intersects(const nodemask_t *src1p,
184 const nodemask_t *src2p, int nbits)
186 return bitmap_intersects(src1p->bits, src2p->bits, nbits);
189 #define nodes_subset(src1, src2) \
190 __nodes_subset(&(src1), &(src2), MAX_NUMNODES)
191 static inline int __nodes_subset(const nodemask_t *src1p,
192 const nodemask_t *src2p, int nbits)
194 return bitmap_subset(src1p->bits, src2p->bits, nbits);
197 #define nodes_empty(src) __nodes_empty(&(src), MAX_NUMNODES)
198 static inline int __nodes_empty(const nodemask_t *srcp, int nbits)
200 return bitmap_empty(srcp->bits, nbits);
203 #define nodes_full(nodemask) __nodes_full(&(nodemask), MAX_NUMNODES)
204 static inline int __nodes_full(const nodemask_t *srcp, int nbits)
206 return bitmap_full(srcp->bits, nbits);
209 #define nodes_weight(nodemask) __nodes_weight(&(nodemask), MAX_NUMNODES)
210 static inline int __nodes_weight(const nodemask_t *srcp, int nbits)
212 return bitmap_weight(srcp->bits, nbits);
215 #define nodes_shift_right(dst, src, n) \
216 __nodes_shift_right(&(dst), &(src), (n), MAX_NUMNODES)
217 static inline void __nodes_shift_right(nodemask_t *dstp,
218 const nodemask_t *srcp, int n, int nbits)
220 bitmap_shift_right(dstp->bits, srcp->bits, n, nbits);
223 #define nodes_shift_left(dst, src, n) \
224 __nodes_shift_left(&(dst), &(src), (n), MAX_NUMNODES)
225 static inline void __nodes_shift_left(nodemask_t *dstp,
226 const nodemask_t *srcp, int n, int nbits)
228 bitmap_shift_left(dstp->bits, srcp->bits, n, nbits);
232 #define first_node(src) __first_node(&(src))
233 static inline int __first_node(const nodemask_t *srcp)
235 return min_t(int, MAX_NUMNODES, find_first_bit(srcp->bits, MAX_NUMNODES));
238 #define next_node(n, src) __next_node((n), &(src))
239 static inline int __next_node(int n, const nodemask_t *srcp)
241 return min_t(int,MAX_NUMNODES,find_next_bit(srcp->bits, MAX_NUMNODES, n+1));
244 static inline void init_nodemask_of_node(nodemask_t *mask, int node)
246 nodes_clear(*mask);
247 node_set(node, *mask);
250 #define nodemask_of_node(node) \
251 ({ \
252 typeof(_unused_nodemask_arg_) m; \
253 if (sizeof(m) == sizeof(unsigned long)) { \
254 m.bits[0] = 1UL << (node); \
255 } else { \
256 init_nodemask_of_node(&m, (node)); \
258 m; \
261 #define first_unset_node(mask) __first_unset_node(&(mask))
262 static inline int __first_unset_node(const nodemask_t *maskp)
264 return min_t(int,MAX_NUMNODES,
265 find_first_zero_bit(maskp->bits, MAX_NUMNODES));
268 #define NODE_MASK_LAST_WORD BITMAP_LAST_WORD_MASK(MAX_NUMNODES)
270 #if MAX_NUMNODES <= BITS_PER_LONG
272 #define NODE_MASK_ALL \
273 ((nodemask_t) { { \
274 [BITS_TO_LONGS(MAX_NUMNODES)-1] = NODE_MASK_LAST_WORD \
275 } })
277 #else
279 #define NODE_MASK_ALL \
280 ((nodemask_t) { { \
281 [0 ... BITS_TO_LONGS(MAX_NUMNODES)-2] = ~0UL, \
282 [BITS_TO_LONGS(MAX_NUMNODES)-1] = NODE_MASK_LAST_WORD \
283 } })
285 #endif
287 #define NODE_MASK_NONE \
288 ((nodemask_t) { { \
289 [0 ... BITS_TO_LONGS(MAX_NUMNODES)-1] = 0UL \
290 } })
292 #define nodes_addr(src) ((src).bits)
294 #define nodemask_scnprintf(buf, len, src) \
295 __nodemask_scnprintf((buf), (len), &(src), MAX_NUMNODES)
296 static inline int __nodemask_scnprintf(char *buf, int len,
297 const nodemask_t *srcp, int nbits)
299 return bitmap_scnprintf(buf, len, srcp->bits, nbits);
302 #define nodemask_parse_user(ubuf, ulen, dst) \
303 __nodemask_parse_user((ubuf), (ulen), &(dst), MAX_NUMNODES)
304 static inline int __nodemask_parse_user(const char __user *buf, int len,
305 nodemask_t *dstp, int nbits)
307 return bitmap_parse_user(buf, len, dstp->bits, nbits);
310 #define nodelist_scnprintf(buf, len, src) \
311 __nodelist_scnprintf((buf), (len), &(src), MAX_NUMNODES)
312 static inline int __nodelist_scnprintf(char *buf, int len,
313 const nodemask_t *srcp, int nbits)
315 return bitmap_scnlistprintf(buf, len, srcp->bits, nbits);
318 #define nodelist_parse(buf, dst) __nodelist_parse((buf), &(dst), MAX_NUMNODES)
319 static inline int __nodelist_parse(const char *buf, nodemask_t *dstp, int nbits)
321 return bitmap_parselist(buf, dstp->bits, nbits);
324 #define node_remap(oldbit, old, new) \
325 __node_remap((oldbit), &(old), &(new), MAX_NUMNODES)
326 static inline int __node_remap(int oldbit,
327 const nodemask_t *oldp, const nodemask_t *newp, int nbits)
329 return bitmap_bitremap(oldbit, oldp->bits, newp->bits, nbits);
332 #define nodes_remap(dst, src, old, new) \
333 __nodes_remap(&(dst), &(src), &(old), &(new), MAX_NUMNODES)
334 static inline void __nodes_remap(nodemask_t *dstp, const nodemask_t *srcp,
335 const nodemask_t *oldp, const nodemask_t *newp, int nbits)
337 bitmap_remap(dstp->bits, srcp->bits, oldp->bits, newp->bits, nbits);
340 #define nodes_onto(dst, orig, relmap) \
341 __nodes_onto(&(dst), &(orig), &(relmap), MAX_NUMNODES)
342 static inline void __nodes_onto(nodemask_t *dstp, const nodemask_t *origp,
343 const nodemask_t *relmapp, int nbits)
345 bitmap_onto(dstp->bits, origp->bits, relmapp->bits, nbits);
348 #define nodes_fold(dst, orig, sz) \
349 __nodes_fold(&(dst), &(orig), sz, MAX_NUMNODES)
350 static inline void __nodes_fold(nodemask_t *dstp, const nodemask_t *origp,
351 int sz, int nbits)
353 bitmap_fold(dstp->bits, origp->bits, sz, nbits);
356 #if MAX_NUMNODES > 1
357 #define for_each_node_mask(node, mask) \
358 for ((node) = first_node(mask); \
359 (node) < MAX_NUMNODES; \
360 (node) = next_node((node), (mask)))
361 #else /* MAX_NUMNODES == 1 */
362 #define for_each_node_mask(node, mask) \
363 if (!nodes_empty(mask)) \
364 for ((node) = 0; (node) < 1; (node)++)
365 #endif /* MAX_NUMNODES */
368 * Bitmasks that are kept for all the nodes.
370 enum node_states {
371 N_POSSIBLE, /* The node could become online at some point */
372 N_ONLINE, /* The node is online */
373 N_NORMAL_MEMORY, /* The node has regular memory */
374 #ifdef CONFIG_HIGHMEM
375 N_HIGH_MEMORY, /* The node has regular or high memory */
376 #else
377 N_HIGH_MEMORY = N_NORMAL_MEMORY,
378 #endif
379 N_CPU, /* The node has one or more cpus */
380 NR_NODE_STATES
384 * The following particular system nodemasks and operations
385 * on them manage all possible and online nodes.
388 extern nodemask_t node_states[NR_NODE_STATES];
390 #if MAX_NUMNODES > 1
391 static inline int node_state(int node, enum node_states state)
393 return node_isset(node, node_states[state]);
396 static inline void node_set_state(int node, enum node_states state)
398 __node_set(node, &node_states[state]);
401 static inline void node_clear_state(int node, enum node_states state)
403 __node_clear(node, &node_states[state]);
406 static inline int num_node_state(enum node_states state)
408 return nodes_weight(node_states[state]);
411 #define for_each_node_state(__node, __state) \
412 for_each_node_mask((__node), node_states[__state])
414 #define first_online_node first_node(node_states[N_ONLINE])
415 #define next_online_node(nid) next_node((nid), node_states[N_ONLINE])
417 extern int nr_node_ids;
418 extern int nr_online_nodes;
420 static inline void node_set_online(int nid)
422 node_set_state(nid, N_ONLINE);
423 nr_online_nodes = num_node_state(N_ONLINE);
426 static inline void node_set_offline(int nid)
428 node_clear_state(nid, N_ONLINE);
429 nr_online_nodes = num_node_state(N_ONLINE);
431 #else
433 static inline int node_state(int node, enum node_states state)
435 return node == 0;
438 static inline void node_set_state(int node, enum node_states state)
442 static inline void node_clear_state(int node, enum node_states state)
446 static inline int num_node_state(enum node_states state)
448 return 1;
451 #define for_each_node_state(node, __state) \
452 for ( (node) = 0; (node) == 0; (node) = 1)
454 #define first_online_node 0
455 #define next_online_node(nid) (MAX_NUMNODES)
456 #define nr_node_ids 1
457 #define nr_online_nodes 1
459 #define node_set_online(node) node_set_state((node), N_ONLINE)
460 #define node_set_offline(node) node_clear_state((node), N_ONLINE)
461 #endif
463 #define node_online_map node_states[N_ONLINE]
464 #define node_possible_map node_states[N_POSSIBLE]
466 #define num_online_nodes() num_node_state(N_ONLINE)
467 #define num_possible_nodes() num_node_state(N_POSSIBLE)
468 #define node_online(node) node_state((node), N_ONLINE)
469 #define node_possible(node) node_state((node), N_POSSIBLE)
471 #define for_each_node(node) for_each_node_state(node, N_POSSIBLE)
472 #define for_each_online_node(node) for_each_node_state(node, N_ONLINE)
475 * For nodemask scrach area.
476 * NODEMASK_ALLOC(type, name) allocates an object with a specified type and
477 * name.
479 #if NODES_SHIFT > 8 /* nodemask_t > 256 bytes */
480 #define NODEMASK_ALLOC(type, name, gfp_flags) \
481 type *name = kmalloc(sizeof(*name), gfp_flags)
482 #define NODEMASK_FREE(m) kfree(m)
483 #else
484 #define NODEMASK_ALLOC(type, name, gfp_flags) type _##name, *name = &_##name
485 #define NODEMASK_FREE(m) do {} while (0)
486 #endif
488 /* A example struture for using NODEMASK_ALLOC, used in mempolicy. */
489 struct nodemask_scratch {
490 nodemask_t mask1;
491 nodemask_t mask2;
494 #define NODEMASK_SCRATCH(x) \
495 NODEMASK_ALLOC(struct nodemask_scratch, x, \
496 GFP_KERNEL | __GFP_NORETRY)
497 #define NODEMASK_SCRATCH_FREE(x) NODEMASK_FREE(x)
500 #endif /* __LINUX_NODEMASK_H */