lkml.org 
[lkml]   [2018]   [Dec]   [23]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] scsi: sd: Fix cache_type_store()
Date
Changing of caching mode via /sys/devices/.../scsi_disk/.../cache_type
may fail if device responses to MODE SENSE command with DPOFUA flag set,
and then checks this flag to be not set on MODE SELECT command.

When trying to change cache_type, write always fails:
# echo "none" >cache_type
bash: echo: write error: Invalid argument

And following appears in dmesg:
[13007.865745] sd 1:0:1:0: [sda] Sense Key : Illegal Request [current]
[13007.865753] sd 1:0:1:0: [sda] Add. Sense: Invalid field in parameter list

Signed-off-by: Ivan Mironov <mironov.ivan@gmail.com>
---
drivers/scsi/sd.c | 15 +++++++++++++++
1 file changed, 15 insertions(+)

diff --git a/drivers/scsi/sd.c b/drivers/scsi/sd.c
index bd0a5c694a97..698fe651fb1a 100644
--- a/drivers/scsi/sd.c
+++ b/drivers/scsi/sd.c
@@ -206,6 +206,21 @@ cache_type_store(struct device *dev, struct device_attribute *attr,
sp = buffer_data[0] & 0x80 ? 1 : 0;
buffer_data[0] &= ~0x80;

+ /* From SBC-4 r15, 6.5.1 "Mode pages overview", description of
+ * DEVICE-SPECIFIC PARAMETER field in the mode parameter header:
+ * ...
+ * The write protect (WP) bit for mode data sent with a MODE SELECT
+ * command shall be ignored by the device server.
+ * ...
+ * The DPOFUA bit is reserved for mode data sent with a MODE SELECT
+ * command.
+ * ...
+ * All other bits are also reserved, and all reserved bits shall be set
+ * to zero according to the same document. So, we can simply set this
+ * field to zero for compatibility.
+ */
+ data.device_specific = 0;
+
if (scsi_mode_select(sdp, 1, sp, 8, buffer_data, len, SD_TIMEOUT,
SD_MAX_RETRIES, &data, &sshdr)) {
if (scsi_sense_valid(&sshdr))
--
2.20.1
\
 
 \ /
  Last update: 2018-12-23 08:43    [W:0.028 / U:1.116 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site