Whamcloud - gitweb
Don't bug if we run out of space on the MDS when storing an EA.
authoradilger <adilger>
Fri, 20 Sep 2002 09:13:28 +0000 (09:13 +0000)
committeradilger <adilger>
Fri, 20 Sep 2002 09:13:28 +0000 (09:13 +0000)
lustre/mds/mds_extN.c

index 3d784b2..377388e 100644 (file)
@@ -137,7 +137,7 @@ static int mds_extN_set_md(struct inode *inode, void *handle,
         if (rc) {
                 CERROR("error adding objectid "LPX64" to inode %ld: %d\n",
                        lmm->lmm_object_id, inode->i_ino, rc);
-                LBUG();
+                if (rc != -ENOSPC) LBUG();
         }
         return rc;
 }