mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Andrew Morton <akpm@osdl.org>
To: Marcelo Tosatti <marcelo.tosatti@cyclades.com>
Cc: linux-kernel@vger.kernel.org
Subject: Re: filemap_fdatawait() wait_on_page_writeback_range(mapping, 0, -1)?
Date: Thu, 19 Aug 2004 16:33:36 -0700	[thread overview]
Message-ID: <20040819163336.0ab74691.akpm@osdl.org> (raw)
In-Reply-To: <20040819221304.GD5278@logos.cnet>

Marcelo Tosatti <marcelo.tosatti@cyclades.com> wrote:
>
> On Thu, Aug 19, 2004 at 02:49:47PM -0700, Andrew Morton wrote:
> > Marcelo Tosatti <marcelo.tosatti@cyclades.com> wrote:
> > >
> > > Hi Andrew,
> > > 
> > > I dont understand why we do call wait_on_page_writeback_range() with -1 
> > > as the "end" argument.
> > 
> > "every page in the file".
> > 
> > > -1 sounds pretty stupid at first, it does unnecessary calls to 
> > > the radix lookup code.
> > 
> > I guess it could cause one extra call into the lookup code.  There's an
> > additional check in -mm's wait_on_page_writeback_range() which would prevent
> > that.
> 
> this? 
> 
> +                       /* until radix tree lookup accepts end_index */
> +                       if (page->index > end)
> +                               continue;

No, I'm being thick.  Please ignore.

> What I'm trying to do is make wait_on_page_writeback_range() do reverse
> search instead ascending. Since we write pages in ascending order, doing 
> the wait on reverse order makes sense and will avoid possibly tons of 
> wakeups.

Yes, that's probably the low-hanging-fruit wrt CPU consumption in there.

> Naive me tried to implement that using pagevec_lookup_tag(), but I'm
> convinced we need pagevec_reverse_lookup_tag() do reverse search
> on the radix tree. I'll try getting that done on the weekend.

Yes, a descending-order gang lookup would be needed.

It'd be tricky to implement.  Probably you could get just as much benefit
by simply waiting on the highest-index page prior to doing the full-range
walk.  Certainly that'd be interesting as a first step: run some tests, see
what impact it has on context switch totals.

Bear in mind that while waiting on the pages in ascending-offset-order
does incur extra context switches, it also yields lowest latency.  Because it
pipelines the inspection of each page with the ongoing I/O.


  reply	other threads:[~2004-08-19 23:30 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-08-19 20:17 Marcelo Tosatti
2004-08-19 21:49 ` Andrew Morton
2004-08-19 22:13   ` Marcelo Tosatti
2004-08-19 23:33     ` Andrew Morton [this message]
     [not found]   ` <1092990808.20987.8.camel@imp.csi.cam.ac.uk>
2004-08-20  8:36     ` Andrew Morton

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=20040819163336.0ab74691.akpm@osdl.org \
    --to=akpm@osdl.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=marcelo.tosatti@cyclades.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®