Displaying 1 result from an estimated 1 matches for "__io_apic_eoi".
2011 Nov 11
4
[PATCH] x86: clean up __io_apic_eoi()
...he commented out code as well as the
respective comments provisioned for the point in time when vector
sharing between unrelated RTEs would be disabled.
Signed-off-by: Jan Beulich <jbeulich@suse.com>
--- a/xen/arch/x86/io_apic.c
+++ b/xen/arch/x86/io_apic.c
@@ -281,36 +281,15 @@ static void __io_apic_eoi(unsigned int a
/* If pin is unknown, search for it */
if ( pin == -1 )
{
- unsigned int p;
- for ( p = 0; p < nr_ioapic_entries[apic]; ++p )
+ for ( pin = 0; pin < nr_ioapic_entries[apic]; ++pin )
{
- entr...