From: SeongJae Park <sj38.park@gmail.com>
To: mgorman@suse.de, akpm@linux-foundation.org
Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org,
SeongJae Park <sj38.park@gmail.com>
Subject: [PATCH] mm: page_alloc: use enum instead of number for migratetype
Date: Thu, 2 Jan 2014 20:25:22 +0900 [thread overview]
Message-ID: <1388661922-10957-1-git-send-email-sj38.park@gmail.com> (raw)
Using enum instead of number for migratetype everywhere would be better
for reading and understanding.
Signed-off-by: SeongJae Park <sj38.park@gmail.com>
---
mm/page_alloc.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 5bcbca5..08f6ed7 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -646,7 +646,7 @@ static inline int free_pages_check(struct page *page)
static void free_pcppages_bulk(struct zone *zone, int count,
struct per_cpu_pages *pcp)
{
- int migratetype = 0;
+ int migratetype = MIGRATE_UNMOVABLE;
int batch_free = 0;
int to_free = count;
@@ -667,7 +667,7 @@ static void free_pcppages_bulk(struct zone *zone, int count,
do {
batch_free++;
if (++migratetype == MIGRATE_PCPTYPES)
- migratetype = 0;
+ migratetype = MIGRATE_UNMOVABLE;
list = &pcp->lists[migratetype];
} while (list_empty(list));
@@ -4158,7 +4158,9 @@ static void pageset_init(struct per_cpu_pageset *p)
pcp = &p->pcp;
pcp->count = 0;
- for (migratetype = 0; migratetype < MIGRATE_PCPTYPES; migratetype++)
+
+ for (migratetype = MIGRATE_UNMOVABLE; migratetype < MIGRATE_PCPTYPES;
+ migratetype++)
INIT_LIST_HEAD(&pcp->lists[migratetype]);
}
--
1.8.1.2
--
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:[~2014-01-02 11:26 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-01-02 11:25 SeongJae Park [this message]
2014-01-02 15:57 ` [PATCH] mm: page_alloc: use enum instead of number for migratetype Mel Gorman
2014-01-03 3:21 ` SeongJae Park
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=1388661922-10957-1-git-send-email-sj38.park@gmail.com \
--to=sj38.park@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mgorman@suse.de \
/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).