Lines Matching refs:nm_ptr
52 static void tipc_nmap_add(struct tipc_node_map *nm_ptr, u32 node);
53 static void tipc_nmap_remove(struct tipc_node_map *nm_ptr, u32 node);
663 void tipc_bcbearer_sort(struct net *net, struct tipc_node_map *nm_ptr, in tipc_bcbearer_sort() argument
677 tipc_nmap_add(nm_ptr, node); in tipc_bcbearer_sort()
679 tipc_nmap_remove(nm_ptr, node); in tipc_bcbearer_sort()
933 static void tipc_nmap_add(struct tipc_node_map *nm_ptr, u32 node) in tipc_nmap_add() argument
939 if ((nm_ptr->map[w] & mask) == 0) { in tipc_nmap_add()
940 nm_ptr->count++; in tipc_nmap_add()
941 nm_ptr->map[w] |= mask; in tipc_nmap_add()
948 static void tipc_nmap_remove(struct tipc_node_map *nm_ptr, u32 node) in tipc_nmap_remove() argument
954 if ((nm_ptr->map[w] & mask) != 0) { in tipc_nmap_remove()
955 nm_ptr->map[w] &= ~mask; in tipc_nmap_remove()
956 nm_ptr->count--; in tipc_nmap_remove()