aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/libata.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/libata.h b/include/linux/libata.h
index 3f9c65f1aafa..2eb5828839e4 100644
--- a/include/linux/libata.h
+++ b/include/linux/libata.h
@@ -157,6 +157,7 @@ enum {
157 ATA_FLAG_FLUSH_PORT_TASK = (1 << 14), /* flush port task */ 157 ATA_FLAG_FLUSH_PORT_TASK = (1 << 14), /* flush port task */
158 158
159 ATA_FLAG_EH_PENDING = (1 << 15), /* EH pending */ 159 ATA_FLAG_EH_PENDING = (1 << 15), /* EH pending */
160 ATA_FLAG_EH_IN_PROGRESS = (1 << 16), /* EH in progress */
160 ATA_FLAG_FROZEN = (1 << 17), /* port is frozen */ 161 ATA_FLAG_FROZEN = (1 << 17), /* port is frozen */
161 ATA_FLAG_RECOVERED = (1 << 18), /* recovery action performed */ 162 ATA_FLAG_RECOVERED = (1 << 18), /* recovery action performed */
162 163
@@ -490,6 +491,7 @@ struct ata_port {
490 491
491 u32 msg_enable; 492 u32 msg_enable;
492 struct list_head eh_done_q; 493 struct list_head eh_done_q;
494 wait_queue_head_t eh_wait_q;
493 495
494 void *private_data; 496 void *private_data;
495 497