1. 15 12月, 2009 1 次提交
    • T
      alpha: Fix fallout from locking changes · 5f6384c5
      Thomas Gleixner 提交于
      spin_* functions are mostly static inline now. That causes the alpha
      compile to fail:
      
      CC      arch/alpha/kernel/sys_sable.o
      cc1: warnings being treated as errors
      In file included from arch/alpha/kernel/sys_sable.c:25:
      arch/alpha/include/asm/core_t2.h: In function 't2_readb':
      arch/alpha/include/asm/core_t2.h:451: error: 'spinlock_check' is static but \
      	used in inline function 't2_readb' which is not static
      arch/alpha/include/asm/core_t2.h:456: error: 'spin_unlock_irqrestore' is \
      	static but used in inline function 't2_readb' which is not static
      
      That's caused by the "extern inline" magic which is used for the
      subarch specific read/write[bwl] functions. I tried to distangle the
      uncountable macro onion layers, but failed miserably.
      
      Last resort solution: switch the t2_hae_lock to raw_spinlock_t so the
      lock functions are pure macros and function calls again.
      Signed-off-by: NThomas Gleixner <tglx@linutronix.de>
      Acked-by: NPeter Zijlstra <peterz@infradead.org>
      Acked-by: NIngo Molnar <mingo@elte.hu>
      Cc: Richard Henderson <rth@twiddle.net>
      Cc: linux-alpha@vger.kernel.org
      5f6384c5
  2. 16 8月, 2008 1 次提交
  3. 21 6月, 2008 1 次提交
    • I
      alpha: fix compile failures with gcc-4.3 (bug #10438) · d559d4a2
      Ivan Kokshaysky 提交于
      Vast majority of these build failures are gcc-4.3 warnings
      about static functions and objects being referenced from
      non-static (read: "extern inline") functions, in conjunction
      with our -Werror.
      
      We cannot just convert "extern inline" to "static inline",
      as people keep suggesting all the time, because "extern inline"
      logic is crucial for generic kernel build.
      So
      - just make sure that all callees of critical "extern inline"
        functions are also "extern inline";
      - use "static inline", wherever it's possible.
      
      traps.c: work around gcc-4.3 being too smart about array
      bounds-checking.
      
      TODO: add "gnu_inline" attribute to all our "extern inline"
      functions to ensure desired behaviour with future compilers.
      Signed-off-by: NIvan Kokshaysky <ink@jurassic.park.msu.ru>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      d559d4a2
  4. 01 6月, 2007 1 次提交
  5. 28 6月, 2006 1 次提交
  6. 26 4月, 2006 1 次提交
  7. 17 4月, 2005 1 次提交
    • L
      Linux-2.6.12-rc2 · 1da177e4
      Linus Torvalds 提交于
      Initial git repository build. I'm not bothering with the full history,
      even though we have it. We can create a separate "historical" git
      archive of that later if we want to, and in the meantime it's about
      3.2GB when imported into git - space that would just make the early
      git days unnecessarily complicated, when we don't have a lot of good
      infrastructure for it.
      
      Let it rip!
      1da177e4