1. 13 5月, 2007 1 次提交
  2. 03 5月, 2007 5 次提交
    • S
      kbuild: complain about missing system calls · c53aeca0
      Sam Ravnborg 提交于
      Most system calls seems to get added to i386 first. This patch
      automatically generates a warning for any new system call which is
      implemented on i386 but not the architecture currently being compiled.
      On PowerPC at the moment, for example, it results in these warnings:
      init/missing_syscalls.h:935:3: warning: #warning syscall sync_file_range not implemented
      init/missing_syscalls.h:947:3: warning: #warning syscall getcpu not implemented
      init/missing_syscalls.h:950:3: warning: #warning syscall epoll_pwait not implemented
      
      The file scripts/checksyscalls.sh list a number of legacy system calls
      that are ignored because they only makes sense on i386 systems.
      
      Other contributors to this patch are Russell King <rmk+lkml@arm.linux.org.uk>
      and Stéphane Jourdois <kwisatz@rubis.org>
      Signed-off-by: NDavid Woodhouse <dwmw2@infradead.org>
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      c53aeca0
    • D
      kbuild: move tags from ARCH and include/ ahead of drivers · dd7e54ad
      Don Mullis 提交于
      Move tags extracted from the ARCH and include/ sub-trees ahead of
      those from device drivers, so that the former will appear first
      during searches.
      
      Saves user time during interactive searches for certain patterns
      that happen to find unwanted matches in driver files.
      
      Example in emacs:
      	 "M-x find-tag PAGE_SIZE"
      	 "M-1 M-." (repeated until definition from asm-i386/page.h appears)
      Signed-off-by: NDon Mullis <dwm@meer.net>
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      dd7e54ad
    • U
      2462566f
    • S
      kbuild: fix section mismatch check for vmlinux · 85bd2fdd
      Sam Ravnborg 提交于
      vmlinux does not contain relocation entries which is
      used by the section mismatch checks.
      Reported by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
      
      Use the individual objects as inputs to overcome
      this limitation.
      In modpost check the .o files and skip non-ELF files.
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      85bd2fdd
    • A
      [PATCH] x86: Drop cc-options call for all options supported in gcc 3.2+ · c8fdd247
      Andi Kleen 提交于
      The kernel only supports gcc 3.2+ now so it doesn't make sense
      anymore to explicitely check for options this compiler version
      already has.
      
      This actually fixes a bug. The -mprefered-stack-boundary check
      never worked because gcc rightly complains
      
        CC      arch/i386/kernel/asm-offsets.s
      cc1: -mpreferred-stack-boundary=2 is not between 4 and 12
      
      We just never saw the error because of cc-options.
      I changed it to 4 to actually work.
      
      Tested by compiling i386 and x86-64 defconfig with gcc 3.2.
      
      Should speed up the build time a tiny bit and improve
      stack usage on i386 slightly.
      Signed-off-by: NAndi Kleen <ak@suse.de>
      c8fdd247
  3. 26 4月, 2007 1 次提交
  4. 16 4月, 2007 1 次提交
  5. 06 4月, 2007 1 次提交
  6. 26 3月, 2007 1 次提交
  7. 16 3月, 2007 1 次提交
  8. 07 3月, 2007 1 次提交
  9. 28 2月, 2007 1 次提交
    • L
      Linux 2.6.21-rc2 · 606135a3
      Linus Torvalds 提交于
      Too many changes for comfort since -rc1.  Some missed merges, and some
      just annoyingly big fixes since.  This is not how an -rc2 should look.
      Need to really calm things down!
      606135a3
  10. 21 2月, 2007 1 次提交
  11. 15 2月, 2007 2 次提交
  12. 13 2月, 2007 1 次提交
  13. 07 2月, 2007 1 次提交
  14. 05 2月, 2007 1 次提交
  15. 31 1月, 2007 2 次提交
  16. 25 1月, 2007 1 次提交
  17. 13 1月, 2007 1 次提交
  18. 11 1月, 2007 1 次提交
  19. 07 1月, 2007 1 次提交
  20. 01 1月, 2007 1 次提交
    • L
      Linux 2.6.20-rc3 · 669df1b4
      Linus Torvalds 提交于
      ...because it's always a good idea to cut a release *before* you go out
      to party and get drunk.
      
      Remember kids: "Don't Drink and Release!"
      669df1b4
  21. 31 12月, 2006 1 次提交
  22. 24 12月, 2006 1 次提交
  23. 23 12月, 2006 1 次提交
    • A
      [PATCH] build compile.h earlier · ef129412
      Andrew Morton 提交于
      compile.h is created super-late in the build.  But proc_misc.c want to include
      it, and it's generally not sane to have a header file in include/linux be
      created at the end of the build: it's either not present or, worse, wrong for
      most of the build.
      
      So the patch arranges for compile.h to be built at the start of the build
      process.  It also consolidates the compile.h rules with those for version.h
      and utsname.h, so they all get built together.
      
      I hope.  My chances of having got this right are about 2%.
      
      Cc: Sam Ravnborg <sam@ravnborg.org>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      ef129412
  24. 16 12月, 2006 1 次提交
    • L
      Remove stack unwinder for now · d1526e2c
      Linus Torvalds 提交于
      It has caused more problems than it ever really solved, and is
      apparently not getting cleaned up and fixed.  We can put it back when
      it's stable and isn't likely to make warning or bug events worse.
      
      In the meantime, enable frame pointers for more readable stack traces.
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      d1526e2c
  25. 14 12月, 2006 2 次提交
  26. 13 12月, 2006 1 次提交
  27. 11 12月, 2006 1 次提交
  28. 30 11月, 2006 1 次提交
  29. 16 11月, 2006 1 次提交
  30. 08 11月, 2006 1 次提交
  31. 31 10月, 2006 1 次提交
  32. 24 10月, 2006 1 次提交
  33. 22 10月, 2006 1 次提交
    • J
      [PATCH] x86-64: Speed up dwarf2 unwinder · 690a973f
      Jan Beulich 提交于
      This changes the dwarf2 unwinder to do a binary search for CIEs
      instead of a linear work. The linker is unfortunately not
      able to build a proper lookup table at link time, instead it creates
      one at runtime as soon as the bootmem allocator is usable (so you'll continue
      using the linear lookup for the first [hopefully] few calls).
      The code should be ready to utilize a build-time created table once
      a fixed linker becomes available.
      Signed-off-by: NJan Beulich <jbeulich@novell.com>
      Signed-off-by: NAndi Kleen <ak@suse.de>
      690a973f