linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Minchan Kim <minchan.kim@gmail.com>
To: shijie8 <shijie8@gmail.com>
Cc: Minchan Kim <minchan.kim@gmail.com>,
	akpm@linux-foundation.org, mel@csn.ul.ie, linux-mm@kvack.org
Subject: Re: [PATCH] mm : add check for the return value
Date: Mon, 4 Jan 2010 13:48:27 +0900	[thread overview]
Message-ID: <20100104134827.ce642c11.minchan.kim@barrios-desktop> (raw)
In-Reply-To: <4B416A28.70806@gmail.com>

On Mon, 04 Jan 2010 12:10:16 +0800
shijie8 <shijie8@gmail.com> wrote:

> 
> > I think it's not desirable to add new branch in hot-path even though
> > we could avoid that.
> >
> > How about this?
> >
> > diff --git a/mm/page_alloc.c b/mm/page_alloc.c
> > index 4e4b5b3..87976ad 100644
> > --- a/mm/page_alloc.c
> > +++ b/mm/page_alloc.c
> > @@ -1244,6 +1244,9 @@ again:
> >          return page;
> >
> >   failed:
> >    
> you miss anther place where also  uses "goto failed".

Yes. It was just for showing my intention. :)

> > +       spin_lock(&zone->lock);
> > +       __mod_zone_page_state(zone, NR_FREE_PAGES, 1<<  order);
> > +       spin_unlock(&zone->lock);
> >          local_irq_restore(flags);
> >          put_cpu();
> >          return NULL;
> >
> >    
> I also thought  over your method before I sent the patch,  but there 
> already exits a
> "if (!page)" , I not sure whether my patch adds too much delay in hot-path.

Tend to agree. I don't object your patch. 

I think the branch itself could not a big deal but 'likely'. 

Why I suggest is that now 'if (!page)' don't have 'likely'.
As you know, 'likely' make the code relocate for reducing code footprint.

Why? It was just mistake or doesn't need it? 

I think Mel does know it. 

-- 
Kind regards,
Minchan Kim

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

  reply	other threads:[~2010-01-04  4:55 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-01-04  2:22 Huang Shijie
2010-01-04  3:21 ` Minchan Kim
2010-01-04  4:10   ` shijie8
2010-01-04  4:48     ` Minchan Kim [this message]
2010-01-04  5:18       ` Huang Shijie
2010-01-04  6:06         ` Minchan Kim
2010-01-08 22:59           ` Andrew Morton
2010-01-04  5:52   ` [PATCH] page allocator: fix update NR_FREE_PAGES only as necessary KOSAKI Motohiro
2010-01-04  6:03     ` Minchan Kim
2010-01-04  6:11     ` Huang Shijie
2010-01-04  6:16       ` KOSAKI Motohiro
2010-01-04  9:35         ` Huang Shijie
2010-01-05  7:24           ` KOSAKI Motohiro
2010-01-04  9:58     ` Mel Gorman
2010-01-04 17:46       ` Christoph Lameter
2010-01-05  1:08       ` KOSAKI Motohiro
2010-01-08 23:02     ` Andrew Morton

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20100104134827.ce642c11.minchan.kim@barrios-desktop \
    --to=minchan.kim@gmail.com \
    --cc=akpm@linux-foundation.org \
    --cc=linux-mm@kvack.org \
    --cc=mel@csn.ul.ie \
    --cc=shijie8@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox