DCALL used to insert loglevel twice in the string sent to printk.
Signed-off-by: Laurent Riffard <[EMAIL PROTECTED]>
fs/reiser4/debug.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: linux-2.6-mm/fs/reiser4/debug.h
===================================================================
--- linux-2.6-mm.orig/fs/reiser4/debug.h
+++ linux-2.6-mm/fs/reiser4/debug.h
@@ -16,8 +16,8 @@
({ \
/* reiser4_print_prefix(lev, reperr, label,*/ \
/* __FUNCTION__, __FILE__, __LINE__);*/ \
- fun(lev "%sreiser4[%.16s(%i)]: %s (%s:%i)[%s]:\n" format "\n" , \
- lev, current->comm, current->pid, __FUNCTION__, \
+ fun(lev "reiser4[%.16s(%i)]: %s (%s:%i)[%s]:\n" format "\n" , \
+ current->comm, current->pid, __FUNCTION__, \
__FILE__, __LINE__, label, ## __VA_ARGS__); \
})
--