Re: [PATCH] hw/nvme: fix attachment of private namespaces

2025-04-10 Thread Philippe Mathieu-Daudé
On 8/4/25 12:20, Klaus Jensen wrote: From: Klaus Jensen Fix regression when attaching private namespaces that gets attached to the wrong controller. Keep track of the original controller "owner" of private namespaces, and only attach if this matches on controller enablement. Fixes: 6ccca4b6bb

Re: [PATCH] hw/nvme: fix attachment of private namespaces

2025-04-10 Thread Klaus Jensen
On Apr 8 20:56, Philippe Mathieu-Daudé wrote: > On 8/4/25 12:20, Klaus Jensen wrote: > > From: Klaus Jensen > > > > Fix regression when attaching private namespaces that gets attached to > > the wrong controller. > > > > Keep track of the original controller "owner" of private namespaces, and >

Re: [PATCH] hw/nvme: fix attachment of private namespaces

2025-04-08 Thread alan . adamson
On 4/8/25 3:20 AM, Klaus Jensen wrote: From: Klaus Jensen Fix regression when attaching private namespaces that gets attached to the wrong controller. Keep track of the original controller "owner" of private namespaces, and only attach if this matches on controller enablement. Tested-by: A

Re: [PATCH] hw/nvme: fix attachment of private namespaces

2025-04-08 Thread Keith Busch
On Tue, Apr 08, 2025 at 12:20:46PM +0200, Klaus Jensen wrote: > From: Klaus Jensen > > Fix regression when attaching private namespaces that gets attached to > the wrong controller. > > Keep track of the original controller "owner" of private namespaces, and > only attach if this matches on cont

[PATCH] hw/nvme: fix attachment of private namespaces

2025-04-08 Thread Klaus Jensen
From: Klaus Jensen Fix regression when attaching private namespaces that gets attached to the wrong controller. Keep track of the original controller "owner" of private namespaces, and only attach if this matches on controller enablement. Fixes: 6ccca4b6bb9f ("hw/nvme: rework csi handling") Rep