]> www.infradead.org Git - users/hch/misc.git/commitdiff
scsi: lpfc: Use int type to store negative error codes
authorQianfeng Rong <rongqianfeng@vivo.com>
Thu, 4 Sep 2025 13:23:51 +0000 (21:23 +0800)
committerMartin K. Petersen <martin.petersen@oracle.com>
Wed, 10 Sep 2025 02:11:44 +0000 (22:11 -0400)
Change the 'ret' variable in lpfc_sli4_issue_wqe() from uint32_t to int,
as it needs to store either negative error codes or zero returned by
lpfc_sli4_wq_put().

Storing the negative error codes in unsigned type, doesn't cause an
issue at runtime but can be confusing.  Additionally, assigning negative
error codes to unsigned type may trigger a GCC warning when the
-Wsign-conversion flag is enabled.

No effect on runtime.

Signed-off-by: Qianfeng Rong <rongqianfeng@vivo.com>
Reviewed-by: Justin Tee <justin.tee@broadcom.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/lpfc/lpfc_sli.c

index a8fbdf7119d88880a4d194aacee2123871d86efd..8a2434a96919b782ae6688347db41766c6145003 100644 (file)
@@ -21373,7 +21373,7 @@ lpfc_sli4_issue_wqe(struct lpfc_hba *phba, struct lpfc_sli4_hdw_queue *qp,
        struct lpfc_sglq *sglq;
        struct lpfc_sli_ring *pring;
        unsigned long iflags;
-       uint32_t ret = 0;
+       int ret = 0;
 
        /* NVME_LS and NVME_LS ABTS requests. */
        if (pwqe->cmd_flag & LPFC_IO_NVME_LS) {