diff options
Diffstat (limited to 'net/sched/act_skbedit.c')
-rw-r--r-- | net/sched/act_skbedit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/sched/act_skbedit.c b/net/sched/act_skbedit.c index fcfeeaf838be..6751b5f8c046 100644 --- a/net/sched/act_skbedit.c +++ b/net/sched/act_skbedit.c | |||
@@ -99,7 +99,8 @@ static int tcf_skbedit_init(struct net *net, struct nlattr *nla, | |||
99 | parm = nla_data(tb[TCA_SKBEDIT_PARMS]); | 99 | parm = nla_data(tb[TCA_SKBEDIT_PARMS]); |
100 | 100 | ||
101 | if (!tcf_hash_check(parm->index, a, bind)) { | 101 | if (!tcf_hash_check(parm->index, a, bind)) { |
102 | ret = tcf_hash_create(parm->index, est, a, sizeof(*d), bind); | 102 | ret = tcf_hash_create(parm->index, est, a, sizeof(*d), |
103 | bind, false); | ||
103 | if (ret) | 104 | if (ret) |
104 | return ret; | 105 | return ret; |
105 | 106 | ||