Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 43102
b: refs/heads/master
c: 956fb53
h: refs/heads/master
v: v3
  • Loading branch information
Adrian Bunk authored and Andi Kleen committed Dec 7, 2006
1 parent 3e0029e commit 80fde09
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e1cccf48b182dd743c3c83a4fdf8dc570a43b393
refs/heads/master: 956fb53197f82257974f1f9835485aeeef4510b3
8 changes: 7 additions & 1 deletion trunk/arch/i386/kernel/io_apic.c
Original file line number Diff line number Diff line change
Expand Up @@ -2179,9 +2179,15 @@ static inline void unlock_ExtINT_logic(void)
unsigned char save_control, save_freq_select;

pin = find_isa_irq_pin(8, mp_INT);
if (pin == -1) {
WARN_ON_ONCE(1);
return;
}
apic = find_isa_irq_apic(8, mp_INT);
if (pin == -1)
if (apic == -1) {
WARN_ON_ONCE(1);
return;
}

entry0 = ioapic_read_entry(apic, pin);
clear_IO_APIC_pin(apic, pin);
Expand Down

0 comments on commit 80fde09

Please sign in to comment.