On Thu, Feb 27, 2014 at 11:20:34PM +0200, Kirill A. Shutemov wrote: > On Thu, Feb 27, 2014 at 04:19:01PM -0500, Naoya Horiguchi wrote: > > On Thu, Feb 27, 2014 at 01:03:23PM -0800, Andrew Morton wrote: > > > On Wed, 26 Feb 2014 23:39:35 -0500 Naoya Horiguchi <n-horiguchi@xxxxxxxxxxxxx> wrote: > > > > > > > When we try to walk over inside a vma, walk_page_range() tries to walk > > > > until vma->vm_end even if a given end is before that point. > > > > So this patch takes the smaller one as an end address. > > > > > > > > ... > > > > > > > > --- next-20140220.orig/mm/pagewalk.c > > > > +++ next-20140220/mm/pagewalk.c > > > > @@ -321,8 +321,9 @@ int walk_page_range(unsigned long start, unsigned long end, > > > > next = vma->vm_start; > > > > } else { /* inside the found vma */ > > > > walk->vma = vma; > > > > - next = vma->vm_end; > > > > - err = walk_page_test(start, end, walk); > > > > + next = min_t(unsigned long, end, vma->vm_end); > > > > > > min_t is unneeded, isn't it? Everything here has type unsigned long. > > > > Yes, so simply (end < vma->vm_end ? end: vma->vm_end) is enough. > > # I just considered min_t as simple minimum getter without thinking type check. > > We have non-typed min() for that. Thanks. This is what I wanted :) -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>