1. 18 Nov, 2003 1 commit
    • Paul Mackerras's avatar
      [PATCH] PPC64: Fix possible race in syscall restart · fbbef764
      Paul Mackerras authored
      This is the PPC64 counterpart of the fix for the potential race in the
      syscall restart code that has gone into other architectures.  It resets
      current_thread_info()->restart_block.fn to do_no_syscall_restart in
      the sigreturn code.
      fbbef764
  2. 17 Nov, 2003 8 commits
  3. 16 Nov, 2003 3 commits
  4. 15 Nov, 2003 4 commits
  5. 14 Nov, 2003 2 commits
    • Paul Mackerras's avatar
      [PATCH] PPC32: cancel syscall restart on signal delivery · 6ebed0fa
      Paul Mackerras authored
      This patch ensures that the PPC kernel cancels any pending restarted
      system call when it delivers a signal.  This is the PPC counterpart of
      the change that has recently gone into i386 and other architectures.
      6ebed0fa
    • Paul Mackerras's avatar
      [PATCH] PPC32: Don't oops on out-of-range system call · 0837a685
      Paul Mackerras authored
      This patch fixes a bug on PPC where the kernel will oops if a process
      does a system call and the system call number is out of range.
      
      While fixing that, I noticed that if the process is being ptraced, an
      out-of-range system call will not get traced on the way in but will on
      the way out.  This patch fixes that too, by making it get traced on
      the way in as well as the way out.  It turned out to be less change,
      and fewer instructions overall, to do that than to make the
      out-of-range system call not be traced at all.
      0837a685
  6. 13 Nov, 2003 9 commits
  7. 12 Nov, 2003 9 commits
  8. 11 Nov, 2003 4 commits
    • Linus Torvalds's avatar
      Merge http://lia64.bkbits.net/to-linus-2.5 · a0118f46
      Linus Torvalds authored
      into home.osdl.org:/home/torvalds/v2.5/linux
      a0118f46
    • Linus Torvalds's avatar
      Re-instate the ALI northbridge checks in ALI IDE driver · 99f0cb29
      Linus Torvalds authored
      This leaves just the minimal oops protection in place, and
      maintains the logic that "if we have a non-ALI northbridge,
      we shouldn't touch any of the GPIOs because we don't know
      what they might be connected to".
      99f0cb29
    • Anton Altaparmakov's avatar
      NTFS: Minor bug fix in attribute list attribute handling that fixes the · 737db367
      Anton Altaparmakov authored
      I/O errors on "ls" of certain fragmented files found by at least two
      people running Windows XP.
      737db367
    • David S. Miller's avatar
      [IPV6]: Fix packet quoting in icmpv6_send(). · 821ea930
      David S. Miller authored
      - Mucking with the original skb pointers with push/pull around
        the packet quoting was wrong, muching with these pointers could
        cause problems with others using the SKB.
      
        It was also buggy, it only handled the case where skb->nh.raw was
        ahead of or equal to skb->data
      
      - The fix is to record skb->nh.raw - skb->data and use this as
        a base offset in calls to skb_copy_and_csum_bits().  This is
        what the pre-IPSEC code did.
      
      This fixes IPV6 oopses and packet corruption on 64-bit platforms
      when sending UDP port unreachable ICMP messages.
      
      Reported and analyzed by Jan Oravec (jan.oravec@6com.sk)
      821ea930