Skip to content

Commit 8acf608

Browse files
Revert "scsi: sd: Keep disk read-only when re-reading partition"
This reverts commit 20bd1d0. This patch introduced regressions for devices that come online in read-only state and subsequently switch to read-write. Given how the partition code is currently implemented it is not possible to persist the read-only flag across a device revalidate call. This may need to get addressed in the future since it is common for user applications to proactively call BLKRRPART. Reverting this commit will re-introduce a regression where a device-initiated revalidate event will cause the admin state to be forgotten. A separate patch will address this issue. Fixes: 20bd1d0 ("scsi: sd: Keep disk read-only when re-reading partition") Cc: <[email protected]> Signed-off-by: Martin K. Petersen <[email protected]>
1 parent d0c0d90 commit 8acf608

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

drivers/scsi/sd.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2603,7 +2603,6 @@ sd_read_write_protect_flag(struct scsi_disk *sdkp, unsigned char *buffer)
26032603
int res;
26042604
struct scsi_device *sdp = sdkp->device;
26052605
struct scsi_mode_data data;
2606-
int disk_ro = get_disk_ro(sdkp->disk);
26072606
int old_wp = sdkp->write_prot;
26082607

26092608
set_disk_ro(sdkp->disk, 0);
@@ -2644,7 +2643,7 @@ sd_read_write_protect_flag(struct scsi_disk *sdkp, unsigned char *buffer)
26442643
"Test WP failed, assume Write Enabled\n");
26452644
} else {
26462645
sdkp->write_prot = ((data.device_specific & 0x80) != 0);
2647-
set_disk_ro(sdkp->disk, sdkp->write_prot || disk_ro);
2646+
set_disk_ro(sdkp->disk, sdkp->write_prot);
26482647
if (sdkp->first_scan || old_wp != sdkp->write_prot) {
26492648
sd_printk(KERN_NOTICE, sdkp, "Write Protect is %s\n",
26502649
sdkp->write_prot ? "on" : "off");

0 commit comments

Comments
 (0)