diff options
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/sd.c | 24 | ||||
-rw-r--r-- | drivers/scsi/sr.c | 14 | ||||
-rw-r--r-- | drivers/scsi/sr.h | 1 |
3 files changed, 27 insertions, 12 deletions
diff --git a/drivers/scsi/sd.c b/drivers/scsi/sd.c index a69b155f39a2..18343a6acd8e 100644 --- a/drivers/scsi/sd.c +++ b/drivers/scsi/sd.c | |||
@@ -749,8 +749,11 @@ static int sd_media_changed(struct gendisk *disk) | |||
749 | * can deal with it then. It is only because of unrecoverable errors | 749 | * can deal with it then. It is only because of unrecoverable errors |
750 | * that we would ever take a device offline in the first place. | 750 | * that we would ever take a device offline in the first place. |
751 | */ | 751 | */ |
752 | if (!scsi_device_online(sdp)) | 752 | if (!scsi_device_online(sdp)) { |
753 | goto not_present; | 753 | set_media_not_present(sdkp); |
754 | retval = 1; | ||
755 | goto out; | ||
756 | } | ||
754 | 757 | ||
755 | /* | 758 | /* |
756 | * Using TEST_UNIT_READY enables differentiation between drive with | 759 | * Using TEST_UNIT_READY enables differentiation between drive with |
@@ -762,6 +765,7 @@ static int sd_media_changed(struct gendisk *disk) | |||
762 | * sd_revalidate() is called. | 765 | * sd_revalidate() is called. |
763 | */ | 766 | */ |
764 | retval = -ENODEV; | 767 | retval = -ENODEV; |
768 | |||
765 | if (scsi_block_when_processing_errors(sdp)) | 769 | if (scsi_block_when_processing_errors(sdp)) |
766 | retval = scsi_test_unit_ready(sdp, SD_TIMEOUT, SD_MAX_RETRIES); | 770 | retval = scsi_test_unit_ready(sdp, SD_TIMEOUT, SD_MAX_RETRIES); |
767 | 771 | ||
@@ -771,8 +775,11 @@ static int sd_media_changed(struct gendisk *disk) | |||
771 | * and we will figure it out later once the drive is | 775 | * and we will figure it out later once the drive is |
772 | * available again. | 776 | * available again. |
773 | */ | 777 | */ |
774 | if (retval) | 778 | if (retval) { |
775 | goto not_present; | 779 | set_media_not_present(sdkp); |
780 | retval = 1; | ||
781 | goto out; | ||
782 | } | ||
776 | 783 | ||
777 | /* | 784 | /* |
778 | * For removable scsi disk we have to recognise the presence | 785 | * For removable scsi disk we have to recognise the presence |
@@ -783,12 +790,11 @@ static int sd_media_changed(struct gendisk *disk) | |||
783 | 790 | ||
784 | retval = sdp->changed; | 791 | retval = sdp->changed; |
785 | sdp->changed = 0; | 792 | sdp->changed = 0; |
786 | 793 | out: | |
794 | if (retval != sdkp->previous_state) | ||
795 | sdev_evt_send_simple(sdp, SDEV_EVT_MEDIA_CHANGE, GFP_KERNEL); | ||
796 | sdkp->previous_state = retval; | ||
787 | return retval; | 797 | return retval; |
788 | |||
789 | not_present: | ||
790 | set_media_not_present(sdkp); | ||
791 | return 1; | ||
792 | } | 798 | } |
793 | 799 | ||
794 | static int sd_sync_cache(struct scsi_disk *sdkp) | 800 | static int sd_sync_cache(struct scsi_disk *sdkp) |
diff --git a/drivers/scsi/sr.c b/drivers/scsi/sr.c index c61999031141..7702681d93f9 100644 --- a/drivers/scsi/sr.c +++ b/drivers/scsi/sr.c | |||
@@ -192,8 +192,9 @@ static int sr_media_change(struct cdrom_device_info *cdi, int slot) | |||
192 | * and we will figure it out later once the drive is | 192 | * and we will figure it out later once the drive is |
193 | * available again. */ | 193 | * available again. */ |
194 | cd->device->changed = 1; | 194 | cd->device->changed = 1; |
195 | return 1; /* This will force a flush, if called from | 195 | /* This will force a flush, if called from check_disk_change */ |
196 | * check_disk_change */ | 196 | retval = 1; |
197 | goto out; | ||
197 | }; | 198 | }; |
198 | 199 | ||
199 | retval = cd->device->changed; | 200 | retval = cd->device->changed; |
@@ -203,9 +204,16 @@ static int sr_media_change(struct cdrom_device_info *cdi, int slot) | |||
203 | if (retval) { | 204 | if (retval) { |
204 | /* check multisession offset etc */ | 205 | /* check multisession offset etc */ |
205 | sr_cd_check(cdi); | 206 | sr_cd_check(cdi); |
206 | |||
207 | get_sectorsize(cd); | 207 | get_sectorsize(cd); |
208 | } | 208 | } |
209 | |||
210 | out: | ||
211 | /* Notify userspace, that media has changed. */ | ||
212 | if (retval != cd->previous_state) | ||
213 | sdev_evt_send_simple(cd->device, SDEV_EVT_MEDIA_CHANGE, | ||
214 | GFP_KERNEL); | ||
215 | cd->previous_state = retval; | ||
216 | |||
209 | return retval; | 217 | return retval; |
210 | } | 218 | } |
211 | 219 | ||
diff --git a/drivers/scsi/sr.h b/drivers/scsi/sr.h index d65de9621b27..0d04e2878c9d 100644 --- a/drivers/scsi/sr.h +++ b/drivers/scsi/sr.h | |||
@@ -37,6 +37,7 @@ typedef struct scsi_cd { | |||
37 | unsigned xa_flag:1; /* CD has XA sectors ? */ | 37 | unsigned xa_flag:1; /* CD has XA sectors ? */ |
38 | unsigned readcd_known:1; /* drive supports READ_CD (0xbe) */ | 38 | unsigned readcd_known:1; /* drive supports READ_CD (0xbe) */ |
39 | unsigned readcd_cdda:1; /* reading audio data using READ_CD */ | 39 | unsigned readcd_cdda:1; /* reading audio data using READ_CD */ |
40 | unsigned previous_state:1; /* media has changed */ | ||
40 | struct cdrom_device_info cdi; | 41 | struct cdrom_device_info cdi; |
41 | /* We hold gendisk and scsi_device references on probe and use | 42 | /* We hold gendisk and scsi_device references on probe and use |
42 | * the refs on this kref to decide when to release them */ | 43 | * the refs on this kref to decide when to release them */ |