1. 24 Feb, 2003 1 commit
  2. 23 Feb, 2003 23 commits
  3. 22 Feb, 2003 16 commits
    • Adam Belay's avatar
      Resource Management Performance Fix · 498a7c08
      Adam Belay authored
      Fixes a typo in pnp_check_*_conflicts functions.  Without this fix the
      resource algorithm will work but will take longer to assign resources.
      
      Also contains some minor reordering in pnp_activate_dev.
      498a7c08
    • Adam Belay's avatar
      Large Stack Usage Fix · 748d7b55
      Adam Belay authored
      Reduces the stack memory usage in the following PnP Functions:
      pnp_printf
      pnp_set_current_resources
      pnp_manual_config_dev
      pnp_activate_dev
      748d7b55
    • David S. Miller's avatar
    • David S. Miller's avatar
    • James Morris's avatar
      [NET]: Add myself as co-maintainer. · 817a3f7f
      James Morris authored
      817a3f7f
    • Richard Henderson's avatar
      Merge kanga.twiddle.net:/home/rth/linux/linus-2.5 · ca5672fb
      Richard Henderson authored
      into kanga.twiddle.net:/home/rth/linux/axp-2.5
      ca5672fb
    • Richard Henderson's avatar
      10f2014b
    • Richard Henderson's avatar
      [ALPHA] More CFLAGS a-la Sam. · 4a93eb24
      Richard Henderson authored
      4a93eb24
    • Sam Ravnborg's avatar
      [PATCH] Alpha CFLAGS fix · 375d43ee
      Sam Ravnborg authored
      Hi Richard.
      
      I noticed you have set -Werror in all alpha architecture
      specific makefiles - good initiative. I wish we could do that in general.
      
      But the correct way to alter CFLAGS in kbuild makefiles is to use
      EXTRA_CFLAGS.
      The following patch fixes this.
      You could argue that this is a stylistic issue, but in this way
      you follow Documentation/kbuild/makefiles.txt
      
      I stumbled over:
      EXTRA_AFLAGS := $(CFLAGS)
      I could not realise the purpose with this assignment, and I noticed
      that it did not include -Werror, becuse you did hat assignment in
      the following line.
      Wanted to inform you about it but I see no problem. It is just that
      I did not understand it.
      
      In math-emu I see this:
      EXTRA_CFLAGS := -Iinclude/math-emu -w
      Grepping the src I see no reason to have the -Iinclude/math-emu
      Relevant files are prefixed with math-emu (soft-fp, single, double)
      I did not fix it, because I cannot compile alpha.
      
      	Sam (the Makefile nitpicker)
      
      ===== arch/alpha/kernel/Makefile 1.24 vs edited =====
      375d43ee
    • Richard Henderson's avatar
      [ALPHA] Fix typo in __kernel_cmpbge. · 877eec6c
      Richard Henderson authored
      877eec6c
    • Christoph Hellwig's avatar
      b17e779c
    • Andi Kleen's avatar
    • Andi Kleen's avatar
      [PATCH] Allow xtime_lock declaration in arch specific code for x86-64 · 057de1bb
      Andi Kleen authored
      x86-64 vsyscalls require mapping the sequence number used by
      gettimeofday in a magic way, so that userland can access it via
      vsyscalls for user space time-of-day access.
      
      Instead of putting the magic into generic code I just allowed to move it
      into architecture specific files.
      057de1bb
    • Andi Kleen's avatar
      [PATCH] Fix some 64bit warnings · 0af95031
      Andi Kleen authored
      Fix some annoying warnings that happen on x86-64.
      
       - Predeclare pt_regs in binfmts.h.  For some reason it isn't included
         implicitely there.
       - use unsigned long, not long for interrupt flags in posix-timers.c
      0af95031
    • Andi Kleen's avatar
      [PATCH] x86-64 update for 2.5.62-bk4 · b5f3160f
      Andi Kleen authored
      This still has a few problems; e.g. posix-timers.c seems to be miscompiled
      by many x86-64 compilers when compiled with -O1. But overall it is better
      than before.
      
       - Disable numa again that was enabled by mistake
       - Fix CPU detection in early boot. Force SSE when needed.
       - Hack for nested NMIs.
       - Fix typo in vsyscall code that lead to broken time reporting
       - Merge with 2.5.62-bk4 (new switch_to, printk cleanups, new timer calls etc.)
       - Fix bug in strace - don't assume syscall_trace doesn't clobber %rcx
       - Fix gs load workaround
       - Fix return value of ioperm (found by new LTP test)
       - Remove some unecessary boot output
       - Remove some obsolete code in setup.c
       - Report more in /proc/cpuinfo, fix extended cpu family computation
       - Fix thread_info access from interrupt/exception stacks - this
         fixes many problems that especially showed on SMP (lost reschedule
         interrupts etc.)
       - Fix UP compilation
       - Symlink hugetlbpage.c from i386
       - Fix buggy lazy fpu handling
      b5f3160f
    • Andrew Morton's avatar
      [PATCH] make drivers/pnp/interface.c compile · ca78c615
      Andrew Morton authored
      Older compilers require that automatic variable declarations appear at the
      start of a block.
      ca78c615