From: Andrew Morton WARNING: printk() should include KERN_ facility level #62: FILE: fs/namespace.c:243: + printk("leak detected on mount(%p) writers count: %d\n", total: 0 errors, 1 warnings, 45 lines checked Your patch has style problems, please review. If any of these errors are false positives report them to the maintainer, see CHECKPATCH in MAINTAINERS. Please run checkpatch prior to sending patches Cc: Christoph Hellwig Cc: Dave Hansen Cc: Erez Zadok Cc: Hugh Dickins Signed-off-by: Andrew Morton --- fs/namespace.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN fs/namespace.c~r-o-bind-mounts-track-number-of-mount-writer-fix-buggy-loop-checkpatch-fixes fs/namespace.c --- a/fs/namespace.c~r-o-bind-mounts-track-number-of-mount-writer-fix-buggy-loop-checkpatch-fixes +++ a/fs/namespace.c @@ -240,7 +240,8 @@ static void handle_write_count_underflow */ if ((atomic_read(&mnt->__mnt_writers) < 0) && !(mnt->mnt_flags & MNT_IMBALANCED_WRITE_COUNT)) { - printk("leak detected on mount(%p) writers count: %d\n", + printk(KERN_DEBUG "leak detected on mount(%p) writers " + "count: %d\n", mnt, atomic_read(&mnt->__mnt_writers)); WARN_ON(1); /* use the flag to keep the dmesg spam down */ _