]> git.baikalelectronics.ru Git - kernel.git/commit
x86: irq: Define a global vector for nested posted interrupts
authorWincy Van <fanwenyi0529@gmail.com>
Fri, 28 Apr 2017 05:13:58 +0000 (13:13 +0800)
committerPaolo Bonzini <pbonzini@redhat.com>
Wed, 26 Jul 2017 16:57:45 +0000 (18:57 +0200)
commit0f362f6404e33db25cc2068d3a2cb8a38fedf006
treecbdb0e68d0a15c84d792bce7b1cc2ca6ba2fd50c
parentd0a557d8ca3e0bf36f1dd0f440cc1f5c3d32914c
x86: irq: Define a global vector for nested posted interrupts

We are using the same vector for nested/non-nested posted
interrupts delivery, this may cause interrupts latency in
L1 since we can't kick the L2 vcpu out of vmx-nonroot mode.

This patch introduces a new vector which is only for nested
posted interrupts to solve the problems above.

Signed-off-by: Wincy Van <fanwenyi0529@gmail.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/x86/entry/entry_64.S
arch/x86/include/asm/entry_arch.h
arch/x86/include/asm/hardirq.h
arch/x86/include/asm/hw_irq.h
arch/x86/include/asm/irq_vectors.h
arch/x86/kernel/irq.c
arch/x86/kernel/irqinit.c