All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCHSET 2/4] libata: implement ata_link, take 7
@ 2007-08-06  9:36 Tejun Heo
  2007-08-06  9:36 ` [PATCH 01/14] libata-link: introduce ata_link Tejun Heo
                   ` (13 more replies)
  0 siblings, 14 replies; 18+ messages in thread
From: Tejun Heo @ 2007-08-06  9:36 UTC (permalink / raw)
  To: jeff, linux-ide, htejun

Hello, all.

This is the seventh take of implement ata_link patchset.  This
patchset contains 14 patches which can be categorized as follows.

#01-02: implement ata_link
#03-06: make libata deal with link instead of port
#07-09: misc link stuff (link init, reset_tries, ata_link_abort())
#10-14: add ap->pmp_link[] and update libata to deal with multiple
	links

ata_link abstracts PHY and sits between ata_port and ata_device.  The
following attributes are moved to ata_link from ata_port.

- active command state (active_tag, sactive)
- [hw_]sata_spd_limit
- eh_info and eh_context
- device array

With above and a few extra fields, a link can handle attached devices
including qc management and EH/hotplug.  This patchset makes libata
ready to handle PMP links.

Changes from the last take[L] are.

* adapted to the current upstream
* drivers/scsi/libsas/sas_ata.c updated

This patchset is against

  libata-dev#upstream (5ee30f070f467aaae027f03ef6772128a887b1a3)

Thanks.

--
tejun

[L] http://thread.gmane.org/gmane.linux.ide/21510



^ permalink raw reply	[flat|nested] 18+ messages in thread
* [PATCHSET] libata: implement ata_link, take 6
@ 2007-08-04  8:42 Tejun Heo
  2007-08-04  8:42 ` [PATCH 14/14] libata-link: update Power Management to handle PMP links Tejun Heo
  0 siblings, 1 reply; 18+ messages in thread
From: Tejun Heo @ 2007-08-04  8:42 UTC (permalink / raw)
  To: jeff, linux-ide, htejun

Hello, all.

This is the sixth take of implement ata_link patchset.  This patchset
contains 14 patches which can be categorized as follows.

#01-02: implement ata_link
#03-06: make libata deal with link instead of port
#07-09: misc link stuff (link init, reset_tries, ata_link_abort())
#10-14: add ap->pmp_link[] and update libata to deal with multiple
	links

ata_link abstracts PHY and sits between ata_port and ata_device.  The
following attributes are moved to ata_link from ata_port.

- active command state (active_tag, sactive)
- [hw_]sata_spd_limit
- eh_info and eh_context
- device array

With above and a few extra fields, a link can handle attached devices
including qc management and EH/hotplug.  This patchset makes libata
ready to handle PMP links.

Changes from the last take[L] are.

* adapted to the current upstream

This patchset is against

  libata-dev#upstream (80c51b13d8a73b9346ebe849cdeac6f539066fc2)

Thanks.

--
tejun

[L] http://thread.gmane.org/gmane.linux.ide/20842



^ permalink raw reply	[flat|nested] 18+ messages in thread
* [PATCHSET 2/4] libata: implement ata_link, take 5
@ 2007-07-16  9:34 Tejun Heo
  2007-07-16  9:34 ` [PATCH 14/14] libata-link: update Power Management to handle PMP links Tejun Heo
  0 siblings, 1 reply; 18+ messages in thread
From: Tejun Heo @ 2007-07-16  9:34 UTC (permalink / raw)
  To: Jeff Garzik, Alan Cox, linux-ide, Forrest Zhao, htejun

Hello, all.

This is the fifth take of implement ata_link patchset.  This patchset
contains 16 patches which can be categorized as follows.

#01-02: prep
#03-04: implement ata_link
#05-08: make libata deal with link instead of port
#09-11: misc link stuff (link init, reset_tries, ata_link_abort())
#12-16: add ap->pmp_link[] and update libata to deal with multiple
	links

ata_link abstracts PHY and sits between ata_port and ata_device.  The
following attributes are moved to ata_link from ata_port.

- active command state (active_tag, sactive)
- [hw_]sata_spd_limit
- eh_info and eh_context
- device array

With above and a few extra fields, a link can handle attached devices
including qc management and EH/hotplug.  This patchset makes libata
ready to handle PMP links.

Changes from the last take[L] are.

* ata_link_init_spd_limit() renamed to ata_link_init_spd()

This patchset is against

  libata-dev#upstream (d79eb6de54f180dc83b488b20747f0097fde3dea)
  + [1] misc-updates patchset

Thanks.

--
tejun

[L] http://thread.gmane.org/gmane.linux.ide/20099
[1] http://thread.gmane.org/gmane.linux.ide/20824



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

end of thread, other threads:[~2007-08-15  7:00 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-06  9:36 [PATCHSET 2/4] libata: implement ata_link, take 7 Tejun Heo
2007-08-06  9:36 ` [PATCH 01/14] libata-link: introduce ata_link Tejun Heo
2007-08-15  7:00   ` Jeff Garzik
2007-08-06  9:36 ` [PATCH 08/14] libata-link: separate out link initialization functions Tejun Heo
2007-08-06  9:36 ` [PATCH 11/14] libata-link: update ata_scsi_error() to handle PMP links Tejun Heo
2007-08-06  9:36 ` [PATCH 06/14] libata-link: linkify config/EH related functions Tejun Heo
2007-08-06  9:36 ` [PATCH 07/14] libata-link: make two port flags HRST_TO_RESUME and SKIP_D2H_BSY link flags Tejun Heo
2007-08-06  9:36 ` [PATCH 09/14] libata-link: implement ata_link_abort() Tejun Heo
2007-08-06  9:36 ` [PATCH 04/14] libata-link: linkify EH action helpers Tejun Heo
2007-08-06  9:36 ` [PATCH 10/14] libata-link: add PMP links Tejun Heo
2007-08-06  9:36 ` [PATCH 05/14] libata-link: linkify reset Tejun Heo
2007-08-06  9:36 ` [PATCH 02/14] libata-link: implement and use link/device iterators Tejun Heo
2007-08-06  9:36 ` [PATCH 03/14] libata-link: linkify PHY-related functions Tejun Heo
2007-08-06  9:36 ` [PATCH 13/14] libata-link: update hotplug to handle PMP links Tejun Heo
2007-08-06  9:36 ` [PATCH 14/14] libata-link: update Power Management " Tejun Heo
2007-08-06  9:36 ` [PATCH 12/14] libata-link: update EH to deal with " Tejun Heo
  -- strict thread matches above, loose matches on Subject: below --
2007-08-04  8:42 [PATCHSET] libata: implement ata_link, take 6 Tejun Heo
2007-08-04  8:42 ` [PATCH 14/14] libata-link: update Power Management to handle PMP links Tejun Heo
2007-07-16  9:34 [PATCHSET 2/4] libata: implement ata_link, take 5 Tejun Heo
2007-07-16  9:34 ` [PATCH 14/14] libata-link: update Power Management to handle PMP links Tejun Heo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.