From c269a336a6f099535ab39a3547052ab6660c1c48 Mon Sep 17 00:00:00 2001 From: adilger Date: Fri, 20 Sep 2002 09:13:28 +0000 Subject: [PATCH] Don't bug if we run out of space on the MDS when storing an EA. --- lustre/mds/mds_extN.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/mds/mds_extN.c b/lustre/mds/mds_extN.c index 3d784b2..377388e 100644 --- a/lustre/mds/mds_extN.c +++ b/lustre/mds/mds_extN.c @@ -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; } -- 1.8.3.1