Re: [Qemu-devel] [PATCH] vcpu_dirty: share the same field in CPUState for all accelerators

2017-06-27 Thread Paolo Bonzini
On 27/06/2017 20:36, Eric Blake wrote: > On 06/19/2017 11:35 AM, Paolo Bonzini wrote: >> >> >> On 18/06/2017 21:11, Sergio Andres Gomez Del Real wrote: >>> This patch simply replaces the separate boolean field in CPUState that >>> kvm, hax (and upcoming hvf) have for keeping track of vcpu

Re: [Qemu-devel] [PATCH] vcpu_dirty: share the same field in CPUState for all accelerators

2017-06-27 Thread Eric Blake
On 06/19/2017 11:35 AM, Paolo Bonzini wrote: > > > On 18/06/2017 21:11, Sergio Andres Gomez Del Real wrote: >> This patch simply replaces the separate boolean field in CPUState that >> kvm, hax (and upcoming hvf) have for keeping track of vcpu dirtiness >> with a single shared field. >> >>

Re: [Qemu-devel] [PATCH] vcpu_dirty: share the same field in CPUState for all accelerators

2017-06-19 Thread Paolo Bonzini
On 18/06/2017 21:11, Sergio Andres Gomez Del Real wrote: > This patch simply replaces the separate boolean field in CPUState that > kvm, hax (and upcoming hvf) have for keeping track of vcpu dirtiness > with a single shared field. > > Signed-off-by: Sergio Andres Gomez Del Real

[Qemu-devel] [PATCH] vcpu_dirty: share the same field in CPUState for all accelerators

2017-06-18 Thread Sergio Andres Gomez Del Real
This patch simply replaces the separate boolean field in CPUState that kvm, hax (and upcoming hvf) have for keeping track of vcpu dirtiness with a single shared field. Signed-off-by: Sergio Andres Gomez Del Real --- include/qom/cpu.h | 5 +++-- kvm-all.c