From: Steven Whitehouse <swhiteho@redhat.com>
To: cluster-devel.redhat.com
Subject: [Cluster-devel] [PATCH] gfs2: fix s_writers.counter imbalance in gfs2_ail_empty_gl
Date: Tue, 18 Sep 2012 09:18:46 +0100 [thread overview]
Message-ID: <1347956326.2725.3.camel@menhir> (raw)
In-Reply-To: <5057E177.4050006@redhat.com>
Hi,
looks good. Thanks, I'll add it to the -nmw tree in due course,
Steve.
On Mon, 2012-09-17 at 21:50 -0500, Eric Sandeen wrote:
> gfs2_ail_empty_gl() contains an "inline version" of gfs2_trans_begin(),
> so it needs an explicit sb_start_intwrite() as well, to balance the
> sb_end_intwrite() which will be called by gfs2_trans_end().
>
> With this, xfstest 068 passes on lock_nolock local gfs2.
> Without it, we reach a writer count of -1 and get stuck.
>
> Signed-off-by: Eric Sandeen <sandeen@redhat.com>
> ---
>
> diff --git a/fs/gfs2/glops.c b/fs/gfs2/glops.c
> index 4bdcf37..32cc4fd 100644
> --- a/fs/gfs2/glops.c
> +++ b/fs/gfs2/glops.c
> @@ -94,6 +94,7 @@ static void gfs2_ail_empty_gl(struct gfs2_glock *gl)
> /* A shortened, inline version of gfs2_trans_begin() */
> tr.tr_reserved = 1 + gfs2_struct2blk(sdp, tr.tr_revokes, sizeof(u64));
> tr.tr_ip = (unsigned long)__builtin_return_address(0);
> + sb_start_intwrite(sdp->sd_vfs);
> gfs2_log_reserve(sdp, tr.tr_reserved);
> BUG_ON(current->journal_info);
> current->journal_info = &tr;
>
prev parent reply other threads:[~2012-09-18 8:18 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-09-18 2:50 [Cluster-devel] [PATCH] gfs2: fix s_writers.counter imbalance in gfs2_ail_empty_gl Eric Sandeen
2012-09-18 8:18 ` Steven Whitehouse [this message]
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=1347956326.2725.3.camel@menhir \
--to=swhiteho@redhat.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).