diff options
Diffstat (limited to 'kernel/net/sched/act_ipt.c')
-rw-r--r-- | kernel/net/sched/act_ipt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/net/sched/act_ipt.c b/kernel/net/sched/act_ipt.c index cbc8dd7dd..d05869646 100644 --- a/kernel/net/sched/act_ipt.c +++ b/kernel/net/sched/act_ipt.c @@ -114,7 +114,7 @@ static int tcf_ipt_init(struct net *net, struct nlattr *nla, struct nlattr *est, index = nla_get_u32(tb[TCA_IPT_INDEX]); if (!tcf_hash_check(index, a, bind) ) { - ret = tcf_hash_create(index, est, a, sizeof(*ipt), bind); + ret = tcf_hash_create(index, est, a, sizeof(*ipt), bind, false); if (ret) return ret; ret = ACT_P_CREATED; @@ -189,6 +189,7 @@ static int tcf_ipt(struct sk_buff *skb, const struct tc_action *a, * worry later - danger - this API seems to have changed * from earlier kernels */ + par.net = dev_net(skb->dev); par.in = skb->dev; par.out = NULL; par.hooknum = ipt->tcfi_hook; |