diff options
author | John Hurley <john.hurley@netronome.com> | 2018-06-25 14:30:04 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-06-26 23:21:32 +0900 |
commit | 60513bd82c825b659c05957e4f8106ba06f0797f (patch) | |
tree | 6becae806169fab15129ce2776b4071e875cd397 /net/dsa | |
parent | 572de270f0a38c6d6f329d494d3bf624e05f933b (diff) | |
download | blackbird-op-linux-60513bd82c825b659c05957e4f8106ba06f0797f.tar.gz blackbird-op-linux-60513bd82c825b659c05957e4f8106ba06f0797f.zip |
net: sched: pass extack pointer to block binds and cb registration
Pass the extact struct from a tc qdisc add to the block bind function and,
in turn, to the setup_tc ndo of binding device via the tc_block_offload
struct. Pass this back to any block callback registrations to allow
netlink logging of fails in the bind process.
Signed-off-by: John Hurley <john.hurley@netronome.com>
Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com>
Acked-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dsa')
-rw-r--r-- | net/dsa/slave.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dsa/slave.c b/net/dsa/slave.c index 1e3b6a6d8a40..71536c435132 100644 --- a/net/dsa/slave.c +++ b/net/dsa/slave.c @@ -900,7 +900,7 @@ static int dsa_slave_setup_tc_block(struct net_device *dev, switch (f->command) { case TC_BLOCK_BIND: - return tcf_block_cb_register(f->block, cb, dev, dev); + return tcf_block_cb_register(f->block, cb, dev, dev, f->extack); case TC_BLOCK_UNBIND: tcf_block_cb_unregister(f->block, cb, dev); return 0; |