qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [RFC PATCH V7 00/19] Multithread TCG.


From: Paolo Bonzini
Subject: Re: [Qemu-devel] [RFC PATCH V7 00/19] Multithread TCG.
Date: Wed, 12 Aug 2015 17:39:35 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.1.0


On 12/08/2015 17:19, Frederic Konrad wrote:
> BTW that affect KVM as well. Seems this mechanism is used as well with
> qemu_cpu_kick_self().. Which is a little strange as it seems the SIGIPI
> trigger a
> dummy signal handler?
> 
>     memset(&sigact, 0, sizeof(sigact));
>     sigact.sa_handler = dummy_signal;
>     sigaction(SIG_IPI, &sigact, NULL);

KVM is different, the signal handler is used to kick the VM out of
KVM_RUN.  We're going to add another path (a ioctl) but it cannot use
the same code as TCG.

qemu_cpu_kick_self is needed in some special cases where KVM tells you
"call KVM_RUN asap" but you know you have more work to do in userspace.
 Calling qemu_cpu_kick_self lets you call KVM_RUN work and immediately
do the userspace work.

Paolo



reply via email to

[Prev in Thread] Current Thread [Next in Thread]