]> git.baikalelectronics.ru Git - kernel.git/commit
dlm: fix ordering of bast and cast
authorDavid Teigland <teigland@redhat.com>
Wed, 24 Feb 2010 17:08:18 +0000 (11:08 -0600)
committerDavid Teigland <teigland@redhat.com>
Wed, 24 Feb 2010 17:46:53 +0000 (11:46 -0600)
commitec0ee6402684e71dd2f78c5671dbb4ca3ad3641a
tree36af13880f834cd1c7fd92200ebcc33c64d9edf0
parent51a5533132895a23d9b86945b34ff69f3f7fe029
dlm: fix ordering of bast and cast

When both blocking and completion callbacks are queued for lock,
the dlm would always deliver the completion callback (cast) first.
In some cases the blocking callback (bast) is queued before the
cast, though, and should be delivered first.  This patch keeps
track of the order in which they were queued and delivers them
in that order.

This patch also keeps track of the granted mode in the last cast
and eliminates the following bast if the bast mode is compatible
with the preceding cast mode.  This happens when a remotely mastered
lock is demoted, e.g. EX->NL, in which case the local node queues
a cast immediately after sending the demote message.  In this way
a cast can be queued for a mode, e.g. NL, that makes an in-transit
bast extraneous.

Signed-off-by: David Teigland <teigland@redhat.com>
fs/dlm/ast.c
fs/dlm/ast.h
fs/dlm/dlm_internal.h
fs/dlm/lock.c
fs/dlm/user.c
fs/dlm/user.h