Skip to content
Snippets Groups Projects
Commit e97a3111 authored by Jesper Juhl's avatar Jesper Juhl Committed by Adrian Bunk
Browse files

add missing printk loglevel in mm/swapfile.c


in mm/swapfile.c a printk() is missing a loglevel. I believe the proper
loglevel for this situation is KERN_ERR, so that's what the patch below
sets -if you agree, please apply.

Signed-off-by: default avatarJesper Juhl <juhl-lkml@dif.dk>
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
parent ffd59dac
No related merge requests found
...@@ -1442,7 +1442,7 @@ asmlinkage long sys_swapon(const char __user * specialfile, int swap_flags) ...@@ -1442,7 +1442,7 @@ asmlinkage long sys_swapon(const char __user * specialfile, int swap_flags)
else if (!memcmp("SWAPSPACE2",swap_header->magic.magic,10)) else if (!memcmp("SWAPSPACE2",swap_header->magic.magic,10))
swap_header_version = 2; swap_header_version = 2;
else { else {
printk("Unable to find swap-space signature\n"); printk(KERN_ERR "Unable to find swap-space signature\n");
error = -EINVAL; error = -EINVAL;
goto bad_swap; goto bad_swap;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment