diff options
author | Cody P Schafer <cody@linux.vnet.ibm.com> | 2013-07-03 18:01:35 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-07-03 19:07:27 -0400 |
commit | 88c90dbccaaed35991b5336fec84294de1d23538 (patch) | |
tree | 769f49eba1279387c31a13267f6979f68ee78d17 /mm/page_alloc.c | |
parent | 22a7f12b1606327f0e11fcdf9043ae00bf9917df (diff) |
mm/page_alloc: factor setup_pageset() into pageset_init() and pageset_set_batch()
Signed-off-by: Cody P Schafer <cody@linux.vnet.ibm.com>
Cc: Gilad Ben-Yossef <gilad@benyossef.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@gmail.com>
Cc: Mel Gorman <mgorman@suse.de>
Cc: Pekka Enberg <penberg@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/page_alloc.c')
-rw-r--r-- | mm/page_alloc.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index 386de0f11bea..a235149d9406 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c | |||
@@ -4071,7 +4071,7 @@ static void pageset_set_batch(struct per_cpu_pageset *p, unsigned long batch) | |||
4071 | pageset_update(&p->pcp, 6 * batch, max(1UL, 1 * batch)); | 4071 | pageset_update(&p->pcp, 6 * batch, max(1UL, 1 * batch)); |
4072 | } | 4072 | } |
4073 | 4073 | ||
4074 | static void setup_pageset(struct per_cpu_pageset *p, unsigned long batch) | 4074 | static void pageset_init(struct per_cpu_pageset *p) |
4075 | { | 4075 | { |
4076 | struct per_cpu_pages *pcp; | 4076 | struct per_cpu_pages *pcp; |
4077 | int migratetype; | 4077 | int migratetype; |
@@ -4080,11 +4080,16 @@ static void setup_pageset(struct per_cpu_pageset *p, unsigned long batch) | |||
4080 | 4080 | ||
4081 | pcp = &p->pcp; | 4081 | pcp = &p->pcp; |
4082 | pcp->count = 0; | 4082 | pcp->count = 0; |
4083 | pageset_set_batch(p, batch); | ||
4084 | for (migratetype = 0; migratetype < MIGRATE_PCPTYPES; migratetype++) | 4083 | for (migratetype = 0; migratetype < MIGRATE_PCPTYPES; migratetype++) |
4085 | INIT_LIST_HEAD(&pcp->lists[migratetype]); | 4084 | INIT_LIST_HEAD(&pcp->lists[migratetype]); |
4086 | } | 4085 | } |
4087 | 4086 | ||
4087 | static void setup_pageset(struct per_cpu_pageset *p, unsigned long batch) | ||
4088 | { | ||
4089 | pageset_init(p); | ||
4090 | pageset_set_batch(p, batch); | ||
4091 | } | ||
4092 | |||
4088 | /* | 4093 | /* |
4089 | * setup_pagelist_highmark() sets the high water mark for hot per_cpu_pagelist | 4094 | * setup_pagelist_highmark() sets the high water mark for hot per_cpu_pagelist |
4090 | * to the value high for the pageset p. | 4095 | * to the value high for the pageset p. |