瀏覽代碼

libata: fix handling of port actions in per-dev action mask

libata EH ignores port-wide actions in per-dev action mask.  However,
device resume requests EH_SOFTRESET using per-dev action mask.  Under
certain circumstances, this results in not resetting frozen port after
resuming which causes failure of all commands.

This patch allows port-wide actions to be requested in per-dev action
mask.  Before EH recovery starts, port-wide actions will be collected.

Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Tejun Heo 18 年之前
父節點
當前提交
79a55b72a1
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      drivers/ata/libata-eh.c

+ 4 - 0
drivers/ata/libata-eh.c

@@ -1979,6 +1979,10 @@ static int ata_eh_recover(struct ata_port *ap, ata_prereset_fn_t prereset,
 
 
 		ehc->tries[dev->devno] = ATA_EH_DEV_TRIES;
 		ehc->tries[dev->devno] = ATA_EH_DEV_TRIES;
 
 
+		/* collect port action mask recorded in dev actions */
+		ehc->i.action |= ehc->i.dev_action[i] & ~ATA_EH_PERDEV_MASK;
+		ehc->i.dev_action[i] &= ATA_EH_PERDEV_MASK;
+
 		/* process hotplug request */
 		/* process hotplug request */
 		if (dev->flags & ATA_DFLAG_DETACH)
 		if (dev->flags & ATA_DFLAG_DETACH)
 			ata_eh_detach_dev(dev);
 			ata_eh_detach_dev(dev);