[Ocfs2-commits] mfasheh commits r1633 - branches/cluster-groups/src

svn-commits at oss.oracle.com svn-commits at oss.oracle.com
Wed Nov 10 14:43:21 CST 2004


Author: mfasheh
Date: 2004-11-10 14:43:19 -0600 (Wed, 10 Nov 2004)
New Revision: 1633

Modified:
   branches/cluster-groups/src/file.c
Log:
* don't print error on -ENOSPC.



Modified: branches/cluster-groups/src/file.c
===================================================================
--- branches/cluster-groups/src/file.c	2004-11-10 17:06:14 UTC (rev 1632)
+++ branches/cluster-groups/src/file.c	2004-11-10 20:43:19 UTC (rev 1633)
@@ -1358,7 +1358,7 @@
 			status = ocfs_extend_file(osb, inode, newsize);
 		}
 		if (status < 0) {
-			if (status != -EINTR)
+			if (status != -EINTR && status != -ENOSPC)
 				LOG_ERROR_STATUS (status);
 			error = -ENOSPC;
 			goto bail;



More information about the Ocfs2-commits mailing list