Lines Matching refs:nl
1026 struct tipc_plist *nl; in tipc_plist_push() local
1034 list_for_each_entry(nl, &pl->list, list) { in tipc_plist_push()
1035 if (nl->port == port) in tipc_plist_push()
1038 nl = kmalloc(sizeof(*nl), GFP_ATOMIC); in tipc_plist_push()
1039 if (nl) { in tipc_plist_push()
1040 nl->port = port; in tipc_plist_push()
1041 list_add(&nl->list, &pl->list); in tipc_plist_push()
1047 struct tipc_plist *nl; in tipc_plist_pop() local
1055 nl = list_first_entry(&pl->list, typeof(*nl), list); in tipc_plist_pop()
1056 port = nl->port; in tipc_plist_pop()
1057 list_del(&nl->list); in tipc_plist_pop()
1058 kfree(nl); in tipc_plist_pop()