Skip to content

Commit 109205b

Browse files
htejunjgunthorpe
authored andcommitted
RDMA/irdma: Drop spurious WQ_UNBOUND from alloc_ordered_workqueue() call
Workqueue is in the process of cleaning up the distinction between unbound workqueues w/ @nr_active==1 and ordered workqueues. Explicit WQ_UNBOUND isn't needed for alloc_ordered_workqueue() and will trigger a warning in the future. Let's remove it. This doesn't cause any functional changes. Link: https://lore.kernel.org/r/ZEGW-IcFReR1juVM@slm.duckdns.org Signed-off-by: Tejun Heo <tj@kernel.org> Acked-by: Shiraz Saleem <shiraz.saleem@intel.com> Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
1 parent 10af303 commit 109205b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • drivers/infiniband/hw/irdma

drivers/infiniband/hw/irdma/hw.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1908,8 +1908,8 @@ int irdma_ctrl_init_hw(struct irdma_pci_f *rf)
19081908
break;
19091909
rf->init_state = CEQ0_CREATED;
19101910
/* Handles processing of CQP completions */
1911-
rf->cqp_cmpl_wq = alloc_ordered_workqueue("cqp_cmpl_wq",
1912-
WQ_HIGHPRI | WQ_UNBOUND);
1911+
rf->cqp_cmpl_wq =
1912+
alloc_ordered_workqueue("cqp_cmpl_wq", WQ_HIGHPRI);
19131913
if (!rf->cqp_cmpl_wq) {
19141914
status = -ENOMEM;
19151915
break;

0 commit comments

Comments
 (0)