2021-11-30 20:38:16

by Florian Fainelli

[permalink] [raw]
Subject: [PATCH v2 0/2] SYSFS_FLAG_FW_SEL_BOOT formatting fixes

Hi Martin, Manish,

This patch series aligns the formatting of SYSFS_FLAG_FW_SEL_BOOT
between qedi and qla4xxx.

Changes in v2:

- fixed incorrect format in second hunk of qla4xxx

Florian Fainelli (2):
scsi: qedi: Fix SYSFS_FLAG_FW_SEL_BOOT formatting
scsi: qla4xxx: Format SYSFS_FLAG_FW_SEL_BOOT as byte

drivers/scsi/qedi/qedi_main.c | 5 ++---
drivers/scsi/qla4xxx/ql4_os.c | 4 ++--
2 files changed, 4 insertions(+), 5 deletions(-)

--
2.25.1



2021-11-30 20:38:19

by Florian Fainelli

[permalink] [raw]
Subject: [PATCH v2 1/2] scsi: qedi: Fix SYSFS_FLAG_FW_SEL_BOOT formatting

The format used for formatting SYSFS_FLAG_FW_SEL_BOOT creates the
following warning:

drivers/scsi/qedi/qedi_main.c:2259:35: warning: format specifies type
'char' but the argument has type 'int' [-Wformat]
rc = snprintf(buf, 3, "%hhd\n",
SYSFS_FLAG_FW_SEL_BOOT);

Fix this to cast the constant as a char since the intention is to print
it via sysfs as a byte.

Reported-by: kernel test robot <[email protected]>
Signed-off-by: Florian Fainelli <[email protected]>
---
drivers/scsi/qedi/qedi_main.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/scsi/qedi/qedi_main.c b/drivers/scsi/qedi/qedi_main.c
index f1c933070884..e7d2bc9026f8 100644
--- a/drivers/scsi/qedi/qedi_main.c
+++ b/drivers/scsi/qedi/qedi_main.c
@@ -2086,8 +2086,7 @@ static ssize_t qedi_show_boot_eth_info(void *data, int type, char *buf)
rc = snprintf(buf, ip_len, fmt, gw);
break;
case ISCSI_BOOT_ETH_FLAGS:
- rc = snprintf(buf, 3, "%hhd\n",
- SYSFS_FLAG_FW_SEL_BOOT);
+ rc = snprintf(buf, 3, "%hhd\n", (char)SYSFS_FLAG_FW_SEL_BOOT);
break;
case ISCSI_BOOT_ETH_INDEX:
rc = snprintf(buf, 3, "0\n");
@@ -2254,7 +2253,7 @@ qedi_show_boot_tgt_info(struct qedi_ctx *qedi, int type,
mchap_secret);
break;
case ISCSI_BOOT_TGT_FLAGS:
- rc = snprintf(buf, 3, "%hhd\n", SYSFS_FLAG_FW_SEL_BOOT);
+ rc = snprintf(buf, 3, "%hhd\n", (char)SYSFS_FLAG_FW_SEL_BOOT);
break;
case ISCSI_BOOT_TGT_NIC_ASSOC:
rc = snprintf(buf, 3, "0\n");
--
2.25.1


2021-11-30 20:38:24

by Florian Fainelli

[permalink] [raw]
Subject: [PATCH v2 2/2] scsi: qla4xxx: Format SYSFS_FLAG_FW_SEL_BOOT as byte

qedi formats SYSFS_FLAG_FW_SEL_BOOT as a byte, and the qla4xxx driver
does exactly the same thing, align them for consistency.

Suggested-by: Martin K. Petersen <[email protected]>
Signed-off-by: Florian Fainelli <[email protected]>
---
drivers/scsi/qla4xxx/ql4_os.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/scsi/qla4xxx/ql4_os.c b/drivers/scsi/qla4xxx/ql4_os.c
index 8987acc24dac..8b2aac49782c 100644
--- a/drivers/scsi/qla4xxx/ql4_os.c
+++ b/drivers/scsi/qla4xxx/ql4_os.c
@@ -5734,7 +5734,7 @@ static ssize_t qla4xxx_show_boot_eth_info(void *data, int type, char *buf)

switch (type) {
case ISCSI_BOOT_ETH_FLAGS:
- rc = sprintf(str, "%d\n", SYSFS_FLAG_FW_SEL_BOOT);
+ rc = sprintf(str, "%hhd\n", (char)SYSFS_FLAG_FW_SEL_BOOT);
break;
case ISCSI_BOOT_ETH_INDEX:
rc = sprintf(str, "0\n");
@@ -5843,7 +5843,7 @@ qla4xxx_show_boot_tgt_info(struct ql4_boot_session_info *boot_sess, int type,
(char *)&boot_conn->chap.intr_secret);
break;
case ISCSI_BOOT_TGT_FLAGS:
- rc = sprintf(str, "%d\n", SYSFS_FLAG_FW_SEL_BOOT);
+ rc = sprintf(str, "%hhd\n", (char)SYSFS_FLAG_FW_SEL_BOOT);
break;
case ISCSI_BOOT_TGT_NIC_ASSOC:
rc = sprintf(str, "0\n");
--
2.25.1


2021-12-01 04:20:30

by Manish Rangankar

[permalink] [raw]
Subject: RE: [EXT] [PATCH v2 0/2] SYSFS_FLAG_FW_SEL_BOOT formatting fixes


> -----Original Message-----
> From: Florian Fainelli <[email protected]>
> Sent: Wednesday, December 1, 2021 2:08 AM
> To: [email protected]
> Cc: Florian Fainelli <[email protected]>; Nilesh Javali <[email protected]>;
> Manish Rangankar <[email protected]>; GR-QLogic-Storage-Upstream
> <[email protected]>; James E.J. Bottomley
> <[email protected]>; Martin K. Petersen <[email protected]>;
> open list:QLOGIC QL41xxx ISCSI DRIVER <[email protected]>
> Subject: [EXT] [PATCH v2 0/2] SYSFS_FLAG_FW_SEL_BOOT formatting fixes
>
> External Email
>
> ----------------------------------------------------------------------
> Hi Martin, Manish,
>
> This patch series aligns the formatting of SYSFS_FLAG_FW_SEL_BOOT between
> qedi and qla4xxx.
>
> Changes in v2:
>
> - fixed incorrect format in second hunk of qla4xxx
>
> Florian Fainelli (2):
> scsi: qedi: Fix SYSFS_FLAG_FW_SEL_BOOT formatting
> scsi: qla4xxx: Format SYSFS_FLAG_FW_SEL_BOOT as byte
>
> drivers/scsi/qedi/qedi_main.c | 5 ++--- drivers/scsi/qla4xxx/ql4_os.c | 4 ++--
> 2 files changed, 4 insertions(+), 5 deletions(-)
>
> --
> 2.25.1

Thanks,

Acked-by: Manish Rangankar <[email protected]>

2021-12-14 04:41:17

by Martin K. Petersen

[permalink] [raw]
Subject: Re: [PATCH v2 0/2] SYSFS_FLAG_FW_SEL_BOOT formatting fixes

On Tue, 30 Nov 2021 12:38:11 -0800, Florian Fainelli wrote:

> This patch series aligns the formatting of SYSFS_FLAG_FW_SEL_BOOT
> between qedi and qla4xxx.
>
> Changes in v2:
>
> - fixed incorrect format in second hunk of qla4xxx
>
> [...]

Applied to 5.17/scsi-queue, thanks!

[1/2] scsi: qedi: Fix SYSFS_FLAG_FW_SEL_BOOT formatting
https://git.kernel.org/mkp/scsi/c/9f9b7fa946be
[2/2] scsi: qla4xxx: Format SYSFS_FLAG_FW_SEL_BOOT as byte
https://git.kernel.org/mkp/scsi/c/74d801525385

--
Martin K. Petersen Oracle Linux Engineering