[Ocfs2-commits] mfasheh commits r2500 - trunk/fs/ocfs2/dlm

svn-commits at oss.oracle.com svn-commits at oss.oracle.com
Mon Aug 8 15:12:47 CDT 2005


Author: mfasheh
Signed-off-by: manish
Date: 2005-08-08 15:12:46 -0500 (Mon, 08 Aug 2005)
New Revision: 2500

Modified:
   trunk/fs/ocfs2/dlm/dlmconvert.c
Log:
* filter DLM_NOTQUEUED from being printed as an error in during a remote convert request.

Signed-off-by: manish



Modified: trunk/fs/ocfs2/dlm/dlmconvert.c
===================================================================
--- trunk/fs/ocfs2/dlm/dlmconvert.c	2005-08-05 21:58:10 UTC (rev 2499)
+++ trunk/fs/ocfs2/dlm/dlmconvert.c	2005-08-08 20:12:46 UTC (rev 2500)
@@ -385,7 +385,7 @@
 		} else if (ret == DLM_FORWARD) {
 			mlog(0, "node %u returned DLM_FORWARD from convert "
 			     "message!\n", res->owner);
-		} else if (ret != DLM_NORMAL)
+		} else if (ret != DLM_NORMAL && ret != DLM_NOTQUEUED)
 			dlm_error(ret);
 	} else {
 		mlog_errno(tmpret);



More information about the Ocfs2-commits mailing list