Re: [PATCH 1/4] KVM: Introduce kvm_set_irq to inject interrupts in guests

2008-07-06 Thread Avi Kivity
Ben-Ami Yassour wrote: On Sat, 2008-07-05 at 14:05 +0300, Avi Kivity wrote: Amit Shah wrote: This function injects an interrupt into the guest given the kvm struct, the (guest) irq number and the interrupt level. Signed-off-by: Amit Shah <[EMAIL PROTECTED]> --- arch/x86/kvm/irq.c |

Re: [PATCH 1/4] KVM: Introduce kvm_set_irq to inject interrupts in guests

2008-07-06 Thread Ben-Ami Yassour
On Sat, 2008-07-05 at 14:05 +0300, Avi Kivity wrote: > Amit Shah wrote: > > This function injects an interrupt into the guest given the kvm struct, > > the (guest) irq number and the interrupt level. > > > > Signed-off-by: Amit Shah <[EMAIL PROTECTED]> > > --- > > arch/x86/kvm/irq.c | 11 +++

Re: [PATCH 1/4] KVM: Introduce kvm_set_irq to inject interrupts in guests

2008-07-05 Thread Avi Kivity
Amit Shah wrote: This function injects an interrupt into the guest given the kvm struct, the (guest) irq number and the interrupt level. Signed-off-by: Amit Shah <[EMAIL PROTECTED]> --- arch/x86/kvm/irq.c | 11 +++ arch/x86/kvm/irq.h |2 ++ 2 files changed, 13 insertions(+), 0 del

[PATCH 1/4] KVM: Introduce kvm_set_irq to inject interrupts in guests

2008-06-27 Thread Amit Shah
This function injects an interrupt into the guest given the kvm struct, the (guest) irq number and the interrupt level. Signed-off-by: Amit Shah <[EMAIL PROTECTED]> --- arch/x86/kvm/irq.c | 11 +++ arch/x86/kvm/irq.h |2 ++ 2 files changed, 13 insertions(+), 0 deletions(-) diff --g