Searched refs:pprev (Results 26 - 46 of 46) sorted by relevance

12

/linux-master/lib/
H A Dlist-test.c897 KUNIT_EXPECT_PTR_EQ(test, b.pprev, &list.first);
913 KUNIT_EXPECT_PTR_EQ(test, b.pprev, &list.first);
917 KUNIT_EXPECT_PTR_EQ(test, a.pprev, NULL);
934 KUNIT_EXPECT_PTR_EQ(test, c.pprev, &(b.next));
937 KUNIT_EXPECT_PTR_EQ(test, a.pprev, &(c.next));
940 KUNIT_EXPECT_PTR_EQ(test, d.pprev, &(a.next));
/linux-master/net/sched/
H A Dcls_api.c1858 struct tcf_proto __rcu **pprev; member in struct:tcf_chain_info
1865 return tcf_chain_dereference(*chain_info->pprev, chain);
1876 if (*chain_info->pprev == chain->filter_chain)
1879 rcu_assign_pointer(*chain_info->pprev, tp);
1893 RCU_INIT_POINTER(*chain_info->pprev, next);
1946 struct tcf_proto **pprev; local
1952 for (pprev = &chain->filter_chain;
1953 (tp_iter = tcf_chain_dereference(*pprev, chain));
1954 pprev = &tp_iter->next) {
1956 chain_info.pprev
1986 struct tcf_proto **pprev; local
[all...]
/linux-master/tools/testing/selftests/bpf/progs/
H A Dbpf_iter_tcp6.c12 return !(h->pprev);
H A Dbpf_iter_tcp4.c12 return !(h->pprev);
/linux-master/drivers/net/ethernet/chelsio/inline_crypto/chtls/
H A Dchtls_cm.c515 struct request_sock **pprev; local
517 pprev = ACCEPT_QUEUE(listen_sk);
518 while (*pprev) {
519 struct request_sock *req = *pprev;
525 *pprev = req->dl_next;
537 pprev = &req->dl_next;
/linux-master/kernel/time/
H A Dtimer.c735 return (timer->entry.pprev == NULL &&
900 timer->entry.pprev = NULL;
937 entry->pprev = NULL;
/linux-master/drivers/net/ethernet/marvell/octeontx2/af/
H A Drvu_npc_hash.c790 struct list_head *lhead, *pprev; local
848 pprev = lhead;
855 pprev = &iter->list;
859 list_add(&entry->list, pprev);
/linux-master/net/rxrpc/
H A Dlocal_object.c302 cursor->pprev = NULL;
/linux-master/fs/afs/
H A Dcell.c692 cell->proc_link.pprev = p;
696 cell->proc_link.next->pprev = &cell->proc_link.next;
/linux-master/drivers/of/
H A Dunittest.c3622 struct device_node **pprev; local
3649 pprev = &overlay_base_root->child;
3652 *pprev = np->sibling;
3655 pprev = &np->sibling;
3662 pprev = &overlay_base_root->child;
3666 *pprev = np->sibling;
3669 pprev = &np->sibling;
/linux-master/net/ipv4/
H A Dfib_trie.c1655 struct hlist_node **pprev = old->fa_list.pprev; local
1656 struct fib_alias *fa = hlist_entry(pprev, typeof(*fa), fa_list.next);
1674 if (*pprev)
/linux-master/net/netfilter/
H A Dnf_conntrack_core.c1180 hash = *(unsigned long *)&ct->tuplehash[IP_CT_DIR_REPLY].hnnode.pprev;
1639 ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode.pprev = NULL;
1642 *(unsigned long *)(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode.pprev) = hash;
/linux-master/include/net/
H A Dsock.h747 node->pprev = NULL;
1193 memset(&sk->sk_node.pprev, 0,
1194 size - offsetof(struct sock, sk_node.pprev));
/linux-master/fs/
H A Ddcache.c509 dentry->d_hash.pprev = NULL;
531 * (dentry->d_hash.pprev will be LIST_POISON2, not NULL).
2814 target->d_hash.pprev = NULL;
/linux-master/include/linux/
H A Dmm.h2575 struct vm_area_struct *vma, struct vm_area_struct **pprev,
3461 struct vm_area_struct **pprev);
/linux-master/net/mptcp/
H A Dprotocol.h901 mptcp_subflow_rsk(req)->token_node.pprev = NULL;
/linux-master/mm/
H A Dmmap.c1899 * set %pprev to the previous VMA, if any.
1902 * @pprev: The pointer to set to the previous VMA
1912 struct vm_area_struct **pprev)
1918 *pprev = mas_prev(&mas, 0);
1911 find_vma_prev(struct mm_struct *mm, unsigned long addr, struct vm_area_struct **pprev) argument
/linux-master/kernel/bpf/
H A Dhashtab.c428 offsetof(struct htab_elem, hash_node.pprev));
H A Dverifier.c17166 struct bpf_verifier_state_list *sl, **pprev; local
17185 pprev = explored_state(env, insn_idx);
17186 sl = *pprev;
17396 *pprev = sl->next;
17415 sl = *pprev;
17419 pprev = &sl->next;
17420 sl = *pprev;
/linux-master/kernel/
H A Dworkqueue.c1047 (worker->hentry.next || worker->hentry.pprev)))
/linux-master/drivers/net/ethernet/hisilicon/hns3/hns3pf/
H A Dhclge_main.c5149 new_rule->rule_node.pprev = old_rule->rule_node.pprev;

Completed in 478 milliseconds

12