Skip to content

Commit

Permalink
sctp: fix error return code in sctp_init()
Browse files Browse the repository at this point in the history
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 <yongjun_wei@trendmicro.com.cn>
Acked-by: Xin Long <lucien.xin@gmail.com>
Acked-by: Neil Horman <nhorman@tuxdriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Wei Yongjun authored and davem330 committed Jun 15, 2016
1 parent d4c76c1 commit a5e27d1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion net/sctp/protocol.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit a5e27d1

Please sign in to comment.