diff options
author | Taehee Yoo <ap420073@gmail.com> | 2020-02-28 18:01:35 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-02-29 21:37:03 -0800 |
commit | 13eeb5fea68e11765020b846ef692809c5fe04aa (patch) | |
tree | 23cf09b1738b8bbad3407c6736a12dae75f43606 /net/hsr/hsr_device.h | |
parent | f3f2f98470b7b8ead7c364c103303c3cac8c2ff0 (diff) | |
download | linux-13eeb5fea68e11765020b846ef692809c5fe04aa.tar.gz linux-13eeb5fea68e11765020b846ef692809c5fe04aa.tar.bz2 linux-13eeb5fea68e11765020b846ef692809c5fe04aa.zip |
hsr: use extack error message instead of netdev_info
If HSR uses the extack instead of netdev_info(), users can get
error messages immediately without any checking the kernel message.
Signed-off-by: Taehee Yoo <ap420073@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/hsr/hsr_device.h')
-rw-r--r-- | net/hsr/hsr_device.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/hsr/hsr_device.h b/net/hsr/hsr_device.h index 6d7759c4f5f9..a099d7de7e79 100644 --- a/net/hsr/hsr_device.h +++ b/net/hsr/hsr_device.h @@ -13,7 +13,8 @@ void hsr_dev_setup(struct net_device *dev); int hsr_dev_finalize(struct net_device *hsr_dev, struct net_device *slave[2], - unsigned char multicast_spec, u8 protocol_version); + unsigned char multicast_spec, u8 protocol_version, + struct netlink_ext_ack *extack); void hsr_check_carrier_and_operstate(struct hsr_priv *hsr); bool is_hsr_master(struct net_device *dev); int hsr_get_max_mtu(struct hsr_priv *hsr); |