Commit 4c8573e2 authored by Arjan van de Ven's avatar Arjan van de Ven Committed by Linus Torvalds

Use WARN() in mm/vmalloc.c

Use WARN() instead of a printk+WARN_ON() pair; this way the message becomes
part of the warning section for better reporting/collection.
Signed-off-by: default avatarArjan van de Ven <arjan@linux.intel.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent b8c512f6
...@@ -381,16 +381,14 @@ static void __vunmap(const void *addr, int deallocate_pages) ...@@ -381,16 +381,14 @@ static void __vunmap(const void *addr, int deallocate_pages)
return; return;
if ((PAGE_SIZE-1) & (unsigned long)addr) { if ((PAGE_SIZE-1) & (unsigned long)addr) {
printk(KERN_ERR "Trying to vfree() bad address (%p)\n", addr); WARN(1, KERN_ERR "Trying to vfree() bad address (%p)\n", addr);
WARN_ON(1);
return; return;
} }
area = remove_vm_area(addr); area = remove_vm_area(addr);
if (unlikely(!area)) { if (unlikely(!area)) {
printk(KERN_ERR "Trying to vfree() nonexistent vm area (%p)\n", WARN(1, KERN_ERR "Trying to vfree() nonexistent vm area (%p)\n",
addr); addr);
WARN_ON(1);
return; return;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment