linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* kjournald wasting CPU in invert_lock fs/jbd/commit.c
@ 2005-07-11 22:17 Steven Rostedt
  2005-07-11 22:41 ` Andrew Morton
  0 siblings, 1 reply; 3+ messages in thread
From: Steven Rostedt @ 2005-07-11 22:17 UTC (permalink / raw)
  To: LKML
  Cc: Linus Torvalds, Daniel Walker, Ingo Molnar, Stephen C. Tweedie,
	Andrew Morton

I noticed that the code in commit.c of the jbd system can waste CPU
cycles. The offending code is as follows.

static int inverted_lock(journal_t *journal, struct buffer_head *bh)
{
        if (!jbd_trylock_bh_state(bh)) {
                spin_unlock(&journal->j_list_lock);
                schedule();
                return 0;
        }
        return 1;
}

[...]

void journal_commit_transaction(journal_t *journal)
{

[...]

write_out_data:
        cond_resched();
        spin_lock(&journal->j_list_lock);

        while (commit_transaction->t_sync_datalist) {
                struct buffer_head *bh;

                jh = commit_transaction->t_sync_datalist;
                commit_transaction->t_sync_datalist = jh->b_tnext;
                bh = jh2bh(jh);
                if (buffer_locked(bh)) {
                        BUFFER_TRACE(bh, "locked");
                        if (!inverted_lock(journal, bh))
                                goto write_out_data;


This code makes a loop if the jbd_trylock_bh_state fails. This code will
wait till whoever owns the lock releases it. But it is really in a busy
loop and will only be interrupted when the kjournald uses up all its
quota.  So it's basically just wasting CPU cycles here.  The following
patch should fix this.

Signed-off-by: Steven Rostedt rostedt@goodmis.org
---
--- a/fs/jbd/commit.c	2005-07-11 17:51:37.000000000 -0400
+++ b/fs/jbd/commit.c	2005-07-11 17:51:58.000000000 -0400
@@ -87,7 +87,7 @@ static int inverted_lock(journal_t *jour
 {
 	if (!jbd_trylock_bh_state(bh)) {
 		spin_unlock(&journal->j_list_lock);
-		schedule();
+		yield();
 		return 0;
 	}
 	return 1;



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2005-07-11 23:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-07-11 22:17 kjournald wasting CPU in invert_lock fs/jbd/commit.c Steven Rostedt
2005-07-11 22:41 ` Andrew Morton
2005-07-11 23:09   ` Steven Rostedt

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).