1. 28 9月, 2006 1 次提交
  2. 24 8月, 2006 1 次提交
    • J
      libata: Grand renaming. · cca3974e
      Jeff Garzik 提交于
      The biggest change is that ata_host_set is renamed to ata_host.
      
      * ata_host_set			=> ata_host
      * ata_probe_ent->host_flags	=> ata_probe_ent->port_flags
      * ata_probe_ent->host_set_flags	=> ata_probe_ent->_host_flags
      * ata_host_stats		=> ata_port_stats
      * ata_port->host		=> ata_port->scsi_host
      * ata_port->host_set		=> ata_port->host
      * ata_port_info->host_flags	=> ata_port_info->flags
      * ata_(.*)host_set(.*)\(\)	=> ata_\1host\2()
      
      The leading underscore in ata_probe_ent->_host_flags is to avoid
      reusing ->host_flags for different purpose.  Currently, the only user
      of the field is libata-bmdma.c and probe_ent itself is scheduled to be
      removed.
      
      ata_port->host is reused for different purpose but this field is used
      inside libata core proper and of different type.
      Signed-off-by: NTejun Heo <htejun@gmail.com>
      Signed-off-by: NJeff Garzik <jeff@garzik.org>
      cca3974e
  3. 10 8月, 2006 2 次提交
  4. 24 7月, 2006 1 次提交
  5. 03 7月, 2006 1 次提交
  6. 31 5月, 2006 1 次提交
  7. 24 5月, 2006 2 次提交
  8. 15 5月, 2006 1 次提交
  9. 11 4月, 2006 1 次提交
  10. 03 4月, 2006 1 次提交
  11. 02 4月, 2006 1 次提交
  12. 22 3月, 2006 1 次提交
  13. 05 3月, 2006 1 次提交
  14. 13 2月, 2006 1 次提交
  15. 10 2月, 2006 2 次提交
  16. 29 1月, 2006 1 次提交
  17. 27 1月, 2006 2 次提交
  18. 17 1月, 2006 1 次提交
  19. 06 1月, 2006 1 次提交
  20. 14 12月, 2005 1 次提交
  21. 13 12月, 2005 1 次提交
    • J
      [libata] mark certain hardware (or drivers) with a no-atapi flag · 50630195
      Jeff Garzik 提交于
      Some hardware does not support the PACKET command at all.
      Other hardware supports ATAPI, but the driver does something nasty such
      as calling BUG() when an ATAPI command is issued.
      
      For these such cases, we mark them with a new flag, ATA_FLAG_NO_ATAPI.
      
      Initial version contributed by Ben Collins.
      50630195
  22. 06 12月, 2005 1 次提交
  23. 01 12月, 2005 2 次提交
  24. 17 11月, 2005 1 次提交
  25. 11 11月, 2005 1 次提交
  26. 10 11月, 2005 1 次提交
  27. 07 11月, 2005 1 次提交
  28. 31 10月, 2005 1 次提交
  29. 30 10月, 2005 1 次提交
    • J
      [libata] change ata_qc_complete() to take error mask as second arg · a7dac447
      Jeff Garzik 提交于
      The second argument to ata_qc_complete() was being used for two
      purposes: communicate the ATA Status register to the completion
      function, and indicate an error.  On legacy PCI IDE hardware, the latter
      is often implicit in the former.  On more modern hardware, the driver
      often completely emulated a Status register value, passing ATA_ERR as an
      indication that something went wrong.
      
      Now that previous code changes have eliminated the need to use drv_stat
      arg to communicate the ATA Status register value, we can convert it to a
      mask of possible error classes.
      
      This will lead to more flexible error handling in the future.
      a7dac447
  30. 29 10月, 2005 2 次提交
  31. 23 10月, 2005 1 次提交
  32. 21 10月, 2005 1 次提交
  33. 29 9月, 2005 1 次提交
  34. 28 9月, 2005 1 次提交