mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 05:44:45 +01:00
net-sysfs: remove unused initial ret values
In some net-sysfs functions the ret value is initialized but never used as it is always overridden. Remove those. Signed-off-by: Antoine Tenart <atenart@kernel.org> Reviewed-by: Mateusz Polchlopek <mateusz.polchlopek@intel.com> Link: https://patch.msgid.link/20250226174644.311136-1-atenart@kernel.org Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
5a41a00cd5
commit
38d41cf575
1 changed files with 5 additions and 5 deletions
|
|
@ -568,7 +568,7 @@ static ssize_t ifalias_store(struct device *dev, struct device_attribute *attr,
|
|||
struct net_device *netdev = to_net_dev(dev);
|
||||
struct net *net = dev_net(netdev);
|
||||
size_t count = len;
|
||||
ssize_t ret = 0;
|
||||
ssize_t ret;
|
||||
|
||||
if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
|
||||
return -EPERM;
|
||||
|
|
@ -597,7 +597,7 @@ static ssize_t ifalias_show(struct device *dev,
|
|||
{
|
||||
const struct net_device *netdev = to_net_dev(dev);
|
||||
char tmp[IFALIASZ];
|
||||
ssize_t ret = 0;
|
||||
ssize_t ret;
|
||||
|
||||
ret = dev_get_alias(netdev, tmp, sizeof(tmp));
|
||||
if (ret > 0)
|
||||
|
|
@ -638,7 +638,7 @@ static ssize_t phys_port_id_show(struct device *dev,
|
|||
{
|
||||
struct net_device *netdev = to_net_dev(dev);
|
||||
struct netdev_phys_item_id ppid;
|
||||
ssize_t ret = -EINVAL;
|
||||
ssize_t ret;
|
||||
|
||||
/* The check is also done in dev_get_phys_port_id; this helps returning
|
||||
* early without hitting the locking section below.
|
||||
|
|
@ -664,8 +664,8 @@ static ssize_t phys_port_name_show(struct device *dev,
|
|||
struct device_attribute *attr, char *buf)
|
||||
{
|
||||
struct net_device *netdev = to_net_dev(dev);
|
||||
ssize_t ret = -EINVAL;
|
||||
char name[IFNAMSIZ];
|
||||
ssize_t ret;
|
||||
|
||||
/* The checks are also done in dev_get_phys_port_name; this helps
|
||||
* returning early without hitting the locking section below.
|
||||
|
|
@ -693,7 +693,7 @@ static ssize_t phys_switch_id_show(struct device *dev,
|
|||
{
|
||||
struct net_device *netdev = to_net_dev(dev);
|
||||
struct netdev_phys_item_id ppid = { };
|
||||
ssize_t ret = -EINVAL;
|
||||
ssize_t ret;
|
||||
|
||||
/* The checks are also done in dev_get_phys_port_name; this helps
|
||||
* returning early without hitting the locking section below. This works
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue