projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6de4211
)
x86/apic, ACPI: Fix incorrect assignment when handling apic/x2apic entries
author
Baoquan He
<
[email protected]
>
Fri, 12 Aug 2016 07:21:47 +0000
(15:21 +0800)
committer
Ingo Molnar
<
[email protected]
>
Mon, 15 Aug 2016 06:53:44 +0000
(08:53 +0200)
By pure accident the bug makes no functional difference, because the only
expression where we are using these values is (!count && !x2count), in which
the variables are interchangeable, but it makes sense to fix the bug
nevertheless.
Signed-off-by: Baoquan He <
[email protected]
>
Cc: Andy Lutomirski <
[email protected]
>
Cc: Borislav Petkov <
[email protected]
>
Cc: Brian Gerst <
[email protected]
>
Cc: Denys Vlasenko <
[email protected]
>
Cc: H. Peter Anvin <
[email protected]
>
Cc: Josh Poimboeuf <
[email protected]
>
Cc: Linus Torvalds <
[email protected]
>
Cc: Peter Zijlstra <
[email protected]
>
Cc: Thomas Gleixner <
[email protected]
>
Cc:
[email protected]
Cc:
[email protected]
Link:
http://lkml.kernel.org/r/
[email protected]
Signed-off-by: Ingo Molnar <
[email protected]
>
arch/x86/kernel/acpi/boot.c
patch
|
blob
|
history
diff --git
a/arch/x86/kernel/acpi/boot.c
b/arch/x86/kernel/acpi/boot.c
index 2087bea6b46116fc72fdb545c0fd8a5fb07c6378..1ad5fe213043c7b25669e0e7a5aa723ad8d33984 100644
(file)
--- a/
arch/x86/kernel/acpi/boot.c
+++ b/
arch/x86/kernel/acpi/boot.c
@@
-1018,8
+1018,8
@@
static int __init acpi_parse_madt_lapic_entries(void)
return ret;
}
-
x2
count = madt_proc[0].count;
- count = madt_proc[1].count;
+ count = madt_proc[0].count;
+
x2
count = madt_proc[1].count;
}
if (!count && !x2count) {
printk(KERN_ERR PREFIX "No LAPIC entries present\n");