diff options
author | Alexander Aring <aring@mojatatu.com> | 2017-12-20 20:35:14 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-12-21 20:32:50 +0300 |
commit | 2030721cc0c39ff19df94a0df77b0401fdb71c1a (patch) | |
tree | 71296aea1a3deb5a4f0cf1bdfb84a7a38c6132ad /net/sched/sch_gred.c | |
parent | e63d7dfd2df7aa204849599c6f378e627e926657 (diff) | |
download | linux-2030721cc0c39ff19df94a0df77b0401fdb71c1a.tar.xz |
net: sched: sch: add extack for change qdisc ops
This patch adds extack support for change callback for qdisc ops
structtur to prepare per-qdisc specific changes for extack.
Cc: David Ahern <dsahern@gmail.com>
Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>
Signed-off-by: Alexander Aring <aring@mojatatu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/sch_gred.c')
-rw-r--r-- | net/sched/sch_gred.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/sched/sch_gred.c b/net/sched/sch_gred.c index 4cab6ccad643..cbe4831f46f4 100644 --- a/net/sched/sch_gred.c +++ b/net/sched/sch_gred.c @@ -392,7 +392,8 @@ static const struct nla_policy gred_policy[TCA_GRED_MAX + 1] = { [TCA_GRED_LIMIT] = { .type = NLA_U32 }, }; -static int gred_change(struct Qdisc *sch, struct nlattr *opt) +static int gred_change(struct Qdisc *sch, struct nlattr *opt, + struct netlink_ext_ack *extack) { struct gred_sched *table = qdisc_priv(sch); struct tc_gred_qopt *ctl; |