linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] scsi: sd: Fix cache_type_store()
@ 2018-12-23  7:41 Ivan Mironov
  2019-01-04  4:37 ` Martin K. Petersen
  0 siblings, 1 reply; 2+ messages in thread
From: Ivan Mironov @ 2018-12-23  7:41 UTC (permalink / raw)
  To: linux-scsi
  Cc: linux-kernel, Martin K. Petersen, James E.J. Bottomley, Ivan Mironov

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


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] scsi: sd: Fix cache_type_store()
  2018-12-23  7:41 [PATCH] scsi: sd: Fix cache_type_store() Ivan Mironov
@ 2019-01-04  4:37 ` Martin K. Petersen
  0 siblings, 0 replies; 2+ messages in thread
From: Martin K. Petersen @ 2019-01-04  4:37 UTC (permalink / raw)
  To: Ivan Mironov
  Cc: linux-scsi, linux-kernel, Martin K. Petersen, James E.J. Bottomley


Ivan,

> +	 *     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.

Wonderfully consistent :(

Applied to 4.21/scsi-fixes. Thanks!

-- 
Martin K. Petersen	Oracle Linux Engineering

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-01-04  4:37 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-23  7:41 [PATCH] scsi: sd: Fix cache_type_store() Ivan Mironov
2019-01-04  4:37 ` Martin K. Petersen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).