linux-acpi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: 2.6.18-rc4-mm2
       [not found] ` <44E97AF9.2040009@gmail.com>
@ 2006-08-21 13:44   ` Andrew Morton
  2006-08-21 20:20     ` 2.6.18-rc4-mm2 Maciej Rutecki
  2006-08-21 22:54   ` 2.6.18-rc4-mm2 Len Brown
  1 sibling, 1 reply; 6+ messages in thread
From: Andrew Morton @ 2006-08-21 13:44 UTC (permalink / raw)
  To: Maciej Rutecki; +Cc: linux-kernel, linux-acpi

On Mon, 21 Aug 2006 11:20:57 +0200
Maciej Rutecki <maciej.rutecki@gmail.com> wrote:

> Andrew Morton napisał(a):
> > ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.18-rc4/2.6.18-rc4-mm2/
> > 
> > 
> 
> I have this entry in dmesg:
> 
> [   23.701949] ACPI Error (utglobal-0125): Unknown exception code:
> 0xFFFFFFEA [20060707]
> [   23.702181] ACPI Error (utglobal-0125): Unknown exception code:
> 0xFFFFFFEA [20060707]
> [   23.705646]   got res [dd000000:dd00ffff] bus [dd000000:dd00ffff]
> flags 7202 for BAR 6 of 0000:01:00.0
> 
> When I try:
> 
> cat standby > /sys/power/state
> 
> graphics card doesn't go to standby, I had this text on console:
> 
> [  280.908000] Stopping tasks: =========================|
> [  280.920000] Suspending console(s)
> 

Can you try reverting git-acpi.patch please?
-
To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: 2.6.18-rc4-mm2
  2006-08-21 13:44   ` 2.6.18-rc4-mm2 Andrew Morton
@ 2006-08-21 20:20     ` Maciej Rutecki
  2006-08-21 23:22       ` 2.6.18-rc4-mm2 Len Brown
  0 siblings, 1 reply; 6+ messages in thread
From: Maciej Rutecki @ 2006-08-21 20:20 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel, linux-acpi

Andrew Morton napisał(a):

> 
> Can you try reverting git-acpi.patch please?
> 

I have the same error.

-- 
Maciej Rutecki <maciej.rutecki@gmail.com>
http://www.unixy.pl
LTG - Linux Testers Group
(http://www.stardust.webpages.pl/ltg/wiki/)
-
To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: 2.6.18-rc4-mm2
       [not found] ` <44E97AF9.2040009@gmail.com>
  2006-08-21 13:44   ` 2.6.18-rc4-mm2 Andrew Morton
@ 2006-08-21 22:54   ` Len Brown
  1 sibling, 0 replies; 6+ messages in thread
From: Len Brown @ 2006-08-21 22:54 UTC (permalink / raw)
  To: Maciej Rutecki, linux-acpi; +Cc: Andrew Morton, linux-kernel

On Monday 21 August 2006 05:20, Maciej Rutecki wrote:

> I have this entry in dmesg:
> 
> [   23.701949] ACPI Error (utglobal-0125): Unknown exception code:
> 0xFFFFFFEA [20060707]
> [   23.702181] ACPI Error (utglobal-0125): Unknown exception code:
> 0xFFFFFFEA [20060707]
> [   23.705646]   got res [dd000000:dd00ffff] bus [dd000000:dd00ffff]
> flags 7202 for BAR 6 of 0000:01:00.0

Apparently the "got res" part is normal -- or normal for pr_debug():

pci_update_resource(struct pci_dev *dev, struct resource *res, int resno)
{
        struct pci_bus_region region;
        u32 new, check, mask;
        int reg;

        /* Ignore resources for unimplemented BARs and unused resource slots
           for 64 bit BARs. */
        if (!res->flags)
                return;

        pcibios_resource_to_bus(dev, &region, res);

        pr_debug("  got res [%llx:%llx] bus [%lx:%lx] flags %lx for "
                 "BAR %d of %s\n", (unsigned long long)res->start,
                 (unsigned long long)res->end,
                 region.start, region.end, res->flags, resno, pci_name(dev));

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: 2.6.18-rc4-mm2
  2006-08-21 20:20     ` 2.6.18-rc4-mm2 Maciej Rutecki
@ 2006-08-21 23:22       ` Len Brown
  2006-08-22 16:10         ` [Re: 2.6.18-rc4-mm2] standby error Maciej Rutecki
  2006-08-22 18:59         ` 2.6.18-rc4-mm2 Grant Wilson
  0 siblings, 2 replies; 6+ messages in thread
From: Len Brown @ 2006-08-21 23:22 UTC (permalink / raw)
  To: Maciej Rutecki; +Cc: Andrew Morton, linux-kernel, linux-acpi

Please dump the stack so we can find the secretive caller to 
acpi_format_exception().

thanks,
-Len

diff --git a/drivers/acpi/utilities/utglobal.c b/drivers/acpi/utilities/utglobal.c
index 014030a..561ea5e 100644
--- a/drivers/acpi/utilities/utglobal.c
+++ b/drivers/acpi/utilities/utglobal.c
@@ -125,6 +125,7 @@ const char *acpi_format_exception(acpi_s
 			    "Unknown exception code: 0x%8.8X", status));
 
 		exception = "UNKNOWN_STATUS_CODE";
+dump_stack();
 	}
 
 	return (ACPI_CAST_PTR(const char, exception));


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [Re: 2.6.18-rc4-mm2] standby error
  2006-08-21 23:22       ` 2.6.18-rc4-mm2 Len Brown
@ 2006-08-22 16:10         ` Maciej Rutecki
  2006-08-22 18:59         ` 2.6.18-rc4-mm2 Grant Wilson
  1 sibling, 0 replies; 6+ messages in thread
From: Maciej Rutecki @ 2006-08-22 16:10 UTC (permalink / raw)
  To: Len Brown; +Cc: Andrew Morton, linux-kernel, linux-acpi

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

Len Brown napisał(a):
> Please dump the stack so we can find the secretive caller to 
> acpi_format_exception().
> 
> thanks,
> -Len
> 
> diff --git a/drivers/acpi/utilities/utglobal.c b/drivers/acpi/utilities/utglobal.c
> index 014030a..561ea5e 100644
> --- a/drivers/acpi/utilities/utglobal.c
> +++ b/drivers/acpi/utilities/utglobal.c
> @@ -125,6 +125,7 @@ const char *acpi_format_exception(acpi_s
>  			    "Unknown exception code: 0x%8.8X", status));
>  
>  		exception = "UNKNOWN_STATUS_CODE";
> +dump_stack();
>  	}
>  
>  	return (ACPI_CAST_PTR(const char, exception));
> 
> 

Kernel 2.6.18-rc4-mm2 with reverted
fs-cache-make-kafs-use-fs-cache-12.patch and git-acpi.patch (as
previous), with added dump_stack().

I try: "echo standby > /sys/power/state".

I look in the dmesg and syslog but I not notice any new entries.


-- 
Maciej Rutecki <maciej.rutecki@gmail.com>
http://www.unixy.pl
LTG - Linux Testers Group
(http://www.stardust.webpages.pl/ltg/wiki/)

[-- Attachment #2: config-2.6.18-rc4-mm2.gz --]
[-- Type: application/x-gzip, Size: 14661 bytes --]

[-- Attachment #3: dmesg.gz --]
[-- Type: application/x-gzip, Size: 9549 bytes --]

[-- Attachment #4: lsmod_output.txt.gz --]
[-- Type: application/x-gzip, Size: 821 bytes --]

[-- Attachment #5: syslog_resume2.txt.gz --]
[-- Type: application/x-gzip, Size: 1908 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: 2.6.18-rc4-mm2
  2006-08-21 23:22       ` 2.6.18-rc4-mm2 Len Brown
  2006-08-22 16:10         ` [Re: 2.6.18-rc4-mm2] standby error Maciej Rutecki
@ 2006-08-22 18:59         ` Grant Wilson
  1 sibling, 0 replies; 6+ messages in thread
From: Grant Wilson @ 2006-08-22 18:59 UTC (permalink / raw)
  To: Len Brown; +Cc: Maciej Rutecki, Andrew Morton, linux-kernel, linux-acpi

On Mon, Aug 21, 2006 at 07:22:09PM -0400, Len Brown wrote:
> Please dump the stack so we can find the secretive caller to 
> acpi_format_exception().

I get three of these when booting and the output from dump_stack
is the same for each.  I've observed no problems as a result of
these reported failures.  Here is the output from the first call
of dump_stack:

Aug 22 19:39:33 tlg kernel: ACPI Error (utglobal-0125): Unknown exception code: 0xFFFFFFEA [20060707]
Aug 22 19:39:33 tlg kernel: 
Aug 22 19:39:33 tlg kernel: Call Trace:
Aug 22 19:39:33 tlg kernel:  [<ffffffff80267cb8>] dump_trace+0xba/0x39e
Aug 22 19:39:33 tlg kernel:  [<ffffffff80267fd8>] show_trace+0x3c/0x52
Aug 22 19:39:33 tlg kernel:  [<ffffffff80268003>] dump_stack+0x15/0x17
Aug 22 19:39:33 tlg kernel:  [<ffffffff803c8d10>] acpi_format_exception+0xc0/0xcb
Aug 22 19:39:33 tlg kernel:  [<ffffffff803c54e5>] acpi_ut_status_exit+0x38/0x73
Aug 22 19:39:33 tlg kernel:  [<ffffffff803c11a0>] acpi_walk_resources+0x12e/0x140
Aug 22 19:39:33 tlg kernel:  [<ffffffff803d85e5>] acpi_motherboard_add+0x26/0x32
Aug 22 19:39:33 tlg kernel:  [<ffffffff803d73d7>] acpi_bus_driver_init+0x3a/0x98
Aug 22 19:39:33 tlg kernel:  [<ffffffff803d796c>] acpi_bus_register_driver+0xbd/0x144
Aug 22 19:39:33 tlg kernel:  [<ffffffff807dcbd4>] acpi_motherboard_init+0x10/0x130
Aug 22 19:39:33 tlg kernel:  [<ffffffff802668f1>] init+0x13b/0x313
Aug 22 19:39:33 tlg kernel:  [<ffffffff8025dba8>] child_rip+0xa/0x12
Aug 22 19:39:33 tlg kernel: DWARF2 unwinder stuck at child_rip+0xa/0x12
Aug 22 19:39:33 tlg kernel: Leftover inexact backtrace:
Aug 22 19:39:33 tlg kernel:  [<ffffffff802632ae>] _spin_unlock_irq+0x2b/0x53
Aug 22 19:39:33 tlg kernel:  [<ffffffff8025d300>] restore_args+0x0/0x30
Aug 22 19:39:33 tlg kernel:  [<ffffffff80215fed>] release_console_sem+0x4d/0x238
Aug 22 19:39:33 tlg kernel:  [<ffffffff802667b6>] init+0x0/0x313
Aug 22 19:39:33 tlg kernel:  [<ffffffff8025db9e>] child_rip+0x0/0x12

Cheers,
Grant


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2006-08-22 18:59 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20060819220008.843d2f64.akpm@osdl.org>
     [not found] ` <44E97AF9.2040009@gmail.com>
2006-08-21 13:44   ` 2.6.18-rc4-mm2 Andrew Morton
2006-08-21 20:20     ` 2.6.18-rc4-mm2 Maciej Rutecki
2006-08-21 23:22       ` 2.6.18-rc4-mm2 Len Brown
2006-08-22 16:10         ` [Re: 2.6.18-rc4-mm2] standby error Maciej Rutecki
2006-08-22 18:59         ` 2.6.18-rc4-mm2 Grant Wilson
2006-08-21 22:54   ` 2.6.18-rc4-mm2 Len Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).