From mboxrd@z Thu Jan 1 00:00:00 1970 From: Frederic Weisbecker Subject: Re: [PATCH 2/6] kill-the-BKL/reiserfs: release the write lock before rescheduling on do_journal_end() Date: Sat, 2 May 2009 00:20:02 +0200 Message-ID: <20090501222001.GD6404@nowhere> References: <1241145862-21700-1-git-send-email-fweisbec@gmail.com> <1241145862-21700-3-git-send-email-fweisbec@gmail.com> <20090501070911.GG5983@elte.hu> <20090501133147.GF6011@nowhere> Mime-Version: 1.0 Return-path: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:received:date:from:to:cc :subject:message-id:references:mime-version:content-type :content-disposition:in-reply-to:user-agent; bh=IirLlO4GrRlECSa0gZbV/OxdS8sgUE7N2k43RERAAcQ=; b=BuNIQ2wCrBcwcUH1O+QGnjoHAh6n3PvzYLymsS03mbU+OzWlselEpW0Cy2e19R6hQA nLxVLnc+MoTtn5sgFI3mheeKU0pKaJfu7maOynDJ7dZ1z/fnEh8bpWnurGl6BU9/dllT qX/2A3YrEJetx3X83gU9MrhWXFFhuompyfsLs= Content-Disposition: inline In-Reply-To: <20090501133147.GF6011@nowhere> Sender: reiserfs-devel-owner@vger.kernel.org List-ID: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Ingo Molnar Cc: LKML , Jeff Mahoney , ReiserFS Development List , Chris Mason , Alexander Beregalov , Alessio Igor Bogani , Jonathan Corbet , Alexander Viro On Fri, May 01, 2009 at 03:31:48PM +0200, Frederic Weisbecker wrote: > On Fri, May 01, 2009 at 09:09:11AM +0200, Ingo Molnar wrote: > > > > * Frederic Weisbecker wrote: > > > > > When do_journal_end() copies data to the journal blocks buffers in memory, > > > it reschedules if needed between each block copied and dirtyfied. > > > > > > We can also release the write lock at this rescheduling stage, > > > like did the bkl implicitly. > > > > > > [ Impact: release the reiserfs write lock when it is not needed ] > > > > > > Cc: Jeff Mahoney > > > Cc: Chris Mason > > > Cc: Alexander Beregalov > > > Signed-off-by: Frederic Weisbecker > > > --- > > > fs/reiserfs/journal.c | 2 ++ > > > 1 files changed, 2 insertions(+), 0 deletions(-) > > > > > > diff --git a/fs/reiserfs/journal.c b/fs/reiserfs/journal.c > > > index 7976d7d..373d080 100644 > > > --- a/fs/reiserfs/journal.c > > > +++ b/fs/reiserfs/journal.c > > > @@ -4232,7 +4232,9 @@ static int do_journal_end(struct reiserfs_transaction_handle *th, > > > next = cn->next; > > > free_cnode(sb, cn); > > > cn = next; > > > + reiserfs_write_unlock(sb); > > > cond_resched(); > > > + reiserfs_write_lock(sb); > > > > There's 8 cond_resched()'s in the code - i'd suggest to introduce a > > helper for this - reiserfs_write_cond_resched(sb) or so? > > > > Ingo > > Indeed, that + the pattern suggested by Al. s/Al/Andi Sorry for the confusion. > Thanks. >