mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 19:26:25 +00:00
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: Arjan van de Ven <arjan@linux.intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
b8c512f619
commit
4c8573e25f
1 changed files with 2 additions and 4 deletions
|
@ -381,16 +381,14 @@ static void __vunmap(const void *addr, int deallocate_pages)
|
|||
return;
|
||||
|
||||
if ((PAGE_SIZE-1) & (unsigned long)addr) {
|
||||
printk(KERN_ERR "Trying to vfree() bad address (%p)\n", addr);
|
||||
WARN_ON(1);
|
||||
WARN(1, KERN_ERR "Trying to vfree() bad address (%p)\n", addr);
|
||||
return;
|
||||
}
|
||||
|
||||
area = remove_vm_area(addr);
|
||||
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);
|
||||
WARN_ON(1);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue