diff options
Diffstat (limited to 'net/sched/cls_flow.c')
-rw-r--r-- | net/sched/cls_flow.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sched/cls_flow.c b/net/sched/cls_flow.c index ce82d0cb1b47..aa36a8c8b33b 100644 --- a/net/sched/cls_flow.c +++ b/net/sched/cls_flow.c | |||
@@ -351,7 +351,7 @@ static const struct nla_policy flow_policy[TCA_FLOW_MAX + 1] = { | |||
351 | [TCA_FLOW_PERTURB] = { .type = NLA_U32 }, | 351 | [TCA_FLOW_PERTURB] = { .type = NLA_U32 }, |
352 | }; | 352 | }; |
353 | 353 | ||
354 | static int flow_change(struct sk_buff *in_skb, | 354 | static int flow_change(struct net *net, struct sk_buff *in_skb, |
355 | struct tcf_proto *tp, unsigned long base, | 355 | struct tcf_proto *tp, unsigned long base, |
356 | u32 handle, struct nlattr **tca, | 356 | u32 handle, struct nlattr **tca, |
357 | unsigned long *arg) | 357 | unsigned long *arg) |
@@ -397,7 +397,7 @@ static int flow_change(struct sk_buff *in_skb, | |||
397 | return -EOPNOTSUPP; | 397 | return -EOPNOTSUPP; |
398 | } | 398 | } |
399 | 399 | ||
400 | err = tcf_exts_validate(tp, tb, tca[TCA_RATE], &e, &flow_ext_map); | 400 | err = tcf_exts_validate(net, tp, tb, tca[TCA_RATE], &e, &flow_ext_map); |
401 | if (err < 0) | 401 | if (err < 0) |
402 | return err; | 402 | return err; |
403 | 403 | ||