1#ifndef __LINUX_NODEMASK_H
2#define __LINUX_NODEMASK_H
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83#include <linux/kernel.h>
84#include <linux/threads.h>
85#include <linux/bitmap.h>
86#include <linux/numa.h>
87
88typedef struct { DECLARE_BITMAP(bits, MAX_NUMNODES); } nodemask_t;
89extern nodemask_t _unused_nodemask_arg_;
90
91#define node_set(node, dst) __node_set((node), &(dst))
92static inline void __node_set(int node, volatile nodemask_t *dstp)
93{
94 set_bit(node, dstp->bits);
95}
96
97#define node_clear(node, dst) __node_clear((node), &(dst))
98static inline void __node_clear(int node, volatile nodemask_t *dstp)
99{
100 clear_bit(node, dstp->bits);
101}
102
103#define nodes_setall(dst) __nodes_setall(&(dst), MAX_NUMNODES)
104static inline void __nodes_setall(nodemask_t *dstp, int nbits)
105{
106 bitmap_fill(dstp->bits, nbits);
107}
108
109#define nodes_clear(dst) __nodes_clear(&(dst), MAX_NUMNODES)
110static inline void __nodes_clear(nodemask_t *dstp, int nbits)
111{
112 bitmap_zero(dstp->bits, nbits);
113}
114
115
116#define node_isset(node, nodemask) test_bit((node), (nodemask).bits)
117
118#define node_test_and_set(node, nodemask) \
119 __node_test_and_set((node), &(nodemask))
120static inline int __node_test_and_set(int node, nodemask_t *addr)
121{
122 return test_and_set_bit(node, addr->bits);
123}
124
125#define nodes_and(dst, src1, src2) \
126 __nodes_and(&(dst), &(src1), &(src2), MAX_NUMNODES)
127static inline void __nodes_and(nodemask_t *dstp, const nodemask_t *src1p,
128 const nodemask_t *src2p, int nbits)
129{
130 bitmap_and(dstp->bits, src1p->bits, src2p->bits, nbits);
131}
132
133#define nodes_or(dst, src1, src2) \
134 __nodes_or(&(dst), &(src1), &(src2), MAX_NUMNODES)
135static inline void __nodes_or(nodemask_t *dstp, const nodemask_t *src1p,
136 const nodemask_t *src2p, int nbits)
137{
138 bitmap_or(dstp->bits, src1p->bits, src2p->bits, nbits);
139}
140
141#define nodes_xor(dst, src1, src2) \
142 __nodes_xor(&(dst), &(src1), &(src2), MAX_NUMNODES)
143static inline void __nodes_xor(nodemask_t *dstp, const nodemask_t *src1p,
144 const nodemask_t *src2p, int nbits)
145{
146 bitmap_xor(dstp->bits, src1p->bits, src2p->bits, nbits);
147}
148
149#define nodes_andnot(dst, src1, src2) \
150 __nodes_andnot(&(dst), &(src1), &(src2), MAX_NUMNODES)
151static inline void __nodes_andnot(nodemask_t *dstp, const nodemask_t *src1p,
152 const nodemask_t *src2p, int nbits)
153{
154 bitmap_andnot(dstp->bits, src1p->bits, src2p->bits, nbits);
155}
156
157#define nodes_complement(dst, src) \
158 __nodes_complement(&(dst), &(src), MAX_NUMNODES)
159static inline void __nodes_complement(nodemask_t *dstp,
160 const nodemask_t *srcp, int nbits)
161{
162 bitmap_complement(dstp->bits, srcp->bits, nbits);
163}
164
165#define nodes_equal(src1, src2) \
166 __nodes_equal(&(src1), &(src2), MAX_NUMNODES)
167static inline int __nodes_equal(const nodemask_t *src1p,
168 const nodemask_t *src2p, int nbits)
169{
170 return bitmap_equal(src1p->bits, src2p->bits, nbits);
171}
172
173#define nodes_intersects(src1, src2) \
174 __nodes_intersects(&(src1), &(src2), MAX_NUMNODES)
175static inline int __nodes_intersects(const nodemask_t *src1p,
176 const nodemask_t *src2p, int nbits)
177{
178 return bitmap_intersects(src1p->bits, src2p->bits, nbits);
179}
180
181#define nodes_subset(src1, src2) \
182 __nodes_subset(&(src1), &(src2), MAX_NUMNODES)
183static inline int __nodes_subset(const nodemask_t *src1p,
184 const nodemask_t *src2p, int nbits)
185{
186 return bitmap_subset(src1p->bits, src2p->bits, nbits);
187}
188
189#define nodes_empty(src) __nodes_empty(&(src), MAX_NUMNODES)
190static inline int __nodes_empty(const nodemask_t *srcp, int nbits)
191{
192 return bitmap_empty(srcp->bits, nbits);
193}
194
195#define nodes_full(nodemask) __nodes_full(&(nodemask), MAX_NUMNODES)
196static inline int __nodes_full(const nodemask_t *srcp, int nbits)
197{
198 return bitmap_full(srcp->bits, nbits);
199}
200
201#define nodes_weight(nodemask) __nodes_weight(&(nodemask), MAX_NUMNODES)
202static inline int __nodes_weight(const nodemask_t *srcp, int nbits)
203{
204 return bitmap_weight(srcp->bits, nbits);
205}
206
207#define nodes_shift_right(dst, src, n) \
208 __nodes_shift_right(&(dst), &(src), (n), MAX_NUMNODES)
209static inline void __nodes_shift_right(nodemask_t *dstp,
210 const nodemask_t *srcp, int n, int nbits)
211{
212 bitmap_shift_right(dstp->bits, srcp->bits, n, nbits);
213}
214
215#define nodes_shift_left(dst, src, n) \
216 __nodes_shift_left(&(dst), &(src), (n), MAX_NUMNODES)
217static inline void __nodes_shift_left(nodemask_t *dstp,
218 const nodemask_t *srcp, int n, int nbits)
219{
220 bitmap_shift_left(dstp->bits, srcp->bits, n, nbits);
221}
222
223
224
225
226#define first_node(src) __first_node(&(src))
227static inline int __first_node(const nodemask_t *srcp)
228{
229 return min_t(int, MAX_NUMNODES, find_first_bit(srcp->bits, MAX_NUMNODES));
230}
231
232#define next_node(n, src) __next_node((n), &(src))
233static inline int __next_node(int n, const nodemask_t *srcp)
234{
235 return min_t(int,MAX_NUMNODES,find_next_bit(srcp->bits, MAX_NUMNODES, n+1));
236}
237
238#define nodemask_of_node(node) \
239({ \
240 typeof(_unused_nodemask_arg_) m; \
241 if (sizeof(m) == sizeof(unsigned long)) { \
242 m.bits[0] = 1UL<<(node); \
243 } else { \
244 nodes_clear(m); \
245 node_set((node), m); \
246 } \
247 m; \
248})
249
250#define first_unset_node(mask) __first_unset_node(&(mask))
251static inline int __first_unset_node(const nodemask_t *maskp)
252{
253 return min_t(int,MAX_NUMNODES,
254 find_first_zero_bit(maskp->bits, MAX_NUMNODES));
255}
256
257#define NODE_MASK_LAST_WORD BITMAP_LAST_WORD_MASK(MAX_NUMNODES)
258
259#if MAX_NUMNODES <= BITS_PER_LONG
260
261#define NODE_MASK_ALL \
262((nodemask_t) { { \
263 [BITS_TO_LONGS(MAX_NUMNODES)-1] = NODE_MASK_LAST_WORD \
264} })
265
266#else
267
268#define NODE_MASK_ALL \
269((nodemask_t) { { \
270 [0 ... BITS_TO_LONGS(MAX_NUMNODES)-2] = ~0UL, \
271 [BITS_TO_LONGS(MAX_NUMNODES)-1] = NODE_MASK_LAST_WORD \
272} })
273
274#endif
275
276#define NODE_MASK_NONE \
277((nodemask_t) { { \
278 [0 ... BITS_TO_LONGS(MAX_NUMNODES)-1] = 0UL \
279} })
280
281#define nodes_addr(src) ((src).bits)
282
283#define nodemask_scnprintf(buf, len, src) \
284 __nodemask_scnprintf((buf), (len), &(src), MAX_NUMNODES)
285static inline int __nodemask_scnprintf(char *buf, int len,
286 const nodemask_t *srcp, int nbits)
287{
288 return bitmap_scnprintf(buf, len, srcp->bits, nbits);
289}
290
291#define nodemask_parse_user(ubuf, ulen, dst) \
292 __nodemask_parse_user((ubuf), (ulen), &(dst), MAX_NUMNODES)
293static inline int __nodemask_parse_user(const char __user *buf, int len,
294 nodemask_t *dstp, int nbits)
295{
296 return bitmap_parse_user(buf, len, dstp->bits, nbits);
297}
298
299#define nodelist_scnprintf(buf, len, src) \
300 __nodelist_scnprintf((buf), (len), &(src), MAX_NUMNODES)
301static inline int __nodelist_scnprintf(char *buf, int len,
302 const nodemask_t *srcp, int nbits)
303{
304 return bitmap_scnlistprintf(buf, len, srcp->bits, nbits);
305}
306
307#define nodelist_parse(buf, dst) __nodelist_parse((buf), &(dst), MAX_NUMNODES)
308static inline int __nodelist_parse(const char *buf, nodemask_t *dstp, int nbits)
309{
310 return bitmap_parselist(buf, dstp->bits, nbits);
311}
312
313#define node_remap(oldbit, old, new) \
314 __node_remap((oldbit), &(old), &(new), MAX_NUMNODES)
315static inline int __node_remap(int oldbit,
316 const nodemask_t *oldp, const nodemask_t *newp, int nbits)
317{
318 return bitmap_bitremap(oldbit, oldp->bits, newp->bits, nbits);
319}
320
321#define nodes_remap(dst, src, old, new) \
322 __nodes_remap(&(dst), &(src), &(old), &(new), MAX_NUMNODES)
323static inline void __nodes_remap(nodemask_t *dstp, const nodemask_t *srcp,
324 const nodemask_t *oldp, const nodemask_t *newp, int nbits)
325{
326 bitmap_remap(dstp->bits, srcp->bits, oldp->bits, newp->bits, nbits);
327}
328
329#if MAX_NUMNODES > 1
330#define for_each_node_mask(node, mask) \
331 for ((node) = first_node(mask); \
332 (node) < MAX_NUMNODES; \
333 (node) = next_node((node), (mask)))
334#else
335#define for_each_node_mask(node, mask) \
336 if (!nodes_empty(mask)) \
337 for ((node) = 0; (node) < 1; (node)++)
338#endif
339
340
341
342
343enum node_states {
344 N_POSSIBLE,
345 N_ONLINE,
346 N_NORMAL_MEMORY,
347#ifdef CONFIG_HIGHMEM
348 N_HIGH_MEMORY,
349#else
350 N_HIGH_MEMORY = N_NORMAL_MEMORY,
351#endif
352 N_CPU,
353 NR_NODE_STATES
354};
355
356
357
358
359
360
361extern nodemask_t node_states[NR_NODE_STATES];
362
363#if MAX_NUMNODES > 1
364static inline int node_state(int node, enum node_states state)
365{
366 return node_isset(node, node_states[state]);
367}
368
369static inline void node_set_state(int node, enum node_states state)
370{
371 __node_set(node, &node_states[state]);
372}
373
374static inline void node_clear_state(int node, enum node_states state)
375{
376 __node_clear(node, &node_states[state]);
377}
378
379static inline int num_node_state(enum node_states state)
380{
381 return nodes_weight(node_states[state]);
382}
383
384#define for_each_node_state(__node, __state) \
385 for_each_node_mask((__node), node_states[__state])
386
387#define first_online_node first_node(node_states[N_ONLINE])
388#define next_online_node(nid) next_node((nid), node_states[N_ONLINE])
389
390extern int nr_node_ids;
391#else
392
393static inline int node_state(int node, enum node_states state)
394{
395 return node == 0;
396}
397
398static inline void node_set_state(int node, enum node_states state)
399{
400}
401
402static inline void node_clear_state(int node, enum node_states state)
403{
404}
405
406static inline int num_node_state(enum node_states state)
407{
408 return 1;
409}
410
411#define for_each_node_state(node, __state) \
412 for ( (node) = 0; (node) == 0; (node) = 1)
413
414#define first_online_node 0
415#define next_online_node(nid) (MAX_NUMNODES)
416#define nr_node_ids 1
417
418#endif
419
420#define node_online_map node_states[N_ONLINE]
421#define node_possible_map node_states[N_POSSIBLE]
422
423#define any_online_node(mask) \
424({ \
425 int node; \
426 for_each_node_mask(node, (mask)) \
427 if (node_online(node)) \
428 break; \
429 node; \
430})
431
432#define num_online_nodes() num_node_state(N_ONLINE)
433#define num_possible_nodes() num_node_state(N_POSSIBLE)
434#define node_online(node) node_state((node), N_ONLINE)
435#define node_possible(node) node_state((node), N_POSSIBLE)
436
437#define node_set_online(node) node_set_state((node), N_ONLINE)
438#define node_set_offline(node) node_clear_state((node), N_ONLINE)
439
440#define for_each_node(node) for_each_node_state(node, N_POSSIBLE)
441#define for_each_online_node(node) for_each_node_state(node, N_ONLINE)
442
443#endif
444