mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 14:42:24 +00:00
devlink: Prevent port_type_set() callback when it's not needed
When a port_type_set() is been called and the new port type set is the same as the old one, just return success. Signed-off-by: Elad Raz <eladr@mellanox.com> Signed-off-by: Jiri Pirko <jiri@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
89ab88b01b
commit
6edf10173a
@ -608,6 +608,8 @@ static int devlink_port_type_set(struct devlink *devlink,
|
||||
if (devlink->ops && devlink->ops->port_type_set) {
|
||||
if (port_type == DEVLINK_PORT_TYPE_NOTSET)
|
||||
return -EINVAL;
|
||||
if (port_type == devlink_port->type)
|
||||
return 0;
|
||||
err = devlink->ops->port_type_set(devlink_port, port_type);
|
||||
if (err)
|
||||
return err;
|
||||
|
Loading…
Reference in New Issue
Block a user