Skip to content

Commit

Permalink
percpu: reduce PCPU_MIN_UNIT_SIZE to 32k
Browse files Browse the repository at this point in the history
In preparation of enabling percpu allocator for UP, reduce
PCPU_MIN_UNIT_SIZE to 32k.  On UP, the first chunk doesn't have to
include static percpu variables and chunk size can be smaller which is
important as UP percpu allocator will use contiguous kernel memory to
populate chunks.

PCPU_MIN_UNIT_SIZE also determines the maximum supported allocation
size but 32k should still be enough.

Signed-off-by: Tejun Heo <tj@kernel.org>
Reviewed-by: Christoph Lameter <cl@linux.com>
  • Loading branch information
Tejun Heo committed Sep 8, 2010
1 parent 4f8b02b commit 6abad5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/linux/percpu.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
#ifdef CONFIG_SMP

/* minimum unit size, also is the maximum supported allocation size */
#define PCPU_MIN_UNIT_SIZE PFN_ALIGN(64 << 10)
#define PCPU_MIN_UNIT_SIZE PFN_ALIGN(32 << 10)

/*
* Percpu allocator can serve percpu allocations before slab is
Expand Down

0 comments on commit 6abad5a

Please sign in to comment.