scsi: move the writeable field from struct scsi_device to struct scsi_cd
We currently set the field in common code based on the device type, but then only use it in the cdrom driver which also overrides the value previously set in the generic code. Just leave this entirely to the CDROM driver to make everyones life simpler. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Hannes Reinecke <hare@suse.de> Reviewed-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
@@ -435,7 +435,7 @@ static int sr_init_command(struct scsi_cmnd *SCpnt)
|
||||
}
|
||||
|
||||
if (rq_data_dir(rq) == WRITE) {
|
||||
if (!cd->device->writeable)
|
||||
if (!cd->writeable)
|
||||
goto out;
|
||||
SCpnt->cmnd[0] = WRITE_10;
|
||||
cd->cdi.media_written = 1;
|
||||
@@ -927,7 +927,7 @@ static void get_capabilities(struct scsi_cd *cd)
|
||||
*/
|
||||
if ((cd->cdi.mask & (CDC_DVD_RAM | CDC_MRW_W | CDC_RAM | CDC_CD_RW)) !=
|
||||
(CDC_DVD_RAM | CDC_MRW_W | CDC_RAM | CDC_CD_RW)) {
|
||||
cd->device->writeable = 1;
|
||||
cd->writeable = 1;
|
||||
}
|
||||
|
||||
kfree(buffer);
|
||||
|
Reference in New Issue
Block a user