net: ll_temac: check the return value of devm_kmalloc()
authorXiaoke Wang <xkernel.wang@foxmail.com>
Fri, 18 Feb 2022 02:19:39 +0000 (10:19 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 2 Mar 2022 10:47:58 +0000 (11:47 +0100)
commitbe2d38247657e3b9a48725819fa5734da406cc1f
tree79d2c0726e42c8f001a771a64d87c33bcbe6e311
parenta95ea90deb3071c1ded77a05e91cfebc5238d908
net: ll_temac: check the return value of devm_kmalloc()

commit b352c3465bb808ab700d03f5bac2f7a6f37c5350 upstream.

devm_kmalloc() returns a pointer to allocated memory on success, NULL
on failure. While lp->indirect_lock is allocated by devm_kmalloc()
without proper check. It is better to check the value of it to
prevent potential wrong memory access.

Fixes: f14f5c11f051 ("net: ll_temac: Support indirect_mutex share within TEMAC IP")
Signed-off-by: Xiaoke Wang <xkernel.wang@foxmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/net/ethernet/xilinx/ll_temac_main.c