From: adilger Date: Thu, 23 May 2002 20:57:10 +0000 (+0000) Subject: Don't BUG if we only run out of space. X-Git-Tag: 0.4.2~259 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=65b524342ff16e99371e5d771c1a9f41fcf1102e;p=fs%2Flustre-release.git Don't BUG if we only run out of space. --- diff --git a/lustre/mds/mds_reint.c b/lustre/mds/mds_reint.c index 0140c56..6a3ab39 100644 --- a/lustre/mds/mds_reint.c +++ b/lustre/mds/mds_reint.c @@ -265,7 +265,7 @@ static int mds_reint_create(struct mds_update_record *rec, if (rc) { CERROR("error during create: %d\n", rc); - LBUG(); + if (rc != -ENOSPC) LBUG(); GOTO(out_create_commit, rc); } else { struct iattr iattr;