All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC percpu#for-next] percpu: drop per_cpu__ prefix and add sparse annotations, take#2
@ 2009-10-14  6:01 Tejun Heo
  2009-10-14  6:01 ` [PATCH 01/16] vmalloc: fix use of non-existent percpu variable in put_cpu_var() Tejun Heo
                   ` (16 more replies)
  0 siblings, 17 replies; 47+ messages in thread
From: Tejun Heo @ 2009-10-14  6:01 UTC (permalink / raw)
  To: linux-kernel, rusty, cl, mingo, tglx, akpm, rostedt, hpa, cebbert

Hello, all.

This is expanded version of Rusty's drop per_cpu__ prefix patchset
which first appeared way back and has been bit-rotting waiting for all
archs to move to the dynamic percpu allocator.  Now that it's
complete.  I tried to refresh Rusty's patchset and I ended up with
this rather large patchset.

This change has the following benefits.

* Allow unifying different percpu accessors.  With recent changes,
  static and dynamic variables are equal but we still have various now
  equivalent but slightly different accessors.  Dropping special
  handling of static percpu variable symbols will allow unifying them.

* Provide proper protection against incorrect accesses.  With dynamic
  ones becoming the first class citizens and addition of this_cpu_*()
  ops, the protection offered by __per_cpu_ prefixing has been
  diluted.  The usage of dynamic percpu variables and pointer
  variables will keep expanding and the prefixing simply can't cover
  anything not involving static symbols while accessors which don't
  require the prefix allow the same accessbility to both static and
  dynamic ones circumventing any existing protection.

This is the second take.  The cc list was too long on the first post
and lkml rejected it.  Changes from the first post are...

* Slight update on patch descriptions.

* Added Acked and Reviewed-by's.

* Updated against the current percpu#for-next.

  0001-vmalloc-fix-use-of-non-existent-percpu-variable-in-p.patch
  0002-percpu-make-alloc_percpu-handle-array-types.patch
  0003-percpu-remove-some-sparse-warnings.patch
  0004-percpu-make-percpu-symbols-under-kernel-and-mm-uniqu.patch
  0005-percpu-make-percpu-symbols-in-tracer-unique.patch
  0006-percpu-make-percpu-symbols-in-oprofile-unique.patch
  0007-percpu-make-percpu-symbols-in-cpufreq-unique.patch
  0008-percpu-make-percpu-symbols-in-xen-unique.patch
  0009-percpu-make-percpu-symbols-in-x86-unique.patch
  0010-percpu-make-percpu-symbols-in-powerpc-unique.patch
  0011-percpu-make-percpu-symbols-in-ia64-unique.patch
  0012-percpu-make-misc-percpu-symbols-unique.patch
  0013-percpu-remove-per_cpu__-prefix.patch
  0014-percpu-make-access-macros-universal.patch
  0015-percpu-add-__percpu-for-sparse.patch
  0016-percpu-make-accessors-check-for-percpu-pointer-in-sp.patch

0001-0002 fix misc stuff (not strictly necessary for upstream at this
point).

0003 removes existing sparse warnings triggered by percpu code.

0004-0012 make percpu symbols unique.  These patches are of larger
scope than Rusty's patch mainly because of the global visibility of
static percpu variables (for __weak usage in alpha and s390).  So, I
audited all percpu variables and made sure they are unique in global
namespace even with per_cpu__ prefix removed and they don't clash with
local variable usages.  If you're maintainer of the affected
subsystem, please ack the patch.  If you think a patch better be
routed through different tree, please let me know.  As long as it's a
stable git tree, the patch can go there and percpu tree can pull from
it.

0013-0014 remove per_cpu__ prefix and make all percpu accessors safe
to use for both static and dynamic percpu variables.

0015-0016 add sparse annotations to catch incorrect accesses.  BTW,
there are way too many existing sparse warnings which makes it very
difficult to verify stuff.  Is this expected?

This unification of static and dynamic variable handlings kind of
brings out the ugliness of the current percpu interface.  There are
different macros doing the same thing, names are inconsistent and too
many take lvalue when they should take a pointer.  So, it seems we
definitely can use some cleanup here.

This patchset is available in the following git tree.

  git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git unified-symbols

and contains the following changes.

 arch/blackfin/mach-common/entry.S          |    4 
 arch/cris/arch-v10/kernel/entry.S          |    2 
 arch/cris/arch-v32/mm/mmu.S                |    2 
 arch/ia64/include/asm/percpu.h             |    4 
 arch/ia64/include/asm/processor.h          |    6 -
 arch/ia64/kernel/head.S                    |    4 
 arch/ia64/kernel/ia64_ksyms.c              |    4 
 arch/ia64/kernel/mca_asm.S                 |    2 
 arch/ia64/kernel/relocate_kernel.S         |    2 
 arch/ia64/kernel/setup.c                   |    4 
 arch/ia64/mm/discontig.c                   |    5 -
 arch/ia64/sn/kernel/sn2/sn2_smp.c          |    8 -
 arch/ia64/xen/irq_xen.c                    |  131 ++++++++++++++---------------
 arch/ia64/xen/time.c                       |   22 ++--
 arch/microblaze/include/asm/entry.h        |    2 
 arch/mn10300/kernel/kprobes.c              |   61 ++++++-------
 arch/parisc/lib/fixup.S                    |    8 -
 arch/powerpc/include/asm/smp.h             |    2 
 arch/powerpc/kernel/perf_callchain.c       |    4 
 arch/powerpc/kernel/setup-common.c         |    4 
 arch/powerpc/kernel/smp.c                  |    2 
 arch/powerpc/platforms/cell/interrupt.c    |   14 +--
 arch/powerpc/platforms/pseries/dtl.c       |    4 
 arch/powerpc/platforms/pseries/hvCall.S    |    2 
 arch/sparc/kernel/nmi.c                    |    6 -
 arch/sparc/kernel/rtrap_64.S               |    8 -
 arch/x86/include/asm/percpu.h              |   63 ++++++-------
 arch/x86/include/asm/system.h              |    8 -
 arch/x86/kernel/apic/nmi.c                 |    6 -
 arch/x86/kernel/cpu/common.c               |    8 -
 arch/x86/kernel/cpu/cpu_debug.c            |   30 +++---
 arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c |   28 +++---
 arch/x86/kernel/cpu/intel_cacheinfo.c      |   54 +++++------
 arch/x86/kernel/ds.c                       |    4 
 arch/x86/kernel/head_32.S                  |    6 -
 arch/x86/kernel/vmlinux.lds.S              |    4 
 arch/x86/kvm/svm.c                         |   63 ++++++-------
 arch/x86/xen/smp.c                         |   41 ++++-----
 arch/x86/xen/time.c                        |   24 ++---
 arch/x86/xen/xen-asm_32.S                  |    4 
 drivers/cpufreq/cpufreq.c                  |   16 +--
 drivers/cpufreq/freq_table.c               |   12 +-
 drivers/crypto/padlock-aes.c               |   12 +-
 drivers/lguest/x86/core.c                  |    6 -
 drivers/oprofile/cpu_buffer.c              |   19 +---
 drivers/oprofile/cpu_buffer.h              |    4 
 drivers/oprofile/oprofile_stats.c          |    4 
 drivers/s390/net/netiucv.c                 |    8 -
 include/asm-generic/percpu.h               |   18 ++-
 include/linux/compiler.h                   |    4 
 include/linux/percpu-defs.h                |   41 +++++----
 include/linux/percpu.h                     |   94 +++++++++++---------
 include/linux/vmstat.h                     |    8 -
 kernel/lockdep.c                           |   11 +-
 kernel/rcutorture.c                        |    8 -
 kernel/sched.c                             |    8 -
 kernel/softirq.c                           |    4 
 kernel/softlockup.c                        |   54 +++++------
 kernel/time/timer_stats.c                  |   11 +-
 kernel/trace/trace.c                       |   10 +-
 kernel/trace/trace_functions_graph.c       |    4 
 kernel/trace/trace_hw_branches.c           |   51 +++++------
 mm/percpu.c                                |    1 
 mm/slab.c                                  |   18 +--
 mm/vmalloc.c                               |    4 
 mm/vmstat.c                                |    7 -
 66 files changed, 562 insertions(+), 535 deletions(-)

Thanks.

--
tejun

^ permalink raw reply	[flat|nested] 47+ messages in thread

end of thread, other threads:[~2009-11-02 16:37 UTC | newest]

Thread overview: 47+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-10-14  6:01 [RFC percpu#for-next] percpu: drop per_cpu__ prefix and add sparse annotations, take#2 Tejun Heo
2009-10-14  6:01 ` [PATCH 01/16] vmalloc: fix use of non-existent percpu variable in put_cpu_var() Tejun Heo
2009-10-14 15:06   ` Christoph Lameter
2009-10-15  9:10     ` Tejun Heo
2009-10-14  6:01 ` [PATCH 02/16] percpu: make alloc_percpu() handle array types Tejun Heo
2009-10-14  6:01 ` [PATCH 03/16] percpu: remove some sparse warnings Tejun Heo
2009-10-14 14:20   ` Christoph Lameter
2009-10-14  6:01 ` [PATCH 04/16] percpu: make percpu symbols under kernel/ and mm/ unique Tejun Heo
2009-10-14  6:01 ` [PATCH 05/16] percpu: make percpu symbols in tracer unique Tejun Heo
2009-10-14  6:01 ` [PATCH 06/16] percpu: make percpu symbols in oprofile unique Tejun Heo
2009-10-14  6:01 ` [PATCH 07/16] percpu: make percpu symbols in cpufreq unique Tejun Heo
2009-10-14  6:01 ` [PATCH 08/16] percpu: make percpu symbols in xen unique Tejun Heo
2009-10-14  6:01 ` [PATCH 09/16] percpu: make percpu symbols in x86 unique Tejun Heo
2009-10-14  6:01 ` [PATCH 10/16] percpu: make percpu symbols in powerpc unique Tejun Heo
2009-10-14  6:01   ` Tejun Heo
2009-10-27  3:19   ` Benjamin Herrenschmidt
2009-10-27  3:19     ` Benjamin Herrenschmidt
2009-10-14  6:02 ` [PATCH 11/16] percpu: make percpu symbols in ia64 unique Tejun Heo
2009-10-14  6:02   ` Tejun Heo
2009-10-14  6:02 ` [PATCH 12/16] percpu: make misc percpu symbols unique Tejun Heo
2009-10-14  6:02 ` [PATCH 13/16] percpu: remove per_cpu__ prefix Tejun Heo
2009-10-14 14:36   ` Christoph Lameter
2009-10-14 16:42     ` Luck, Tony
2009-10-14 17:38       ` H. Peter Anvin
2009-10-14 18:26         ` Christoph Lameter
2009-10-15  8:57         ` Tejun Heo
2009-10-14 18:22       ` Christoph Lameter
2009-10-14 18:36         ` Luck, Tony
2009-10-14 18:51           ` Christoph Lameter
2009-10-15  8:51             ` Tejun Heo
2009-10-16 16:23               ` Christoph Lameter
2009-10-15  9:24     ` Tejun Heo
2009-10-16  6:04       ` Michal Simek
2009-10-18  2:58         ` Tejun Heo
2009-10-19 13:41           ` Michal Simek
2009-10-29 11:11             ` Tejun Heo
2009-11-02 16:35               ` Michal Simek
2009-10-19 13:40       ` Michal Simek
2009-10-29 12:06         ` Tejun Heo
2009-10-14  6:02 ` [PATCH 14/16] percpu: make access macros universal Tejun Heo
2009-10-14 14:38   ` Christoph Lameter
2009-10-15  9:27     ` Tejun Heo
2009-10-14  6:02 ` [PATCH 15/16] percpu: add __percpu for sparse Tejun Heo
2009-10-14  6:02 ` [PATCH 16/16] percpu: make accessors check for percpu pointer in sparse Tejun Heo
2009-10-14 14:41   ` Christoph Lameter
2009-10-15  9:08     ` Tejun Heo
2009-10-29 13:40 ` [RFC percpu#for-next] percpu: drop per_cpu__ prefix and add sparse annotations, take#2 Tejun Heo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.