Commit 86e43f23 authored by Joe Lawrence's avatar Joe Lawrence Committed by Petr Mladek
Browse files

livepatch: return -ENOMEM on ptr_id() allocation failure



Fixes the following smatch warning:

  lib/livepatch/test_klp_shadow_vars.c:47 ptr_id() warn: returning -1 instead of -ENOMEM is sloppy

Signed-off-by: default avatarJoe Lawrence <joe.lawrence@redhat.com>
Acked-by: default avatarMiroslav Benes <mbenes@suse.cz>
Signed-off-by: default avatarPetr Mladek <pmladek@suse.com>
parent ecba29f4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@ static int ptr_id(void *ptr)

	sp = kmalloc(sizeof(*sp), GFP_ATOMIC);
	if (!sp)
		return -1;
		return -ENOMEM;
	sp->ptr = ptr;
	sp->id = count++;