Unionfs: display informational messages only if debug is on
authorErez Zadok <ezk@cs.sunysb.edu>
Fri, 28 Sep 2007 03:45:46 +0000 (23:45 -0400)
committerErez Zadok <ezk@cs.sunysb.edu>
Mon, 12 Jan 2009 23:20:40 +0000 (18:20 -0500)
This is to avoid filling the console/logs with messages that are primarily
of debugging use.

Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
Acked-by: Josef 'Jeff' Sipek <jsipek@cs.sunysb.edu>
fs/unionfs/union.h

index cfecf553c32489d68db8751d20fd051b0abb4067..c27301795e166b9063072387e94a0422d66ed188 100644 (file)
@@ -512,7 +512,7 @@ static inline void unionfs_mntput(struct dentry *dentry, int bindex)
 
 #ifdef CONFIG_UNION_FS_DEBUG
 
-#define dprintk                printk
+#define dprintk(args...)               printk(args)
 
 /* useful for tracking code reachability */
 #define UDBG printk("DBG:%s:%s:%d\n",__FILE__,__FUNCTION__,__LINE__)
@@ -554,7 +554,7 @@ extern void __show_inode_counts(const struct inode *inode,
 
 #else /* not CONFIG_UNION_FS_DEBUG */
 
-#define dprintk(x...)          do { ; } while (0)
+#define dprintk(args...)               do { } while (0)
 
 /* we leave useful hooks for these check functions throughout the code */
 #define unionfs_check_inode(i)         do { } while(0)