linux-ide.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* libata queue contents
@ 2006-03-01 20:39 Jeff Garzik
  2006-03-02  0:36 ` Mark Lord
  0 siblings, 1 reply; 5+ messages in thread
From: Jeff Garzik @ 2006-03-01 20:39 UTC (permalink / raw)
  To: linux-ide; +Cc: linux-kernel

Here's the stuff that's pending for 2.6.17, in the
libata-dev.git#upstream branch.  These changes are also auto-propagated
to Andrew Morton's -mm via the #ALL meta-branch.

Shortlog below.  The shortshort log is:
* Fix: ata_piix port mapping
* Fix: sata_promise hotplug register usage
* Fix: a ton of work improving libata error handling
* Optimization: Use LBA28 on LBA48 drives, where possible
* Feature: add sata_mv 6042 chip support
* Feature: remove artificial max-sector limits on LBA48 drives
* Feature: a ton of work improving libata error handling
* Feature: add PCI ID to sata_sil24 
* Cleanup: move code to new file libata-bmdma.c



Albert Lee:
      libata CHS: LBA28/LBA48 optimization (revise #6)

Jeff Garzik:
      [libata ata_piix] Fix ICH6/7 map value interpretation
      [libata sata_mv] add 6042 support, fix 60xx/50xx EDMA configuration
      [libata scsi] build fix for ATA_FLAG_IN_EH change
      [libata] Move PCI IDE BMDMA-related code to new file libata-bmdma.c.

Luke Kosewski:
      [libata sata_promise] add correct read/write of hotplug registers for SATAII devices

Randy Dunlap:
      
      Various libata documentation updates.

Tejun Heo:
      libata: separate out ata_sata_print_link_status
      ahci: separate out ahci_stop/start_engine
      ahci: separate out ahci_dev_classify
      ata_piix: fix MAP VALUE interpretation for for ICH6/7
      libata: fold __ata_qc_complete() into ata_qc_free()
      libata: make the owner of a qc responsible for freeing it
      libata: fix ata_qc_issue() error handling
      ahci: fix err_mask setting in ahci_host_intr
      libata: add detailed AC_ERR_* flags
      libata: return AC_ERR_* from issue functions
      SCSI: export scsi_eh_finish_cmd() and scsi_eh_flush_done_q()
      libata: implement and apply ata_eh_qc_complete/retry()
      libata: create pio/atapi task queueing wrappers
      ahci: stop engine during hard reset
      ahci: add constants for SRST
      libata: export ata_busy_sleep
      libata: modify ata_dev_try_classify
      libata: new ->probe_reset operation
      libata: implement ata_drive_probe_reset()
      libata: implement standard reset component operations and ->probe_reset
      libata: implement ATA_FLAG_IN_EH port flag
      libata: EH / pio tasks synchronization
      libata: fix ata_std_probe_reset() SATA detection
      libata: separate out sata_phy_resume() from sata_std_hardreset()
      libata: add probeinit component operation to ata_drive_probe_reset()
      libata: implement ata_std_probeinit()
      libata: add ATA_QCFLAG_EH_SCHEDULED
      libata: implement ata_scsi_timed_out()
      libata: use ata_scsi_timed_out()
      libata: kill NULL qc handling from ->eng_timeout callbacks
      ahci: separate out ahci_fill_cmd_slot()
      libata: make new reset act identical to ->phy_reset register-wise
      libata: kill SError clearing in sata_std_hardreset().
      sata_sil: convert to new reset mechanism
      sata_sil24: convert to new reset mechanism
      sata_sil24: add hardreset
      libata: inline ata_qc_complete()
      ahci: make ahci_fill_cmd_slot() take *pp instead of *ap
      ahci: convert to new reset mechanism
      libata: convert assert(X)'s in libata core layer to WARN_ON(!X)'s
      libata: convert assert(xxx)'s in low-level drivers to WARN_ON(!xxx)'s
      libata: kill assert() macro
      libata: allow ->probe_reset to return ATA_DEV_UNKNOWN
      ata_piix: kill spurious assignment in piix_sata_probe()
      libata: implement ata_dev_id_c_string()
      libata: use ata_dev_id_c_string()
      libata: separate out ata_id_n_sectors()
      libata: separate out ata_id_major_version()
      libata: make ata_dump_id() take @id instead of @dev
      libata: don't do EDD handling if ->probe_reset is used
      libata: make ata_dev_knobble() per-device
      libata: move cdb_len for host to device
      libata: add per-device max_sectors
      libata: kill sht->max_sectors
      libata: rename ata_dev_id_[c_]string()
      libata: update ata_dev_init_params()
      libata: fix comment regarding setting cable type
      ata_piix: convert pata to new reset mechanism
      ata_piix: convert sata to new reset mechanism
      libata: separate out ata_dev_read_id()
      libata: kill ata_dev_reread_id()
      sata_sil24: add a new PCI ID for SiI 3124
      libata: kill illegal kfree(id)
      sata_sil: remove unneeded ATA_FLAG_SRST from 3512 port info

 drivers/scsi/Makefile       |    2 
 drivers/scsi/ahci.c         |  196 ++--
 drivers/scsi/ata_piix.c     |  133 +--
 drivers/scsi/libata-bmdma.c |  703 +++++++++++++++
 drivers/scsi/libata-core.c  | 1942 +++++++++++++++++++-------------------------
 drivers/scsi/libata-scsi.c  |  238 +++--
 drivers/scsi/libata.h       |    2 
 drivers/scsi/pdc_adma.c     |    6 
 drivers/scsi/sata_mv.c      |  279 +++++-
 drivers/scsi/sata_nv.c      |    2 
 drivers/scsi/sata_promise.c |  127 +-
 drivers/scsi/sata_qstor.c   |   10 
 drivers/scsi/sata_sil.c     |   37 
 drivers/scsi/sata_sil24.c   |   89 --
 drivers/scsi/sata_sis.c     |    2 
 drivers/scsi/sata_svw.c     |    2 
 drivers/scsi/sata_sx4.c     |   25 
 drivers/scsi/sata_uli.c     |    2 
 drivers/scsi/sata_via.c     |    2 
 drivers/scsi/sata_vsc.c     |    2 
 drivers/scsi/scsi_error.c   |    7 
 include/linux/ata.h         |   22 
 include/linux/libata.h      |  146 ++-
 include/scsi/scsi_eh.h      |    3 
 24 files changed, 2454 insertions(+), 1525 deletions(-)

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: libata queue contents
  2006-03-01 20:39 libata queue contents Jeff Garzik
@ 2006-03-02  0:36 ` Mark Lord
  2006-03-02  3:25   ` Jeff Garzik
  2006-03-02  3:27   ` Randy.Dunlap
  0 siblings, 2 replies; 5+ messages in thread
From: Mark Lord @ 2006-03-02  0:36 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: linux-ide, linux-kernel

Jeff Garzik wrote:
> Here's the stuff that's pending for 2.6.17, in the
> libata-dev.git#upstream branch.  These changes are also auto-propagated
> to Andrew Morton's -mm via the #ALL meta-branch.

Where are Randy's ACPI patches ?

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: libata queue contents
  2006-03-02  0:36 ` Mark Lord
@ 2006-03-02  3:25   ` Jeff Garzik
  2006-03-02  3:27   ` Randy.Dunlap
  1 sibling, 0 replies; 5+ messages in thread
From: Jeff Garzik @ 2006-03-02  3:25 UTC (permalink / raw)
  To: Mark Lord; +Cc: Randy Dunlap, linux-ide, linux-kernel

Mark Lord wrote:
> Jeff Garzik wrote:
> 
>> Here's the stuff that's pending for 2.6.17, in the
>> libata-dev.git#upstream branch.  These changes are also auto-propagated
>> to Andrew Morton's -mm via the #ALL meta-branch.
> 
> 
> Where are Randy's ACPI patches ?


They appear to still be in flux, and not ready for #upstream.  I suppose 
I could put them in a separate branch that Randy maintains, but it 
seemed like less headache the current way.

Whatever Randy prefers, honestly...

	Jeff

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: libata queue contents
  2006-03-02  0:36 ` Mark Lord
  2006-03-02  3:25   ` Jeff Garzik
@ 2006-03-02  3:27   ` Randy.Dunlap
  2006-03-02  3:31     ` Jeff Garzik
  1 sibling, 1 reply; 5+ messages in thread
From: Randy.Dunlap @ 2006-03-02  3:27 UTC (permalink / raw)
  To: Mark Lord; +Cc: jeff, linux-ide, linux-kernel

On Wed, 01 Mar 2006 19:36:25 -0500 Mark Lord wrote:

> Jeff Garzik wrote:
> > Here's the stuff that's pending for 2.6.17, in the
> > libata-dev.git#upstream branch.  These changes are also auto-propagated
> > to Andrew Morton's -mm via the #ALL meta-branch.
> 
> Where are Randy's ACPI patches ?

I haven't generated them against #upstream.  I'll try to do that
in the next couple of days (assuming that I can git along with git).
or can I use the git-rollup patch in -mm to diff against?

---
~Randy

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: libata queue contents
  2006-03-02  3:27   ` Randy.Dunlap
@ 2006-03-02  3:31     ` Jeff Garzik
  0 siblings, 0 replies; 5+ messages in thread
From: Jeff Garzik @ 2006-03-02  3:31 UTC (permalink / raw)
  To: Randy.Dunlap; +Cc: Mark Lord, jeff, linux-ide, linux-kernel

Randy.Dunlap wrote:
> On Wed, 01 Mar 2006 19:36:25 -0500 Mark Lord wrote:
> 
> 
>>Jeff Garzik wrote:
>>
>>>Here's the stuff that's pending for 2.6.17, in the
>>>libata-dev.git#upstream branch.  These changes are also auto-propagated
>>>to Andrew Morton's -mm via the #ALL meta-branch.
>>
>>Where are Randy's ACPI patches ?
> 
> 
> I haven't generated them against #upstream.  I'll try to do that
> in the next couple of days (assuming that I can git along with git).
> or can I use the git-rollup patch in -mm to diff against?

git-libata-all.patch in -mm is #upstream plus other stuff.  For the time 
being, for testing and current deployment, diffing against 
git-libata-all.patch, and sending the result to akpm, is probably the 
best route, and will get you quite close to #upstream.

	Jeff




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2006-03-02  3:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-03-01 20:39 libata queue contents Jeff Garzik
2006-03-02  0:36 ` Mark Lord
2006-03-02  3:25   ` Jeff Garzik
2006-03-02  3:27   ` Randy.Dunlap
2006-03-02  3:31     ` Jeff Garzik

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).