linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Michal Hocko <mhocko@kernel.org>
To: John Hubbard <jhubbard@nvidia.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
	Chris Wilson <chris@chris-wilson.co.uk>,
	Vlastimil Babka <vbabka@suse.cz>,
	linux-mm@kvack.org, LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] mm: clarify why we want kmalloc before falling backto vmallock
Date: Sat, 20 May 2017 09:27:37 +0200	[thread overview]
Message-ID: <20170520072737.GB11925@dhcp22.suse.cz> (raw)
In-Reply-To: <d6121d8b-8d0f-88da-cd67-e9123bb96454@nvidia.com>

On Fri 19-05-17 17:46:58, John Hubbard wrote:
> On 05/17/2017 01:09 AM, Michal Hocko wrote:
> >From: Michal Hocko <mhocko@suse.com>
> >
> >While converting drm_[cm]alloc* helpers to kvmalloc* variants Chris
> >Wilson has wondered why we want to try kmalloc before vmalloc fallback
> >even for larger allocations requests. Let's clarify that one larger
> >physically contiguous block is less likely to fragment memory than many
> >scattered pages which can prevent more large blocks from being created.
> >
> >Suggested-by: Chris Wilson <chris@chris-wilson.co.uk>
> >Signed-off-by: Michal Hocko <mhocko@suse.com>
> >---
> >  mm/util.c | 5 ++++-
> >  1 file changed, 4 insertions(+), 1 deletion(-)
> >
> >diff --git a/mm/util.c b/mm/util.c
> >index 464df3489903..87499f8119f2 100644
> >--- a/mm/util.c
> >+++ b/mm/util.c
> >@@ -357,7 +357,10 @@ void *kvmalloc_node(size_t size, gfp_t flags, int node)
> >  	WARN_ON_ONCE((flags & GFP_KERNEL) != GFP_KERNEL);
> >  	/*
> >-	 * Make sure that larger requests are not too disruptive - no OOM
> >+	 * We want to attempt a large physically contiguous block first because
> >+	 * it is less likely to fragment multiple larger blocks and therefore
> >+	 * contribute to a long term fragmentation less than vmalloc fallback.
> >+	 * However make sure that larger requests are not too disruptive - no OOM
> >  	 * killer and no allocation failure warnings as we have a fallback
> >  	 */
> 
> Thanks for adding this, it's great to have. Here's a slightly polished
> version of your words, if you like:
> 
> 	/*
> 	 * We want to attempt a large physically contiguous block first because
> 	 * it is less likely to fragment multiple larger blocks. This approach
> 	 * therefore contributes less to long term fragmentation than a vmalloc
> 	 * fallback would. However, make sure that larger requests are not too
> 	 * disruptive: no OOM killer and no allocation failure warnings, as we
> 	 * have a fallback.
> 	 */

Looks ok to me.

-- 
Michal Hocko
SUSE Labs

--
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:[~2017-05-20  7:27 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-05-17  8:09 [PATCH] mm: clarify why we want kmalloc before falling backto vmallock Michal Hocko
2017-05-17 13:02 ` Chris Wilson
2017-05-18 14:08 ` Vlastimil Babka
2017-05-20  0:46 ` John Hubbard
2017-05-20  7:27   ` Michal Hocko [this message]

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=20170520072737.GB11925@dhcp22.suse.cz \
    --to=mhocko@kernel.org \
    --cc=akpm@linux-foundation.org \
    --cc=chris@chris-wilson.co.uk \
    --cc=jhubbard@nvidia.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=vbabka@suse.cz \
    /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;
as well as URLs for NNTP newsgroup(s).