1. 10 Mar, 2004 23 commits
  2. 09 Mar, 2004 2 commits
  3. 07 Mar, 2004 2 commits
    • James Bottomley's avatar
      SCSI: implement transport attributes for 53c700 · 63ad6957
      James Bottomley authored
      his patch moves the internal storage of the offset and period to the
      transport class and adds methods to set them (there's no need for a get
      method since the value in the transport class is exactly what the driver
      believes the transport agreement to be).
      
      You can see how this type of use of the transport class is supposed to
      work: the driver now has init and exit routines attaching and releasing
      the transport class (that's the reason for the Makefile perturbation
      because it has to init before its users).  The correct attributes are
      set up in slave_configure() for negotiation and we now export the period
      and offset setting functions.
      63ad6957
    • James Bottomley's avatar
      SCSI: Make SPI transport attributes mutable · 1b98ec6b
      James Bottomley authored
      This adds the final missing piece to the transport attributes:  A
      published API by which they can be set and retrieved (SPI attributes
      only).  The sysfs field only appears writeable if the driver supplied a
      set method in the attribute template, so unsettable attributes show up
      as read only.
      
      The consequence now is that the spi transport attribute class is no
      longer a simple exported structure: the driver has to attach to the spi
      transport class at module initialisation.
      1b98ec6b
  4. 05 Mar, 2004 3 commits
    • James Bottomley's avatar
      [PATCH] Add full complement of SPI transport attributes · f8ca1b01
      James Bottomley authored
      This patch does two things:
      
      1. Add all the other ppr type transport attributes to the spi class
      2. make period settable as the ppr/sdtr period, but display in ns for
      the user.
      f8ca1b01
    • Dave Jones's avatar
      [PATCH] USB 6-in-1 card reader blacklist addition · 9167017d
      Dave Jones authored
      Yes, someone really was stupid enough to make a device with
      such a dumb vendor name. In combination with the device name
      and rev number though, it shouldn't cause any false positives.
      
      Device in question is some no-name 6-in-1 usb card reader,
      whose slots all appear on different LUNs, requiring you
      fiddle with scis_mod's max_luns argument unless you have this patch.
      9167017d
    • Dave Jones's avatar
      [PATCH] sort SCSI blacklist · daaf7b0f
      Dave Jones authored
      No changes whatsoever, just moves entries around to sort
      on vendor. I kept the multiple sections, and just
      sorted per section.
      daaf7b0f
  5. 04 Mar, 2004 4 commits
    • James Bottomley's avatar
      Add SCSI transport attributes · c7572b86
      James Bottomley authored
      From: 	Martin Hicks <mort@wildopensource.com>
      
      Transport attributes are classes which can be
      attached to by a scsi driver to export (and
      later control) transport based properties.
      c7572b86
    • Brian King's avatar
      [PATCH] SCSI Midlayer initiated START_UNIT · b362c0a1
      Brian King authored
      The ipr driver that is currently out for review talks to disk array devices
      that require a START_UNIT prior to media ops, similar to normal scsi devices.
      However, any time the adapter gets reset, these devices end up needing another
      START_UNIT. This causes problems with the current error handling and these
      devices get taken offline when this occurs. Attached is a patch which will
      better handle these devices and issue a START_UNIT from the error handler
      when appropriate.
      b362c0a1
    • Mike Christie's avatar
      [PATCH] add missing free sgtable in scsi_init_io error path · 8ea6bc67
      Mike Christie authored
      I was testing different errors while running multipath, and becuase of
      a bug in dm-multiapth I hit the "Incorrect number of segments after
      building list" error. The attached patch just adds a missing
      scsi_release_buffers() at the bottom of the scsi_init_io where the
      table was allocated successfully, but you can return BLKPREP_KILL when
      someone messes up segment counts.
      8ea6bc67
    • James Bottomley's avatar
      Add SCSI lots of disk support · 9897d23f
      James Bottomley authored
      From: 	Kurt Garloff <garloff@suse.de>
      
      Based on earlier patches from
       Badari Pulavarty <pbadari@us.ibm.com>,
       Matthew Wilcox <willy@debian.org>
      9897d23f
  6. 02 Mar, 2004 1 commit
    • Kai Mäkisara's avatar
      [PATCH] SCSI tape sysfs name fixes · 59294772
      Kai Mäkisara authored
      - The sysfs directory names are changed from stxmy[n] to the names in
        devices.txt. Below is an example for the first tape drive:
        /sys/class/scsi_tape/
        |-- nst0
        |-- nst0a
        |-- nst0l
        |-- nst0m
        |-- st0
        |-- st0a
        |-- st0l
        `-- st0m
      
      - Name generation for non-default number of modes fixed so that same
        minors get same names even with different number of modes.
      
      - devfs minor generation fixed to work with non-default number of modes
      
      - The alignment requirement is printed in the line logged when a tape is
        attached.
      59294772
  7. 01 Mar, 2004 2 commits
    • Kurt Garloff's avatar
      [PATCH] SCSI sysfs host name support · d15bf113
      Kurt Garloff authored
      OK, let's export the proc_name then. It's some name that can be used
      to identify the driver, works for code both compiled statically or
      as module, is reasonably short and very often resembles the module
      name.
      
      For the module_name, let's wait for a generic sysfs solution.
      d15bf113
    • Andrew Morton's avatar
      [PATCH] ini9100u build fix · 23024c26
      Andrew Morton authored
      From: Christoph Hellwig <hch@infradead.org>
      
      - Remove dead forward declarations
      
      - Fix compilation of the interrupt handler.
      23024c26
  8. 26 Feb, 2004 1 commit
  9. 25 Feb, 2004 2 commits