summaryrefslogtreecommitdiffstats
path: root/drivers/scsi/myrs.c
diff options
context:
space:
mode:
authorBart Van Assche <bvanassche@acm.org>2024-08-22 21:59:15 +0200
committerMartin K. Petersen <martin.petersen@oracle.com>2024-08-23 03:28:56 +0200
commitf30679166255148f7781b0726d8e1b5e22dd5b48 (patch)
tree50fcf568b3000496d922f336e95a342854598791 /drivers/scsi/myrs.c
parentscsi: myrb: Simplify an alloc_ordered_workqueue() invocation (diff)
downloadlinux-f30679166255148f7781b0726d8e1b5e22dd5b48.tar.xz
linux-f30679166255148f7781b0726d8e1b5e22dd5b48.zip
scsi: myrs: Simplify an alloc_ordered_workqueue() invocation
Let alloc_ordered_workqueue() format the workqueue name instead of calling snprintf() explicitly. Reviewed-by: Hannes Reinecke <hare@suse.de> Signed-off-by: Bart Van Assche <bvanassche@acm.org> Link: https://lore.kernel.org/r/20240822195944.654691-12-bvanassche@acm.org Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'drivers/scsi/myrs.c')
-rw-r--r--drivers/scsi/myrs.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/scsi/myrs.c b/drivers/scsi/myrs.c
index 8a8f26633cda..3392feb15cb4 100644
--- a/drivers/scsi/myrs.c
+++ b/drivers/scsi/myrs.c
@@ -2206,10 +2206,8 @@ static bool myrs_create_mempools(struct pci_dev *pdev, struct myrs_hba *cs)
return false;
}
- snprintf(cs->work_q_name, sizeof(cs->work_q_name),
- "myrs_wq_%d", shost->host_no);
- cs->work_q =
- alloc_ordered_workqueue("%s", WQ_MEM_RECLAIM, cs->work_q_name);
+ cs->work_q = alloc_ordered_workqueue("myrs_wq_%d", WQ_MEM_RECLAIM,
+ shost->host_no);
if (!cs->work_q) {
dma_pool_destroy(cs->dcdb_pool);
cs->dcdb_pool = NULL;