From: Sunil Mushran <sunil.mushran@oracle.com>
To: ocfs2-devel@oss.oracle.com
Subject: [Ocfs2-devel] [PATCH] Wakeup down-convert thread just after clearing OCFS2_LOCK_UPCONVERT_FINISHING -v3
Date: Thu, 22 Sep 2011 17:53:36 -0700 [thread overview]
Message-ID: <4E7BD890.5030002@oracle.com> (raw)
In-Reply-To: <201109230049.p8N0nkT6025292@acsmt358.oracle.com>
Acked-by: Sunil Mushran <sunil.mushran@oracle.com>
On 09/22/2011 05:49 PM, Wengang Wang wrote:
> When the lockres state UPCONVERT_FINISHING is cleared,
> we should wake up the downconvert thread incase that lockres
> is in the blocked queue. Currently we are not doing so and thus
> are at the mercy of another event waking up the dc thread.
>
> Signed-off-by: Wengang Wang<wen.gang.wang@oracle.com>
> ---
> fs/ocfs2/dlmglue.c | 9 ++++++++-
> 1 files changed, 8 insertions(+), 1 deletions(-)
>
> diff --git a/fs/ocfs2/dlmglue.c b/fs/ocfs2/dlmglue.c
> index 7642d7c..524bd88 100644
> --- a/fs/ocfs2/dlmglue.c
> +++ b/fs/ocfs2/dlmglue.c
> @@ -1195,6 +1195,7 @@ static inline void ocfs2_recover_from_dlm_error(struct ocfs2_lock_res *lockres,
> int convert)
> {
> unsigned long flags;
> + int kick_dc;
>
> spin_lock_irqsave(&lockres->l_lock, flags);
> lockres_clear_flags(lockres, OCFS2_LOCK_BUSY);
> @@ -1203,9 +1204,12 @@ static inline void ocfs2_recover_from_dlm_error(struct ocfs2_lock_res *lockres,
> lockres->l_action = OCFS2_AST_INVALID;
> else
> lockres->l_unlock_action = OCFS2_UNLOCK_INVALID;
> + kick_dc = (lockres->l_flags& OCFS2_LOCK_QUEUED);
> spin_unlock_irqrestore(&lockres->l_lock, flags);
>
> wake_up(&lockres->l_event);
> + if (kick_dc)
> + ocfs2_wake_downconvert_thread(ocfs2_get_lockres_osb(lockres));
> }
>
> /* Note: If we detect another process working on the lock (i.e.,
> @@ -1373,6 +1377,7 @@ static int __ocfs2_cluster_lock(struct ocfs2_super *osb,
> unsigned long flags;
> unsigned int gen;
> int noqueue_attempted = 0;
> + int kick_dc;
>
> ocfs2_init_mask_waiter(&mw);
>
> @@ -1500,8 +1505,10 @@ update_holders:
> ret = 0;
> unlock:
> lockres_clear_flags(lockres, OCFS2_LOCK_UPCONVERT_FINISHING);
> -
> + kick_dc = (lockres->l_flags& OCFS2_LOCK_QUEUED);
> spin_unlock_irqrestore(&lockres->l_lock, flags);
> + if (kick_dc)
> + ocfs2_wake_downconvert_thread(osb);
> out:
> /*
> * This is helping work around a lock inversion between the page lock
next prev parent reply other threads:[~2011-09-23 0:53 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-09-23 0:49 [Ocfs2-devel] [PATCH] Wakeup down-convert thread just after clearing OCFS2_LOCK_UPCONVERT_FINISHING -v3 Wengang Wang
2011-09-23 0:53 ` Sunil Mushran [this message]
-- strict thread matches above, loose matches on Subject: below --
2011-09-15 3:27 Wengang Wang
2011-09-15 17:15 ` Sunil Mushran
2011-09-15 17:21 ` Sunil Mushran
2011-09-16 0:42 ` Wengang Wang
2011-09-16 0:53 ` Sunil Mushran
2011-09-16 0:57 ` Wengang Wang
2011-11-17 9:33 ` Joel Becker
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4E7BD890.5030002@oracle.com \
--to=sunil.mushran@oracle.com \
--cc=ocfs2-devel@oss.oracle.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.