aboutsummaryrefslogtreecommitdiff
path: root/fs/jffs2/debug.h
diff options
context:
space:
mode:
authorArtem B. Bityutskiy <dedekind@infradead.org>2005-08-17 15:13:48 +0100
committerThomas Gleixner <tglx@mtd.linutronix.de>2005-11-06 20:27:14 +0100
commit8d5df40954281a8e0f788b311f9c08f96e530ffa (patch)
tree835fa433bd86700f9fd09864687276c7136b75ef /fs/jffs2/debug.h
parent3a69e0cd22cf34920508a4032d53e41251925f53 (diff)
[JFFS2] More message formatting cleanups
Signed-off-by: Artem B. Bityutskiy <dedekind@infradead.org> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'fs/jffs2/debug.h')
-rw-r--r--fs/jffs2/debug.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/jffs2/debug.h b/fs/jffs2/debug.h
index 676188ec730..03d9626ad1c 100644
--- a/fs/jffs2/debug.h
+++ b/fs/jffs2/debug.h
@@ -7,7 +7,7 @@
*
* For licensing information, see the file 'LICENCE' in this directory.
*
- * $Id: debug.h,v 1.13 2005/08/17 13:42:06 dedekind Exp $
+ * $Id: debug.h,v 1.14 2005/08/17 13:48:59 dedekind Exp $
*
*/
#ifndef _JFFS2_DEBUG_H_
@@ -68,28 +68,28 @@
#define JFFS2_ERROR(fmt, ...) \
do { \
printk(JFFS2_ERR_LVL JFFS2_ERR_MSG_PREFIX \
- " %d (%s): " fmt, current->pid, \
+ " (%d) %s: " fmt, current->pid, \
__FUNCTION__, ##__VA_ARGS__); \
} while(0)
#define JFFS2_WARNING(fmt, ...) \
do { \
printk(JFFS2_WARN_LVL JFFS2_WARN_MSG_PREFIX \
- " %d (%s): " fmt, current->pid, \
+ " (%d) %s: " fmt, current->pid, \
__FUNCTION__, ##__VA_ARGS__); \
} while(0)
#define JFFS2_NOTICE(fmt, ...) \
do { \
printk(JFFS2_NOTICE_LVL JFFS2_NOTICE_MSG_PREFIX \
- " %d (%s): " fmt, current->pid, \
+ " (%d) %s: " fmt, current->pid, \
__FUNCTION__, ##__VA_ARGS__); \
} while(0)
#define JFFS2_DEBUG(fmt, ...) \
do { \
printk(JFFS2_DBG_LVL JFFS2_DBG_MSG_PREFIX \
- " %d (%s): " fmt, current->pid, \
+ " (%d) %s: " fmt, current->pid, \
__FUNCTION__, ##__VA_ARGS__); \
} while(0)