1. 02 Apr, 2003 1 commit
  2. 31 Mar, 2003 1 commit
    • Jon Grimm's avatar
      [SCTP] Fix SACK bundling bug. · 89f0091e
      Jon Grimm authored
      sctp_packet_bundle_sack() modifies packet->size, but the local copy 
      of this value is not updated.  The bug is that we can "put" too much
      data to the skb and segfault.  Also, once DATA is in the packet, set
      has_sack, so we don't inadvertantly bundle a SACK after DATA. 
      89f0091e
  3. 28 Mar, 2003 1 commit
  4. 25 Mar, 2003 3 commits
  5. 24 Mar, 2003 32 commits
  6. 23 Mar, 2003 2 commits
    • Jonathan Corbet's avatar
      [PATCH] Request queue micropatch · 503be986
      Jonathan Corbet authored
      FYI, I have gotten some most strange results with the equivalent of:
      
           request_queue_t *q = kmalloc(...);
           blk_init_queue(q, ...)
      
      The problem turns out to be that q->backing_dev_info.memory_backed is not
      initialized, leaving it to be whatever was there before.  The end result is
      that my "driver" never saw write requests, but reads came through fine.
      Took a while to figure out that one...
      
      Here's the fix, for what it's worth.  (I had, BTW, tried just zeroing the
      whole structure in blk_init_queue(), but that makes IDE oops at boot - it
      sets q->queuedata early).
      503be986
    • Ingo Molnar's avatar
      [PATCH] posix-timers-cleanup-2.5.65-A5 · 068130cf
      Ingo Molnar authored
      This is a pure identity cleanup:
      
       - coding style fixes (whitespace, code, comment, line length cleanups)
       - remove dead code
       - simplify constructs, make code more readable
      068130cf