From mboxrd@z Thu Jan 1 00:00:00 1970 From: Len Brown Subject: Re: ACPI Error (utglobal-0126) Date: Tue, 15 Jan 2008 11:57:22 -0500 Message-ID: <200801151157.22272.lenb@kernel.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Return-path: Received: from hera.kernel.org ([140.211.167.34]:36653 "EHLO hera.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750891AbYAOQ5i (ORCPT ); Tue, 15 Jan 2008 11:57:38 -0500 In-Reply-To: Content-Disposition: inline Sender: linux-acpi-owner@vger.kernel.org List-Id: linux-acpi@vger.kernel.org To: Erwan Velu , "Zhang, Rui" Cc: linux-acpi@vger.kernel.org On Tuesday 15 January 2008 08:10, Erwan Velu wrote: > Hey folks, > > I'm running a 2.6.24-rc7 on my Samsung R70 in 64bit mode. > While booting up, the ACPI shows me this error : > > ACPI Error (utglobal-0126): Unknown exception code: 0xFFFFFFFE [20070126] > Pid: 1950, comm: modprobe Not tainted 2.6.24-laptop-0.rc7.1mdv #1 > > Call Trace: > [] acpi_ut_update_ref_count+0x50/0x9d > [] acpi_format_exception+0x2c/0x35 > [] acpi_ut_exception+0x25/0x8c > [] acpi_evaluate_integer+0xb6/0xc7 > [] :video:acpi_video_bus_add+0xcc9/0xce2 > [] ifind+0x58/0xd0 > [] acpi_device_probe+0x43/0x91 > [] driver_probe_device+0x9c/0x1b0 > [] __driver_attach+0xc9/0xd0 > [] __driver_attach+0x0/0xd0 > [] bus_for_each_dev+0x4d/0x80 > [] bus_add_driver+0xac/0x220 > [] :video:acpi_video_init+0x3c/0x5e > [] sys_init_module+0x18e/0x19a0 > [] autoremove_wake_function+0x0/0x30 > [] system_call+0x7e/0x83 > > ACPI Exception (video-1721): UNKNOWN_STATUS_CODE, Cant attach device [20070126] > input: Video Bus as /class/input/input7 > > I would love helping you in fixing that. > How Can I Help ? you just did:-) Rui, acpi_video_bus_get_one_device() is returning -errno style status, but acpi_video_bus_get_devices() is expecting an ACPICA style status status = acpi_video_bus_get_one_device(dev, video); if (ACPI_FAILURE(status)) { ACPI_EXCEPTION((AE_INFO, status, "Cant attach device")); continue; } looks like this was true in 2.6.23 as well... -Len