lkml.org 
[lkml]   [2020]   [Apr]   [15]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v11 05/25] mm: Add new readahead_control API
On Tue, 14 Apr 2020 19:18:08 -0700 Matthew Wilcox <willy@infradead.org> wrote:

> On Tue, Apr 14, 2020 at 06:17:05PM -0700, Andrew Morton wrote:
> > On Tue, 14 Apr 2020 08:02:13 -0700 Matthew Wilcox <willy@infradead.org> wrote:
> > > From: "Matthew Wilcox (Oracle)" <willy@infradead.org>
> > >
> > > Filesystems which implement the upcoming ->readahead method will get
> > > their pages by calling readahead_page() or readahead_page_batch().
> > > These functions support large pages, even though none of the filesystems
> > > to be converted do yet.
> > >
> > > +static inline struct page *readahead_page(struct readahead_control *rac)
> > > +static inline unsigned int __readahead_batch(struct readahead_control *rac,
> > > + struct page **array, unsigned int array_sz)
> >
> > These are large functions. Was it correct to inline them?
>
> Hmm. They don't seem that big to me.

They're really big!

> readahead_page, stripped of its sanity checks:

Well, the sanity checks still count for cache footprint.

otoh, I think a function which is expected to be called from a single
site per filesystem is OK to be inlined, because there's not likely to
be much icache benefit unless different filesystem types are
simultaneously being used heavily, which sounds unlikely. Although
there's still a bit of overall code size bloat.

> + rac->_index += rac->_batch_count;
> + if (!rac->_nr_pages) {
> + rac->_batch_count = 0;
> + return NULL;
> + }
> + page = xa_load(&rac->mapping->i_pages, rac->_index);
> + rac->_batch_count = hpage_nr_pages(page);
>
> __readahead_batch is much bigger, but it's only used by btrfs and fuse,
> and it seemed unfair to make everybody pay the cost for a function only
> used by two filesystems.

Do we expect more filesystems to use these in the future?

These function are really big!

> > The batching API only appears to be used by fuse? If so, do we really
> > need it? Does it provide some functional need, or is it a performance
> > thing? If the latter, how significant is it?
>
> I must confess to not knowing the performance impact. If the code uses
> xa_load() repeatedly, it costs O(log n) each time as we walk down the tree
> (mitigated to a large extent by cache, of course). Using xas_for_each()
> keeps us at the bottom of the tree and each iteration is O(1).
> I'm interested to see if filesystem maintainers start to use the batch
> function or if they're happier sticking with the individual lookups.
>
> The batch API was originally written for use with btrfs, but it was a
> significant simplification to convert fuse to use it.

hm, OK. It's not clear that its inclusion is justified?

> > The code adds quite a few (inlined!) VM_BUG_ONs. Can we plan to remove
> > them at some stage? Such as, before Linus shouts at us :)
>
> I'd be happy to remove them. Various reviewers said things like "are you
> sure this can't happen?"

Yeah, these things tend to live for ever. Please add a todo to remove
them after the code has matured?

\
 
 \ /
  Last update: 2020-04-15 06:57    [W:0.327 / U:0.024 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site