Re: [PATCH v2 2/2] nvme-tcp: parallelize I/O queue allocation and startup
From: Sagi Grimberg
Date: Sat Sep 05 2026 - 18:29:35 EST
On 04/09/2026 19:04, Surabhi Gogte (she/her) wrote:
On Sun, Aug 30, 2026 at 3:59 PM Mohamed Khalfella
<mkhalfella@xxxxxxxxxxxxxxx> wrote:
On Mon 2026-08-31 01:44:32 +0300, Sagi Grimberg wrote:From what I gathered, reconnect and error recovery run on kworkers,
Thanks for the pointer. I was not aware of that. What about error
On 31/08/2026 1:25, Mohamed Khalfella wrote:
On Mon 2026-08-31 01:00:52 +0300, Sagi Grimberg wrote:See commit: 1be52169c3488ef98582ed553ab35cefa3978817
On 25/08/2026 1:56, Surabhi Gogte wrote:Why we can not change it? Today the error recovery code running in
- ret = sock_create_kern(current->nsproxy->net_ns,I don't think we can just change this...
+ ret = sock_create_kern(&init_net,
worker thread will be using init_net anyway, no?
recovery case? I _think_ it will be using init_net, no?
so those paths were already resolving to init_net even before this change.
If we pin the caller's netns to the ctrl, we can keep netns consistent
throughout,
if that is desired.
We probably should.