diff options
| author | David S. Miller <[email protected]> | 2018-02-16 21:03:39 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2018-02-16 21:03:39 +0000 |
| commit | ee99b2d8bf4ad6d03046a8c2f25bad7cfd9de64a (patch) | |
| tree | 63f71ac24b38a93233eec17193fd7f0e63419e20 /net/sched/cls_api.c | |
| parent | Merge branch 'net-sched-act-add-extack-support' (diff) | |
| download | kernel-ee99b2d8bf4ad6d03046a8c2f25bad7cfd9de64a.tar.gz kernel-ee99b2d8bf4ad6d03046a8c2f25bad7cfd9de64a.zip | |
net: Revert sched action extack support series.
It was mis-applied and the changes had rejects.
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/sched/cls_api.c')
| -rw-r--r-- | net/sched/cls_api.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sched/cls_api.c b/net/sched/cls_api.c index f21610c5da1a..2bc1bc23d42e 100644 --- a/net/sched/cls_api.c +++ b/net/sched/cls_api.c @@ -1434,7 +1434,7 @@ int tcf_exts_validate(struct net *net, struct tcf_proto *tp, struct nlattr **tb, if (exts->police && tb[exts->police]) { act = tcf_action_init_1(net, tp, tb[exts->police], rate_tlv, "police", ovr, - TCA_ACT_BIND, extack); + TCA_ACT_BIND); if (IS_ERR(act)) return PTR_ERR(act); @@ -1447,7 +1447,7 @@ int tcf_exts_validate(struct net *net, struct tcf_proto *tp, struct nlattr **tb, err = tcf_action_init(net, tp, tb[exts->action], rate_tlv, NULL, ovr, TCA_ACT_BIND, - &actions, extack); + &actions); if (err) return err; list_for_each_entry(act, &actions, list) |
