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:
d4c76c1
)
sctp: fix error return code in sctp_init()
author
Wei Yongjun
<
[email protected]
>
Mon, 13 Jun 2016 15:08:26 +0000
(23:08 +0800)
committer
David S. Miller
<
[email protected]
>
Wed, 15 Jun 2016 06:45:42 +0000
(23:45 -0700)
Fix to return a negative error code from the error handling
case instead of 0, as done elsewhere in this function.
Signed-off-by: Wei Yongjun <
[email protected]
>
Acked-by: Xin Long <
[email protected]
>
Acked-by: Neil Horman <
[email protected]
>
Signed-off-by: David S. Miller <
[email protected]
>
net/sctp/protocol.c
patch
|
blob
|
history
diff --git
a/net/sctp/protocol.c
b/net/sctp/protocol.c
index 40022ee885d7e8d9fbce3c7d9df43f57f0bcfa0e..3b56ae55aba36ec6e57bc2deb31fae507c5e4b54 100644
(file)
--- a/
net/sctp/protocol.c
+++ b/
net/sctp/protocol.c
@@
-1479,7
+1479,8
@@
static __init int sctp_init(void)
INIT_HLIST_HEAD(&sctp_port_hashtable[i].chain);
}
- if (sctp_transport_hashtable_init())
+ status = sctp_transport_hashtable_init();
+ if (status)
goto err_thash_alloc;
pr_info("Hash tables configured (bind %d/%d)\n", sctp_port_hashsize,