Re: [PATCH v2 1/4] scsi: only access SCSIDevice->requests from one thread

2023-12-19 Thread Stefan Hajnoczi
On Tue, 19 Dec 2023 at 10:12, Kevin Wolf wrote: > > Am 04.12.2023 um 17:42 hat Stefan Hajnoczi geschrieben: > > Stop depending on the AioContext lock and instead access > > SCSIDevice->requests from only one thread at a time: > > - When the VM is running only the BlockBackend's AioContext may acce

Re: [PATCH v2 1/4] scsi: only access SCSIDevice->requests from one thread

2023-12-19 Thread Kevin Wolf
Am 04.12.2023 um 17:42 hat Stefan Hajnoczi geschrieben: > Stop depending on the AioContext lock and instead access > SCSIDevice->requests from only one thread at a time: > - When the VM is running only the BlockBackend's AioContext may access > the requests list. > - When the VM is stopped only t

[PATCH v2 1/4] scsi: only access SCSIDevice->requests from one thread

2023-12-04 Thread Stefan Hajnoczi
Stop depending on the AioContext lock and instead access SCSIDevice->requests from only one thread at a time: - When the VM is running only the BlockBackend's AioContext may access the requests list. - When the VM is stopped only the main loop may access the requests list. These constraints pr