1. 06 Feb, 2003 10 commits
  2. 05 Feb, 2003 6 commits
  3. 07 Feb, 2003 3 commits
  4. 06 Feb, 2003 14 commits
  5. 05 Feb, 2003 7 commits
    • Andrew Morton's avatar
      7d5bea38
    • Linus Torvalds's avatar
      Merge http://mdomsch.bkbits.net/linux-2.5-edd · f3812c2a
      Linus Torvalds authored
      into penguin.transmeta.com:/home/penguin/torvalds/repositories/kernel/linux
      f3812c2a
    • Russell King's avatar
      [PATCH] disassociate_ctty SMP fix · 91bb1cf1
      Russell King authored
      Ok, here's my proposed fix, which appears to work with preempt.  I haven't
      tested on non-preempt, nor (obviously since its from me) SMP.  However,
      I forsee no problems caused by this change.
      
      release_dev() sets filp->private_data to NULL when the tty layer has
      done with the file descriptor.  However, it remains on the tty_files
      list until __fput completes.
      91bb1cf1
    • Linus Torvalds's avatar
      Merge http://linux-acpi.bkbits.net/linux-acpi · b82507b1
      Linus Torvalds authored
      into penguin.transmeta.com:/home/penguin/torvalds/repositories/kernel/linux
      b82507b1
    • Stephen Hemminger's avatar
      [PATCH] seqlock for xtime · bb59cfa4
      Stephen Hemminger authored
      Add "seqlock" infrastructure for doing low-overhead optimistic reader
      locks (writer increments a sequence number, reader verifies that no
      writers came in during the critical region, and lots of careful memory
      barriers to take care of business).
      
      Make xtime/get_jiffies_64() use this new locking.
      bb59cfa4
    • Chris Wright's avatar
      [PATCH] 2.5-bk trivial LSM cleanup · 62672619
      Chris Wright authored
      Trivial patch from Randy Dunlap <rddunlap@osdl.org> removes some useless
      error/retval assignments.
      62672619
    • Stephen Hemminger's avatar
      [PATCH] x86_64 gettimeofday bug. · 47baab89
      Stephen Hemminger authored
      Found by inspection of of the x86_64 gettimeofday.
      
      The problem is that the code always records the maximum value
      but it is not reset on the next clock tick.  As written, I see it
      keeping the maximum number of microseconds since the last clock tick.
      47baab89