From: Bryan Wu <cooloney@kernel.org>
To: linux-kernel@vger.kernel.org, linux-mm@kvack.org, dwmw2@infradead.org
Cc: Michael Hennerich <michael.hennerich@analog.com>,
Bryan Wu <cooloney@kernel.org>
Subject: [PATCH 1/4] [mm] buddy page allocator: add tunable big order allocation
Date: Mon, 12 May 2008 18:32:02 +0800 [thread overview]
Message-ID: <1210588325-11027-2-git-send-email-cooloney@kernel.org> (raw)
In-Reply-To: <1210588325-11027-1-git-send-email-cooloney@kernel.org>
From: Michael Hennerich <michael.hennerich@analog.com>
Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
---
init/Kconfig | 9 +++++++++
mm/page_alloc.c | 2 +-
2 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/init/Kconfig b/init/Kconfig
index 6135d07..b6ff75b 100644
--- a/init/Kconfig
+++ b/init/Kconfig
@@ -742,6 +742,15 @@ config SLUB_DEBUG
SLUB sysfs support. /sys/slab will not exist and there will be
no support for cache validation etc.
+config BIG_ORDER_ALLOC_NOFAIL_MAGIC
+ int "Big Order Allocation No FAIL Magic"
+ depends on EMBEDDED
+ range 3 10
+ default 3
+ help
+ Let big-order allocations loop until memory gets free. Specified Value
+ expresses the order.
+
choice
prompt "Choose SLAB allocator"
default SLUB
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index bdd5c43..71b09b4 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -1631,7 +1631,7 @@ nofail_alloc:
pages_reclaimed += did_some_progress;
do_retry = 0;
if (!(gfp_mask & __GFP_NORETRY)) {
- if (order <= PAGE_ALLOC_COSTLY_ORDER) {
+ if (order <= CONFIG_BIG_ORDER_ALLOC_NOFAIL_MAGIC) {
do_retry = 1;
} else {
if (gfp_mask & __GFP_REPEAT &&
--
1.5.5
WARNING: multiple messages have this Message-ID (diff)
From: Bryan Wu <cooloney@kernel.org>
From: Michael Hennerich <michael.hennerich@analog.com>
To: linux-kernel@vger.kernel.org, linux-mm@kvack.org, dwmw2@infradead.org
Cc: Michael Hennerich <michael.hennerich@analog.com>,
Bryan Wu <cooloney@kernel.org>
Subject: [PATCH 1/4] [mm] buddy page allocator: add tunable big order allocation
Date: Mon, 12 May 2008 18:32:02 +0800 [thread overview]
Message-ID: <1210588325-11027-2-git-send-email-cooloney@kernel.org> (raw)
In-Reply-To: <1210588325-11027-1-git-send-email-cooloney@kernel.org>
Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
---
init/Kconfig | 9 +++++++++
mm/page_alloc.c | 2 +-
2 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/init/Kconfig b/init/Kconfig
index 6135d07..b6ff75b 100644
--- a/init/Kconfig
+++ b/init/Kconfig
@@ -742,6 +742,15 @@ config SLUB_DEBUG
SLUB sysfs support. /sys/slab will not exist and there will be
no support for cache validation etc.
+config BIG_ORDER_ALLOC_NOFAIL_MAGIC
+ int "Big Order Allocation No FAIL Magic"
+ depends on EMBEDDED
+ range 3 10
+ default 3
+ help
+ Let big-order allocations loop until memory gets free. Specified Value
+ expresses the order.
+
choice
prompt "Choose SLAB allocator"
default SLUB
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index bdd5c43..71b09b4 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -1631,7 +1631,7 @@ nofail_alloc:
pages_reclaimed += did_some_progress;
do_retry = 0;
if (!(gfp_mask & __GFP_NORETRY)) {
- if (order <= PAGE_ALLOC_COSTLY_ORDER) {
+ if (order <= CONFIG_BIG_ORDER_ALLOC_NOFAIL_MAGIC) {
do_retry = 1;
} else {
if (gfp_mask & __GFP_REPEAT &&
--
1.5.5
--
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>
next prev parent reply other threads:[~2008-05-12 10:32 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-05-12 10:32 [PATCH 0/4] Memory management patches from Blackfin team Bryan Wu
2008-05-12 10:32 ` Bryan Wu
2008-05-12 10:32 ` Bryan Wu [this message]
2008-05-12 10:32 ` [PATCH 1/4] [mm] buddy page allocator: add tunable big order allocation Bryan Wu, Michael Hennerich
2008-05-13 2:09 ` KAMEZAWA Hiroyuki
2008-05-13 2:09 ` KAMEZAWA Hiroyuki
2008-05-13 11:42 ` Hennerich, Michael
2008-05-13 11:42 ` Hennerich, Michael
2008-05-14 4:22 ` Bryan Wu
2008-05-14 4:22 ` Bryan Wu
2008-05-14 5:04 ` KAMEZAWA Hiroyuki
2008-05-14 5:04 ` KAMEZAWA Hiroyuki
2008-05-12 10:32 ` [PATCH 2/4] [NOMMU]: include the problematic mapping in the munmap warning Bryan Wu
2008-05-12 10:32 ` Bryan Wu, Mike Frysinger
2008-05-15 6:33 ` Bryan Wu
2008-05-15 6:33 ` Bryan Wu
2008-05-12 10:32 ` [PATCH 3/4] [mm/nommu]: use copy_to_user_page to call flush icache for [#811] toolchain old bug Bryan Wu
2008-05-12 10:32 ` Bryan Wu, Jie Zhang
2008-05-15 6:24 ` Bryan Wu
2008-05-15 6:24 ` Bryan Wu
2008-05-12 10:32 ` [PATCH 4/4] [MM/NOMMU]: Export two symbols in nommu.c for mmap test Bryan Wu
2008-05-12 10:32 ` Bryan Wu, Vivi Li
2008-05-12 10:38 ` Mike Frysinger
2008-05-12 10:38 ` Mike Frysinger
2008-05-12 13:00 ` Christoph Hellwig
2008-05-12 13:00 ` Christoph Hellwig
2008-05-12 13:02 ` Mike Frysinger
2008-05-12 13:02 ` Mike Frysinger
2008-05-13 7:09 ` Bryan Wu
2008-05-13 7:09 ` Bryan Wu
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=1210588325-11027-2-git-send-email-cooloney@kernel.org \
--to=cooloney@kernel.org \
--cc=dwmw2@infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=michael.hennerich@analog.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.