mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-15 17:43:59 +00:00
net: bridge: set error code on failure
Function br_sysfs_addbr() does not set error code when the call kobject_create_and_add() returns a NULL pointer. It may be better to return "-ENOMEM" when kobject_create_and_add() fails. Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=188781 Signed-off-by: Pan Bian <bianpan2016@163.com> Acked-by: Stephen Hemminger <stephen@networkplumber.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
14dd3e1b97
commit
b59589635f
@ -898,6 +898,7 @@ int br_sysfs_addbr(struct net_device *dev)
|
|||||||
if (!br->ifobj) {
|
if (!br->ifobj) {
|
||||||
pr_info("%s: can't add kobject (directory) %s/%s\n",
|
pr_info("%s: can't add kobject (directory) %s/%s\n",
|
||||||
__func__, dev->name, SYSFS_BRIDGE_PORT_SUBDIR);
|
__func__, dev->name, SYSFS_BRIDGE_PORT_SUBDIR);
|
||||||
|
err = -ENOMEM;
|
||||||
goto out3;
|
goto out3;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user