commit a6449d360eca9151b24a3ea1a76bea8230269679
Author: Erez Zadok <[EMAIL PROTECTED]>
Date:   Sat Dec 1 21:20:28 2007 -0500

    Unionfs ODF: remove useless lookup message
    
    No need to clutter the console with kernel messages which result from normal
    behaviour.
    
    Signed-off-by: Erez Zadok <[EMAIL PROTECTED]>

diff --git a/fs/unionfs/odf.c b/fs/unionfs/odf.c
index f75ba7c..7873df7 100644
--- a/fs/unionfs/odf.c
+++ b/fs/unionfs/odf.c
@@ -1132,11 +1132,8 @@ struct dentry *__odf_lookup(struct dentry *parent,
        /* lookup in the odf */
        odf_dentry = lookup_one_len(name, odf_parent, len);
 
-       if (IS_ERR(odf_dentry)) {
-               printk(KERN_ERR "unionfs: odf_lookup: failed to lookup %s\n",
-                      name);
+       if (IS_ERR(odf_dentry))
                goto out;
-       }
 
        /* if create flags are set, remove existing whiteout */
        if (odf_dentry->d_inode && (flags & ODF_LOOKUP_RMV_WH)) {
_______________________________________________
unionfs-cvs mailing list: http://unionfs.filesystems.org/
[email protected]
http://www.fsl.cs.sunysb.edu/mailman/listinfo/unionfs-cvs

Reply via email to