diff options
Diffstat (limited to 'include/linux/libata.h')
-rw-r--r-- | include/linux/libata.h | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/include/linux/libata.h b/include/linux/libata.h index bca3ba25f52a..9dcefee5843c 100644 --- a/include/linux/libata.h +++ b/include/linux/libata.h | |||
@@ -580,7 +580,7 @@ struct ata_device { | |||
580 | acpi_handle acpi_handle; | 580 | acpi_handle acpi_handle; |
581 | union acpi_object *gtf_cache; | 581 | union acpi_object *gtf_cache; |
582 | #endif | 582 | #endif |
583 | /* n_sector is used as CLEAR_OFFSET, read comment above CLEAR_OFFSET */ | 583 | /* n_sector is CLEAR_BEGIN, read comment above CLEAR_BEGIN */ |
584 | u64 n_sectors; /* size of device, if ATA */ | 584 | u64 n_sectors; /* size of device, if ATA */ |
585 | unsigned int class; /* ATA_DEV_xxx */ | 585 | unsigned int class; /* ATA_DEV_xxx */ |
586 | unsigned long unpark_deadline; | 586 | unsigned long unpark_deadline; |
@@ -605,20 +605,22 @@ struct ata_device { | |||
605 | u16 heads; /* Number of heads */ | 605 | u16 heads; /* Number of heads */ |
606 | u16 sectors; /* Number of sectors per track */ | 606 | u16 sectors; /* Number of sectors per track */ |
607 | 607 | ||
608 | /* error history */ | ||
609 | int spdn_cnt; | ||
610 | struct ata_ering ering; | ||
611 | |||
612 | union { | 608 | union { |
613 | u16 id[ATA_ID_WORDS]; /* IDENTIFY xxx DEVICE data */ | 609 | u16 id[ATA_ID_WORDS]; /* IDENTIFY xxx DEVICE data */ |
614 | u32 gscr[SATA_PMP_GSCR_DWORDS]; /* PMP GSCR block */ | 610 | u32 gscr[SATA_PMP_GSCR_DWORDS]; /* PMP GSCR block */ |
615 | }; | 611 | }; |
612 | |||
613 | /* error history */ | ||
614 | int spdn_cnt; | ||
615 | /* ering is CLEAR_END, read comment above CLEAR_END */ | ||
616 | struct ata_ering ering; | ||
616 | }; | 617 | }; |
617 | 618 | ||
618 | /* Offset into struct ata_device. Fields above it are maintained | 619 | /* Fields between ATA_DEVICE_CLEAR_BEGIN and ATA_DEVICE_CLEAR_END are |
619 | * acress device init. Fields below are zeroed. | 620 | * cleared to zero on ata_dev_init(). |
620 | */ | 621 | */ |
621 | #define ATA_DEVICE_CLEAR_OFFSET offsetof(struct ata_device, n_sectors) | 622 | #define ATA_DEVICE_CLEAR_BEGIN offsetof(struct ata_device, n_sectors) |
623 | #define ATA_DEVICE_CLEAR_END offsetof(struct ata_device, ering) | ||
622 | 624 | ||
623 | struct ata_eh_info { | 625 | struct ata_eh_info { |
624 | struct ata_device *dev; /* offending device */ | 626 | struct ata_device *dev; /* offending device */ |