Searched refs:nm_ptr (Results 1 - 2 of 2) sorted by relevance

/net/tipc/
H A Dbcast.h72 void tipc_nmap_add(struct tipc_node_map *nm_ptr, u32 node);
73 void tipc_nmap_remove(struct tipc_node_map *nm_ptr, u32 node);
H A Dbcast.c809 void tipc_nmap_add(struct tipc_node_map *nm_ptr, u32 node) argument
815 if ((nm_ptr->map[w] & mask) == 0) {
816 nm_ptr->count++;
817 nm_ptr->map[w] |= mask;
824 void tipc_nmap_remove(struct tipc_node_map *nm_ptr, u32 node) argument
830 if ((nm_ptr->map[w] & mask) != 0) {
831 nm_ptr->map[w] &= ~mask;
832 nm_ptr->count--;

Completed in 108 milliseconds