aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ata/libata-pmp.c
diff options
context:
space:
mode:
authorTejun Heo <htejun@gmail.com>2008-01-23 10:05:14 -0500
committerJeff Garzik <jgarzik@redhat.com>2008-04-17 15:44:16 -0400
commitb558edddb1c42c70a30cfe494984d4be409f7b2b (patch)
treeb03275d15675a519de7d4edde709892f885a5fa0 /drivers/ata/libata-pmp.c
parent8cebf274dd1c955a6e03385a85fd6569ce445946 (diff)
libata: kill ata_ehi_schedule_probe()
ata_ehi_schedule_probe() was created to hide details of link-resuming reset magic. Now that all the softreset workarounds are gone, scheduling probe is very simple - set probe_mask and request RESET. Kill ata_ehi_schedule_probe() and open code it. This also increases consistency as ata_ehi_schedule_probe() couldn't cover individual device probings so they were open-coded even when the helper existed. While at it, define ATA_ALL_DEVICES as mask of all possible devices on a link and always use it when requesting probe on link level for simplicity and consistency. Setting extra bits in the probe_mask doesn't hurt anybody. Signed-off-by: Tejun Heo <htejun@gmail.com>
Diffstat (limited to 'drivers/ata/libata-pmp.c')
-rw-r--r--drivers/ata/libata-pmp.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/drivers/ata/libata-pmp.c b/drivers/ata/libata-pmp.c
index df1d3252b9e6..39e036c8a2bc 100644
--- a/drivers/ata/libata-pmp.c
+++ b/drivers/ata/libata-pmp.c
@@ -435,7 +435,7 @@ static int sata_pmp_init_links(struct ata_port *ap, int nr_ports)
435 struct ata_eh_context *ehc = &link->eh_context; 435 struct ata_eh_context *ehc = &link->eh_context;
436 436
437 link->flags = 0; 437 link->flags = 0;
438 ehc->i.probe_mask |= 1; 438 ehc->i.probe_mask |= ATA_ALL_DEVICES;
439 ehc->i.action |= ATA_EH_RESET; 439 ehc->i.action |= ATA_EH_RESET;
440 } 440 }
441 441
@@ -831,8 +831,12 @@ static int sata_pmp_eh_recover_pmp(struct ata_port *ap,
831 ata_eh_thaw_port(ap); 831 ata_eh_thaw_port(ap);
832 832
833 /* PMP is reset, SErrors cannot be trusted, scan all */ 833 /* PMP is reset, SErrors cannot be trusted, scan all */
834 ata_port_for_each_link(tlink, ap) 834 ata_port_for_each_link(tlink, ap) {
835 ata_ehi_schedule_probe(&tlink->eh_context.i); 835 struct ata_eh_context *ehc = &tlink->eh_context;
836
837 ehc->i.probe_mask |= ATA_ALL_DEVICES;
838 ehc->i.action |= ATA_EH_RESET;
839 }
836 } 840 }
837 841
838 /* If revalidation is requested, revalidate and reconfigure; 842 /* If revalidation is requested, revalidate and reconfigure;
@@ -847,7 +851,7 @@ static int sata_pmp_eh_recover_pmp(struct ata_port *ap,
847 tries--; 851 tries--;
848 852
849 if (rc == -ENODEV) { 853 if (rc == -ENODEV) {
850 ehc->i.probe_mask |= 1; 854 ehc->i.probe_mask |= ATA_ALL_DEVICES;
851 detach = 1; 855 detach = 1;
852 /* give it just two more chances */ 856 /* give it just two more chances */
853 tries = min(tries, 2); 857 tries = min(tries, 2);