blob: 10f8e556ba07c7f4b34e3beae9a38133893224ea [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __LINUX_NODEMASK_H
2#define __LINUX_NODEMASK_H
3
4/*
5 * Nodemasks provide a bitmap suitable for representing the
6 * set of Node's in a system, one bit position per Node number.
7 *
8 * See detailed comments in the file linux/bitmap.h describing the
9 * data type on which these nodemasks are based.
10 *
Reinette Chatre01a3ee22006-10-11 01:21:55 -070011 * For details of nodemask_scnprintf() and nodemask_parse_user(),
12 * see bitmap_scnprintf() and bitmap_parse_user() in lib/bitmap.c.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * For details of nodelist_scnprintf() and nodelist_parse(), see
14 * bitmap_scnlistprintf() and bitmap_parselist(), also in bitmap.c.
Paul Jacksonfb5eeee2005-10-30 15:02:33 -080015 * 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.
Paul Jackson7ea931c2008-04-28 02:12:29 -070017 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 *
20 * The available nodemask operations are:
21 *
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
28 *
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
34 *
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
41 *
42 * void nodes_shift_right(dst, src, n) Shift right
43 * void nodes_shift_left(dst, src, n) Shift left
44 *
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.
49 *
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
54 *
55 * int nodemask_scnprintf(buf, len, mask) Format nodemask for printing
Reinette Chatre01a3ee22006-10-11 01:21:55 -070056 * int nodemask_parse_user(ubuf, ulen, mask) Parse ascii string as nodemask
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 * int nodelist_scnprintf(buf, len, mask) Format nodemask as list for printing
58 * int nodelist_parse(buf, map) Parse ascii string as nodelist
Paul Jacksonfb5eeee2005-10-30 15:02:33 -080059 * int node_remap(oldbit, old, new) newbit = map(old, new)(oldbit)
Paul Jackson7ea931c2008-04-28 02:12:29 -070060 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 *
64 * for_each_node_mask(node, mask) for-loop node over mask
65 *
66 * int num_online_nodes() Number of online Nodes
67 * int num_possible_nodes() Number of all possible Nodes
68 *
Michal Hocko778d3b02011-07-26 16:08:30 -070069 * int node_random(mask) Random node with set bit in mask
70 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 * int node_online(node) Is some node online?
72 * int node_possible(node) Is some node possible?
73 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 * node_set_online(node) set bit 'node' in node_online_map
75 * node_set_offline(node) clear bit 'node' in node_online_map
76 *
77 * for_each_node(node) for-loop node over node_possible_map
78 * for_each_online_node(node) for-loop node over node_online_map
79 *
80 * Subtlety:
81 * 1) The 'type-checked' form of node_isset() causes gcc (3.3.2, anyway)
82 * to generate slightly worse code. So use a simple one-line #define
83 * for node_isset(), instead of wrapping an inline inside a macro, the
84 * way we do the other calls.
KAMEZAWA Hiroyuki4bfc4492009-08-06 15:07:33 -070085 *
86 * NODEMASK_SCRATCH
87 * When doing above logical AND, OR, XOR, Remap operations the callers tend to
88 * need temporary nodemask_t's on the stack. But if NODES_SHIFT is large,
89 * nodemask_t's consume too much stack space. NODEMASK_SCRATCH is a helper
90 * for such situations. See below and CPUMASK_ALLOC also.
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 */
92
93#include <linux/kernel.h>
94#include <linux/threads.h>
95#include <linux/bitmap.h>
96#include <linux/numa.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98typedef struct { DECLARE_BITMAP(bits, MAX_NUMNODES); } nodemask_t;
99extern nodemask_t _unused_nodemask_arg_;
100
Tejun Heof1bbc032015-02-13 14:36:57 -0800101/**
102 * nodemask_pr_args - printf args to output a nodemask
103 * @maskp: nodemask to be printed
104 *
105 * Can be used to provide arguments for '%*pb[l]' when printing a nodemask.
106 */
107#define nodemask_pr_args(maskp) MAX_NUMNODES, (maskp)->bits
108
Tom Rini323f54e2013-07-25 14:26:10 -0400109/*
110 * The inline keyword gives the compiler room to decide to inline, or
111 * not inline a function as it sees best. However, as these functions
112 * are called in both __init and non-__init functions, if they are not
113 * inlined we will end up with a section mis-match error (of the type of
114 * freeable items not being freed). So we must use __always_inline here
115 * to fix the problem. If other functions in the future also end up in
116 * this situation they will also need to be annotated as __always_inline
117 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118#define node_set(node, dst) __node_set((node), &(dst))
Tom Rini323f54e2013-07-25 14:26:10 -0400119static __always_inline void __node_set(int node, volatile nodemask_t *dstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
121 set_bit(node, dstp->bits);
122}
123
124#define node_clear(node, dst) __node_clear((node), &(dst))
125static inline void __node_clear(int node, volatile nodemask_t *dstp)
126{
127 clear_bit(node, dstp->bits);
128}
129
130#define nodes_setall(dst) __nodes_setall(&(dst), MAX_NUMNODES)
Rasmus Villemoes33c4fa82015-02-12 15:01:56 -0800131static inline void __nodes_setall(nodemask_t *dstp, unsigned int nbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
133 bitmap_fill(dstp->bits, nbits);
134}
135
136#define nodes_clear(dst) __nodes_clear(&(dst), MAX_NUMNODES)
Rasmus Villemoes33c4fa82015-02-12 15:01:56 -0800137static inline void __nodes_clear(nodemask_t *dstp, unsigned int nbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
139 bitmap_zero(dstp->bits, nbits);
140}
141
142/* No static inline type checking - see Subtlety (1) above. */
143#define node_isset(node, nodemask) test_bit((node), (nodemask).bits)
144
145#define node_test_and_set(node, nodemask) \
146 __node_test_and_set((node), &(nodemask))
147static inline int __node_test_and_set(int node, nodemask_t *addr)
148{
149 return test_and_set_bit(node, addr->bits);
150}
151
152#define nodes_and(dst, src1, src2) \
153 __nodes_and(&(dst), &(src1), &(src2), MAX_NUMNODES)
154static inline void __nodes_and(nodemask_t *dstp, const nodemask_t *src1p,
Rasmus Villemoes33c4fa82015-02-12 15:01:56 -0800155 const nodemask_t *src2p, unsigned int nbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
157 bitmap_and(dstp->bits, src1p->bits, src2p->bits, nbits);
158}
159
160#define nodes_or(dst, src1, src2) \
161 __nodes_or(&(dst), &(src1), &(src2), MAX_NUMNODES)
162static inline void __nodes_or(nodemask_t *dstp, const nodemask_t *src1p,
Rasmus Villemoes33c4fa82015-02-12 15:01:56 -0800163 const nodemask_t *src2p, unsigned int nbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
165 bitmap_or(dstp->bits, src1p->bits, src2p->bits, nbits);
166}
167
168#define nodes_xor(dst, src1, src2) \
169 __nodes_xor(&(dst), &(src1), &(src2), MAX_NUMNODES)
170static inline void __nodes_xor(nodemask_t *dstp, const nodemask_t *src1p,
Rasmus Villemoes33c4fa82015-02-12 15:01:56 -0800171 const nodemask_t *src2p, unsigned int nbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
173 bitmap_xor(dstp->bits, src1p->bits, src2p->bits, nbits);
174}
175
176#define nodes_andnot(dst, src1, src2) \
177 __nodes_andnot(&(dst), &(src1), &(src2), MAX_NUMNODES)
178static inline void __nodes_andnot(nodemask_t *dstp, const nodemask_t *src1p,
Rasmus Villemoes33c4fa82015-02-12 15:01:56 -0800179 const nodemask_t *src2p, unsigned int nbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
181 bitmap_andnot(dstp->bits, src1p->bits, src2p->bits, nbits);
182}
183
184#define nodes_complement(dst, src) \
185 __nodes_complement(&(dst), &(src), MAX_NUMNODES)
186static inline void __nodes_complement(nodemask_t *dstp,
Rasmus Villemoes33c4fa82015-02-12 15:01:56 -0800187 const nodemask_t *srcp, unsigned int nbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
189 bitmap_complement(dstp->bits, srcp->bits, nbits);
190}
191
192#define nodes_equal(src1, src2) \
193 __nodes_equal(&(src1), &(src2), MAX_NUMNODES)
194static inline int __nodes_equal(const nodemask_t *src1p,
Rasmus Villemoes33c4fa82015-02-12 15:01:56 -0800195 const nodemask_t *src2p, unsigned int nbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
197 return bitmap_equal(src1p->bits, src2p->bits, nbits);
198}
199
200#define nodes_intersects(src1, src2) \
201 __nodes_intersects(&(src1), &(src2), MAX_NUMNODES)
202static inline int __nodes_intersects(const nodemask_t *src1p,
Rasmus Villemoes33c4fa82015-02-12 15:01:56 -0800203 const nodemask_t *src2p, unsigned int nbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
205 return bitmap_intersects(src1p->bits, src2p->bits, nbits);
206}
207
208#define nodes_subset(src1, src2) \
209 __nodes_subset(&(src1), &(src2), MAX_NUMNODES)
210static inline int __nodes_subset(const nodemask_t *src1p,
Rasmus Villemoes33c4fa82015-02-12 15:01:56 -0800211 const nodemask_t *src2p, unsigned int nbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
213 return bitmap_subset(src1p->bits, src2p->bits, nbits);
214}
215
216#define nodes_empty(src) __nodes_empty(&(src), MAX_NUMNODES)
Rasmus Villemoes33c4fa82015-02-12 15:01:56 -0800217static inline int __nodes_empty(const nodemask_t *srcp, unsigned int nbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
219 return bitmap_empty(srcp->bits, nbits);
220}
221
222#define nodes_full(nodemask) __nodes_full(&(nodemask), MAX_NUMNODES)
Rasmus Villemoes33c4fa82015-02-12 15:01:56 -0800223static inline int __nodes_full(const nodemask_t *srcp, unsigned int nbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
225 return bitmap_full(srcp->bits, nbits);
226}
227
228#define nodes_weight(nodemask) __nodes_weight(&(nodemask), MAX_NUMNODES)
Rasmus Villemoes33c4fa82015-02-12 15:01:56 -0800229static inline int __nodes_weight(const nodemask_t *srcp, unsigned int nbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
231 return bitmap_weight(srcp->bits, nbits);
232}
233
234#define nodes_shift_right(dst, src, n) \
235 __nodes_shift_right(&(dst), &(src), (n), MAX_NUMNODES)
236static inline void __nodes_shift_right(nodemask_t *dstp,
237 const nodemask_t *srcp, int n, int nbits)
238{
239 bitmap_shift_right(dstp->bits, srcp->bits, n, nbits);
240}
241
242#define nodes_shift_left(dst, src, n) \
243 __nodes_shift_left(&(dst), &(src), (n), MAX_NUMNODES)
244static inline void __nodes_shift_left(nodemask_t *dstp,
245 const nodemask_t *srcp, int n, int nbits)
246{
247 bitmap_shift_left(dstp->bits, srcp->bits, n, nbits);
248}
249
250/* FIXME: better would be to fix all architectures to never return
251 > MAX_NUMNODES, then the silly min_ts could be dropped. */
252
253#define first_node(src) __first_node(&(src))
254static inline int __first_node(const nodemask_t *srcp)
255{
256 return min_t(int, MAX_NUMNODES, find_first_bit(srcp->bits, MAX_NUMNODES));
257}
258
259#define next_node(n, src) __next_node((n), &(src))
260static inline int __next_node(int n, const nodemask_t *srcp)
261{
262 return min_t(int,MAX_NUMNODES,find_next_bit(srcp->bits, MAX_NUMNODES, n+1));
263}
264
Lee Schermerhornc1e6c8d2009-12-14 17:58:17 -0800265static inline void init_nodemask_of_node(nodemask_t *mask, int node)
266{
267 nodes_clear(*mask);
268 node_set(node, *mask);
269}
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271#define nodemask_of_node(node) \
272({ \
273 typeof(_unused_nodemask_arg_) m; \
274 if (sizeof(m) == sizeof(unsigned long)) { \
Lee Schermerhornc1e6c8d2009-12-14 17:58:17 -0800275 m.bits[0] = 1UL << (node); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 } else { \
Lee Schermerhornc1e6c8d2009-12-14 17:58:17 -0800277 init_nodemask_of_node(&m, (node)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 } \
279 m; \
280})
281
282#define first_unset_node(mask) __first_unset_node(&(mask))
283static inline int __first_unset_node(const nodemask_t *maskp)
284{
285 return min_t(int,MAX_NUMNODES,
286 find_first_zero_bit(maskp->bits, MAX_NUMNODES));
287}
288
289#define NODE_MASK_LAST_WORD BITMAP_LAST_WORD_MASK(MAX_NUMNODES)
290
291#if MAX_NUMNODES <= BITS_PER_LONG
292
293#define NODE_MASK_ALL \
294((nodemask_t) { { \
295 [BITS_TO_LONGS(MAX_NUMNODES)-1] = NODE_MASK_LAST_WORD \
296} })
297
298#else
299
300#define NODE_MASK_ALL \
301((nodemask_t) { { \
302 [0 ... BITS_TO_LONGS(MAX_NUMNODES)-2] = ~0UL, \
303 [BITS_TO_LONGS(MAX_NUMNODES)-1] = NODE_MASK_LAST_WORD \
304} })
305
306#endif
307
308#define NODE_MASK_NONE \
309((nodemask_t) { { \
310 [0 ... BITS_TO_LONGS(MAX_NUMNODES)-1] = 0UL \
311} })
312
313#define nodes_addr(src) ((src).bits)
314
315#define nodemask_scnprintf(buf, len, src) \
316 __nodemask_scnprintf((buf), (len), &(src), MAX_NUMNODES)
317static inline int __nodemask_scnprintf(char *buf, int len,
318 const nodemask_t *srcp, int nbits)
319{
320 return bitmap_scnprintf(buf, len, srcp->bits, nbits);
321}
322
Reinette Chatre01a3ee22006-10-11 01:21:55 -0700323#define nodemask_parse_user(ubuf, ulen, dst) \
324 __nodemask_parse_user((ubuf), (ulen), &(dst), MAX_NUMNODES)
325static inline int __nodemask_parse_user(const char __user *buf, int len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 nodemask_t *dstp, int nbits)
327{
Reinette Chatre01a3ee22006-10-11 01:21:55 -0700328 return bitmap_parse_user(buf, len, dstp->bits, nbits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
330
331#define nodelist_scnprintf(buf, len, src) \
332 __nodelist_scnprintf((buf), (len), &(src), MAX_NUMNODES)
333static inline int __nodelist_scnprintf(char *buf, int len,
334 const nodemask_t *srcp, int nbits)
335{
336 return bitmap_scnlistprintf(buf, len, srcp->bits, nbits);
337}
338
339#define nodelist_parse(buf, dst) __nodelist_parse((buf), &(dst), MAX_NUMNODES)
340static inline int __nodelist_parse(const char *buf, nodemask_t *dstp, int nbits)
341{
342 return bitmap_parselist(buf, dstp->bits, nbits);
343}
344
Paul Jacksonfb5eeee2005-10-30 15:02:33 -0800345#define node_remap(oldbit, old, new) \
346 __node_remap((oldbit), &(old), &(new), MAX_NUMNODES)
347static inline int __node_remap(int oldbit,
348 const nodemask_t *oldp, const nodemask_t *newp, int nbits)
349{
350 return bitmap_bitremap(oldbit, oldp->bits, newp->bits, nbits);
351}
352
353#define nodes_remap(dst, src, old, new) \
354 __nodes_remap(&(dst), &(src), &(old), &(new), MAX_NUMNODES)
355static inline void __nodes_remap(nodemask_t *dstp, const nodemask_t *srcp,
356 const nodemask_t *oldp, const nodemask_t *newp, int nbits)
357{
358 bitmap_remap(dstp->bits, srcp->bits, oldp->bits, newp->bits, nbits);
359}
360
Paul Jackson7ea931c2008-04-28 02:12:29 -0700361#define nodes_onto(dst, orig, relmap) \
362 __nodes_onto(&(dst), &(orig), &(relmap), MAX_NUMNODES)
363static inline void __nodes_onto(nodemask_t *dstp, const nodemask_t *origp,
364 const nodemask_t *relmapp, int nbits)
365{
366 bitmap_onto(dstp->bits, origp->bits, relmapp->bits, nbits);
367}
368
369#define nodes_fold(dst, orig, sz) \
370 __nodes_fold(&(dst), &(orig), sz, MAX_NUMNODES)
371static inline void __nodes_fold(nodemask_t *dstp, const nodemask_t *origp,
372 int sz, int nbits)
373{
374 bitmap_fold(dstp->bits, origp->bits, sz, nbits);
375}
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377#if MAX_NUMNODES > 1
378#define for_each_node_mask(node, mask) \
379 for ((node) = first_node(mask); \
380 (node) < MAX_NUMNODES; \
381 (node) = next_node((node), (mask)))
382#else /* MAX_NUMNODES == 1 */
383#define for_each_node_mask(node, mask) \
384 if (!nodes_empty(mask)) \
385 for ((node) = 0; (node) < 1; (node)++)
386#endif /* MAX_NUMNODES */
387
388/*
Christoph Lameter13808912007-10-16 01:25:27 -0700389 * Bitmasks that are kept for all the nodes.
390 */
391enum node_states {
Christoph Lameter7ea15302007-10-16 01:25:29 -0700392 N_POSSIBLE, /* The node could become online at some point */
393 N_ONLINE, /* The node is online */
394 N_NORMAL_MEMORY, /* The node has regular memory */
395#ifdef CONFIG_HIGHMEM
396 N_HIGH_MEMORY, /* The node has regular or high memory */
397#else
398 N_HIGH_MEMORY = N_NORMAL_MEMORY,
399#endif
Lai Jiangshan20b2f522012-12-12 13:52:00 -0800400#ifdef CONFIG_MOVABLE_NODE
401 N_MEMORY, /* The node has memory(regular, high, movable) */
402#else
Lai Jiangshan8219fc42012-12-12 13:51:21 -0800403 N_MEMORY = N_HIGH_MEMORY,
Lai Jiangshan20b2f522012-12-12 13:52:00 -0800404#endif
Christoph Lameter37c07082007-10-16 01:25:36 -0700405 N_CPU, /* The node has one or more cpus */
Christoph Lameter13808912007-10-16 01:25:27 -0700406 NR_NODE_STATES
407};
408
409/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 * The following particular system nodemasks and operations
411 * on them manage all possible and online nodes.
412 */
413
Christoph Lameter13808912007-10-16 01:25:27 -0700414extern nodemask_t node_states[NR_NODE_STATES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416#if MAX_NUMNODES > 1
Christoph Lameter13808912007-10-16 01:25:27 -0700417static inline int node_state(int node, enum node_states state)
418{
419 return node_isset(node, node_states[state]);
420}
421
422static inline void node_set_state(int node, enum node_states state)
423{
424 __node_set(node, &node_states[state]);
425}
426
427static inline void node_clear_state(int node, enum node_states state)
428{
429 __node_clear(node, &node_states[state]);
430}
431
432static inline int num_node_state(enum node_states state)
433{
434 return nodes_weight(node_states[state]);
435}
436
437#define for_each_node_state(__node, __state) \
438 for_each_node_mask((__node), node_states[__state])
439
440#define first_online_node first_node(node_states[N_ONLINE])
David Rientjes8d060bf2014-08-06 16:07:50 -0700441#define first_memory_node first_node(node_states[N_MEMORY])
442static inline int next_online_node(int nid)
443{
444 return next_node(nid, node_states[N_ONLINE]);
445}
446static inline int next_memory_node(int nid)
447{
448 return next_node(nid, node_states[N_MEMORY]);
449}
Christoph Lameter13808912007-10-16 01:25:27 -0700450
Christoph Lameter74c7aa82007-02-20 13:57:51 -0800451extern int nr_node_ids;
Christoph Lameter62bc62a2009-06-16 15:32:15 -0700452extern int nr_online_nodes;
453
454static inline void node_set_online(int nid)
455{
456 node_set_state(nid, N_ONLINE);
457 nr_online_nodes = num_node_state(N_ONLINE);
458}
459
460static inline void node_set_offline(int nid)
461{
462 node_clear_state(nid, N_ONLINE);
463 nr_online_nodes = num_node_state(N_ONLINE);
464}
Michal Hocko778d3b02011-07-26 16:08:30 -0700465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466#else
Christoph Lameter13808912007-10-16 01:25:27 -0700467
468static inline int node_state(int node, enum node_states state)
469{
470 return node == 0;
471}
472
473static inline void node_set_state(int node, enum node_states state)
474{
475}
476
477static inline void node_clear_state(int node, enum node_states state)
478{
479}
480
481static inline int num_node_state(enum node_states state)
482{
483 return 1;
484}
485
486#define for_each_node_state(node, __state) \
487 for ( (node) = 0; (node) == 0; (node) = 1)
488
KAMEZAWA Hiroyuki8357f862006-03-27 01:15:57 -0800489#define first_online_node 0
David Rientjes8d060bf2014-08-06 16:07:50 -0700490#define first_memory_node 0
KAMEZAWA Hiroyuki8357f862006-03-27 01:15:57 -0800491#define next_online_node(nid) (MAX_NUMNODES)
Christoph Lameter74c7aa82007-02-20 13:57:51 -0800492#define nr_node_ids 1
Christoph Lameter62bc62a2009-06-16 15:32:15 -0700493#define nr_online_nodes 1
Christoph Lameter13808912007-10-16 01:25:27 -0700494
Christoph Lameter62bc62a2009-06-16 15:32:15 -0700495#define node_set_online(node) node_set_state((node), N_ONLINE)
496#define node_set_offline(node) node_clear_state((node), N_ONLINE)
Michal Hocko778d3b02011-07-26 16:08:30 -0700497
498#endif
499
500#if defined(CONFIG_NUMA) && (MAX_NUMNODES > 1)
501extern int node_random(const nodemask_t *maskp);
502#else
503static inline int node_random(const nodemask_t *mask)
504{
505 return 0;
506}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507#endif
508
Christoph Lameter13808912007-10-16 01:25:27 -0700509#define node_online_map node_states[N_ONLINE]
510#define node_possible_map node_states[N_POSSIBLE]
511
Christoph Lameter13808912007-10-16 01:25:27 -0700512#define num_online_nodes() num_node_state(N_ONLINE)
513#define num_possible_nodes() num_node_state(N_POSSIBLE)
514#define node_online(node) node_state((node), N_ONLINE)
515#define node_possible(node) node_state((node), N_POSSIBLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Christoph Lameter13808912007-10-16 01:25:27 -0700517#define for_each_node(node) for_each_node_state(node, N_POSSIBLE)
518#define for_each_online_node(node) for_each_node_state(node, N_ONLINE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
KAMEZAWA Hiroyuki4bfc4492009-08-06 15:07:33 -0700520/*
David Rientjesbad44b52009-12-14 17:58:38 -0800521 * For nodemask scrach area.
522 * NODEMASK_ALLOC(type, name) allocates an object with a specified type and
523 * name.
KAMEZAWA Hiroyuki4bfc4492009-08-06 15:07:33 -0700524 */
David Rientjesbad44b52009-12-14 17:58:38 -0800525#if NODES_SHIFT > 8 /* nodemask_t > 256 bytes */
526#define NODEMASK_ALLOC(type, name, gfp_flags) \
527 type *name = kmalloc(sizeof(*name), gfp_flags)
528#define NODEMASK_FREE(m) kfree(m)
KAMEZAWA Hiroyuki4bfc4492009-08-06 15:07:33 -0700529#else
Miao Xie7baab932010-03-10 15:22:42 -0800530#define NODEMASK_ALLOC(type, name, gfp_flags) type _##name, *name = &_##name
David Rientjesbad44b52009-12-14 17:58:38 -0800531#define NODEMASK_FREE(m) do {} while (0)
KAMEZAWA Hiroyuki4bfc4492009-08-06 15:07:33 -0700532#endif
533
534/* A example struture for using NODEMASK_ALLOC, used in mempolicy. */
535struct nodemask_scratch {
536 nodemask_t mask1;
537 nodemask_t mask2;
538};
539
David Rientjesbad44b52009-12-14 17:58:38 -0800540#define NODEMASK_SCRATCH(x) \
541 NODEMASK_ALLOC(struct nodemask_scratch, x, \
542 GFP_KERNEL | __GFP_NORETRY)
David Rientjes4e7b8a62009-12-14 17:58:13 -0800543#define NODEMASK_SCRATCH_FREE(x) NODEMASK_FREE(x)
KAMEZAWA Hiroyuki4bfc4492009-08-06 15:07:33 -0700544
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546#endif /* __LINUX_NODEMASK_H */