From: Christoph Lameter Date: Tue, 5 Jan 2010 06:34:50 +0000 (+0900) Subject: module: Use this_cpu_xx to dynamically allocate counters X-Git-Tag: v2.6.34-rc1~223^2~9 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e1783a240f491fb233f04edc042e16b18a7a79ba;p=pandora-kernel.git module: Use this_cpu_xx to dynamically allocate counters Use cpu ops to deal with the per cpu data instead of a local_t. Reduces memory requirements, cache footprint and decreases cycle counts. The this_cpu_xx operations are also used for !SMP mode. Otherwise we could not drop the use of __module_ref_addr() which would make per cpu data handling complicated. this_cpu_xx operations have their own fallback for !SMP. V8-V9: - Leave include asm/module.h since ringbuffer.c depends on it. Nothing else does though. Another patch will deal with that. - Remove spurious free. Signed-off-by: Christoph Lameter Acked-by: Rusty Russell Signed-off-by: Tejun Heo --- Reading git-diff-tree failed