mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
net: sctp: remove cast for kmalloc/kzalloc return value
remove cast for kmalloc/kzalloc return value. Signed-off-by: Zhang Yanfei <zhangyanfei@cn.fujitsu.com> Acked-by: Neil Horman <nhorman@tuxdriver.com> Cc: Vlad Yasevich <vyasevich@gmail.com> Cc: Sridhar Samudrala <sri@us.ibm.com> Cc: Neil Horman <nhorman@tuxdriver.com> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: linux-sctp@vger.kernel.org Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
parent
6e51c9ff6a
commit
3b77d6617a
2 changed files with 2 additions and 2 deletions
|
@ -1403,7 +1403,7 @@ SCTP_STATIC __init int sctp_init(void)
|
|||
|
||||
/* Allocate and initialize the endpoint hash table. */
|
||||
sctp_ep_hashsize = 64;
|
||||
sctp_ep_hashtable = (struct sctp_hashbucket *)
|
||||
sctp_ep_hashtable =
|
||||
kmalloc(64 * sizeof(struct sctp_hashbucket), GFP_KERNEL);
|
||||
if (!sctp_ep_hashtable) {
|
||||
pr_err("Failed endpoint_hash alloc\n");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue