mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-17 01:34:00 +08:00
net: switchdev: fix return code of fdb_dump stub
rtnl_fdb_dump always expects an index to be returned by the ndo_fdb_dump op, but when CONFIG_NET_SWITCHDEV is off, it returns an error. Fix that by returning the given unmodified idx. A similar fix was0890cf6cb6
("switchdev: fix return value of switchdev_port_fdb_dump in case of error") but for the CONFIG_NET_SWITCHDEV=y case. Fixes:45d4122ca7
("switchdev: add support for fdb add/del/dump via switchdev_port_obj ops.") Signed-off-by: Dragos Tatulea <dragos@endocode.com> Acked-by: Jiri Pirko <jiri@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
ab6d7846cf
commit
24cb7055a3
@ -323,7 +323,7 @@ static inline int switchdev_port_fdb_dump(struct sk_buff *skb,
|
||||
struct net_device *filter_dev,
|
||||
int idx)
|
||||
{
|
||||
return -EOPNOTSUPP;
|
||||
return idx;
|
||||
}
|
||||
|
||||
static inline void switchdev_port_fwd_mark_set(struct net_device *dev,
|
||||
|
Loading…
Reference in New Issue
Block a user