Martin, > -----Original Message----- > From: Martin K. Petersen <martin.petersen@xxxxxxxxxx> > Sent: Friday, August 25, 2023 6:54 AM > To: Nilesh Javali <njavali@xxxxxxxxxxx> > Cc: martin.petersen@xxxxxxxxxx; linux-scsi@xxxxxxxxxxxxxxx; GR-QLogic- > Storage-Upstream <GR-QLogic-Storage-Upstream@xxxxxxxxxxx>; Anil > Gurumurthy <agurumurthy@xxxxxxxxxxx>; Shreyas Deodhar > <sdeodhar@xxxxxxxxxxx> > Subject: [EXT] Re: [PATCH] qla2xxx: fix sparse warning in func > qla24xx_build_scsi_type_6_iocbs > > External Email > > ---------------------------------------------------------------------- > > Nilesh, > > > Sparse warning reported, > > > > drivers/scsi/qla2xxx/qla_iocb.c: In function > 'qla24xx_build_scsi_type_6_iocbs': > >>> drivers/scsi/qla2xxx/qla_iocb.c:594:29: warning: variable 'ha' set but not > used [-Wunused-but-set-variable] > > 594 | struct qla_hw_data *ha; > > | ^~ > > > > Define variable 'ha' before exiting the routine. > > > > Reported-by: kernel test robot <lkp@xxxxxxxxx> > > Closes: https://urldefense.proofpoint.com/v2/url?u=https- > 3A__lore.kernel.org_oe-2Dkbuild-2Dall_202308230757.VKMIztAB-2Dlkp- > 40intel.com_&d=DwIBAg&c=nKjWec2b6R0mOyPaz7xtfQ&r=FAW9wuzbtHIZL > 7SV63sr8rG59Hctu- > eGu0G9pxwOXgQ&m=TN8k607nHWpfz1FmLLOobTs3fJwzwYurDnbRAyMwDi > S95QYsQ8IIX2XJsUy_SuUW&s=ODpU0qHQ2MPh7GQA6i- > 08iusSGol9W145Tb2U0EqYfg&e= > > Signed-off-by: Nilesh Javali <njavali@xxxxxxxxxxx> > > --- > > drivers/scsi/qla2xxx/qla_iocb.c | 7 ++----- > > 1 file changed, 2 insertions(+), 5 deletions(-) > > > > diff --git a/drivers/scsi/qla2xxx/qla_iocb.c b/drivers/scsi/qla2xxx/qla_iocb.c > > index 7fbd917f6e1f..0eb8df5ee73c 100644 > > --- a/drivers/scsi/qla2xxx/qla_iocb.c > > +++ b/drivers/scsi/qla2xxx/qla_iocb.c > > @@ -591,8 +591,8 @@ qla24xx_build_scsi_type_6_iocbs(srb_t *sp, struct > cmd_type_6 *cmd_pkt, > > uint16_t tot_dsds) > > { > > struct dsd64 *cur_dsd = NULL, *next_dsd; > > - scsi_qla_host_t *vha; > > - struct qla_hw_data *ha; > > + scsi_qla_host_t *vha = sp->vha; > > + struct qla_hw_data *ha = vha->hw; > > It doesn't appear that either of these are used at all in that function. > What am I missing? You are correct. My bad, all statistics were moved from vha to qpair rendering the variables unused. Thanks for the review. I will post the v2 soon. Regards, Nilesh