RE: [PATCH] accel/kvm/kvm-all: Fixes the missing break in vCPU unpark logic

2024-07-31 Thread Salil Mehta via
> From: Peter Maydell > Sent: Wednesday, July 31, 2024 12:39 PM > To: Salil Mehta > > On Wed, 31 Jul 2024 at 09:49, Salil Mehta wrote: > > > > Hello, > > > > A quick check and a gentle reminder, has this patch been accepted? > > Thanks for the ping. I'm doing a target-arm pullreq to

Re: [PATCH] accel/kvm/kvm-all: Fixes the missing break in vCPU unpark logic

2024-07-31 Thread Peter Maydell
On Wed, 31 Jul 2024 at 09:49, Salil Mehta wrote: > > Hello, > > A quick check and a gentle reminder, has this patch been accepted? Thanks for the ping. I'm doing a target-arm pullreq tomorrow so I'll take it via my queue. -- PMM

RE: [PATCH] accel/kvm/kvm-all: Fixes the missing break in vCPU unpark logic

2024-07-31 Thread Salil Mehta via
Hello, A quick check and a gentle reminder, has this patch been accepted? Best regards Salil. > From: Igor Mammedov > Sent: Friday, July 26, 2024 10:34 AM > To: Salil Mehta > > On Thu, 25 Jul 2024 15:51:32 +0100 > Salil Mehta wrote: > > > Loop should exit prematurely on successfully

Re: [PATCH] accel/kvm/kvm-all: Fixes the missing break in vCPU unpark logic

2024-07-26 Thread Igor Mammedov
On Thu, 25 Jul 2024 15:51:32 +0100 Salil Mehta wrote: > Loop should exit prematurely on successfully finding out the parked vCPU > (struct > KVMParkedVcpu) in the 'struct KVMState' maintained 'kvm_parked_vcpus' list of > parked vCPUs. > > Fixes: Coverity CID 1558552 > Fixes: 08c3286822 ("accel/

Re: [PATCH] accel/kvm/kvm-all: Fixes the missing break in vCPU unpark logic

2024-07-26 Thread Zhao Liu
On Thu, Jul 25, 2024 at 03:51:32PM +0100, Salil Mehta via wrote: > Date: Thu, 25 Jul 2024 15:51:32 +0100 > From: Salil Mehta via > Subject: [PATCH] accel/kvm/kvm-all: Fixes the missing break in vCPU unpark > logic > X-Mailer: git-send-email 2.34.1 > > Loop shoul

Re: [PATCH] accel/kvm/kvm-all: Fixes the missing break in vCPU unpark logic

2024-07-25 Thread Gavin Shan
On 7/26/24 12:51 AM, Salil Mehta wrote: Loop should exit prematurely on successfully finding out the parked vCPU (struct KVMParkedVcpu) in the 'struct KVMState' maintained 'kvm_parked_vcpus' list of parked vCPUs. Fixes: Coverity CID 1558552 Fixes: 08c3286822 ("accel/kvm: Extract common KVM vCPU

Re: [PATCH] accel/kvm/kvm-all: Fixes the missing break in vCPU unpark logic

2024-07-25 Thread Philippe Mathieu-Daudé
On 25/7/24 16:51, Salil Mehta wrote: Loop should exit prematurely on successfully finding out the parked vCPU (struct KVMParkedVcpu) in the 'struct KVMState' maintained 'kvm_parked_vcpus' list of parked vCPUs. Fixes: Coverity CID 1558552 Fixes: 08c3286822 ("accel/kvm: Extract common KVM vCPU {cr

[PATCH] accel/kvm/kvm-all: Fixes the missing break in vCPU unpark logic

2024-07-25 Thread Salil Mehta via
Loop should exit prematurely on successfully finding out the parked vCPU (struct KVMParkedVcpu) in the 'struct KVMState' maintained 'kvm_parked_vcpus' list of parked vCPUs. Fixes: Coverity CID 1558552 Fixes: 08c3286822 ("accel/kvm: Extract common KVM vCPU {creation,parking} code") Reported-by: Pet