1. 15 8月, 2008 1 次提交
  2. 17 4月, 2008 1 次提交
    • P
      x86: coding style fixes to arch/x86/lib/string_32.c · 8cf36d2b
      Paolo Ciarrocchi 提交于
      The patch kills 45 errors and a few warnings.
      
      The file is now error/warning free:
      total: 0 errors, 0 warnings, 237 lines checked
      arch/x86/lib/string_32.c has no obvious style problems and is ready for submission.
      
      no code changed:
      
      arch/x86/lib/string_32.o:
         text    data     bss     dec     hex filename
          639       0       0     639     27f string_32.o.before
          639       0       0     639     27f string_32.o.after
      md5:
      2db1c48187cf5113bb595153ee1fc73d  string_32.o.before.asm
      2db1c48187cf5113bb595153ee1fc73d  string_32.o.after.asm
      Signed-off-by: NPaolo Ciarrocchi <paolo.ciarrocchi@gmail.com>
      Signed-off-by: NIngo Molnar <mingo@elte.hu>
      8cf36d2b
  3. 18 10月, 2007 1 次提交
  4. 11 10月, 2007 2 次提交
  5. 22 7月, 2007 1 次提交
    • A
      i386: Move all simple string operations out of line · b520b85a
      Andi Kleen 提交于
      The compiler generally generates reasonable inline code for the simple
      cases and for the rest it's better for code size for them to be out of line.
      Also there they can be potentially optimized more in the future.
      
      In fact they probably should be in a .S file because they're all pure
      assembly, but that's for another day.
      
      Also some code style cleanup on them while I was on it (this seems
      to be the last untouched really early Linux code)
      
      This saves ~12k text for a defconfig kernel with gcc 4.1.
      Signed-off-by: NAndi Kleen <ak@suse.de>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      b520b85a