1. 20 Mar, 2004 3 commits
    • Adam Belay's avatar
      [ISAPNP] Fix Device Detection Issue · a747324c
      Adam Belay authored
      Some isapnp devices were not getting detected as a result of a bug in the isapnp
      driver.  It was not following the specifications and calculating a checksum when
      it was not reliable.  This problem was originally discovered by Paul L. Rogers
      <rogerspl@datasync.com>.  He made an initial patch.  This release has some small
      modifications, including a check to see if we run out of CSNs.
      a747324c
    • Adam Belay's avatar
      [PARPORT] Update PC Parport Detection Code · 7be9251f
      Adam Belay authored
      This patch updates the parport_pc driver's probing code to better
      detect PnP devices.  It also removes an extra MODULE_AUTHOR.
      7be9251f
    • Matthew Wilcox's avatar
      [PNP] Resource Conflict Cleanup · bba77b4a
      Matthew Wilcox authored
      This patch simplifies the ranged resource checking logic.
      bba77b4a
  2. 19 Mar, 2004 36 commits
  3. 18 Mar, 2004 1 commit
    • Andrew Morton's avatar
      [PATCH] remove_suid() should return error code · c884a1a3
      Andrew Morton authored
      From: Nikita Danilov <Nikita@Namesys.COM>
      
      remove_suid() ignores return value of notify_change()->i_op->setattr().
      This mean, that even if file system fails to clear suid bit,
      generic_file_aio_write_nolock() proceeds with write, which is unsafe.
      
      Actually, even ext2's ->setattr() can fail, when trying to update ACL, for
      example.
      
      Attached patch modifies remove_suid() to return result of ->setattr(), and
      updates in-tree callers.
      c884a1a3