[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] Re: [PATCH 03/15] kvm: Install optimized interrupt handlers
From: |
Jan Kiszka |
Subject: |
[Qemu-devel] Re: [PATCH 03/15] kvm: Install optimized interrupt handlers |
Date: |
Sat, 05 Mar 2011 19:11:53 +0100 |
User-agent: |
Mozilla/5.0 (X11; U; Linux i686 (x86_64); de; rv:1.8.1.12) Gecko/20080226 SUSE/2.0.0.12-1.1 Thunderbird/2.0.0.12 Mnenhy/0.7.5.666 |
On 2011-03-05 16:37, Marcelo Tosatti wrote:
> On Fri, Mar 04, 2011 at 11:20:00AM +0100, Jan Kiszka wrote:
>> KVM only requires to set the raised IRQ in CPUState and, if the user
>> space irqchip is used, to kick the receiving vcpu if it is remote.
>>
>> Signed-off-by: Jan Kiszka <address@hidden>
>> ---
>> kvm-all.c | 17 +++++++++++++++++
>> 1 files changed, 17 insertions(+), 0 deletions(-)
>>
>> diff --git a/kvm-all.c b/kvm-all.c
>> index 226843c..c460d45 100644
>> --- a/kvm-all.c
>> +++ b/kvm-all.c
>> @@ -650,6 +650,20 @@ static CPUPhysMemoryClient kvm_cpu_phys_memory_client =
>> {
>> .log_stop = kvm_log_stop,
>> };
>>
>> +static void kvm_handle_interrupt(CPUState *env, int mask)
>> +{
>> + env->interrupt_request |= mask;
>> +
>
> If the env->interrupt_request request is processed in userspace, such as
> MCE, the kick is still necessary for irqchip case. CPU_INTERRUPT_DEBUG
> is another example, no?
[this probably targeted kvm_handle_interrupt_kernel_irqchip]
In principle, you are right. But MCE must be injected synchronously over
the target VCPU, see do_inject_x86_mce, and CPU_INTERRUPT_DEBUG is also
synchronous and not even used in KVM mode.
>
>> + if (!qemu_cpu_self(env)) {
>> + qemu_cpu_kick(env);
>> + }
>> +}
>> +
>> +static void kvm_handle_interrupt_kernel_irqchip(CPUState *env, int mask)
>> +{
>> + env->interrupt_request |= mask;
>> +}
>> +
Jan
signature.asc
Description: OpenPGP digital signature
- [Qemu-devel] [PATCH 08/15] x86: Save/restore PAT MSR, (continued)
- [Qemu-devel] [PATCH 08/15] x86: Save/restore PAT MSR, Jan Kiszka, 2011/03/04
- [Qemu-devel] [PATCH 15/15] Expose thread_id in info cpus, Jan Kiszka, 2011/03/04
- [Qemu-devel] [PATCH 05/15] kvm: x86: Do not leave halt if interrupts are disabled, Jan Kiszka, 2011/03/04
- [Qemu-devel] [PATCH 10/15] kvm: Consider EXIT_DEBUG unknown without CAP_SET_GUEST_DEBUG, Jan Kiszka, 2011/03/04
- [Qemu-devel] [PATCH 13/15] kvm: x86: Reorder functions in kvm.c, Jan Kiszka, 2011/03/04
- [Qemu-devel] [PATCH 14/15] kvm: x86: Push kvm_arch_debug to kvm_arch_handle_exit, Jan Kiszka, 2011/03/04
- [Qemu-devel] [PATCH 07/15] x86: Properly reset PAT MSR, Jan Kiszka, 2011/03/04
- [Qemu-devel] [PATCH 06/15] kvm: Mark VCPU state dirty on creation, Jan Kiszka, 2011/03/04
- [Qemu-devel] [PATCH 03/15] kvm: Install optimized interrupt handlers, Jan Kiszka, 2011/03/04
[Qemu-devel] [PATCH 12/15] kvm: Align kvm_arch_handle_exit to kvm_cpu_exec changes, Jan Kiszka, 2011/03/04
[Qemu-devel] Re: [PATCH 12/15] kvm: Align kvm_arch_handle_exit to kvm_cpu_exec changes, Alexander Graf, 2011/03/11
[Qemu-devel] [PATCH 01/15] Break up user and system cpu_interrupt implementations, Jan Kiszka, 2011/03/04