Commit b473b0d2 authored by Jakub Kicinski's avatar Jakub Kicinski Committed by David S. Miller

devlink: create a special NDO for getting the devlink instance

Instead of iterating over all devlink ports add a NDO which
will return the devlink instance from the driver.

v2: add the netdev_to_devlink() helper (Michal)
v3: check that devlink has ops (Florian)
v4: hold devlink_mutex (Jiri)
Suggested-by: default avatarJiri Pirko <jiri@resnulli.us>
Signed-off-by: default avatarJakub Kicinski <jakub.kicinski@netronome.com>
Reviewed-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
Acked-by: default avatarJiri Pirko <jiri@mellanox.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f4b6bcc7
...@@ -941,6 +941,8 @@ struct dev_ifalias { ...@@ -941,6 +941,8 @@ struct dev_ifalias {
char ifalias[]; char ifalias[];
}; };
struct devlink;
/* /*
* This structure defines the management hooks for network devices. * This structure defines the management hooks for network devices.
* The following hooks can be defined; unless noted otherwise, they are * The following hooks can be defined; unless noted otherwise, they are
...@@ -1249,6 +1251,10 @@ struct dev_ifalias { ...@@ -1249,6 +1251,10 @@ struct dev_ifalias {
* that got dropped are freed/returned via xdp_return_frame(). * that got dropped are freed/returned via xdp_return_frame().
* Returns negative number, means general error invoking ndo, meaning * Returns negative number, means general error invoking ndo, meaning
* no frames were xmit'ed and core-caller will free all frames. * no frames were xmit'ed and core-caller will free all frames.
* struct devlink *(*ndo_get_devlink)(struct net_device *dev);
* Get devlink instance associated with a given netdev.
* Called with a reference on the netdevice and devlink locks only,
* rtnl_lock is not held.
*/ */
struct net_device_ops { struct net_device_ops {
int (*ndo_init)(struct net_device *dev); int (*ndo_init)(struct net_device *dev);
...@@ -1447,6 +1453,7 @@ struct net_device_ops { ...@@ -1447,6 +1453,7 @@ struct net_device_ops {
u32 flags); u32 flags);
int (*ndo_xsk_async_xmit)(struct net_device *dev, int (*ndo_xsk_async_xmit)(struct net_device *dev,
u32 queue_id); u32 queue_id);
struct devlink * (*ndo_get_devlink)(struct net_device *dev);
}; };
/** /**
......
...@@ -538,6 +538,15 @@ static inline struct devlink *priv_to_devlink(void *priv) ...@@ -538,6 +538,15 @@ static inline struct devlink *priv_to_devlink(void *priv)
return container_of(priv, struct devlink, priv); return container_of(priv, struct devlink, priv);
} }
static inline struct devlink *netdev_to_devlink(struct net_device *dev)
{
#if IS_ENABLED(CONFIG_NET_DEVLINK)
if (dev->netdev_ops->ndo_get_devlink)
return dev->netdev_ops->ndo_get_devlink(dev);
#endif
return NULL;
}
struct ib_device; struct ib_device;
#if IS_ENABLED(CONFIG_NET_DEVLINK) #if IS_ENABLED(CONFIG_NET_DEVLINK)
......
...@@ -6397,9 +6397,6 @@ static void __devlink_compat_running_version(struct devlink *devlink, ...@@ -6397,9 +6397,6 @@ static void __devlink_compat_running_version(struct devlink *devlink,
struct sk_buff *msg; struct sk_buff *msg;
int rem, err; int rem, err;
if (!devlink->ops->info_get)
return;
msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
if (!msg) if (!msg)
return; return;
...@@ -6431,55 +6428,36 @@ static void __devlink_compat_running_version(struct devlink *devlink, ...@@ -6431,55 +6428,36 @@ static void __devlink_compat_running_version(struct devlink *devlink,
void devlink_compat_running_version(struct net_device *dev, void devlink_compat_running_version(struct net_device *dev,
char *buf, size_t len) char *buf, size_t len)
{ {
struct devlink_port *devlink_port;
struct devlink *devlink; struct devlink *devlink;
mutex_lock(&devlink_mutex); mutex_lock(&devlink_mutex);
list_for_each_entry(devlink, &devlink_list, list) { devlink = netdev_to_devlink(dev);
mutex_lock(&devlink->lock); if (!devlink || !devlink->ops || !devlink->ops->info_get)
list_for_each_entry(devlink_port, &devlink->port_list, list) { goto unlock_list;
if (devlink_port->type == DEVLINK_PORT_TYPE_ETH &&
devlink_port->type_dev == dev) { mutex_lock(&devlink->lock);
__devlink_compat_running_version(devlink, __devlink_compat_running_version(devlink, buf, len);
buf, len); mutex_unlock(&devlink->lock);
mutex_unlock(&devlink->lock); unlock_list:
goto out;
}
}
mutex_unlock(&devlink->lock);
}
out:
mutex_unlock(&devlink_mutex); mutex_unlock(&devlink_mutex);
} }
int devlink_compat_flash_update(struct net_device *dev, const char *file_name) int devlink_compat_flash_update(struct net_device *dev, const char *file_name)
{ {
struct devlink_port *devlink_port;
struct devlink *devlink; struct devlink *devlink;
int ret = -EOPNOTSUPP;
mutex_lock(&devlink_mutex); mutex_lock(&devlink_mutex);
list_for_each_entry(devlink, &devlink_list, list) { devlink = netdev_to_devlink(dev);
mutex_lock(&devlink->lock); if (!devlink || !devlink->ops || !devlink->ops->flash_update)
list_for_each_entry(devlink_port, &devlink->port_list, list) { goto unlock_list;
int ret = -EOPNOTSUPP;
if (devlink_port->type != DEVLINK_PORT_TYPE_ETH ||
devlink_port->type_dev != dev)
continue;
mutex_unlock(&devlink_mutex); mutex_lock(&devlink->lock);
if (devlink->ops->flash_update) ret = devlink->ops->flash_update(devlink, file_name, NULL, NULL);
ret = devlink->ops->flash_update(devlink, mutex_unlock(&devlink->lock);
file_name, unlock_list:
NULL, NULL);
mutex_unlock(&devlink->lock);
return ret;
}
mutex_unlock(&devlink->lock);
}
mutex_unlock(&devlink_mutex); mutex_unlock(&devlink_mutex);
return ret;
return -EOPNOTSUPP;
} }
static int __init devlink_init(void) static int __init devlink_init(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment