All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix using uninitialized data in _PDC setup
@ 2007-05-22 22:35 Venki Pallipadi
  0 siblings, 0 replies; only message in thread
From: Venki Pallipadi @ 2007-05-22 22:35 UTC (permalink / raw)
  To: linux-ia64


Silly bug in _PDC data setup. Haven't seen any real side-effects of this one
yet. But, needs fixing regardless. This should probably make into stable
kernel as well.

Signed-off-by: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>

Index: linux-2.6.22-rc-mm/arch/ia64/kernel/acpi-processor.c
=================================--- linux-2.6.22-rc-mm.orig/arch/ia64/kernel/acpi-processor.c	2007-04-25 20:08:32.000000000 -0700
+++ linux-2.6.22-rc-mm/arch/ia64/kernel/acpi-processor.c	2007-05-22 13:40:17.000000000 -0700
@@ -44,7 +44,7 @@
 
 	buf[0] = ACPI_PDC_REVISION_ID;
 	buf[1] = 1;
-	buf[2] |= ACPI_PDC_EST_CAPABILITY_SMP;
+	buf[2] = ACPI_PDC_EST_CAPABILITY_SMP;
 
 	obj->type = ACPI_TYPE_BUFFER;
 	obj->buffer.length = 12;

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-05-22 22:35 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-05-22 22:35 [PATCH] Fix using uninitialized data in _PDC setup Venki Pallipadi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.