aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorTejun Heo <tj@kernel.org>2010-06-27 12:49:59 -0400
committerTejun Heo <tj@kernel.org>2010-06-27 12:49:59 -0400
commit4ba6ce250e406b20bcd6f0f3aed6b3d80965e6c2 (patch)
tree3ae4cdd7c53626dca141bd32037a524a2bc3643c /include
parent9983b6f0cf8263e51bcf4c8a9dc0c1ef175b3c60 (diff)
percpu: make @dyn_size always mean min dyn_size in first chunk init functions
In pcpu_build_alloc_info() and pcpu_embed_first_chunk(), @dyn_size was ssize_t, -1 meant auto-size, 0 forced 0 and positive meant minimum size. There's no use case for forcing 0 and the upcoming early alloc support always requires non-zero dynamic size. Make @dyn_size always mean minimum dyn_size. While at it, make pcpu_build_alloc_info() static which doesn't have any external caller as suggested by David Rientjes. Signed-off-by: Tejun Heo <tj@kernel.org> Cc: David Rientjes <rientjes@google.com>
Diffstat (limited to 'include')
-rw-r--r--include/linux/percpu.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/include/linux/percpu.h b/include/linux/percpu.h
index d3a38d68710..3ffd05e550d 100644
--- a/include/linux/percpu.h
+++ b/include/linux/percpu.h
@@ -104,16 +104,11 @@ extern struct pcpu_alloc_info * __init pcpu_alloc_alloc_info(int nr_groups,
104 int nr_units); 104 int nr_units);
105extern void __init pcpu_free_alloc_info(struct pcpu_alloc_info *ai); 105extern void __init pcpu_free_alloc_info(struct pcpu_alloc_info *ai);
106 106
107extern struct pcpu_alloc_info * __init pcpu_build_alloc_info(
108 size_t reserved_size, ssize_t dyn_size,
109 size_t atom_size,
110 pcpu_fc_cpu_distance_fn_t cpu_distance_fn);
111
112extern int __init pcpu_setup_first_chunk(const struct pcpu_alloc_info *ai, 107extern int __init pcpu_setup_first_chunk(const struct pcpu_alloc_info *ai,
113 void *base_addr); 108 void *base_addr);
114 109
115#ifdef CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK 110#ifdef CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK
116extern int __init pcpu_embed_first_chunk(size_t reserved_size, ssize_t dyn_size, 111extern int __init pcpu_embed_first_chunk(size_t reserved_size, size_t dyn_size,
117 size_t atom_size, 112 size_t atom_size,
118 pcpu_fc_cpu_distance_fn_t cpu_distance_fn, 113 pcpu_fc_cpu_distance_fn_t cpu_distance_fn,
119 pcpu_fc_alloc_fn_t alloc_fn, 114 pcpu_fc_alloc_fn_t alloc_fn,