]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
sd: Avoid sending medium write commands if device is write protected
authorSujit Reddy Thumma <sthumma@codeaurora.org>
Mon, 11 Aug 2014 12:40:37 +0000 (15:40 +0300)
committerChristoph Hellwig <hch@lst.de>
Mon, 15 Sep 2014 23:01:57 +0000 (16:01 -0700)
The SYNCHRONIZE_CACHE command is a medium write command and hence can
fail when the device is write protected. Avoid sending such commands by
making sure that write-cache-enable is disabled even though the device
claim to support it.

Signed-off-by: Sujit Reddy Thumma <sthumma@codeaurora.org>
Signed-off-by: Dolev Raviv <draviv@codeaurora.org>
Reviewed-by: Martin K. Petersen <martin.petersen@oracle.com>
Reviewed-by: Venkatesh Srinivas <venkateshs@google.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
drivers/scsi/sd.c

index 2c2041ca4b7065402a46820e0e714e6df8f31cba..aa43496b7b936164fa91ea8841f20bdef79ce461 100644 (file)
@@ -185,7 +185,7 @@ cache_type_store(struct device *dev, struct device_attribute *attr,
        if (ct < 0)
                return -EINVAL;
        rcd = ct & 0x01 ? 1 : 0;
-       wce = ct & 0x02 ? 1 : 0;
+       wce = (ct & 0x02) && !sdkp->write_prot ? 1 : 0;
 
        if (sdkp->cache_override) {
                sdkp->WCE = wce;
@@ -2490,6 +2490,10 @@ sd_read_cache_type(struct scsi_disk *sdkp, unsigned char *buffer)
                        sdkp->DPOFUA = 0;
                }
 
+               /* No cache flush allowed for write protected devices */
+               if (sdkp->WCE && sdkp->write_prot)
+                       sdkp->WCE = 0;
+
                if (sdkp->first_scan || old_wce != sdkp->WCE ||
                    old_rcd != sdkp->RCD || old_dpofua != sdkp->DPOFUA)
                        sd_printk(KERN_NOTICE, sdkp,