• Home
  • Raw
  • Download

Lines Matching defs:node

117 #define node_set(node, dst) __node_set((node), &(dst))  argument
118 static __always_inline void __node_set(int node, volatile nodemask_t *dstp) in __node_set()
123 #define node_clear(node, dst) __node_clear((node), &(dst)) argument
124 static inline void __node_clear(int node, volatile nodemask_t *dstp) in __node_clear()
142 #define node_isset(node, nodemask) test_bit((node), (nodemask).bits) argument
144 #define node_test_and_set(node, nodemask) \ argument
146 static inline int __node_test_and_set(int node, nodemask_t *addr) in __node_test_and_set()
271 static inline void init_nodemask_of_node(nodemask_t *mask, int node) in init_nodemask_of_node()
277 #define nodemask_of_node(node) \ argument
368 #define for_each_node_mask(node, mask) \ argument
373 #define for_each_node_mask(node, mask) \ argument
407 static inline int node_state(int node, enum node_states state) in node_state()
412 static inline void node_set_state(int node, enum node_states state) in node_set_state()
417 static inline void node_clear_state(int node, enum node_states state) in node_clear_state()
458 static inline int node_state(int node, enum node_states state) in node_state()
463 static inline void node_set_state(int node, enum node_states state) in node_set_state()
467 static inline void node_clear_state(int node, enum node_states state) in node_clear_state()
476 #define for_each_node_state(node, __state) \ argument
485 #define node_set_online(node) node_set_state((node), N_ONLINE) argument
486 #define node_set_offline(node) node_clear_state((node), N_ONLINE) argument
504 #define node_online(node) node_state((node), N_ONLINE) argument
505 #define node_possible(node) node_state((node), N_POSSIBLE) argument
507 #define for_each_node(node) for_each_node_state(node, N_POSSIBLE) argument
508 #define for_each_online_node(node) for_each_node_state(node, N_ONLINE) argument