From: Erez_Zadok Date: Tue, 31 Jul 2007 07:58:50 +0000 (-0400) Subject: Unionfs: improved printk upon copyup X-Git-Url: https://git.fsl.cs.sunysb.edu/?a=commitdiff_plain;h=23fdd70ef7a03c6a3373f5c4cb7c50b019533516;p=unionfs-2.6.33.y.git Unionfs: improved printk upon copyup Signed-off-by: Erez Zadok --- diff --git a/fs/unionfs/commonfops.c b/fs/unionfs/commonfops.c index baa6a3725ee..1b844871d46 100644 --- a/fs/unionfs/commonfops.c +++ b/fs/unionfs/commonfops.c @@ -392,8 +392,8 @@ int unionfs_file_revalidate(struct file *file, int willwrite) if (willwrite && IS_WRITE_FLAG(file->f_flags) && !IS_WRITE_FLAG(unionfs_lower_file(file)->f_flags) && is_robranch(dentry)) { - printk(KERN_DEBUG "unionfs: doing delayed copyup of a " - "read-write file on a read-only branch\n"); + printk(KERN_DEBUG "unionfs: do delay copyup of \"%s\"\n", + dentry->d_name.name); err = do_delayed_copyup(file); }