From: "Matthew Wilcox (Oracle)" <willy@infradead.org>
To: linux-mm@kvack.org
Cc: "Matthew Wilcox (Oracle)" <willy@infradead.org>,
David Rientjes <rientjes@google.com>
Subject: [PATCH 2/3] mm/vmalloc: Use kvmalloc to allocate the table of pages
Date: Mon, 10 May 2021 16:02:32 +0100 [thread overview]
Message-ID: <20210510150233.1496689-2-willy@infradead.org> (raw)
In-Reply-To: <20210510150233.1496689-1-willy@infradead.org>
If we're trying to allocate 4MB of memory, the table will be 8KiB in size
(1024 pointers * 8 bytes per pointer), which can usually be satisfied
by a kmalloc (which is significantly faster). Instead of changing this
open-coded implementation, just use kvmalloc().
This improves the allocation speed of vmalloc(4MB) by approximately
5% in our benchmark. It's still dominated by the 1024 calls to
alloc_pages_node(), which will be the subject of a later patch.
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Acked-by: David Rientjes <rientjes@google.com>
---
mm/vmalloc.c | 9 ++-------
1 file changed, 2 insertions(+), 7 deletions(-)
diff --git a/mm/vmalloc.c b/mm/vmalloc.c
index a13ac524f6ff..867c155c07e0 100644
--- a/mm/vmalloc.c
+++ b/mm/vmalloc.c
@@ -2774,13 +2774,8 @@ static void *__vmalloc_area_node(struct vm_struct *area, gfp_t gfp_mask,
gfp_mask |= __GFP_HIGHMEM;
/* Please note that the recursion is strictly bounded. */
- if (array_size > PAGE_SIZE) {
- pages = __vmalloc_node(array_size, 1, nested_gfp, node,
- area->caller);
- } else {
- pages = kmalloc_node(array_size, nested_gfp, node);
- }
-
+ pages = kvmalloc_node_caller(array_size, nested_gfp, node,
+ (unsigned long)area->caller);
if (!pages) {
free_vm_area(area);
warn_alloc(gfp_mask, NULL,
--
2.30.2
next prev parent reply other threads:[~2021-05-10 15:05 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-10 15:02 [PATCH 1/3] mm/util: Add kvmalloc_node_caller Matthew Wilcox (Oracle)
2021-05-10 15:02 ` Matthew Wilcox (Oracle) [this message]
2021-05-10 15:02 ` [PATCH 3/3] MAINTAINERS: Add Vlad Rezki as vmalloc maintainer Matthew Wilcox (Oracle)
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=20210510150233.1496689-2-willy@infradead.org \
--to=willy@infradead.org \
--cc=linux-mm@kvack.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;
as well as URLs for NNTP newsgroup(s).