lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Message-ID: <Pine.LNX.4.64.0707122307460.17074@schroedinger.engr.sgi.com>
Date:	Thu, 12 Jul 2007 23:09:34 -0700 (PDT)
From:	Christoph Lameter <clameter@....com>
To:	Len Brown <len.brown@...el.com>
cc:	linux-kernel@...r.kernel.org, travis@....com, ak@...e.de
Subject: ACPI: Use cpu_physical_id() instead oif arch_cpu_to_apicid

processor_core.c currently tries to determine the apicid by special casing
for IA64 and x86. The desired information is readily available via

	cpu_physical_id()

on IA64, i386 and x86_64.

Signed-off-by: Christoph Lameter <clameter@....com>

---
 drivers/acpi/processor_core.c |    8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

Index: linux-2.6.22-rc6-mm1/drivers/acpi/processor_core.c
===================================================================
--- linux-2.6.22-rc6-mm1.orig/drivers/acpi/processor_core.c	2007-07-12 23:02:11.000000000 -0700
+++ linux-2.6.22-rc6-mm1/drivers/acpi/processor_core.c	2007-07-12 23:03:37.000000000 -0700
@@ -417,12 +417,6 @@ static int map_lsapic_id(struct acpi_sub
 	return 0;
 }
 
-#ifdef CONFIG_IA64
-#define arch_cpu_to_apicid 	ia64_cpu_to_sapicid
-#else
-#define arch_cpu_to_apicid 	x86_cpu_to_apicid
-#endif
-
 static int map_madt_entry(u32 acpi_id)
 {
 	unsigned long madt_end, entry;
@@ -496,7 +490,7 @@ static int get_cpu_id(acpi_handle handle
 		return apic_id;
 
 	for (i = 0; i < NR_CPUS; ++i) {
-		if (arch_cpu_to_apicid[i] == apic_id)
+		if (cpu_physical_id(i) == apic_id)
 			return i;
 	}
 	return -1;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ