Lines Matching refs:pprev
1634 struct tcf_proto __rcu **pprev; member
1641 return tcf_chain_dereference(*chain_info->pprev, chain); in tcf_chain_tp_prev()
1651 if (*chain_info->pprev == chain->filter_chain) in tcf_chain_tp_insert()
1655 rcu_assign_pointer(*chain_info->pprev, tp); in tcf_chain_tp_insert()
1669 RCU_INIT_POINTER(*chain_info->pprev, next); in tcf_chain_tp_remove()
1722 struct tcf_proto **pprev; in tcf_chain_tp_delete_empty() local
1728 for (pprev = &chain->filter_chain; in tcf_chain_tp_delete_empty()
1729 (tp_iter = tcf_chain_dereference(*pprev, chain)); in tcf_chain_tp_delete_empty()
1730 pprev = &tp_iter->next) { in tcf_chain_tp_delete_empty()
1732 chain_info.pprev = pprev; in tcf_chain_tp_delete_empty()
1751 RCU_INIT_POINTER(*chain_info.pprev, next); in tcf_chain_tp_delete_empty()
1762 struct tcf_proto **pprev; in tcf_chain_tp_find() local
1766 for (pprev = &chain->filter_chain; in tcf_chain_tp_find()
1767 (tp = tcf_chain_dereference(*pprev, chain)); in tcf_chain_tp_find()
1768 pprev = &tp->next) { in tcf_chain_tp_find()
1780 chain_info->pprev = pprev; in tcf_chain_tp_find()