mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] ACPI oops with 2.5.8-pre3 on asus dual athlon (A7M266-D)
@ 2002-04-10 14:47 Mikolaj J. Habryn
  0 siblings, 0 replies; only message in thread
From: Mikolaj J. Habryn @ 2002-04-10 14:47 UTC (permalink / raw)
  To: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 234 bytes --]

  Null pointer dereference in some deep internal ACPI state thing.
Attached patch gets it past that point, but kernel then hangs after
probing disks (as did -pre2, and possibly earlier ones). Almost
certainly not the right fix :)

m.

[-- Attachment #2: acpi-diff --]
[-- Type: text/plain, Size: 528 bytes --]

--- linux-2.5.8-pre3/drivers/acpi/executer/exfield.c.orig	Thu Apr 11 00:40:19 2002
+++ linux-2.5.8-pre3/drivers/acpi/executer/exfield.c	Thu Apr 11 00:36:52 2002
@@ -103,6 +103,10 @@
 	/* Handle both ACPI 1.0 and ACPI 2.0 Integer widths */
 
 	integer_size = sizeof (acpi_integer);
+	if (!walk_state || !walk_state->method_node) {
+		printk("ACPI argh!\n");
+		return_ACPI_STATUS(AE_ERROR);
+	}
 	if (walk_state->method_node->flags & ANOBJ_DATA_WIDTH_32) {
 		/*
 		 * We are running a method that exists in a 32-bit ACPI table.

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

only message in thread, other threads:[~2002-04-10 14:47 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-04-10 14:47 [PATCH] ACPI oops with 2.5.8-pre3 on asus dual athlon (A7M266-D) Mikolaj J. Habryn

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

all inboxes | Powered by JetHome®