From 6d368e7f7c9f2a4ca315526add0d5a2372093dfe 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 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; } -- 2.43.0