From: Huang Shijie <shijie8@gmail.com>
To: akpm@linux-foundation.org
Cc: mel@csn.ul.ie, linux-mm@kvack.org, Huang Shijie <shijie8@gmail.com>
Subject: [PATCH] mm : kill combined_idx
Date: Mon, 21 Dec 2009 11:32:27 +0800 [thread overview]
Message-ID: <1261366347-19232-1-git-send-email-shijie8@gmail.com> (raw)
In more then half of all the cases, `page' is head of the buddy pair
{page, buddy} in __free_one_page. That is because the allocation logic
always picks the head of a chunk, and puts the rest back to the buddy system.
So calculating the combined page is not needed but waste some cycles in
more then half of all the cases.Just do the calculation when `page' is
bigger then the `buddy'.
Signed-off-by: Huang Shijie <shijie8@gmail.com>
---
mm/page_alloc.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 4e86965..42351bf 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -464,7 +464,6 @@ static inline void __free_one_page(struct page *page,
VM_BUG_ON(bad_range(zone, page));
while (order < MAX_ORDER-1) {
- unsigned long combined_idx;
struct page *buddy;
buddy = __page_find_buddy(page, page_idx, order);
@@ -475,9 +474,10 @@ static inline void __free_one_page(struct page *page,
list_del(&buddy->lru);
zone->free_area[order].nr_free--;
rmv_page_order(buddy);
- combined_idx = __find_combined_index(page_idx, order);
- page = page + (combined_idx - page_idx);
- page_idx = combined_idx;
+ if (page > buddy) { /* keep `page' the head of the buddy pair */
+ page = buddy;
+ page_idx = __find_combined_index(page_idx, order);
+ }
order++;
}
set_page_order(page, order);
--
1.6.0.6
--
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 reply other threads:[~2009-12-21 3:32 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-12-21 3:32 Huang Shijie [this message]
2009-12-21 5:31 ` KAMEZAWA Hiroyuki
2009-12-21 19:43 ` Mel Gorman
2009-12-22 3:11 ` Huang Shijie
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=1261366347-19232-1-git-send-email-shijie8@gmail.com \
--to=shijie8@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=linux-mm@kvack.org \
--cc=mel@csn.ul.ie \
/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