Whamcloud - gitweb
Branch b1_6
authoradilger <adilger>
Thu, 5 Jul 2007 21:43:58 +0000 (21:43 +0000)
committeradilger <adilger>
Thu, 5 Jul 2007 21:43:58 +0000 (21:43 +0000)
Quiet verbose error message on read-only filesystem.  We will already have
been notified of this.
b=10595
i=behlendo

lustre/lvfs/fsfilt_ext3.c

index e84cd05..301fca3 100644 (file)
@@ -603,7 +603,7 @@ static int fsfilt_ext3_set_md(struct inode *inode, void *handle,
 
         unlock_24kernel();
 
-        if (rc)
+        if (rc && rc != -EROFS)
                 CERROR("error adding MD data to inode %lu: rc = %d\n",
                        inode->i_ino, rc);
         return rc;