Message-Id: <20090527174658.242536841@gentwo.org> User-Agent: quilt/0.46-1 Date: Wed, 27 May 2009 13:46:58 -0400 From: cl@linux-foundation.org To: akpm@linux-foundation.org Cc: linux-mm@kvack.org Cc: Tejun Heo Cc: mingo@elte.hu Cc: rusty@rustcorp.com.au Cc: davem@davemloft.net Subject-Prefix: [this_cpu_xx V2 @num@/@total@] Subject: Introduce this_cpu_xx operations V1->V2: - Various minor fixes - Add SLUB conversion - Add Page allocator conversion - Patch against the git tree of today The patchset introduces various operations to allow efficient access to per cpu variables for the current processor. Currently there is no way in the core to calcualte the address of the instance of a per cpu variable without a table lookup through per_cpu_ptr(x, smp_processor_id()) The patchset introduces a way to calculate the address using the offset that is available in arch specific ways (register or special memory locations) using this_cpu_ptr(x) In addition operations are provided that can operate on per cpu pointers. This is necessary to be able to use the addresses generated by the new per cpu allocator with per cpu RMW instructions. The arch provided RMW instructions can be used to avoid having to switch off preemption and interrupts for per cpu counter updates. One caveat with this patchset is that it currently does not work on S/390. Tejun Heo has a patchset that fixes the SHIFT_PERCPU_PTR issues on that platform. That patch is required before S/390 will work. Patchset will reduce the code size and increase speed of operations for dynamically allocated per cpu based statistics. Patch shows how this could be done. There are many other places in the code where these macros could be beneficial.