Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Drivers: hv: kvp: check kzalloc return value

kzalloc() return value check was accidentally lost in 11bc3a5fa91f:
"Drivers: hv: kvp: convert to hv_utils_transport" commit.

We don't need to reset kvp_transaction.state here as we have the
kvp_timeout_func() timeout function and in case we're in OOM situation
it is preferable to wait.

Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Vitaly Kuznetsov <vkuznets@redhat.com>
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Vitaly Kuznetsov and committed by
Greg Kroah-Hartman
b36fda33 510f7aef

+3
+3
drivers/hv/hv_kvp.c
··· 353 353 return; 354 354 355 355 message = kzalloc(sizeof(*message), GFP_KERNEL); 356 + if (!message) 357 + return; 358 + 356 359 message->kvp_hdr.operation = operation; 357 360 message->kvp_hdr.pool = pool; 358 361 in_msg = kvp_transaction.kvp_msg;