Lines Matching refs:nl
1036 struct tipc_plist *nl; in tipc_plist_push() local
1044 list_for_each_entry(nl, &pl->list, list) { in tipc_plist_push()
1045 if (nl->port == port) in tipc_plist_push()
1048 nl = kmalloc(sizeof(*nl), GFP_ATOMIC); in tipc_plist_push()
1049 if (nl) { in tipc_plist_push()
1050 nl->port = port; in tipc_plist_push()
1051 list_add(&nl->list, &pl->list); in tipc_plist_push()
1057 struct tipc_plist *nl; in tipc_plist_pop() local
1065 nl = list_first_entry(&pl->list, typeof(*nl), list); in tipc_plist_pop()
1066 port = nl->port; in tipc_plist_pop()
1067 list_del(&nl->list); in tipc_plist_pop()
1068 kfree(nl); in tipc_plist_pop()