Lines Matching refs:pprev
1895 struct tcf_proto __rcu **pprev; member
1902 return tcf_chain_dereference(*chain_info->pprev, chain); in tcf_chain_tp_prev()
1913 if (*chain_info->pprev == chain->filter_chain) in tcf_chain_tp_insert()
1916 rcu_assign_pointer(*chain_info->pprev, tp); in tcf_chain_tp_insert()
1930 RCU_INIT_POINTER(*chain_info->pprev, next); in tcf_chain_tp_remove()
1983 struct tcf_proto **pprev; in tcf_chain_tp_delete_empty() local
1989 for (pprev = &chain->filter_chain; in tcf_chain_tp_delete_empty()
1990 (tp_iter = tcf_chain_dereference(*pprev, chain)); in tcf_chain_tp_delete_empty()
1991 pprev = &tp_iter->next) { in tcf_chain_tp_delete_empty()
1993 chain_info.pprev = pprev; in tcf_chain_tp_delete_empty()
2012 RCU_INIT_POINTER(*chain_info.pprev, next); in tcf_chain_tp_delete_empty()
2023 struct tcf_proto **pprev; in tcf_chain_tp_find() local
2027 for (pprev = &chain->filter_chain; in tcf_chain_tp_find()
2028 (tp = tcf_chain_dereference(*pprev, chain)); in tcf_chain_tp_find()
2029 pprev = &tp->next) { in tcf_chain_tp_find()
2041 chain_info->pprev = pprev; in tcf_chain_tp_find()