RE: [PATCH 06/13] scsi: fnic: Add the NVMe/FC transport path
From: Karan Tilak Kumar (kartilak)
Date: Wed May 27 2026 - 14:30:07 EST
On Wednesday, May 27, 2026 2:01 AM, Marco Crivellari <marco.crivellari@xxxxxxxx> wrote:
>
> 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!
>
Thanks for the feedback, Marco.
I'll make this change and send it out in V2.
Regards,
Karan