Home
last modified time | relevance | path

Searched refs:ipt (Results 1 – 3 of 3) sorted by relevance

/linux-2.6.39/net/sched/
Dact_ipt.c80 static int tcf_ipt_release(struct tcf_ipt *ipt, int bind) in tcf_ipt_release() argument
83 if (ipt) { in tcf_ipt_release()
85 ipt->tcf_bindcnt--; in tcf_ipt_release()
86 ipt->tcf_refcnt--; in tcf_ipt_release()
87 if (ipt->tcf_bindcnt <= 0 && ipt->tcf_refcnt <= 0) { in tcf_ipt_release()
88 ipt_destroy_target(ipt->tcfi_t); in tcf_ipt_release()
89 kfree(ipt->tcfi_tname); in tcf_ipt_release()
90 kfree(ipt->tcfi_t); in tcf_ipt_release()
91 tcf_hash_destroy(&ipt->common, &ipt_hash_info); in tcf_ipt_release()
109 struct tcf_ipt *ipt; in tcf_ipt_init() local
[all …]
/linux-2.6.39/drivers/isdn/i4l/
Disdn_ppp.c1220 struct ippp_struct *ipt,*ipts; in isdn_ppp_xmit() local
1271 ipt = ippp_table[slot]; in isdn_ppp_xmit()
1295 if (ipt->pass_filter in isdn_ppp_xmit()
1296 && sk_run_filter(skb, ipt->pass_filter) == 0) { in isdn_ppp_xmit()
1297 if (ipt->debug & 0x4) in isdn_ppp_xmit()
1302 if (!(ipt->active_filter in isdn_ppp_xmit()
1303 && sk_run_filter(skb, ipt->active_filter) == 0)) { in isdn_ppp_xmit()
1304 if (ipt->debug & 0x4) in isdn_ppp_xmit()
1313 if (ipt->debug & 0x4) in isdn_ppp_xmit()
1376 skb = isdn_ppp_compress(skb,&proto,ipt,ipts,0); in isdn_ppp_xmit()
[all …]
/linux-2.6.39/net/ipv4/netfilter/
Dip_tables.c67 return xt_alloc_initial_table(ipt, IPT); in ipt_alloc_initial_table()