[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <baa9ed775c8ba43b78547e4b652ce734a5563c9c.1322609673.git.joe@perches.com>
Date: Tue, 29 Nov 2011 18:14:11 -0800
From: Joe Perches <joe@...ches.com>
To: Alexander Viro <viro@...iv.linux.org.uk>
Cc: linux-fsdevel@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH 13/28] open: Use current logging style
Add and use pr_fmt and pr_<level>
No change to output using #define pr_fmt(fmt) fmt
Signed-off-by: Joe Perches <joe@...ches.com>
---
fs/open.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/fs/open.c b/fs/open.c
index 22c41b5..58c8d94 100644
--- a/fs/open.c
+++ b/fs/open.c
@@ -4,6 +4,8 @@
* Copyright (C) 1991, 1992 Linus Torvalds
*/
+#define pr_fmt(fmt) fmt
+
#include <linux/string.h>
#include <linux/mm.h>
#include <linux/file.h>
@@ -1043,7 +1045,7 @@ int filp_close(struct file *filp, fl_owner_t id)
int retval = 0;
if (!file_count(filp)) {
- printk(KERN_ERR "VFS: Close: file count is 0\n");
+ pr_err("VFS: Close: file count is 0\n");
return 0;
}
--
1.7.6.405.gc1be0
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists