[Ocfs2-commits] mfasheh commits r2691 - trunk/fs/ocfs2

svn-commits at oss.oracle.com svn-commits at oss.oracle.com
Tue Nov 8 18:23:48 CST 2005


Author: mfasheh
Signed-off-by: zab
Date: 2005-11-08 18:23:47 -0600 (Tue, 08 Nov 2005)
New Revision: 2691

Modified:
   trunk/fs/ocfs2/dlmglue.c
Log:
* Filter -EAGAIN in ocfs2_data_lock_full()

Signed-off-by: zab



Modified: trunk/fs/ocfs2/dlmglue.c
===================================================================
--- trunk/fs/ocfs2/dlmglue.c	2005-11-09 00:21:06 UTC (rev 2690)
+++ trunk/fs/ocfs2/dlmglue.c	2005-11-09 00:23:47 UTC (rev 2691)
@@ -1185,7 +1185,7 @@
 
 	status = ocfs2_cluster_lock(OCFS2_SB(inode->i_sb), lockres, level,
 				    0, arg_flags);
-	if (status < 0)
+	if (status < 0 && status != -EAGAIN)
 		mlog_errno(status);
 
 out:



More information about the Ocfs2-commits mailing list