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
9170c9ef
Commit
9170c9ef
authored
Sep 29, 2002
by
Björn A. Zeeb
Committed by
Linus Torvalds
Sep 29, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] fix endless loop walking the MADT
Too trivial to see the first time when debugging on weekends ;-))
parent
4f3deba8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
arch/i386/kernel/mpparse.c
arch/i386/kernel/mpparse.c
+1
-1
No files found.
arch/i386/kernel/mpparse.c
View file @
9170c9ef
...
@@ -1038,7 +1038,7 @@ void __init mp_config_ioapic_for_sci(int irq)
...
@@ -1038,7 +1038,7 @@ void __init mp_config_ioapic_for_sci(int irq)
status
=
acpi_get_firmware_table
(
"APIC"
,
1
,
ACPI_LOGICAL_ADDRESSING
,
status
=
acpi_get_firmware_table
(
"APIC"
,
1
,
ACPI_LOGICAL_ADDRESSING
,
(
acpi_table_header
**
)
&
madt
);
(
acpi_table_header
**
)
&
madt
);
if
(
ACPI_SUCCESS
(
status
))
{
if
(
ACPI_SUCCESS
(
status
))
{
madt_end
=
madt
+
madt
->
header
.
length
;
madt_end
=
(
unsigned
long
)
madt
+
madt
->
header
.
length
;
entry
=
(
struct
acpi_table_int_src_ovr
*
)
entry
=
(
struct
acpi_table_int_src_ovr
*
)
((
unsigned
long
)
madt
+
sizeof
(
struct
acpi_table_madt
));
((
unsigned
long
)
madt
+
sizeof
(
struct
acpi_table_madt
));
...
...
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