aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/percpu.h
diff options
context:
space:
mode:
authorTejun Heo <tj@kernel.org>2009-08-14 02:00:51 -0400
committerTejun Heo <tj@kernel.org>2009-08-14 02:00:51 -0400
commit033e48fb82958053113178264ddb9d5038d5e38b (patch)
treea0f0a0d35ca050f9f974c8e50dce7c767d6e7ee6 /include/linux/percpu.h
parent3cbc85652767c38b252c8de55f9fd180b29e4c0d (diff)
percpu: move pcpu_lpage_build_unit_map() and pcpul_lpage_dump_cfg() upward
Unit map handling will be generalized and extended and used for embedding sparse first chunk and other purposes. Relocate two unit_map related functions upward in preparation. This patch just moves the code without any actual change. Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'include/linux/percpu.h')
-rw-r--r--include/linux/percpu.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/include/linux/percpu.h b/include/linux/percpu.h
index d385dbcf190b..570fb18de2ba 100644
--- a/include/linux/percpu.h
+++ b/include/linux/percpu.h
@@ -78,6 +78,14 @@ typedef void (*pcpu_fc_populate_pte_fn_t)(unsigned long addr);
78typedef int (pcpu_fc_cpu_distance_fn_t)(unsigned int from, unsigned int to); 78typedef int (pcpu_fc_cpu_distance_fn_t)(unsigned int from, unsigned int to);
79typedef void (*pcpu_fc_map_fn_t)(void *ptr, size_t size, void *addr); 79typedef void (*pcpu_fc_map_fn_t)(void *ptr, size_t size, void *addr);
80 80
81#ifdef CONFIG_NEED_PER_CPU_LPAGE_FIRST_CHUNK
82extern int __init pcpu_lpage_build_unit_map(
83 size_t reserved_size, ssize_t *dyn_sizep,
84 size_t *unit_sizep, size_t lpage_size,
85 int *unit_map,
86 pcpu_fc_cpu_distance_fn_t cpu_distance_fn);
87#endif
88
81extern size_t __init pcpu_setup_first_chunk( 89extern size_t __init pcpu_setup_first_chunk(
82 size_t static_size, size_t reserved_size, 90 size_t static_size, size_t reserved_size,
83 size_t dyn_size, size_t unit_size, 91 size_t dyn_size, size_t unit_size,
@@ -97,12 +105,6 @@ extern ssize_t __init pcpu_page_first_chunk(
97#endif 105#endif
98 106
99#ifdef CONFIG_NEED_PER_CPU_LPAGE_FIRST_CHUNK 107#ifdef CONFIG_NEED_PER_CPU_LPAGE_FIRST_CHUNK
100extern int __init pcpu_lpage_build_unit_map(
101 size_t reserved_size, ssize_t *dyn_sizep,
102 size_t *unit_sizep, size_t lpage_size,
103 int *unit_map,
104 pcpu_fc_cpu_distance_fn_t cpu_distance_fn);
105
106extern ssize_t __init pcpu_lpage_first_chunk( 108extern ssize_t __init pcpu_lpage_first_chunk(
107 size_t reserved_size, size_t dyn_size, 109 size_t reserved_size, size_t dyn_size,
108 size_t unit_size, size_t lpage_size, 110 size_t unit_size, size_t lpage_size,