From: Erez Zadok Date: Thu, 18 Oct 2007 18:03:16 +0000 (-0400) Subject: Unionfs: convert a printk to pr_debug in release X-Git-Url: https://git.fsl.cs.sunysb.edu/?a=commitdiff_plain;h=3587c8c3609065d3568cec5d69c336a1ce35e939;p=unionfs-2.6.35.y.git Unionfs: convert a printk to pr_debug in release This is mostly an informational message, not an error. Signed-off-by: Erez Zadok --- diff --git a/fs/unionfs/dentry.c b/fs/unionfs/dentry.c index 6bab9d6ceb6..a3d7b6e4706 100644 --- a/fs/unionfs/dentry.c +++ b/fs/unionfs/dentry.c @@ -455,9 +455,9 @@ static void unionfs_d_release(struct dentry *dentry) goto out; } else if (dbstart(dentry) < 0) { /* this is due to a failed lookup */ - printk(KERN_ERR "unionfs: dentry without lower " - "dentries: %.*s\n", - dentry->d_name.len, dentry->d_name.name); + pr_debug("unionfs: dentry without lower " + "dentries: %.*s\n", + dentry->d_name.len, dentry->d_name.name); goto out_free; }