projects
/
linux-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aab53e6
)
ieee802154: fix error return code in ieee802154_add_iface()
author
Zhen Lei
<thunder.leizhen@huawei.com>
Sat, 8 May 2021 06:25:17 +0000
(14:25 +0800)
committer
Stefan Schmidt
<stefan@datenfreihafen.org>
Thu, 3 Jun 2021 08:50:08 +0000
(10:50 +0200)
Fix to return a negative error code from the error handling
case instead of 0, as done elsewhere in this function.
Fixes:
be51da0f3e34
("ieee802154: Stop using NLA_PUT*().")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>
Link:
https://lore.kernel.org/r/20210508062517.2574-1-thunder.leizhen@huawei.com
Signed-off-by: Stefan Schmidt <stefan@datenfreihafen.org>
net/ieee802154/nl-phy.c
patch
|
blob
|
blame
|
history
diff --git
a/net/ieee802154/nl-phy.c
b/net/ieee802154/nl-phy.c
index 2cdc7e63fe172b4598c1848606e9cdbba54ed018..88215b5c93aa429bc9421745de9fcfb09843aa18 100644
(file)
--- a/
net/ieee802154/nl-phy.c
+++ b/
net/ieee802154/nl-phy.c
@@
-241,8
+241,10
@@
int ieee802154_add_iface(struct sk_buff *skb, struct genl_info *info)
}
if (nla_put_string(msg, IEEE802154_ATTR_PHY_NAME, wpan_phy_name(phy)) ||
- nla_put_string(msg, IEEE802154_ATTR_DEV_NAME, dev->name))
+ nla_put_string(msg, IEEE802154_ATTR_DEV_NAME, dev->name)) {
+ rc = -EMSGSIZE;
goto nla_put_failure;
+ }
dev_put(dev);
wpan_phy_put(phy);