* [Qemu-devel] Doubts regarding parallelism on KVM, IO threads
@ 2016-03-03 6:09 Gaurav Sharma
2016-03-03 8:47 ` Paolo Bonzini
0 siblings, 1 reply; 2+ messages in thread
From: Gaurav Sharma @ 2016-03-03 6:09 UTC (permalink / raw)
To: QEMU-DEVEL
[-- Attachment #1: Type: text/plain, Size: 830 bytes --]
Hi was trying to do some digging for multi core scenarios both with and
without KVM.
In short i have some devices and a user application that does some r/w
operations on those devices.
As per my understanding, in case binary translation using TCG is invoked,
we only create a single Qemuthread for all vcpu's. In case of KVM we have a
Qemuthread for each vcpu as TCG is bypassed in this case.
[Test scenario]
Lets say i have devices dev1 and dev2. Test application for dev1 is
executed on core0 and dev2 on core1.
For device dev1, for testing purposes i specified some sleep whenever a
read comes.
In case KVM is enabled, whenever the sleep is hit my whole VM freezes.
1. Are are devices emulated in a separate single thread ?
2. How and where in the code do we do a switch between CPU thread and
IOthread ?
Regards,
Gaurav
[-- Attachment #2: Type: text/html, Size: 2263 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] Doubts regarding parallelism on KVM, IO threads
2016-03-03 6:09 [Qemu-devel] Doubts regarding parallelism on KVM, IO threads Gaurav Sharma
@ 2016-03-03 8:47 ` Paolo Bonzini
0 siblings, 0 replies; 2+ messages in thread
From: Paolo Bonzini @ 2016-03-03 8:47 UTC (permalink / raw)
To: Gaurav Sharma, QEMU-DEVEL
On 03/03/2016 07:09, Gaurav Sharma wrote:
> Hi was trying to do some digging for multi core scenarios both with and
> without KVM.
>
> In short i have some devices and a user application that does some r/w
> operations on those devices.
>
> As per my understanding, in case binary translation using TCG is
> invoked, we only create a single Qemuthread for all vcpu's. In case of
> KVM we have a Qemuthread for each vcpu as TCG is bypassed in this case.
>
>
> [Test scenario]
> Lets say i have devices dev1 and dev2. Test application for dev1 is
> executed on core0 and dev2 on core1.
> For device dev1, for testing purposes i specified some sleep whenever a
> read comes.
> In case KVM is enabled, whenever the sleep is hit my whole VM freezes.
>
> 1. Are are devices emulated in a separate single thread ?
No, but device emulation and I/O all run behind the same mutex
(affectionately called "big QEMU lock"). See qemu_mutex_lock_iothread
and qemu_mutex_unlock_iothread.
Paolo
> 2. How and where in the code do we do a switch between CPU thread and
> IOthread ?
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-03-03 9:03 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-03 6:09 [Qemu-devel] Doubts regarding parallelism on KVM, IO threads Gaurav Sharma
2016-03-03 8:47 ` Paolo Bonzini
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.