Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Sat, 7 Apr 2001 14:37:03 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Sat, 7 Apr 2001 14:36:52 -0400 Received: from [194.213.32.137] ([194.213.32.137]:3332 "EHLO bug.ucw.cz") by vger.kernel.org with ESMTP id ; Sat, 7 Apr 2001 14:36:42 -0400 Message-ID: <20010405225123.A288@bug.ucw.cz> Date: Thu, 5 Apr 2001 22:51:23 +0200 From: Pavel Machek To: andrew.grover@intel.com, kernel list Subject: Serious bug in ACPI enumeration Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93i Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Hi! My "toshiba workaround" was not toshiba specific: you stopped scanning at first device that was not present. That's bad, you have to continue scanning. Here's fix. Pavel --- clean/drivers/acpi/namespace/nsxfobj.c Sun Apr 1 00:23:00 2001 +++ linux/drivers/acpi/namespace/nsxfobj.c Thu Apr 5 22:49:18 2001 @@ -592,7 +595,7 @@ status = acpi_cm_execute_STA (node, &flags); if (ACPI_FAILURE (status)) { - return (status); + return AE_OK; } if (!(flags & 0x01)) { -- I'm pavel@ucw.cz. "In my country we have almost anarchy and I don't care." Panos Katsaloulis describing me w.r.t. patents at discuss@linmodems.org - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/