From 2965b60947f9a75b889520666d060a3d2419c60e Mon Sep 17 00:00:00 2001 From: Erez Zadok Date: Thu, 18 Oct 2007 14:03:16 -0400 Subject: [PATCH] Unionfs: convert a printk to pr_debug in release This is mostly an informational message, not an error. Signed-off-by: Erez Zadok --- fs/unionfs/dentry.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fs/unionfs/dentry.c b/fs/unionfs/dentry.c index 54e426cb4f0..355e92d9da4 100644 --- a/fs/unionfs/dentry.c +++ b/fs/unionfs/dentry.c @@ -446,9 +446,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; } -- 2.43.0