diff options
author | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-08-19 18:58:13 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-10-23 12:41:16 -0400 |
commit | 32c356d76d7e13dcd0675189d8e9c64ef66aa561 (patch) | |
tree | 7ba361125a0abda0e2e7ca100f9d06fce52f6650 /drivers/scsi | |
parent | 26e9a397774a0e94efbb8a0bf4a952c28d808cab (diff) |
[SCSI] fix removable device inability to detect disk changes
On Tue, 12 Aug 2008 15:08:14 +0200
Giuliano Pochini <pochini@shiny.it> wrote:
> Fujitsu magneto-optical drive, Adaptec 29160 and
> Linux Jay 2.6.26 #7 SMP Sun Aug 10 18:34:22 CEST 2008 ppc 7455, altivec supported PowerMac3,6 GNU/Linux
>
> When I insert a disk and I mount it, scsi_test_unit_ready() is called and
> the do-while loop gets sshdr->sense_key == UNIT_ATTENTION in the first
> cycle and 0 in the second one. So the if below misses the UNIT_ATTENTION
> and sdev->changed = 1 is not executed. At this point bad things can
> happen... I'm not sure how to fix this. Any clue ?
The problem is essentially caused by us eating UNIT_ATTENTION
conditions in scsi_test_unit_ready(). Fix by updating the ->changed
flag when this happens if the media is removable.
[pochini@shiny.it: updates to tidy up patch]
Signed-off-by: Giuliano Pochini <pochini@shiny.it>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/scsi_lib.c | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/drivers/scsi/scsi_lib.c b/drivers/scsi/scsi_lib.c index e5a9526d2037..f35a0951e469 100644 --- a/drivers/scsi/scsi_lib.c +++ b/drivers/scsi/scsi_lib.c | |||
@@ -2105,22 +2105,21 @@ scsi_test_unit_ready(struct scsi_device *sdev, int timeout, int retries, | |||
2105 | do { | 2105 | do { |
2106 | result = scsi_execute_req(sdev, cmd, DMA_NONE, NULL, 0, sshdr, | 2106 | result = scsi_execute_req(sdev, cmd, DMA_NONE, NULL, 0, sshdr, |
2107 | timeout, retries); | 2107 | timeout, retries); |
2108 | } while ((driver_byte(result) & DRIVER_SENSE) && | 2108 | if (sdev->removable && scsi_sense_valid(sshdr) && |
2109 | sshdr && sshdr->sense_key == UNIT_ATTENTION && | 2109 | sshdr->sense_key == UNIT_ATTENTION) |
2110 | --retries); | 2110 | sdev->changed = 1; |
2111 | } while (scsi_sense_valid(sshdr) && | ||
2112 | sshdr->sense_key == UNIT_ATTENTION && --retries); | ||
2111 | 2113 | ||
2112 | if (!sshdr) | 2114 | if (!sshdr) |
2113 | /* could not allocate sense buffer, so can't process it */ | 2115 | /* could not allocate sense buffer, so can't process it */ |
2114 | return result; | 2116 | return result; |
2115 | 2117 | ||
2116 | if ((driver_byte(result) & DRIVER_SENSE) && sdev->removable) { | 2118 | if (sdev->removable && scsi_sense_valid(sshdr) && |
2117 | 2119 | (sshdr->sense_key == UNIT_ATTENTION || | |
2118 | if ((scsi_sense_valid(sshdr)) && | 2120 | sshdr->sense_key == NOT_READY)) { |
2119 | ((sshdr->sense_key == UNIT_ATTENTION) || | 2121 | sdev->changed = 1; |
2120 | (sshdr->sense_key == NOT_READY))) { | 2122 | result = 0; |
2121 | sdev->changed = 1; | ||
2122 | result = 0; | ||
2123 | } | ||
2124 | } | 2123 | } |
2125 | if (!sshdr_external) | 2124 | if (!sshdr_external) |
2126 | kfree(sshdr); | 2125 | kfree(sshdr); |