diff options
-rw-r--r-- | drivers/ata/ahci.c | 1 | ||||
-rw-r--r-- | drivers/ata/libata-core.c | 1 | ||||
-rw-r--r-- | drivers/ata/libata-eh.c | 126 | ||||
-rw-r--r-- | drivers/ata/libata-scsi.c | 108 | ||||
-rw-r--r-- | include/linux/libata.h | 13 |
5 files changed, 246 insertions, 3 deletions
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index 6acea41eb7ca..aeadd00411a1 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c | |||
@@ -316,6 +316,7 @@ static struct device_attribute *ahci_shost_attrs[] = { | |||
316 | 316 | ||
317 | static struct device_attribute *ahci_sdev_attrs[] = { | 317 | static struct device_attribute *ahci_sdev_attrs[] = { |
318 | &dev_attr_sw_activity, | 318 | &dev_attr_sw_activity, |
319 | &dev_attr_unload_heads, | ||
319 | NULL | 320 | NULL |
320 | }; | 321 | }; |
321 | 322 | ||
diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c index 6eed58e35e12..1ee9499bd343 100644 --- a/drivers/ata/libata-core.c +++ b/drivers/ata/libata-core.c | |||
@@ -5378,6 +5378,7 @@ struct ata_port *ata_port_alloc(struct ata_host *host) | |||
5378 | INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan); | 5378 | INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan); |
5379 | INIT_LIST_HEAD(&ap->eh_done_q); | 5379 | INIT_LIST_HEAD(&ap->eh_done_q); |
5380 | init_waitqueue_head(&ap->eh_wait_q); | 5380 | init_waitqueue_head(&ap->eh_wait_q); |
5381 | init_completion(&ap->park_req_pending); | ||
5381 | init_timer_deferrable(&ap->fastdrain_timer); | 5382 | init_timer_deferrable(&ap->fastdrain_timer); |
5382 | ap->fastdrain_timer.function = ata_eh_fastdrain_timerfn; | 5383 | ap->fastdrain_timer.function = ata_eh_fastdrain_timerfn; |
5383 | ap->fastdrain_timer.data = (unsigned long)ap; | 5384 | ap->fastdrain_timer.data = (unsigned long)ap; |
diff --git a/drivers/ata/libata-eh.c b/drivers/ata/libata-eh.c index 99037a4860d9..33ac5ea4f531 100644 --- a/drivers/ata/libata-eh.c +++ b/drivers/ata/libata-eh.c | |||
@@ -2536,6 +2536,80 @@ int ata_eh_reset(struct ata_link *link, int classify, | |||
2536 | goto retry; | 2536 | goto retry; |
2537 | } | 2537 | } |
2538 | 2538 | ||
2539 | static inline void ata_eh_pull_park_action(struct ata_port *ap) | ||
2540 | { | ||
2541 | struct ata_link *link; | ||
2542 | struct ata_device *dev; | ||
2543 | unsigned long flags; | ||
2544 | |||
2545 | /* | ||
2546 | * This function can be thought of as an extended version of | ||
2547 | * ata_eh_about_to_do() specially crafted to accommodate the | ||
2548 | * requirements of ATA_EH_PARK handling. Since the EH thread | ||
2549 | * does not leave the do {} while () loop in ata_eh_recover as | ||
2550 | * long as the timeout for a park request to *one* device on | ||
2551 | * the port has not expired, and since we still want to pick | ||
2552 | * up park requests to other devices on the same port or | ||
2553 | * timeout updates for the same device, we have to pull | ||
2554 | * ATA_EH_PARK actions from eh_info into eh_context.i | ||
2555 | * ourselves at the beginning of each pass over the loop. | ||
2556 | * | ||
2557 | * Additionally, all write accesses to &ap->park_req_pending | ||
2558 | * through INIT_COMPLETION() (see below) or complete_all() | ||
2559 | * (see ata_scsi_park_store()) are protected by the host lock. | ||
2560 | * As a result we have that park_req_pending.done is zero on | ||
2561 | * exit from this function, i.e. when ATA_EH_PARK actions for | ||
2562 | * *all* devices on port ap have been pulled into the | ||
2563 | * respective eh_context structs. If, and only if, | ||
2564 | * park_req_pending.done is non-zero by the time we reach | ||
2565 | * wait_for_completion_timeout(), another ATA_EH_PARK action | ||
2566 | * has been scheduled for at least one of the devices on port | ||
2567 | * ap and we have to cycle over the do {} while () loop in | ||
2568 | * ata_eh_recover() again. | ||
2569 | */ | ||
2570 | |||
2571 | spin_lock_irqsave(ap->lock, flags); | ||
2572 | INIT_COMPLETION(ap->park_req_pending); | ||
2573 | ata_port_for_each_link(link, ap) { | ||
2574 | ata_link_for_each_dev(dev, link) { | ||
2575 | struct ata_eh_info *ehi = &link->eh_info; | ||
2576 | |||
2577 | link->eh_context.i.dev_action[dev->devno] |= | ||
2578 | ehi->dev_action[dev->devno] & ATA_EH_PARK; | ||
2579 | ata_eh_clear_action(link, dev, ehi, ATA_EH_PARK); | ||
2580 | } | ||
2581 | } | ||
2582 | spin_unlock_irqrestore(ap->lock, flags); | ||
2583 | } | ||
2584 | |||
2585 | static void ata_eh_park_issue_cmd(struct ata_device *dev, int park) | ||
2586 | { | ||
2587 | struct ata_eh_context *ehc = &dev->link->eh_context; | ||
2588 | struct ata_taskfile tf; | ||
2589 | unsigned int err_mask; | ||
2590 | |||
2591 | ata_tf_init(dev, &tf); | ||
2592 | if (park) { | ||
2593 | ehc->unloaded_mask |= 1 << dev->devno; | ||
2594 | tf.command = ATA_CMD_IDLEIMMEDIATE; | ||
2595 | tf.feature = 0x44; | ||
2596 | tf.lbal = 0x4c; | ||
2597 | tf.lbam = 0x4e; | ||
2598 | tf.lbah = 0x55; | ||
2599 | } else { | ||
2600 | ehc->unloaded_mask &= ~(1 << dev->devno); | ||
2601 | tf.command = ATA_CMD_CHK_POWER; | ||
2602 | } | ||
2603 | |||
2604 | tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR; | ||
2605 | tf.protocol |= ATA_PROT_NODATA; | ||
2606 | err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0); | ||
2607 | if (park && (err_mask || tf.lbal != 0xc4)) { | ||
2608 | ata_dev_printk(dev, KERN_ERR, "head unload failed!\n"); | ||
2609 | ehc->unloaded_mask &= ~(1 << dev->devno); | ||
2610 | } | ||
2611 | } | ||
2612 | |||
2539 | static int ata_eh_revalidate_and_attach(struct ata_link *link, | 2613 | static int ata_eh_revalidate_and_attach(struct ata_link *link, |
2540 | struct ata_device **r_failed_dev) | 2614 | struct ata_device **r_failed_dev) |
2541 | { | 2615 | { |
@@ -2845,7 +2919,7 @@ int ata_eh_recover(struct ata_port *ap, ata_prereset_fn_t prereset, | |||
2845 | struct ata_device *dev; | 2919 | struct ata_device *dev; |
2846 | int nr_failed_devs; | 2920 | int nr_failed_devs; |
2847 | int rc; | 2921 | int rc; |
2848 | unsigned long flags; | 2922 | unsigned long flags, deadline; |
2849 | 2923 | ||
2850 | DPRINTK("ENTER\n"); | 2924 | DPRINTK("ENTER\n"); |
2851 | 2925 | ||
@@ -2919,6 +2993,56 @@ int ata_eh_recover(struct ata_port *ap, ata_prereset_fn_t prereset, | |||
2919 | } | 2993 | } |
2920 | } | 2994 | } |
2921 | 2995 | ||
2996 | do { | ||
2997 | unsigned long now; | ||
2998 | |||
2999 | /* | ||
3000 | * clears ATA_EH_PARK in eh_info and resets | ||
3001 | * ap->park_req_pending | ||
3002 | */ | ||
3003 | ata_eh_pull_park_action(ap); | ||
3004 | |||
3005 | deadline = jiffies; | ||
3006 | ata_port_for_each_link(link, ap) { | ||
3007 | ata_link_for_each_dev(dev, link) { | ||
3008 | struct ata_eh_context *ehc = &link->eh_context; | ||
3009 | unsigned long tmp; | ||
3010 | |||
3011 | if (dev->class != ATA_DEV_ATA) | ||
3012 | continue; | ||
3013 | if (!(ehc->i.dev_action[dev->devno] & | ||
3014 | ATA_EH_PARK)) | ||
3015 | continue; | ||
3016 | tmp = dev->unpark_deadline; | ||
3017 | if (time_before(deadline, tmp)) | ||
3018 | deadline = tmp; | ||
3019 | else if (time_before_eq(tmp, jiffies)) | ||
3020 | continue; | ||
3021 | if (ehc->unloaded_mask & (1 << dev->devno)) | ||
3022 | continue; | ||
3023 | |||
3024 | ata_eh_park_issue_cmd(dev, 1); | ||
3025 | } | ||
3026 | } | ||
3027 | |||
3028 | now = jiffies; | ||
3029 | if (time_before_eq(deadline, now)) | ||
3030 | break; | ||
3031 | |||
3032 | deadline = wait_for_completion_timeout(&ap->park_req_pending, | ||
3033 | deadline - now); | ||
3034 | } while (deadline); | ||
3035 | ata_port_for_each_link(link, ap) { | ||
3036 | ata_link_for_each_dev(dev, link) { | ||
3037 | if (!(link->eh_context.unloaded_mask & | ||
3038 | (1 << dev->devno))) | ||
3039 | continue; | ||
3040 | |||
3041 | ata_eh_park_issue_cmd(dev, 0); | ||
3042 | ata_eh_done(link, dev, ATA_EH_PARK); | ||
3043 | } | ||
3044 | } | ||
3045 | |||
2922 | /* the rest */ | 3046 | /* the rest */ |
2923 | ata_port_for_each_link(link, ap) { | 3047 | ata_port_for_each_link(link, ap) { |
2924 | struct ata_eh_context *ehc = &link->eh_context; | 3048 | struct ata_eh_context *ehc = &link->eh_context; |
diff --git a/drivers/ata/libata-scsi.c b/drivers/ata/libata-scsi.c index b9d3ba423cb2..fccd5e496c62 100644 --- a/drivers/ata/libata-scsi.c +++ b/drivers/ata/libata-scsi.c | |||
@@ -183,6 +183,105 @@ DEVICE_ATTR(link_power_management_policy, S_IRUGO | S_IWUSR, | |||
183 | ata_scsi_lpm_show, ata_scsi_lpm_put); | 183 | ata_scsi_lpm_show, ata_scsi_lpm_put); |
184 | EXPORT_SYMBOL_GPL(dev_attr_link_power_management_policy); | 184 | EXPORT_SYMBOL_GPL(dev_attr_link_power_management_policy); |
185 | 185 | ||
186 | static ssize_t ata_scsi_park_show(struct device *device, | ||
187 | struct device_attribute *attr, char *buf) | ||
188 | { | ||
189 | struct scsi_device *sdev = to_scsi_device(device); | ||
190 | struct ata_port *ap; | ||
191 | struct ata_link *link; | ||
192 | struct ata_device *dev; | ||
193 | unsigned long flags; | ||
194 | unsigned int uninitialized_var(msecs); | ||
195 | int rc = 0; | ||
196 | |||
197 | ap = ata_shost_to_port(sdev->host); | ||
198 | |||
199 | spin_lock_irqsave(ap->lock, flags); | ||
200 | dev = ata_scsi_find_dev(ap, sdev); | ||
201 | if (!dev) { | ||
202 | rc = -ENODEV; | ||
203 | goto unlock; | ||
204 | } | ||
205 | if (dev->flags & ATA_DFLAG_NO_UNLOAD) { | ||
206 | rc = -EOPNOTSUPP; | ||
207 | goto unlock; | ||
208 | } | ||
209 | |||
210 | link = dev->link; | ||
211 | if (ap->pflags & ATA_PFLAG_EH_IN_PROGRESS && | ||
212 | link->eh_context.unloaded_mask & (1 << dev->devno) && | ||
213 | time_after(dev->unpark_deadline, jiffies)) | ||
214 | msecs = jiffies_to_msecs(dev->unpark_deadline - jiffies); | ||
215 | else | ||
216 | msecs = 0; | ||
217 | |||
218 | unlock: | ||
219 | spin_unlock_irq(ap->lock); | ||
220 | |||
221 | return rc ? rc : snprintf(buf, 20, "%u\n", msecs); | ||
222 | } | ||
223 | |||
224 | static ssize_t ata_scsi_park_store(struct device *device, | ||
225 | struct device_attribute *attr, | ||
226 | const char *buf, size_t len) | ||
227 | { | ||
228 | struct scsi_device *sdev = to_scsi_device(device); | ||
229 | struct ata_port *ap; | ||
230 | struct ata_device *dev; | ||
231 | long int input; | ||
232 | unsigned long flags; | ||
233 | int rc; | ||
234 | |||
235 | rc = strict_strtol(buf, 10, &input); | ||
236 | if (rc || input < -2) | ||
237 | return -EINVAL; | ||
238 | if (input > ATA_TMOUT_MAX_PARK) { | ||
239 | rc = -EOVERFLOW; | ||
240 | input = ATA_TMOUT_MAX_PARK; | ||
241 | } | ||
242 | |||
243 | ap = ata_shost_to_port(sdev->host); | ||
244 | |||
245 | spin_lock_irqsave(ap->lock, flags); | ||
246 | dev = ata_scsi_find_dev(ap, sdev); | ||
247 | if (unlikely(!dev)) { | ||
248 | rc = -ENODEV; | ||
249 | goto unlock; | ||
250 | } | ||
251 | if (dev->class != ATA_DEV_ATA) { | ||
252 | rc = -EOPNOTSUPP; | ||
253 | goto unlock; | ||
254 | } | ||
255 | |||
256 | if (input >= 0) { | ||
257 | if (dev->flags & ATA_DFLAG_NO_UNLOAD) { | ||
258 | rc = -EOPNOTSUPP; | ||
259 | goto unlock; | ||
260 | } | ||
261 | |||
262 | dev->unpark_deadline = ata_deadline(jiffies, input); | ||
263 | dev->link->eh_info.dev_action[dev->devno] |= ATA_EH_PARK; | ||
264 | ata_port_schedule_eh(ap); | ||
265 | complete(&ap->park_req_pending); | ||
266 | } else { | ||
267 | switch (input) { | ||
268 | case -1: | ||
269 | dev->flags &= ~ATA_DFLAG_NO_UNLOAD; | ||
270 | break; | ||
271 | case -2: | ||
272 | dev->flags |= ATA_DFLAG_NO_UNLOAD; | ||
273 | break; | ||
274 | } | ||
275 | } | ||
276 | unlock: | ||
277 | spin_unlock_irqrestore(ap->lock, flags); | ||
278 | |||
279 | return rc ? rc : len; | ||
280 | } | ||
281 | DEVICE_ATTR(unload_heads, S_IRUGO | S_IWUSR, | ||
282 | ata_scsi_park_show, ata_scsi_park_store); | ||
283 | EXPORT_SYMBOL_GPL(dev_attr_unload_heads); | ||
284 | |||
186 | static void ata_scsi_set_sense(struct scsi_cmnd *cmd, u8 sk, u8 asc, u8 ascq) | 285 | static void ata_scsi_set_sense(struct scsi_cmnd *cmd, u8 sk, u8 asc, u8 ascq) |
187 | { | 286 | { |
188 | cmd->result = (DRIVER_SENSE << 24) | SAM_STAT_CHECK_CONDITION; | 287 | cmd->result = (DRIVER_SENSE << 24) | SAM_STAT_CHECK_CONDITION; |
@@ -269,6 +368,12 @@ DEVICE_ATTR(sw_activity, S_IWUGO | S_IRUGO, ata_scsi_activity_show, | |||
269 | ata_scsi_activity_store); | 368 | ata_scsi_activity_store); |
270 | EXPORT_SYMBOL_GPL(dev_attr_sw_activity); | 369 | EXPORT_SYMBOL_GPL(dev_attr_sw_activity); |
271 | 370 | ||
371 | struct device_attribute *ata_common_sdev_attrs[] = { | ||
372 | &dev_attr_unload_heads, | ||
373 | NULL | ||
374 | }; | ||
375 | EXPORT_SYMBOL_GPL(ata_common_sdev_attrs); | ||
376 | |||
272 | static void ata_scsi_invalid_field(struct scsi_cmnd *cmd, | 377 | static void ata_scsi_invalid_field(struct scsi_cmnd *cmd, |
273 | void (*done)(struct scsi_cmnd *)) | 378 | void (*done)(struct scsi_cmnd *)) |
274 | { | 379 | { |
@@ -954,6 +1059,9 @@ static int atapi_drain_needed(struct request *rq) | |||
954 | static int ata_scsi_dev_config(struct scsi_device *sdev, | 1059 | static int ata_scsi_dev_config(struct scsi_device *sdev, |
955 | struct ata_device *dev) | 1060 | struct ata_device *dev) |
956 | { | 1061 | { |
1062 | if (!ata_id_has_unload(dev->id)) | ||
1063 | dev->flags |= ATA_DFLAG_NO_UNLOAD; | ||
1064 | |||
957 | /* configure max sectors */ | 1065 | /* configure max sectors */ |
958 | blk_queue_max_sectors(sdev->request_queue, dev->max_sectors); | 1066 | blk_queue_max_sectors(sdev->request_queue, dev->max_sectors); |
959 | 1067 | ||
diff --git a/include/linux/libata.h b/include/linux/libata.h index 244ff601559a..1f44cfb847e1 100644 --- a/include/linux/libata.h +++ b/include/linux/libata.h | |||
@@ -146,6 +146,7 @@ enum { | |||
146 | ATA_DFLAG_SPUNDOWN = (1 << 14), /* XXX: for spindown_compat */ | 146 | ATA_DFLAG_SPUNDOWN = (1 << 14), /* XXX: for spindown_compat */ |
147 | ATA_DFLAG_SLEEPING = (1 << 15), /* device is sleeping */ | 147 | ATA_DFLAG_SLEEPING = (1 << 15), /* device is sleeping */ |
148 | ATA_DFLAG_DUBIOUS_XFER = (1 << 16), /* data transfer not verified */ | 148 | ATA_DFLAG_DUBIOUS_XFER = (1 << 16), /* data transfer not verified */ |
149 | ATA_DFLAG_NO_UNLOAD = (1 << 17), /* device doesn't support unload */ | ||
149 | ATA_DFLAG_INIT_MASK = (1 << 24) - 1, | 150 | ATA_DFLAG_INIT_MASK = (1 << 24) - 1, |
150 | 151 | ||
151 | ATA_DFLAG_DETACH = (1 << 24), | 152 | ATA_DFLAG_DETACH = (1 << 24), |
@@ -244,6 +245,7 @@ enum { | |||
244 | ATA_TMOUT_BOOT = 30000, /* heuristic */ | 245 | ATA_TMOUT_BOOT = 30000, /* heuristic */ |
245 | ATA_TMOUT_BOOT_QUICK = 7000, /* heuristic */ | 246 | ATA_TMOUT_BOOT_QUICK = 7000, /* heuristic */ |
246 | ATA_TMOUT_INTERNAL_QUICK = 5000, | 247 | ATA_TMOUT_INTERNAL_QUICK = 5000, |
248 | ATA_TMOUT_MAX_PARK = 30000, | ||
247 | 249 | ||
248 | /* FIXME: GoVault needs 2s but we can't afford that without | 250 | /* FIXME: GoVault needs 2s but we can't afford that without |
249 | * parallel probing. 800ms is enough for iVDR disk | 251 | * parallel probing. 800ms is enough for iVDR disk |
@@ -319,8 +321,9 @@ enum { | |||
319 | ATA_EH_RESET = ATA_EH_SOFTRESET | ATA_EH_HARDRESET, | 321 | ATA_EH_RESET = ATA_EH_SOFTRESET | ATA_EH_HARDRESET, |
320 | ATA_EH_ENABLE_LINK = (1 << 3), | 322 | ATA_EH_ENABLE_LINK = (1 << 3), |
321 | ATA_EH_LPM = (1 << 4), /* link power management action */ | 323 | ATA_EH_LPM = (1 << 4), /* link power management action */ |
324 | ATA_EH_PARK = (1 << 5), /* unload heads and stop I/O */ | ||
322 | 325 | ||
323 | ATA_EH_PERDEV_MASK = ATA_EH_REVALIDATE, | 326 | ATA_EH_PERDEV_MASK = ATA_EH_REVALIDATE | ATA_EH_PARK, |
324 | ATA_EH_ALL_ACTIONS = ATA_EH_REVALIDATE | ATA_EH_RESET | | 327 | ATA_EH_ALL_ACTIONS = ATA_EH_REVALIDATE | ATA_EH_RESET | |
325 | ATA_EH_ENABLE_LINK | ATA_EH_LPM, | 328 | ATA_EH_ENABLE_LINK | ATA_EH_LPM, |
326 | 329 | ||
@@ -454,6 +457,7 @@ enum link_pm { | |||
454 | MEDIUM_POWER, | 457 | MEDIUM_POWER, |
455 | }; | 458 | }; |
456 | extern struct device_attribute dev_attr_link_power_management_policy; | 459 | extern struct device_attribute dev_attr_link_power_management_policy; |
460 | extern struct device_attribute dev_attr_unload_heads; | ||
457 | extern struct device_attribute dev_attr_em_message_type; | 461 | extern struct device_attribute dev_attr_em_message_type; |
458 | extern struct device_attribute dev_attr_em_message; | 462 | extern struct device_attribute dev_attr_em_message; |
459 | extern struct device_attribute dev_attr_sw_activity; | 463 | extern struct device_attribute dev_attr_sw_activity; |
@@ -566,6 +570,7 @@ struct ata_device { | |||
566 | /* n_sector is used as CLEAR_OFFSET, read comment above CLEAR_OFFSET */ | 570 | /* n_sector is used as CLEAR_OFFSET, read comment above CLEAR_OFFSET */ |
567 | u64 n_sectors; /* size of device, if ATA */ | 571 | u64 n_sectors; /* size of device, if ATA */ |
568 | unsigned int class; /* ATA_DEV_xxx */ | 572 | unsigned int class; /* ATA_DEV_xxx */ |
573 | unsigned long unpark_deadline; | ||
569 | 574 | ||
570 | u8 pio_mode; | 575 | u8 pio_mode; |
571 | u8 dma_mode; | 576 | u8 dma_mode; |
@@ -623,6 +628,7 @@ struct ata_eh_context { | |||
623 | [ATA_EH_CMD_TIMEOUT_TABLE_SIZE]; | 628 | [ATA_EH_CMD_TIMEOUT_TABLE_SIZE]; |
624 | unsigned int classes[ATA_MAX_DEVICES]; | 629 | unsigned int classes[ATA_MAX_DEVICES]; |
625 | unsigned int did_probe_mask; | 630 | unsigned int did_probe_mask; |
631 | unsigned int unloaded_mask; | ||
626 | unsigned int saved_ncq_enabled; | 632 | unsigned int saved_ncq_enabled; |
627 | u8 saved_xfer_mode[ATA_MAX_DEVICES]; | 633 | u8 saved_xfer_mode[ATA_MAX_DEVICES]; |
628 | /* timestamp for the last reset attempt or success */ | 634 | /* timestamp for the last reset attempt or success */ |
@@ -712,6 +718,7 @@ struct ata_port { | |||
712 | struct list_head eh_done_q; | 718 | struct list_head eh_done_q; |
713 | wait_queue_head_t eh_wait_q; | 719 | wait_queue_head_t eh_wait_q; |
714 | int eh_tries; | 720 | int eh_tries; |
721 | struct completion park_req_pending; | ||
715 | 722 | ||
716 | pm_message_t pm_mesg; | 723 | pm_message_t pm_mesg; |
717 | int *pm_result; | 724 | int *pm_result; |
@@ -1102,6 +1109,7 @@ extern void ata_std_error_handler(struct ata_port *ap); | |||
1102 | */ | 1109 | */ |
1103 | extern const struct ata_port_operations ata_base_port_ops; | 1110 | extern const struct ata_port_operations ata_base_port_ops; |
1104 | extern const struct ata_port_operations sata_port_ops; | 1111 | extern const struct ata_port_operations sata_port_ops; |
1112 | extern struct device_attribute *ata_common_sdev_attrs[]; | ||
1105 | 1113 | ||
1106 | #define ATA_BASE_SHT(drv_name) \ | 1114 | #define ATA_BASE_SHT(drv_name) \ |
1107 | .module = THIS_MODULE, \ | 1115 | .module = THIS_MODULE, \ |
@@ -1116,7 +1124,8 @@ extern const struct ata_port_operations sata_port_ops; | |||
1116 | .proc_name = drv_name, \ | 1124 | .proc_name = drv_name, \ |
1117 | .slave_configure = ata_scsi_slave_config, \ | 1125 | .slave_configure = ata_scsi_slave_config, \ |
1118 | .slave_destroy = ata_scsi_slave_destroy, \ | 1126 | .slave_destroy = ata_scsi_slave_destroy, \ |
1119 | .bios_param = ata_std_bios_param | 1127 | .bios_param = ata_std_bios_param, \ |
1128 | .sdev_attrs = ata_common_sdev_attrs | ||
1120 | 1129 | ||
1121 | #define ATA_NCQ_SHT(drv_name) \ | 1130 | #define ATA_NCQ_SHT(drv_name) \ |
1122 | ATA_BASE_SHT(drv_name), \ | 1131 | ATA_BASE_SHT(drv_name), \ |