Re: [PATCH 06/13] scsi: fnic: Add the NVMe/FC transport path
From: Marco Crivellari
Date: Wed May 27 2026 - 05:01:31 EST
Hello,
>+ fnic_cmpl_queue =
>+ alloc_workqueue("fnic_cmpl_wq", WQ_HIGHPRI | WQ_MEM_RECLAIM, 0);
>+ if (!fnic_cmpl_queue) {
Please note that this workqueue should specify one among WQ_PERCPU or
WQ_UNBOUND. If it must be per-CPU for performance reasons or locality
requirements (eg. per-CPU variables), use WQ_PERCPU explicitly.
Thanks!