* [PATCH] scsi: sd: Use string_choices to fix Coccinelle warnings
@ 2026-04-23 21:16 Nick Spooner
2026-04-23 23:55 ` Bart Van Assche
0 siblings, 1 reply; 3+ messages in thread
From: Nick Spooner @ 2026-04-23 21:16 UTC (permalink / raw)
To: James.Bottomley, martin.petersen; +Cc: linux-scsi, linux-kernel, Nick Spooner
Fixes the following Coccinelle warnings reported by string_choices.cocci:
opportunity for str_enabled_disabled(sdkp -> WCE)
opportunity for str_on_off(sdkp -> write_prot)
Signed-off-by: Nick Spooner <nicholas.spooner@seagate.com>
---
drivers/scsi/sd.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/drivers/scsi/sd.c b/drivers/scsi/sd.c
index adc3fa55ca2c..dd284647ed64 100644
--- a/drivers/scsi/sd.c
+++ b/drivers/scsi/sd.c
@@ -50,6 +50,7 @@
#include <linux/rw_hint.h>
#include <linux/major.h>
#include <linux/mutex.h>
+#include <linux/string_choices.h>
#include <linux/string_helpers.h>
#include <linux/slab.h>
#include <linux/sed-opal.h>
@@ -3084,7 +3085,7 @@ sd_read_write_protect_flag(struct scsi_disk *sdkp, unsigned char *buffer)
set_disk_ro(sdkp->disk, sdkp->write_prot);
if (sdkp->first_scan || old_wp != sdkp->write_prot) {
sd_printk(KERN_NOTICE, sdkp, "Write Protect is %s\n",
- sdkp->write_prot ? "on" : "off");
+ str_on_off(sdkp->write_prot));
sd_printk(KERN_DEBUG, sdkp, "Mode Sense: %4ph\n", buffer);
}
}
@@ -3235,8 +3236,8 @@ sd_read_cache_type(struct scsi_disk *sdkp, unsigned char *buffer)
old_rcd != sdkp->RCD || old_dpofua != sdkp->DPOFUA)
sd_printk(KERN_NOTICE, sdkp,
"Write cache: %s, read cache: %s, %s\n",
- sdkp->WCE ? "enabled" : "disabled",
- sdkp->RCD ? "disabled" : "enabled",
+ str_enabled_disabled(sdkp->WCE),
+ str_disabled_enabled(sdkp->RCD),
sdkp->DPOFUA ? "supports DPO and FUA"
: "doesn't support DPO or FUA");
--
2.53.0
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] scsi: sd: Use string_choices to fix Coccinelle warnings
2026-04-23 21:16 [PATCH] scsi: sd: Use string_choices to fix Coccinelle warnings Nick Spooner
@ 2026-04-23 23:55 ` Bart Van Assche
2026-04-27 1:35 ` Martin K. Petersen
0 siblings, 1 reply; 3+ messages in thread
From: Bart Van Assche @ 2026-04-23 23:55 UTC (permalink / raw)
To: Nick Spooner, James.Bottomley, martin.petersen; +Cc: linux-scsi, linux-kernel
On 4/23/26 2:16 PM, Nick Spooner wrote:
> diff --git a/drivers/scsi/sd.c b/drivers/scsi/sd.c
> index adc3fa55ca2c..dd284647ed64 100644
> --- a/drivers/scsi/sd.c
> +++ b/drivers/scsi/sd.c
> @@ -50,6 +50,7 @@
> #include <linux/rw_hint.h>
> #include <linux/major.h>
> #include <linux/mutex.h>
> +#include <linux/string_choices.h>
> #include <linux/string_helpers.h>
> #include <linux/slab.h>
> #include <linux/sed-opal.h>
> @@ -3084,7 +3085,7 @@ sd_read_write_protect_flag(struct scsi_disk *sdkp, unsigned char *buffer)
> set_disk_ro(sdkp->disk, sdkp->write_prot);
> if (sdkp->first_scan || old_wp != sdkp->write_prot) {
> sd_printk(KERN_NOTICE, sdkp, "Write Protect is %s\n",
> - sdkp->write_prot ? "on" : "off");
> + str_on_off(sdkp->write_prot));
> sd_printk(KERN_DEBUG, sdkp, "Mode Sense: %4ph\n", buffer);
> }
> }
> @@ -3235,8 +3236,8 @@ sd_read_cache_type(struct scsi_disk *sdkp, unsigned char *buffer)
> old_rcd != sdkp->RCD || old_dpofua != sdkp->DPOFUA)
> sd_printk(KERN_NOTICE, sdkp,
> "Write cache: %s, read cache: %s, %s\n",
> - sdkp->WCE ? "enabled" : "disabled",
> - sdkp->RCD ? "disabled" : "enabled",
> + str_enabled_disabled(sdkp->WCE),
> + str_disabled_enabled(sdkp->RCD),
> sdkp->DPOFUA ? "supports DPO and FUA"
> : "doesn't support DPO or FUA");
My opinion is that the sd code is easier to read *without* this patch.
But that's just my opinion. Maybe there are other opinions.
Bart.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-04-27 1:36 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-23 21:16 [PATCH] scsi: sd: Use string_choices to fix Coccinelle warnings Nick Spooner
2026-04-23 23:55 ` Bart Van Assche
2026-04-27 1:35 ` 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