lkml.org 
[lkml]   [2019]   [Jan]   [14]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [PATCH v9] mm/page_alloc.c: memory_hotplug: free pages as higher order
From
Date
On Mon, 2019-01-14 at 15:32 +0100, Michal Hocko wrote:
> On Mon 14-01-19 19:29:39, Arun KS wrote:
> > On 2019-01-10 21:53, Alexander Duyck wrote:
>
> [...]
> > > Couldn't you just do something like the following:
> > > if ((end - start) >= (1UL << (MAX_ORDER - 1))
> > > order = MAX_ORDER - 1;
> > > else
> > > order = __fls(end - start);
> > >
> > > I would think this would save you a few steps in terms of conversions
> > > and such since you are already working in page frame numbers anyway so
> > > a block of 8 pfns would represent an order 3 page wouldn't it?
> > >
> > > Also it seems like an alternative to using "end" would be to just track
> > > nr_pages. Then you wouldn't have to do the "end - start" math in a few
> > > spots as long as you remembered to decrement nr_pages by the amount you
> > > increment start by.
> >
> > Thanks for that. How about this?
> >
> > static int online_pages_blocks(unsigned long start, unsigned long nr_pages)
> > {
> > unsigned long end = start + nr_pages;
> > int order;
> >
> > while (nr_pages) {
> > if (nr_pages >= (1UL << (MAX_ORDER - 1)))
> > order = MAX_ORDER - 1;
> > else
> > order = __fls(nr_pages);
> >
> > (*online_page_callback)(pfn_to_page(start), order);
> > nr_pages -= (1UL << order);
> > start += (1UL << order);
> > }
> > return end - start;
> > }
>
> I find this much less readable so if this is really a big win
> performance wise then make it a separate patch with some nubbers please.

I suppose we could look at simplifying this further. Maybe something
like:
unsigned long end = start + nr_pages;
int order = MAX_ORDER - 1;

while (start < end) {
if ((end - start) < (1UL << (MAX_ORDER - 1))
order = __fls(end - start));
(*online_page_callback)(pfn_to_page(start), order);
start += 1UL << order;
}

return nr_pages;

I would argue it probably doesn't get much more readable than this. The
basic idea is we are chopping off MAX_ORDER - 1 sized chunks and
setting them online until we have to start working our way down in
powers of 2.

In terms of performance the loop itself isn't going to have that much
impact. The bigger issue as I saw it was that we were going through and
converting PFNs to a physical addresses just for the sake of contorting
things to make them work with get_order when we already have the PFN
numbers so all we really need to know is the most significant bit for
the total page count.

\
 
 \ /
  Last update: 2019-01-14 17:42    [W:0.084 / U:0.812 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site