]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
xen: set error code on failures
authorPan Bian <bianpan2016@163.com>
Mon, 5 Dec 2016 08:23:05 +0000 (16:23 +0800)
committerJuergen Gross <jgross@suse.com>
Thu, 8 Dec 2016 06:53:50 +0000 (07:53 +0100)
commit0fdb47440203ce06e09923c4d578cf3c20aef69a
treef55d3fd289733ed43e8ddbbabbd773ff1708027e
parent24d5373dda7c00a438d26016bce140299fae675e
xen: set error code on failures

Variable rc is reset in the loop, and its value will be non-negative
during the second and after repeat of the loop. If it fails to allocate
memory then, it may return a non-negative integer, which indicates no
error. This patch fixes the bug, assigning "-ENOMEM" to rc when
kzalloc() or alloc_page() returns NULL, and removing the initialization
of rc outside of the loop.

Signed-off-by: Pan Bian <bianpan2016@163.com>
Reviewed-by: Juergen Gross <jgross@suse.com>
Signed-off-by: Juergen Gross <jgross@suse.com>
drivers/xen/gntalloc.c