projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e83b171
)
net: core: rtnetlink: use BUG_ON instead of if condition followed by BUG
author
Gustavo A. R. Silva
<garsilva@embeddedor.com>
Sat, 21 Oct 2017 00:43:11 +0000
(19:43 -0500)
committer
David S. Miller
<davem@davemloft.net>
Mon, 23 Oct 2017 04:31:45 +0000
(
05:31
+0100)
Use BUG_ON instead of if condition followed by BUG in do_setlink.
This issue was detected with the help of Coccinelle.
Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/rtnetlink.c
patch
|
blob
|
history
diff --git
a/net/core/rtnetlink.c
b/net/core/rtnetlink.c
index 04680a53c8dd48d6a84ec2dc78f68b73e5a9bf13..df8dba998c489133c4d6ec0cfaa256f869854c87 100644
(file)
--- a/
net/core/rtnetlink.c
+++ b/
net/core/rtnetlink.c
@@
-2274,8
+2274,7
@@
static int do_setlink(const struct sk_buff *skb,
rcu_read_lock();
- if (!(af_ops = rtnl_af_lookup(nla_type(af))))
- BUG();
+ BUG_ON(!(af_ops = rtnl_af_lookup(nla_type(af))));
err = af_ops->set_link_af(dev, af);
if (err < 0) {