1. 01 6月, 2015 1 次提交
  2. 15 7月, 2013 1 次提交
    • P
      arm: delete __cpuinit/__CPUINIT usage from all ARM users · 8bd26e3a
      Paul Gortmaker 提交于
      The __cpuinit type of throwaway sections might have made sense
      some time ago when RAM was more constrained, but now the savings
      do not offset the cost and complications.  For example, the fix in
      commit 5e427ec2 ("x86: Fix bit corruption at CPU resume time")
      is a good example of the nasty type of bugs that can be created
      with improper use of the various __init prefixes.
      
      After a discussion on LKML[1] it was decided that cpuinit should go
      the way of devinit and be phased out.  Once all the users are gone,
      we can then finally remove the macros themselves from linux/init.h.
      
      Note that some harmless section mismatch warnings may result, since
      notify_cpu_starting() and cpu_up() are arch independent (kernel/cpu.c)
      and are flagged as __cpuinit  -- so if we remove the __cpuinit from
      the arch specific callers, we will also get section mismatch warnings.
      As an intermediate step, we intend to turn the linux/init.h cpuinit
      related content into no-ops as early as possible, since that will get
      rid of these warnings.  In any case, they are temporary and harmless.
      
      This removes all the ARM uses of the __cpuinit macros from C code,
      and all __CPUINIT from assembly code.  It also had two ".previous"
      section statements that were paired off against __CPUINIT
      (aka .section ".cpuinit.text") that also get removed here.
      
      [1] https://lkml.org/lkml/2013/5/20/589
      
      Cc: Russell King <linux@arm.linux.org.uk>
      Cc: Will Deacon <will.deacon@arm.com>
      Cc: linux-arm-kernel@lists.infradead.org
      Signed-off-by: NPaul Gortmaker <paul.gortmaker@windriver.com>
      8bd26e3a
  3. 21 2月, 2013 1 次提交
  4. 14 2月, 2013 1 次提交
    • A
      ARM: prima2: fix __init section for cpu hotplug · b0db321b
      Arnd Bergmann 提交于
      The code in arch/arm/mach-prima2/headsmp.S is used for
      both boot time initialization and for cpu hotplug,
      so it must not be discarded after the initial boot
      is complete. This replaces the __INIT annotation
      with __CPUINIT, and marks the sirfsoc_cpu_die as
      __ref to annotate that it correctly uses the sections.
      
      Without this patch, building prima2_defconfig results in:
      
      WARNING: arch/arm/mach-prima2/built-in.o(.cpuinit.text+0x130): Section mismatch in reference from the function sirfsoc_boot_secondary() to the function .init.text:sirfsoc_secondary_startup()
      The function __cpuinit sirfsoc_boot_secondary() references
      a function __init sirfsoc_secondary_startup().
      If sirfsoc_secondary_startup is only used by sirfsoc_boot_secondary then
      annotate sirfsoc_secondary_startup with a matching annotation.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Cc: Barry Song <baohua.song@csr.com>
      b0db321b
  5. 22 1月, 2013 1 次提交