From: Andrew Morton <akpm@osdl.org>
To: Jan Kara <jack@suse.cz>
Cc: sct@redhat.com, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] Fix commit of ordered data buffers
Date: Wed, 14 Sep 2005 11:30:12 -0700 [thread overview]
Message-ID: <20050914113012.3d86c6d7.akpm@osdl.org> (raw)
In-Reply-To: <20050914120322.GE15582@atrey.karlin.mff.cuni.cz>
Jan Kara <jack@suse.cz> wrote:
>
> > Also, I don't think it works. See ll_rw_block()'s handling of
> > already-locked buffers..
>
> We send it to disk with SWRITE - hence ll_rw_block() wait for the buffer
> lock for us. Or do you have something else in mind?
>
OK.
> > An alternative is to just lock the buffer in journal_commit_transaction(),
> > if it was locked-and-dirty. And remove the call to ll_rw_block() and
> > submit the locked buffers by hand.
>
> Yes, this has the advantage that we can move the buffer to t_locked_list
> in the right time and so we don't change the semantics of t_locked_list.
> OTOH the locking will be a bit more complicated (we'd need to acquire and
> drop j_list_lock almost for every bh while currently we do it only once
> per batch)
Only need to drop the spinlock if test_set_buffer_locked() fails.
>
> spin_lock(&journal->j_list_lock);
> while (commit_transaction->t_sync_datalist) {
> jh = commit_transaction->t_sync_datalist;
> bh = jh2bh(jh);
> journal_grab_journal_head(bh);
> if (buffer_dirty(bh)) {
> get_bh(bh);
> spin_unlock(&journal->j_list_lock);
> lock_buffer(bh);
> if (buffer_dirty(bh))
> /* submit the buffer */
> jbd_lock_bh_state(bh);
> spin_lock(&journal->j_list_lock);
> /* Check that somebody did not move the jh elsewhere */
> }
> else {
> if (!inverted_lock(journal, bh))
> goto write_out_data;
> }
> __journal_temp_unlink_buffer(jh);
> __journal_file_buffer(jh, commit_transaction, BJ_Locked);
> journal_put_journal_head(bh);
> jbd_unlock_bh_state(bh);
> }
>
> If you prefer something like this I can code it up...
If the code is conceptually simpler then I think it's worth doing, even if
the actual implementation is similarly or even more complex.
So yes please, let's see how it looks.
> > That would mean that if someone had redirtied a buffer which was on
> > t_sync_datalist *while* it was under writeout, we'd end up waiting on that
> > writeout to complete before submitting more I/O. But I suspect that's
> > pretty rare.
> >
> > One thing which concerns me with your approach is livelocks: if some process
> > sits in a tight loop writing to the same part of the same file, will it
> > cause kjournald to get stuck?
>
> No, because as soon as we find the buffer in t_sync_datalist we move
> it to t_locked_list and submit it for IO - this case is one reason why I
> introduced that new meaning to t_locked_list.
Right. But the buffer can be redirtied while it's on t_locked_list, even
while the I/O is in flight. What happens then? Will kjournald try to
rewrite it?
next prev parent reply other threads:[~2005-09-14 18:30 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-09-13 15:30 Jan Kara
2005-09-14 1:43 ` Andrew Morton
2005-09-14 12:03 ` Jan Kara
2005-09-14 18:30 ` Andrew Morton [this message]
2005-09-15 7:23 ` Jan Kara
2005-09-14 13:02 ` Stephen C. Tweedie
2006-09-11 21:05 Jan Kara
2006-09-11 22:12 ` Andrew Morton
2006-09-28 8:31 ` Zhang, Yanmin
2006-09-28 21:35 ` Jan Kara
2006-09-29 1:27 ` Zhang, Yanmin
2006-09-29 9:21 ` Jan Kara
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=20050914113012.3d86c6d7.akpm@osdl.org \
--to=akpm@osdl.org \
--cc=jack@suse.cz \
--cc=linux-kernel@vger.kernel.org \
--cc=sct@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
all inboxes | Powered by JetHome®