lkml.org 
[lkml]   [2012]   [Dec]   [6]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: Oops in 3.7-rc8 isolate_free_pages_block()
On Thu, Dec 06, 2012 at 10:19:35AM -0800, Linus Torvalds wrote:
> On Thu, Dec 6, 2012 at 9:55 AM, Mel Gorman <mgorman@suse.de> wrote:
> >
> > Yeah. I was listening to a talk while I was writing it, a bit cranky and
> > didn't see why I should suffer alone.
>
> Makes sense.
>
> > Quasimoto strikes again
>
> Is that Quasimodo's Japanese cousin?
>

Yes, he's tried to escape his terrible legacy with a name change.

> > - end_pfn = min(pfn + pageblock_nr_pages, zone_end_pfn);
> > +
> > + /*
> > + * As pfn may not start aligned, pfn+pageblock_nr_page
> > + * may cross a MAX_ORDER_NR_PAGES boundary and miss
> > + * a pfn_valid check. Ensure isolate_freepages_block()
> > + * only scans within a pageblock.
> > + */
> > + end_pfn = ALIGN(pfn + pageblock_nr_pages, pageblock_nr_pages);
> > + end_pfn = min(end_pfn, end_pfn);
>
> Ok, this looks much nicer, except it's obviously buggy. The
> min(end_pfn, end_pfn) thing is insane, and I'm sure you meant for that
> line to be
>
> + end_pfn = min(end_pfn, zone_end_pfn);
>

*sigh* Yes, I did. Thanks.

--
Mel Gorman
SUSE Labs


\
 
 \ /
  Last update: 2012-12-06 20:01    [W:0.675 / U:0.136 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site