Lines Matching defs:node
127 #define node_set(node, dst) __node_set((node), &(dst)) argument
128 static __always_inline void __node_set(int node, volatile nodemask_t *dstp) in __node_set()
133 #define node_clear(node, dst) __node_clear((node), &(dst)) argument
134 static __always_inline void __node_clear(int node, volatile nodemask_t *dstp) in __node_clear()
152 #define node_isset(node, nodemask) test_bit((node), (nodemask).bits) argument
154 #define node_test_and_set(node, nodemask) \ argument
156 static __always_inline bool __node_test_and_set(int node, nodemask_t *addr) in __node_test_and_set()
286 static __always_inline unsigned int __next_node_in(int node, const nodemask_t *srcp) in __next_node_in()
295 static __always_inline void init_nodemask_of_node(nodemask_t *mask, int node) in init_nodemask_of_node()
301 #define nodemask_of_node(node) \ argument
392 #define for_each_node_mask(node, mask) \ argument
397 #define for_each_node_mask(node, mask) \ argument
427 static __always_inline int node_state(int node, enum node_states state) in node_state()
432 static __always_inline void node_set_state(int node, enum node_states state) in node_set_state()
437 static __always_inline void node_clear_state(int node, enum node_states state) in node_clear_state()
478 static __always_inline int node_state(int node, enum node_states state) in node_state()
483 static __always_inline void node_set_state(int node, enum node_states state) in node_set_state()
487 static __always_inline void node_clear_state(int node, enum node_states state) in node_clear_state()
496 #define for_each_node_state(node, __state) \ argument
506 #define node_set_online(node) node_set_state((node), N_ONLINE) argument
507 #define node_set_offline(node) node_clear_state((node), N_ONLINE) argument
539 #define node_online(node) node_state((node), N_ONLINE) argument
540 #define node_possible(node) node_state((node), N_POSSIBLE) argument
542 #define for_each_node(node) for_each_node_state(node, N_POSSIBLE) argument
543 #define for_each_online_node(node) for_each_node_state(node, N_ONLINE) argument