Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
bc54efae
Commit
bc54efae
authored
Nov 17, 2003
by
Len Brown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ACPI] print_IO_APIC() only after it is programmed
http://bugzilla.kernel.org/show_bug.cgi?id=1177
parent
f7991d03
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
arch/x86_64/kernel/io_apic.c
arch/x86_64/kernel/io_apic.c
+4
-4
arch/x86_64/kernel/mpparse.c
arch/x86_64/kernel/mpparse.c
+2
-0
No files found.
arch/x86_64/kernel/io_apic.c
View file @
bc54efae
...
...
@@ -1087,8 +1087,6 @@ static void __init setup_ioapic_ids_from_mpc (void)
unsigned
char
old_id
;
unsigned
long
flags
;
if
(
acpi_ioapic
)
return
;
/* ACPI does that already */
/*
* Set the IOAPIC ID to the value stored in the MPC table.
*/
...
...
@@ -1673,12 +1671,14 @@ void __init setup_IO_APIC(void)
/*
* Set up the IO-APIC IRQ routing table.
*/
setup_ioapic_ids_from_mpc
();
if
(
!
acpi_ioapic
)
setup_ioapic_ids_from_mpc
();
sync_Arb_IDs
();
setup_IO_APIC_irqs
();
init_IO_APIC_traps
();
check_timer
();
print_IO_APIC
();
if
(
!
acpi_ioapic
)
print_IO_APIC
();
}
/* Ensure the ACPI SCI interrupt level is active low, edge-triggered */
...
...
arch/x86_64/kernel/mpparse.c
View file @
bc54efae
...
...
@@ -950,6 +950,8 @@ void __init mp_parse_prt (void)
entry
->
irq
);
}
print_IO_APIC
();
return
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment