1. 23 May, 2003 1 commit
  2. 22 May, 2003 16 commits
  3. 21 May, 2003 19 commits
  4. 20 May, 2003 4 commits
    • Dave Jones's avatar
      [AGPGART] PPC compile fix. · 4f866957
      Dave Jones authored
      Generic suspend/resume methods are no more.
      4f866957
    • Linus Torvalds's avatar
      Merge bk://kernel.bkbits.net/davem/net-2.5 · 07ca08b1
      Linus Torvalds authored
      into home.transmeta.com:/home/torvalds/v2.5/linux
      07ca08b1
    • Alexander Viro's avatar
      [PATCH] O_DIRECT open() fix · a45a6dde
      Alexander Viro authored
      Trivial bugfix: opening a file that doesn't have ->direct_IO() with
      O_DIRECT passed in flags fails (as it should) but doesn't call
      ->release() even though ->open() had been successful.
      
      IOW, we have a leak there - e.g.  open() of a tty with O_DIRECT will
      leak a reference to tty and tty_driver.  Besides, quite a few drivers
      are _not_ happy with struct file being freed without ->release() after
      ->open() has returned 0.
      a45a6dde
    • Alexander Viro's avatar
      [PATCH] seq_path() for /proc/pid/maps · 2d9318a1
      Alexander Viro authored
      This converts /proc/pid/maps to use of seq_file, cleans the issues with
      d_path() overflows as a side effect.
      
      It's incremental to seq_path() patch.
      2d9318a1