Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a5e27d18 authored by Wei Yongjun's avatar Wei Yongjun Committed by David S. Miller
Browse files

sctp: fix error return code in sctp_init()



Fix to return a negative error code from the error handling
case instead of 0, as done elsewhere in this function.

Signed-off-by: default avatarWei Yongjun <yongjun_wei@trendmicro.com.cn>
Acked-by: default avatarXin Long <lucien.xin@gmail.com>
Acked-by: default avatarNeil Horman <nhorman@tuxdriver.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d4c76c1a
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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,