1. 11 8月, 2005 2 次提交
  2. 10 8月, 2005 1 次提交
  3. 09 8月, 2005 2 次提交
  4. 05 8月, 2005 1 次提交
    • J
      [SCSI] fix aic7xxx performance issues since 2.6.12-rc2 · fdd0edf2
      James Bottomley 提交于
      Several people noticed we dropped quite a bit on benchmark figures.
      OK, it was my fault but unfortunately I discovered I ran out of brown
      paper bags a while ago and forgot to reorder them.
      
      The issue is that a construct introduced in the conversion of the
      driver to use the transport class keyed off whether the block request
      was tagged or not.  However, the aic7xxx driver doesn't properly set
      up the block layer TCQ (it uses the wrong API), so the driver now
      things all requests are untagged and we keep it to a queue depth of a
      single element.  Oops.
      
      The fix is to use the correct TCQ API.
      Signed-off-by: NJames Bottomley <James.Bottomley@SteelEye.com>
      fdd0edf2
  5. 02 8月, 2005 5 次提交
  6. 31 7月, 2005 1 次提交
    • A
      [PATCH] SCSI_SATA has to be a tristate · faa72533
      Adrian Bunk 提交于
      SCSI=m must disallow static drivers.
      
      The problem is that all the SATA drivers depend on SCSI_SATA.
      
      With SCSI=m and SCSI_SATA=y this allows the static enabling of the SATA
      drivers with unwanted effects, e.g.:
      - SCSI=m, SCSI_SATA=y, SCSI_ATA_ADMA=y
        -> SCSI_ATA_ADMA is built statically but scsi/built-in.o is not linked
           into the kernel
      - SCSI=m, SCSI_SATA=y, SCSI_ATA_ADMA=y, SCSI_SATA_AHCI=m
        -> SCSI_ATA_ADMA and libata are built statically but
           scsi/built-in.o is not linked into the kernel,
           SCSI_SATA_AHCI is built modular (unresolved symbols due to missing
                                            libata)
      Signed-off-by: NAdrian Bunk <bunk@stusta.de>
      Cc: Jeff Garzik <jgarzik@pobox.com>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NJeff Garzik <jgarzik@pobox.com>
      faa72533
  7. 30 7月, 2005 2 次提交
  8. 29 7月, 2005 1 次提交
  9. 28 7月, 2005 5 次提交
  10. 27 7月, 2005 3 次提交
    • L
      Fix compiler warning in qla_iocb.c · db776a14
      Linus Torvalds 提交于
      Remove bogus initialization that was re-done (correctly) later.
      db776a14
    • A
      [PATCH] qla2xxx: Kconfig dependency fix · a6fa657b
      Andrew Morton 提交于
      *** Warning: "fc_remote_port_block" [drivers/scsi/qla2xxx/qla2xxx.ko] undefined!
      *** Warning: "scsi_is_fc_rport" [drivers/scsi/qla2xxx/qla2xxx.ko] undefined!
      *** Warning: "fc_remote_port_unblock" [drivers/scsi/qla2xxx/qla2xxx.ko] undefined!
      *** Warning: "fc_remote_port_rolechg" [drivers/scsi/qla2xxx/qla2xxx.ko] undefined!
      *** Warning: "fc_release_transport" [drivers/scsi/qla2xxx/qla2xxx.ko] undefined!
      *** Warning: "fc_remove_host" [drivers/scsi/qla2xxx/qla2xxx.ko] undefined!
      *** Warning: "fc_remote_port_add" [drivers/scsi/qla2xxx/qla2xxx.ko] undefined!
      *** Warning: "fc_attach_transport" [drivers/scsi/qla2xxx/qla2xxx.ko] undefined!
      
      Cc: James Bottomley <James.Bottomley@steeleye.com>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      a6fa657b
    • A
      [PATCH] qla: remove anonymous union · 9a168bdd
      Andrew Morton 提交于
      Older gcc's dont support anonymous unions, so this driver gets hundreds of
      error.
      
      Fortunately the fix is easy...
      
      Cc: James Bottomley <James.Bottomley@steeleye.com>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      9a168bdd
  11. 14 7月, 2005 17 次提交