diff options
| author | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2006-07-03 12:01:58 -0400 |
|---|---|---|
| committer | Ben Collins <bcollins@ubuntu.com> | 2006-07-03 12:01:58 -0400 |
| commit | 31a379e1067834868b8f1ce3e409392c42dc0f2b (patch) | |
| tree | ae0d172ebb43865347e42d3f5a12e602da8b51b8 | |
| parent | d7530a1e767b562c7e071f559d542c132d85fff7 (diff) | |
[PATCH] ieee1394: sbp2: enable auto spin-up for Maxtor disks
At least Maxtor OneTouch III require a "start stop unit" command after
auto spin-down before the next access can proceed. This patch activates
the responsible code in scsi_mod for all Maxtor SBP-2 disks.
https://bugzilla.novell.com/show_bug.cgi?id=183011
Maybe that should be done for all SBP-2 disks, but better be cautious.
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Signed-off-by: Ben Collins <bcollins@ubuntu.com>
| -rw-r--r-- | drivers/ieee1394/sbp2.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/ieee1394/sbp2.c b/drivers/ieee1394/sbp2.c index aaa74f293aaf..b08755e2e68f 100644 --- a/drivers/ieee1394/sbp2.c +++ b/drivers/ieee1394/sbp2.c | |||
| @@ -2515,6 +2515,9 @@ static int sbp2scsi_slave_configure(struct scsi_device *sdev) | |||
| 2515 | sdev->skip_ms_page_8 = 1; | 2515 | sdev->skip_ms_page_8 = 1; |
| 2516 | if (scsi_id->workarounds & SBP2_WORKAROUND_FIX_CAPACITY) | 2516 | if (scsi_id->workarounds & SBP2_WORKAROUND_FIX_CAPACITY) |
| 2517 | sdev->fix_capacity = 1; | 2517 | sdev->fix_capacity = 1; |
| 2518 | if (scsi_id->ne->guid_vendor_id == 0x0010b9 && /* Maxtor's OUI */ | ||
| 2519 | (sdev->type == TYPE_DISK || sdev->type == TYPE_RBC)) | ||
| 2520 | sdev->allow_restart = 1; | ||
| 2518 | return 0; | 2521 | return 0; |
| 2519 | } | 2522 | } |
| 2520 | 2523 | ||
