1. 29 May, 2002 30 commits
  2. 30 May, 2002 2 commits
  3. 29 May, 2002 8 commits
    • Patrick Mochel's avatar
      Device Model: Add helpers bus_for_each_dev and bus_for_each_drv · e1e5aa9b
      Patrick Mochel authored
      - iterators for accessing bus's lists of devices and drivers
      - does locking on bus for each list access
      - does reference counting on objects as it grabs and releases them
      - calls callback for each object in list
      e1e5aa9b
    • Linus Torvalds's avatar
      Merge quota update · 704a6dfc
      Linus Torvalds authored
      704a6dfc
    • Jan Kara's avatar
      [PATCH] Quota update [3/3] · 6a0e8d78
      Jan Kara authored
      Remove the old backward-compatible quota interface.
      
      The patch also contains a renaming of functions vfs_{get|set}_info() to
      vfs_{get|set}_dqinfo() and minor compilation fix needed for 2.5.18
      (include <linux/namei.h>).
      6a0e8d78
    • Jan Kara's avatar
      [PATCH] Quota update [2/3] · 26dc86a2
      Jan Kara authored
      This changes the sysctl interface to use reasonable names in
      /proc/sys/fs/quota/
      26dc86a2
    • Jan Kara's avatar
      [PATCH] Quota update [1/3] · c5bea884
      Jan Kara authored
      I ported the quota changes to 2.5.18.  The first one is just a minor
      change to Makefile and Config.in to not build quota.c when not needed.
      c5bea884
    • Linus Torvalds's avatar
      Merge master.kernel.org:/home/mochel/BK/linux-2.5-linus · 155aba2e
      Linus Torvalds authored
      into home.transmeta.com:/home/torvalds/v2.5/linux
      155aba2e
    • Martin Dalecki's avatar
      [PATCH] 2.5.18 IDE 74 · 22cd4c11
      Martin Dalecki authored
      - Simplify the ide-pci code further.
      22cd4c11
    • Martin Dalecki's avatar
      [PATCH] 2.5.18 IDE 73 · eb796b17
      Martin Dalecki authored
       - Merge ide-probe.c and ide-features.c in to one single file.  They are
         mutually doing basically the same and in esp. in case of the device ID
         retrieval there *is* quite a lot of code duplication between them.
         ide-geometry.c fits there as well.
      
       - Remove ide_xfer_verbose - it wasn't really used.
      
       - Don't allow check_partition to be more clever then the writer of a driver.
         It was interfering with drivers which check partitions as they go and
         finally if we want to spew something about it - we can do it ourself.
      
       - Eliminate ide_geninit(). We scan for partitions now inside the recently
         introduced attach method. register_disk() is broken by the way and 90% of
         places where it's used it is doing literally nothing. Either some one didn't
         finish some code or the code is basically just junk from the past.
      
         Anyway we grok the partitions now one by one as we detect the channels.
      
       - ide_driveid_update is gone. We don't report the drive id through /proc/ide
         and we don't have to update it any longer on the fly. Still someone out there
         complaining that it went away!?
      
       - Use the global driver spin-lock to protect data structure access in the
         ide_register_subdriver() function instead of blatantly disabling all
         interrupts.
      eb796b17