From: Bart Van Assche Date: Thu, 22 Aug 2024 19:59:17 +0000 (-0700) Subject: scsi: qedi: Simplify an alloc_workqueue() invocation X-Git-Tag: v6.12-rc1~124^2~6^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=19d7cda1c6304e032c1f7cd0ff3e6b5dc29f76dd;p=thirdparty%2Fkernel%2Flinux.git scsi: qedi: Simplify an alloc_workqueue() invocation Let alloc_workqueue() format the workqueue name instead of calling snprintf() explicitly. Signed-off-by: Bart Van Assche Link: https://lore.kernel.org/r/20240822195944.654691-14-bvanassche@acm.org Signed-off-by: Martin K. Petersen --- diff --git a/drivers/scsi/qedi/qedi_main.c b/drivers/scsi/qedi/qedi_main.c index 319c1da549f70..c5aec26019d6a 100644 --- a/drivers/scsi/qedi/qedi_main.c +++ b/drivers/scsi/qedi/qedi_main.c @@ -2776,9 +2776,9 @@ retry_probe: goto free_cid_que; } - sprintf(host_buf, "qedi_ofld%d", qedi->shost->host_no); - qedi->offload_thread = - alloc_workqueue("%s", WQ_MEM_RECLAIM, 1, host_buf); + qedi->offload_thread = alloc_workqueue("qedi_ofld%d", + WQ_MEM_RECLAIM, + 1, qedi->shost->host_no); if (!qedi->offload_thread) { QEDI_ERR(&qedi->dbg_ctx, "Unable to start offload thread!\n");