mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-24 07:31:41 +00:00
[PATCH] cpumask: add highest_possible_node_id
cpumask: add highest_possible_node_id(), analogous to highest_possible_processor_id(). [pj@sgi.com: fix typo] Signed-off-by: Greg Banks <gnb@melbourne.sgi.com> Signed-off-by: Paul Jackson <pj@sgi.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
ca8af48676
commit
0f532f3861
2 changed files with 18 additions and 0 deletions
|
@ -352,6 +352,7 @@ extern nodemask_t node_possible_map;
|
|||
#define node_possible(node) node_isset((node), node_possible_map)
|
||||
#define first_online_node first_node(node_online_map)
|
||||
#define next_online_node(nid) next_node((nid), node_online_map)
|
||||
int highest_possible_node_id(void);
|
||||
#else
|
||||
#define num_online_nodes() 1
|
||||
#define num_possible_nodes() 1
|
||||
|
@ -359,6 +360,7 @@ extern nodemask_t node_possible_map;
|
|||
#define node_possible(node) ((node) == 0)
|
||||
#define first_online_node 0
|
||||
#define next_online_node(nid) (MAX_NUMNODES)
|
||||
#define highest_possible_node_id() 0
|
||||
#endif
|
||||
|
||||
#define any_online_node(mask) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue