Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 1301
b: refs/heads/master
c: 14d98ca
h: refs/heads/master
i:
  1299: d626c39
v: v3
  • Loading branch information
Andi Kleen authored and Linus Torvalds committed May 20, 2005
1 parent ee1c11a commit 67da741
Show file tree
Hide file tree
Showing 3 changed files with 14 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: 607a16858397829806c5a4db999ce6daf327f98c
refs/heads/master: 14d98cad82b78956957e95567b8b5fb38ec5859f
3 changes: 3 additions & 0 deletions trunk/Documentation/x86_64/boot-options.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ APICs

noapictimer Don't set up the APIC timer

no_timer_check Don't check the IO-APIC timer. This can work around
problems with incorrect timer initialization on some boards.

Early Console

syntax: earlyprintk=vga
Expand Down
11 changes: 10 additions & 1 deletion trunk/arch/x86_64/kernel/io_apic.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@

int sis_apic_bug; /* not actually supported, dummy for compile */

static int no_timer_check;

static DEFINE_SPINLOCK(ioapic_lock);

/*
Expand Down Expand Up @@ -1601,7 +1603,7 @@ static inline void check_timer(void)
* Ok, does IRQ0 through the IOAPIC work?
*/
unmask_IO_APIC_irq(0);
if (timer_irq_works()) {
if (!no_timer_check && timer_irq_works()) {
nmi_watchdog_default();
if (nmi_watchdog == NMI_IO_APIC) {
disable_8259A_irq(0);
Expand Down Expand Up @@ -1671,6 +1673,13 @@ static inline void check_timer(void)
panic("IO-APIC + timer doesn't work! Try using the 'noapic' kernel parameter\n");
}

static int __init notimercheck(char *s)
{
no_timer_check = 1;
return 1;
}
__setup("no_timer_check", notimercheck);

/*
*
* IRQ's that are handled by the PIC in the MPS IOAPIC case.
Expand Down

0 comments on commit 67da741

Please sign in to comment.