diff mbox

mmotm 2017-06-23-15-03 uploaded

Message ID 20170627134033.d6df2435117d52721d37a748@linux-foundation.org (mailing list archive)
State New, archived
Headers show

Commit Message

Andrew Morton June 27, 2017, 8:40 p.m. UTC
On Tue, 27 Jun 2017 09:38:09 +0200 Rasmus Villemoes <linux@rasmusvillemoes.dk> wrote:

> >>
> >> However, the patch in mmotm seems to be missing this crucial hunk that
> >> Rasmus had in the patch he sent [1]:
> >>
> >> -__rmqueue_fallback(struct zone *zone, unsigned int order, int
> >> start_migratetype)
> >> +__rmqueue_fallback(struct zone *zone, int order, int start_migratetype)
> >>
> >> which makes this a signed vs signed comparison.
> >>
> >> What happened to it? Andrew?
> 
> This is really odd. Checking, I see that it was also absent from the
> 'this patch has been added to -mm' mail, but I admit I don't proofread
> those to see they match what I sent. Oh well. Let me know if I need to
> do anything.
> 

oops, that was me manually fixing rejects - I missed a bit.

Comments

Stephen Rothwell June 27, 2017, 9:56 p.m. UTC | #1
Hi Andrew,

On Tue, 27 Jun 2017 13:40:33 -0700 Andrew Morton <akpm@linux-foundation.org> wrote:
>
> oops, that was me manually fixing rejects - I missed a bit.
> 
> --- a/mm/page_alloc.c~mm-page_allocc-eliminate-unsigned-confusion-in-__rmqueue_fallback-fix
> +++ a/mm/page_alloc.c
> @@ -2212,7 +2212,7 @@ static bool unreserve_highatomic_pageblo
>   * condition simpler.
>   */
>  static inline bool
> -__rmqueue_fallback(struct zone *zone, unsigned int order, int start_migratetype)
> +__rmqueue_fallback(struct zone *zone, int order, int start_migratetype)
>  {
>  	struct free_area *area;
>  	int current_order;
> _
> 

I have pushed that into the original patch in linux-next for today.
Stephen Rothwell June 27, 2017, 10 p.m. UTC | #2
Hi Andrew,

On Wed, 28 Jun 2017 07:56:42 +1000 Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>
> On Tue, 27 Jun 2017 13:40:33 -0700 Andrew Morton <akpm@linux-foundation.org> wrote:
> >
> > oops, that was me manually fixing rejects - I missed a bit.
> > 
> > --- a/mm/page_alloc.c~mm-page_allocc-eliminate-unsigned-confusion-in-__rmqueue_fallback-fix
> > +++ a/mm/page_alloc.c
> > @@ -2212,7 +2212,7 @@ static bool unreserve_highatomic_pageblo
> >   * condition simpler.
> >   */
> >  static inline bool
> > -__rmqueue_fallback(struct zone *zone, unsigned int order, int start_migratetype)
> > +__rmqueue_fallback(struct zone *zone, int order, int start_migratetype)
> >  {
> >  	struct free_area *area;
> >  	int current_order;
> > _
> >   
> 
> I have pushed that into the original patch in linux-next for today.

But I guess that is irrelevant now :-)
diff mbox

Patch

--- a/mm/page_alloc.c~mm-page_allocc-eliminate-unsigned-confusion-in-__rmqueue_fallback-fix
+++ a/mm/page_alloc.c
@@ -2212,7 +2212,7 @@  static bool unreserve_highatomic_pageblo
  * condition simpler.
  */
 static inline bool
-__rmqueue_fallback(struct zone *zone, unsigned int order, int start_migratetype)
+__rmqueue_fallback(struct zone *zone, int order, int start_migratetype)
 {
 	struct free_area *area;
 	int current_order;