mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [Patch v2] x86, ACPI: Fix the wrong assignment when Handle apic/x2apic entries
@ 2016-08-12  7:21 Baoquan He
  2016-08-15 10:11 ` [tip:x86/apic] x86/apic, ACPI: Fix incorrect assignment when handling " tip-bot for Baoquan He
  0 siblings, 1 reply; 2+ messages in thread
From: Baoquan He @ 2016-08-12  7:21 UTC (permalink / raw)
  To: mingo; +Cc: rjw, linux-acpi, linux-kernel, x86, Baoquan He

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 <bhe@redhat.com>
[Ingo rewrote changelog]
---
v1-v2:
  -Just update change log.

 arch/x86/kernel/acpi/boot.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c
index 90d84c3..2b25d3f 100644
--- a/arch/x86/kernel/acpi/boot.c
+++ b/arch/x86/kernel/acpi/boot.c
@@ -1031,8 +1031,8 @@ static int __init acpi_parse_madt_lapic_entries(void)
 			return ret;
 		}
 
-		x2count = madt_proc[0].count;
-		count = madt_proc[1].count;
+		count = madt_proc[0].count;
+		x2count = madt_proc[1].count;
 	}
 	if (!count && !x2count) {
 		printk(KERN_ERR PREFIX "No LAPIC entries present\n");
-- 
2.5.5

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-08-15 10:14 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-12  7:21 [Patch v2] x86, ACPI: Fix the wrong assignment when Handle apic/x2apic entries Baoquan He
2016-08-15 10:11 ` [tip:x86/apic] x86/apic, ACPI: Fix incorrect assignment when handling " tip-bot for Baoquan He

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome