All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] dlm fixes for 3.4
@ 2012-04-23 16:55 David Teigland
  0 siblings, 0 replies; only message in thread
From: David Teigland @ 2012-04-23 16:55 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel, swhiteho

Hi Linus,

Please pull dlm fixes from tag:

git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git dlm-fixes-3.4

This includes one short patch fixing the behavior of
the QUECVT flag, which the gfs2 folks are waiting on.

Thanks,
Dave

From: David Teigland <teigland@redhat.com>
Date: Wed, 4 Apr 2012 09:49:15 -0500
Subject: [PATCH] dlm: fix QUECVT when convert queue is empty

The QUECVT flag should not prevent conversions from
being granted immediately when the convert queue is
empty.

Signed-off-by: David Teigland <teigland@redhat.com>
---
 fs/dlm/lock.c |   12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/fs/dlm/lock.c b/fs/dlm/lock.c
index fa5c07d..4c58d4a 100644
--- a/fs/dlm/lock.c
+++ b/fs/dlm/lock.c
@@ -1737,6 +1737,18 @@ static int _can_be_granted(struct dlm_rsb *r, struct dlm_lkb *lkb, int now)
 		return 1;
 
 	/*
+	 * Even if the convert is compat with all granted locks,
+	 * QUECVT forces it behind other locks on the convert queue.
+	 */
+
+	if (now && conv && (lkb->lkb_exflags & DLM_LKF_QUECVT)) {
+		if (list_empty(&r->res_convertqueue))
+			return 1;
+		else
+			goto out;
+	}
+
+	/*
 	 * The NOORDER flag is set to avoid the standard vms rules on grant
 	 * order.
 	 */
-- 
1.7.10.rc3


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2012-04-23 16:55 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-23 16:55 [GIT PULL] dlm fixes for 3.4 David Teigland

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.