diff options
author | Tejun Heo <tj@kernel.org> | 2009-03-06 14:33:59 +0900 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2009-03-06 14:33:59 +0900 |
commit | 2441d15c97d498b18f03ae9fba262ffeae42a08b (patch) | |
tree | b1ffae67036b6b1eef544342490d330a9ba183d4 /include/linux | |
parent | 6a242909b01120f6f3d571c0b75e20ec61f0d8d3 (diff) |
percpu: cosmetic renames in pcpu_setup_first_chunk()
Impact: cosmetic, preparation for future changes
Make the following renames in pcpur_setup_first_chunk() in preparation
for future changes.
* s/free_size/dyn_size/
* s/static_vm/first_vm/
* s/static_chunk/schunk/
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/percpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/percpu.h b/include/linux/percpu.h index 2d34b038fe7..a0b4ea2a335 100644 --- a/include/linux/percpu.h +++ b/include/linux/percpu.h @@ -118,7 +118,7 @@ typedef void (*pcpu_populate_pte_fn_t)(unsigned long addr); extern size_t __init pcpu_setup_first_chunk(pcpu_get_page_fn_t get_page_fn, size_t static_size, size_t unit_size, - size_t free_size, void *base_addr, + size_t dyn_size, void *base_addr, pcpu_populate_pte_fn_t populate_pte_fn); /* |