From: Tejun Heo Date: Tue, 23 May 2023 01:13:03 +0000 (-1000) Subject: scsi: NCR5380: Use default @max_active for hostdata->work_q X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=6f640df149adf785184656a076b79d90fc4c86cc;p=linux.git scsi: NCR5380: Use default @max_active for hostdata->work_q hostdata->work_q only hosts a single work item, hostdata->main_task, and thus doesn't need explicit concurrency limit. Let's use the default @max_active. This doesn't cost anything and clearly expresses that @max_active doesn't matter. Signed-off-by: Tejun Heo Acked-by: Finn Thain Acked-by: "Martin K. Petersen" Cc: Michael Schmitz Cc: "James E.J. Bottomley" Cc: linux-scsi@vger.kernel.org Cc: linux-kernel@vger.kernel.org --- diff --git a/drivers/scsi/NCR5380.c b/drivers/scsi/NCR5380.c index ca85bddb582b4..cea3a79d538e4 100644 --- a/drivers/scsi/NCR5380.c +++ b/drivers/scsi/NCR5380.c @@ -417,7 +417,7 @@ static int NCR5380_init(struct Scsi_Host *instance, int flags) INIT_WORK(&hostdata->main_task, NCR5380_main); hostdata->work_q = alloc_workqueue("ncr5380_%d", WQ_UNBOUND | WQ_MEM_RECLAIM, - 1, instance->host_no); + 0, instance->host_no); if (!hostdata->work_q) return -ENOMEM;