From: Tao Ma <tm@tao.ma>
To: Jan Kara <jack@suse.cz>
Cc: linux-ext4@vger.kernel.org, linux-fsdevel@vger.kernel.org
Subject: Re: [PATCH] jbd2: take j_list_lock when checking b_jlist in do_get_write_access.
Date: Thu, 05 May 2011 22:14:41 +0800 [thread overview]
Message-ID: <4DC2B0D1.4030905@tao.ma> (raw)
In-Reply-To: <20110505120904.GC5323@quack.suse.cz>
On 05/05/2011 08:09 PM, Jan Kara wrote:
> Hello,
>
> On Thu 05-05-11 17:57:16, Tao Ma wrote:
>> From: Tao Ma <boyu.mt@taobao.com>
>>
>> In do_get_write_access, we check journal_head->b_jlist and if it
>> is BJ_Shadow, we will sleep until we remove it from t_shadow_list
>> in jbd2_journal_commit_transaction, but it isn't protected by any
>> lock. So if we uses some cached b_jlist and before schedule,
>> jbd2_journal_commit_transaction has already waken up all
>> the waiting thread. As a result, this thread will never be waken up.
> I had a look at the code and I think it's more complicated than this.
> The code is:
> prepare_to_wait(wqh, &wait.wait, TASK_UNINTERRUPTIBLE);
> if (jh->b_jlist != BJ_Shadow)
> break;
> schedule();
>
> You're right that jh->b_jlist != BJ_Shadow test is done without any lock.
> But prepare_to_wait() does set_current_state() which implies a memory
> barrier. The comment there says:
> /*
> * set_current_state() includes a barrier so that the write of current->state
> * is correctly serialised wrt the caller's subsequent test of whether to
> * actually sleep:
> *
> * set_current_state(TASK_UNINTERRUPTIBLE);
> * if (do_i_need_to_sleep())
> * schedule();
> *
> * If the caller does not need such serialisation then use __set_current_state()
> */
> So we are guaranteed that either we see that jh->b_jlist != BJ_Shadow or
> the waking process sees us in the wait queue and removes us.
>
> Well, not quite. The waking code is:
> journal_file_buffer(jh, commit_transaction, BJ_Forget);
> /* Wake up any transactions which were waiting for this
> IO to complete */
> wake_up_bit(&bh->b_state, BH_Unshadow);
> And that's where the problem actually is. Even the comment before
> wake_up_bit() warns that:
> * In order for this to function properly, as it uses waitqueue_active()
> * internally, some kind of memory barrier must be done prior to calling
> * this. Typically, this will be smp_mb__after_clear_bit(), but in some
> * cases where bitflags are manipulated non-atomically under a lock, one
> * may need to use a less regular barrier, such fs/inode.c's smp_mb(),
> * because spin_unlock() does not guarantee a memory barrier.
> I'll send proper fix in a moment.
oh, great thanks for the fix and the detailed explanation about the
memory barrier.
Regards,
Tao
prev parent reply other threads:[~2011-05-05 14:14 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-05-05 9:57 [PATCH] jbd2: take j_list_lock when checking b_jlist in do_get_write_access Tao Ma
2011-05-05 12:09 ` Jan Kara
2011-05-05 14:14 ` Tao Ma [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=4DC2B0D1.4030905@tao.ma \
--to=tm@tao.ma \
--cc=jack@suse.cz \
--cc=linux-ext4@vger.kernel.org \
--cc=linux-fsdevel@vger.kernel.org \
/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).