diff options
author | Alexander Aring <aring@mojatatu.com> | 2017-12-20 12:35:16 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-12-21 12:32:50 -0500 |
commit | cbaacc4e8a394d63bcd707775ca5bb7a51aaabee (patch) | |
tree | 72ca1d66f5b6afd0618436ce186762400c7a1361 /include/net/sch_generic.h | |
parent | 793d81d6a1965f1e1806ebc9aacc84a639b90282 (diff) | |
download | talos-op-linux-cbaacc4e8a394d63bcd707775ca5bb7a51aaabee.tar.gz talos-op-linux-cbaacc4e8a394d63bcd707775ca5bb7a51aaabee.zip |
net: sched: sch: add extack for block callback
This patch adds extack support for block callback 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 'include/net/sch_generic.h')
-rw-r--r-- | include/net/sch_generic.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/net/sch_generic.h b/include/net/sch_generic.h index b4660a3ea99c..f65dd2837142 100644 --- a/include/net/sch_generic.h +++ b/include/net/sch_generic.h @@ -165,7 +165,8 @@ struct Qdisc_class_ops { /* Filter manipulation */ struct tcf_block * (*tcf_block)(struct Qdisc *sch, - unsigned long arg); + unsigned long arg, + struct netlink_ext_ack *extack); unsigned long (*bind_tcf)(struct Qdisc *, unsigned long, u32 classid); void (*unbind_tcf)(struct Qdisc *, unsigned long); |