public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] qla2xxx: Remove duplicate of vha->iocb_work initialization
@ 2022-11-15  9:38 Gleb Chesnokov
  2022-11-26  0:36 ` Martin K. Petersen
  2022-12-01  3:45 ` Martin K. Petersen
  0 siblings, 2 replies; 3+ messages in thread
From: Gleb Chesnokov @ 2022-11-15  9:38 UTC (permalink / raw)
  To: linux-scsi

Commit 9b3e0f4d4147 ("scsi: qla2xxx: Move work element processing
out of DPC thread") introduced the initialization of vha->iocb_work in
qla2x00_create_host() function.

This initialization is also called from qla2x00_probe_one() function,
just after qla2x00_create_host().

Hence remove this duplicate call since it has already been called before.

Signed-off-by: Gleb Chesnokov <gleb.chesnokov@scst.dev>
---
  drivers/scsi/qla2xxx/qla_os.c | 1 -
  1 file changed, 1 deletion(-)

diff --git a/drivers/scsi/qla2xxx/qla_os.c b/drivers/scsi/qla2xxx/qla_os.c
index 2c85f3cce726..9d82921d94b8 100644
--- a/drivers/scsi/qla2xxx/qla_os.c
+++ b/drivers/scsi/qla2xxx/qla_os.c
@@ -3284,7 +3284,6 @@ qla2x00_probe_one(struct pci_dev *pdev, const 
struct pci_device_id *id)
  	    host->max_cmd_len, host->max_channel, host->max_lun,
  	    host->transportt, sht->vendor_id);

-	INIT_WORK(&base_vha->iocb_work, qla2x00_iocb_work_fn);
  	INIT_WORK(&ha->heartbeat_work, qla_heartbeat_work_fn);

  	/* Set up the irqs */
-- 
2.38.1

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

end of thread, other threads:[~2022-12-01  3:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-15  9:38 [PATCH 1/2] qla2xxx: Remove duplicate of vha->iocb_work initialization Gleb Chesnokov
2022-11-26  0:36 ` Martin K. Petersen
2022-12-01  3:45 ` 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