1. 10 10月, 2005 1 次提交
  2. 25 9月, 2005 1 次提交
  3. 12 9月, 2005 1 次提交
  4. 06 9月, 2005 1 次提交
    • A
      [PATCH] ppc64: speedup cmpxchg · b2c0ab17
      Anton Blanchard 提交于
      cmpxchg has the following code:
      
      __typeof__(*(ptr)) _o_ = (o);
      __typeof__(*(ptr)) _n_ = (n);
      
      Unfortunately it makes gcc 4.0 store and load the variables to the stack.
      Eg in atomic_dec_and_test we get:
      
        stw     r10,112(r1)
        stw     r9,116(r1)
        lwz     r9,112(r1)
        lwz     r0,116(r1)
      
      x86 is just casting the values so do that instead. Also change __xchg*
      and __cmpxchg* to take unsigned values, removing a few sign extensions.
      Signed-off-by: NAnton Blanchard <anton@samba.org>
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      b2c0ab17
  5. 29 8月, 2005 2 次提交
  6. 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