From: Joe Perches <joe@perches.com>
To: David Rientjes <rientjes@google.com>
Cc: Eric Dumazet <eric.dumazet@gmail.com>,
David Miller <davem@davemloft.net>,
netdev <netdev@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] net: use __GFP_NORETRY for high order allocations
Date: Thu, 06 Feb 2014 13:34:04 -0800 [thread overview]
Message-ID: <1391722444.15777.28.camel@joe-AO722> (raw)
In-Reply-To: <alpine.DEB.2.02.1402061302020.9567@chino.kir.corp.google.com>
On Thu, 2014-02-06 at 13:03 -0800, David Rientjes wrote:
> On Thu, 6 Feb 2014, Joe Perches wrote:
>
> > On Thu, 2014-02-06 at 10:42 -0800, Eric Dumazet wrote:
> > > sock_alloc_send_pskb() & sk_page_frag_refill()
> > > have a loop trying high order allocations to prepare
> > > skb with low number of fragments as this increases performance.
> > >
> > > Problem is that under memory pressure/fragmentation, this can
> > > trigger OOM while the intent was only to try the high order
> > > allocations, then fallback to order-0 allocations.
> > []
> > > Call Trace:
> > > [<ffffffff8043766c>] dump_header+0xe1/0x23e
> > > [<ffffffff80437a02>] oom_kill_process+0x6a/0x323
> > > [<ffffffff80438443>] out_of_memory+0x4b3/0x50d
> > > [<ffffffff8043a4a6>] __alloc_pages_may_oom+0xa2/0xc7
> > > [<ffffffff80236f42>] __alloc_pages_nodemask+0x1002/0x17f0
> > > [<ffffffff8024bd23>] alloc_pages_current+0x103/0x2b0
> > > [<ffffffff8028567f>] sk_page_frag_refill+0x8f/0x160
> > []
> > > diff --git a/net/core/sock.c b/net/core/sock.c
> > []
> > > @@ -1775,7 +1775,9 @@ struct sk_buff *sock_alloc_send_pskb(struct sock *sk, unsigned long header_len,
> > > while (order) {
> > > if (npages >= 1 << order) {
> > > page = alloc_pages(sk->sk_allocation |
> > > - __GFP_COMP | __GFP_NOWARN,
> > > + __GFP_COMP |
> > > + __GFP_NOWARN |
> > > + __GFP_NORETRY,
> > > order);
> > > if (page)
> > > goto fill_page;
> > > @@ -1845,7 +1847,7 @@ bool skb_page_frag_refill(unsigned int sz, struct page_frag *pfrag, gfp_t prio)
> > > gfp_t gfp = prio;
> > >
> > > if (order)
> > > - gfp |= __GFP_COMP | __GFP_NOWARN;
> > > + gfp |= __GFP_COMP | __GFP_NOWARN | __GFP_NORETRY;
> >
> > Perhaps add __GFP_THISNODE too ?
> >
>
> How does __GFP_THISNODE have anything to do with avoiding oom killing due
> to high-order fragmentation?
I don't think it does.
> If they absolutely require local memory to
> currnet's cpu node then that would make sense,
I presumed THISNODE would be used only with NORETRY
> but the fallback still
> allocates order-0 memory remotely and with __GFP_THISNODE on this attempt
> we wouldn't even attempt remote reclaim.
any other alloc attempt could work on other cpus.
It was just a thought, ignore it if it's a dumb thought.
next prev parent reply other threads:[~2014-02-06 21:34 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-02-06 18:42 [PATCH] net: use __GFP_NORETRY for high order allocations Eric Dumazet
2014-02-06 20:24 ` Joe Perches
2014-02-06 21:00 ` Eric Dumazet
2014-02-06 21:03 ` David Rientjes
2014-02-06 21:34 ` Joe Perches [this message]
2014-02-06 21:39 ` David Rientjes
2014-02-07 2:03 ` Eric W. Biederman
2014-02-07 2:09 ` Eric Dumazet
2014-02-07 6:29 ` David Miller
2014-02-08 0:22 ` Eric W. Biederman
2014-02-25 20:50 ` David Miller
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=1391722444.15777.28.camel@joe-AO722 \
--to=joe@perches.com \
--cc=davem@davemloft.net \
--cc=eric.dumazet@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=rientjes@google.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