1. 08 Apr, 2003 10 commits
  2. 07 Apr, 2003 13 commits
  3. 06 Apr, 2003 1 commit
  4. 07 Apr, 2003 2 commits
  5. 06 Apr, 2003 3 commits
  6. 05 Apr, 2003 1 commit
    • Andi Kleen's avatar
      [PATCH] x86-64 merge · 2ba74897
      Andi Kleen authored
      Make it compile again and various cleanups and a few bug fixes.  Only
      changes x86-64 specific files.
      
      Most of it are S3 suspend changes from Pavel and comment spelling fixes
      from Steven Cole.
      
      - Remove now obsolete check_cpu function
      - Fix sys_ioctl prototype
      - Small optimization - use SYSCALL for 32bit signal handling.
      - Fix S3 suspend handling and split into individual files like i386 (Pavel)
      - Merge from i386 (pci fixes etc.)
      - Set correct paging attributes for IOMMU aperture
      - Fix disable apic option
      2ba74897
  7. 04 Apr, 2003 10 commits
    • Ulrich Drepper's avatar
      [PATCH] Signal invalid ipc operation with ENOSYS · e7507c16
      Ulrich Drepper authored
      The ipc multiplexer syscall on x86 currently returns EINVAL for a
      non-existing sub-opcode.  This logical but is a problem with the
      introduction of new operations (like semtimedop).  Now EINVAL can mean
      "no such operation" and "invalid parameter".  To avoid such problems in
      future, could you apply the attached patch?
      e7507c16
    • Roman Zippel's avatar
      [PATCH] update diffserv URL · 5e038b04
      Roman Zippel authored
      update diffserv URL, patch provided by Tero Pelander (tpeland@tkukoulu.fi).
      5e038b04
    • Roman Zippel's avatar
      [PATCH] gconf update · e7f67eb3
      Roman Zippel authored
      A gconf update by Romain Liévin <roms@tilp.info>
      - fixed bug when double-clicking for changing value.
      - expand row when enabling a row with a submenu.
      - various bug fixes
      e7f67eb3
    • John Levon's avatar
      [PATCH] oprofile doesn't compile with CONFIG_MODULES=n · 1f935de0
      John Levon authored
      The semantically correct approach is for register_module_notifier not to
      exist at all.  That way is #ifdef hell.
      
      So this just makes it an empty function (and also adds a missing
      comment).
      1f935de0
    • Andrey Panin's avatar
      [PATCH] cleanup mach-visws/mpparse.c · 515ad669
      Andrey Panin authored
      This trivial patch removes some now unused data structures from
      mach-visws/mpparse.c
      515ad669
    • Andrey Panin's avatar
      [PATCH] allow penguin with SGI logo for visws · dd355456
      Andrey Panin authored
      Visual Workstations 320/540 are SGI products, so IMHO they can use
      penguin with SGI logo as mips does :))
      dd355456
    • Andrey Panin's avatar
      [PATCH] missing FB_VISUAL_PSEUDOCOLOR in fb_prepare_logo() · 43d569df
      Andrey Panin authored
      This fixes the mighty penguin logo not appearing on visual workstation
      framebuffer.  The trouble is missing 'case FB_VISUAL_PSEUDOCOLOR:' in
      fb_prepare_logo() function.
      43d569df
    • Andrey Panin's avatar
      [PATCH] visws framebuffer driver needs mm.h · 3f77cce8
      Andrey Panin authored
      This fixes the visws framebuffer driver which needs vm_area_struct from
      linux/mm.h
      3f77cce8
    • Linus Torvalds's avatar
      Merge bk://linux-pnp.bkbits.net/pnp-2.5 · e35a3e9a
      Linus Torvalds authored
      into home.transmeta.com:/home/torvalds/v2.5/linux
      e35a3e9a
    • Roland McGrath's avatar
      [PATCH] linux-2.5.66-signal-cleanup.patch · da334d91
      Roland McGrath authored
      Here is the cleanup patch I promised back in February.  Sorry it took a
      while.
      
      The effects should be purely cosmetic in 2.5.66.  However, the new
      interface for the proper way to send thread-specific of process-global
      signals from inside the kernel is needed for correct implementation of
      some fixes to timer stuff that Ulrich told me about.
      
      This cleans up some obsolete comments and macros in kernel/signal.c,
      restores send_sig_info to its original behavior, and adds a global entry
      point send_group_sig_info.  I checked all the uses of send_sig and
      send_sig_info and changed a few to send_group_sig_info.
      
      I think it would be cleanest if the whole mess of *_sig* entry points were
      reduced to two or three, but I did the change that minimized the number of
      callers I had to fix up.
      
      There should be no discernible difference, since the 2.5.66 send_sig_info
      function did group semantics for those signals by number already.  The only
      exception to that is pdeath_signal, which I guess can be any signal number
      but I deemed ought to be process-wide.
      
      I did not change any of the calls using SIGKILL, though that does have
      process-wide semantics.  There is no need to change it since SIGKILL always
      kills the whole group, though the code path for send_sig(SIGKILL,...) calls
      in multithreaded processes will be different now.
      da334d91