1. 25 1月, 2011 1 次提交
    • R
      ARM: realview,vexpress: fix section mismatch warning for pen_release · ec15038f
      Russell King 提交于
      Fix two section mismatch warnings in the platform SMP bringup code for
      Realview and Versatile Express:
      
      WARNING: arch/arm/mach-realview/built-in.o(.text+0x8ac): Section mismatch in reference from the function write_pen_release() to the variable .cpuinit.data:pen_release
      The function write_pen_release() references
      the variable __cpuinitdata pen_release.
      This is often because write_pen_release lacks a __cpuinitdata
      annotation or the annotation of pen_release is wrong.
      
      WARNING: arch/arm/mach-vexpress/built-in.o(.text+0x7b4): Section mismatch in reference from the function write_pen_release() to the variable .cpuinit.data:pen_release
      The function write_pen_release() references
      the variable __cpuinitdata pen_release.
      This is often because write_pen_release lacks a __cpuinitdata
      annotation or the annotation of pen_release is wrong.
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      ec15038f
  2. 20 12月, 2010 7 次提交
  3. 15 12月, 2010 1 次提交
  4. 03 12月, 2010 1 次提交
  5. 05 11月, 2009 1 次提交
  6. 24 7月, 2009 1 次提交
  7. 30 5月, 2009 1 次提交
  8. 28 5月, 2009 1 次提交
  9. 18 5月, 2009 4 次提交
  10. 17 5月, 2009 2 次提交
  11. 09 1月, 2009 1 次提交
  12. 01 12月, 2008 3 次提交
  13. 06 9月, 2008 1 次提交
  14. 07 8月, 2008 2 次提交
  15. 03 7月, 2008 1 次提交
  16. 01 7月, 2008 1 次提交
  17. 19 4月, 2008 2 次提交
  18. 05 2月, 2008 3 次提交
  19. 16 2月, 2007 1 次提交
  20. 15 2月, 2007 1 次提交
  21. 16 2月, 2006 1 次提交
    • R
      [ARM] Fix SMP initialisation oops · 7bbb7940
      Russell King 提交于
      A change to the SMP initialisation caused the following oops:
      
       CPU1: Booted secondary processor
       CPU1: D VIPT write-back cache
       CPU1: I cache: 32768 bytes, associativity 4, 32 byte lines, 256 sets
       CPU1: D cache: 32768 bytes, associativity 4, 32 byte lines, 256 sets
       <7>Calibrating delay loop... 83.14 BogoMIPS (lpj=415744)
       <1>Unable to handle kernel NULL pointer dereference at virtual address 0000001c
       ...
       PC is at enqueue_task+0x1c/0x64
       LR is at activate_task+0xcc/0xe4
      
      SMP initialisation now requires cpu_possible_map to be initialised in
      setup_arch().  Move this from smp_prepare_cpus() to smp_init_cpus()
      and call it from our setup_arch() if CONFIG_SMP is enabled.
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      7bbb7940
  22. 16 11月, 2005 1 次提交
  23. 09 11月, 2005 1 次提交
  24. 08 11月, 2005 1 次提交