Lines Matching refs:pprev
1808 struct tcf_proto __rcu **pprev; member
1815 return tcf_chain_dereference(*chain_info->pprev, chain); in tcf_chain_tp_prev()
1826 if (*chain_info->pprev == chain->filter_chain) in tcf_chain_tp_insert()
1829 rcu_assign_pointer(*chain_info->pprev, tp); in tcf_chain_tp_insert()
1843 RCU_INIT_POINTER(*chain_info->pprev, next); in tcf_chain_tp_remove()
1896 struct tcf_proto **pprev; in tcf_chain_tp_delete_empty() local
1902 for (pprev = &chain->filter_chain; in tcf_chain_tp_delete_empty()
1903 (tp_iter = tcf_chain_dereference(*pprev, chain)); in tcf_chain_tp_delete_empty()
1904 pprev = &tp_iter->next) { in tcf_chain_tp_delete_empty()
1906 chain_info.pprev = pprev; in tcf_chain_tp_delete_empty()
1925 RCU_INIT_POINTER(*chain_info.pprev, next); in tcf_chain_tp_delete_empty()
1936 struct tcf_proto **pprev; in tcf_chain_tp_find() local
1940 for (pprev = &chain->filter_chain; in tcf_chain_tp_find()
1941 (tp = tcf_chain_dereference(*pprev, chain)); in tcf_chain_tp_find()
1942 pprev = &tp->next) { in tcf_chain_tp_find()
1954 chain_info->pprev = pprev; in tcf_chain_tp_find()