[Bug 1641] "nosmp" or "maxcpus=0" fails if ACPI+IOAPIC
http://bugzilla.kernel.org/show_bug.cgi?id=1641 --- Comment #17 from [EMAIL PROTECTED] 2007-08-16 00:36 --- Created an attachment (id=12399) --> (http://bugzilla.kernel.org/attachment.cgi?id=12399&action=view) patch vs 2.6.23-rc3 this patch has been applied to acpi-test -- Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug, or are watching someone who is. - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ ___ acpi-bugzilla mailing list acpi-bugzilla@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla
[Bug 1641] "nosmp" or "maxcpus=0" fails if ACPI+IOAPIC
http://bugzilla.kernel.org/show_bug.cgi?id=1641 [EMAIL PROTECTED] changed: What|Removed |Added Status|NEW |RESOLVED Resolution||CODE_FIX -- Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug, or are watching someone who is. - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ ___ acpi-bugzilla mailing list acpi-bugzilla@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla
[Bug 7037] swsusp hangs on headless resume-from-ram
http://bugzilla.kernel.org/show_bug.cgi?id=7037 --- Comment #10 from [EMAIL PROTECTED] 2007-08-16 02:29 --- Created an attachment (id=12400) --> (http://bugzilla.kernel.org/attachment.cgi?id=12400&action=view) kill debugging junk that touches console from early wakeup ...please tell me if it helps. -- Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug, or are watching the assignee. - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ ___ acpi-bugzilla mailing list acpi-bugzilla@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla
[Bug 8803] Sony Vaio Picturebook PCG-C1VE: Kernel panic - not syncinc: Fatal exception in interrupt
http://bugzilla.kernel.org/show_bug.cgi?id=8803 --- Comment #31 from [EMAIL PROTECTED] 2007-08-16 04:41 --- Hi, thanks for reporting. BTW: do you see the same picture-degradation as Stefan while using the MEYE camera? -- Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug, or are watching someone who is. - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ ___ acpi-bugzilla mailing list acpi-bugzilla@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla
[Bug 8454] system freeze during boot before ACPI initialising - Asus P4V8X-X Celeron2400
http://bugzilla.kernel.org/show_bug.cgi?id=8454 --- Comment #13 from [EMAIL PROTECTED] 2007-08-16 12:42 --- Solved by changing BIOS settings as following: PCI? (don't remember exactly) -> Plug and Play OS: [Yes] Power -> Suspend Mode [S1 (POS) only] -> ACPI 2.0 Support [No] -> ACPI APIC support [Enabled] -- Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug, or are watching someone who is. - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ ___ acpi-bugzilla mailing list acpi-bugzilla@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla
[Bug 7499] S3 resume hang - Toshiba Portege 4000
http://bugzilla.kernel.org/show_bug.cgi?id=7499 --- Comment #26 from [EMAIL PROTECTED] 2007-08-16 14:02 --- Created an attachment (id=12409) --> (http://bugzilla.kernel.org/attachment.cgi?id=12409&action=view) Recompiled DSDT with DSKQ event/signal/wait stuff compiled out This might ease up things a bit for if you don't have the latest pmtools at hand... You should be able to add a path pointing to this file into the ACPI_CUSTOM_DSDT_FILE kernel config variable, then recompile and reboot to override the DSDT table. -- Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug, or are watching someone who is. - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ ___ acpi-bugzilla mailing list acpi-bugzilla@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla
[Bug 7499] S3 resume hang - Toshiba Portege 4000
http://bugzilla.kernel.org/show_bug.cgi?id=7499 [EMAIL PROTECTED] changed: What|Removed |Added CC||[EMAIL PROTECTED] --- Comment #25 from [EMAIL PROTECTED] 2007-08-16 13:55 --- Puhh. Some ideas (I couldn't really find anything): - compile ACPI_DEBUG in and increase /proc/acpi/debug_level to 0x11F before suspend. At least last lines which AML stuff got executed shortly before the hang might be interesting. - The machine implements a PTS and a WAK function. Does it work if you comment out kernel code that invokes these, just comment out these in drivers/acpi/ hardware/hwsleep.c: /* Run the _PTS and _GTS methods */ status = acpi_evaluate_object(NULL, METHOD_NAME__PTS, &arg_list, NULL); if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) { return_ACPI_STATUS(status); } and: status = acpi_evaluate_object(NULL, METHOD_NAME__WAK, &arg_list, NULL); if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) { ACPI_EXCEPTION((AE_INFO, status, "During Method _WAK")); } - Maybe these iasl warnings are related: DSDT.dsl 2702: Wait (\_SB.PCI0.DKSQ, 0x0BB8) Warning 1103 - Possible operator timeout is ignored ^ I also have never seen ASL code playing around with signal() and event() things. Do you know how to override an DSDT table? If not, just ask. If you do: acpidump >acpidump apcixtract -a acpidump iasl -d DSDT.dat iasl -sa DSDT.dsl you get above warnings. Do a grep DKSQ DSDT.dsl and comment out these lines in DSDT.dsl with: // recompile the DSDT.dsl with iasl -tc DSDT.dsl (AFAIK the output file you need is xy.hex (dsdt.hex or DSDT.hex) then you have two variables in .config: ACPI_CUSTOM_DSDT and ACPI_CUSTOM_DSDT_FILE The first one must be enabled. The second one is a string config and must point to the above .hex file. The recompile the kernel and reboot and you have overridden your DSDT table and got rid of these strange DSKQ elements. -> Also adding Alexey, he has deep knowledge in this stuff... Alexey, it seems like we get a deadlock on a spinlock when waking up from suspend to ram. If above suggestions don't bring anything, I am out of ideas... -- Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug, or are watching someone who is. - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ ___ acpi-bugzilla mailing list acpi-bugzilla@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla
[Bug 7037] swsusp hangs on headless resume-from-ram
http://bugzilla.kernel.org/show_bug.cgi?id=7037 --- Comment #11 from [EMAIL PROTECTED] 2007-08-16 21:56 --- [EMAIL PROTECTED] wrote: > --- Comment #10 from [EMAIL PROTECTED] 2007-08-16 02:29 --- > Created an attachment (id=12400) --> (http://bugzilla.kernel.org/attachment.cgi?id=12400&action=view) > --> (http://bugzilla.kernel.org/attachment.cgi?id=12400&action=view) > kill debugging junk that touches console from early wakeup > > ...please tell me if it helps. Didn't help. I also tried the BEEP on wakeup, but it doesn't beep without VGA card. IIRC, the ACPIv3.0 spec said something about needing a wakeup vector to be set prior to suspending? Thanks! -- Al -- Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug, or are watching the assignee. - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ ___ acpi-bugzilla mailing list acpi-bugzilla@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla
[Bug 5832] Enabling ACPI Plug and Play in kernels >2.6.9 kills Parallel support
http://bugzilla.kernel.org/show_bug.cgi?id=5832 --- Comment #27 from [EMAIL PROTECTED] 2007-08-16 23:06 --- Created an attachment (id=12414) --> (http://bugzilla.kernel.org/attachment.cgi?id=12414&action=view) Dmesg output after using the commands in comment #25. I tried using the commands from comment #25, but it didn't seem to fix anything. It did, however, create some seemingly interesting dmesg output (attached). I also tried using the patch from the next comment, but I was unable to make the patch command work. Below is the output of the command: [EMAIL PROTECTED] linux]# patch -p1 < pnpacpi-debug.diff patching file drivers/pnp/pnpacpi/core.c Hunk #1 FAILED at 205. 1 out of 1 hunk FAILED -- saving rejects to file drivers/pnp/pnpacpi/core.c.rej patching file drivers/pnp/pnpacpi/rsparser.c Hunk #1 succeeded at 189 with fuzz 2 (offset -53 lines). patching file drivers/acpi/resources/rscreate.c ...and here is the rejected piece: [EMAIL PROTECTED] linux]# cat drivers/pnp/pnpacpi/core.c.rej *** *** 205,210 if (dev->active) { /* parse allocated resource */ status = pnpacpi_parse_allocated_resource(device->handle, &dev->res); if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) { --- 205,211 if (dev->active) { /* parse allocated resource */ + dev_err(&dev->dev, "(%s) get resources\n", acpi_device_hid(device)); status = pnpacpi_parse_allocated_resource(device->handle, &dev->res); if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) { I was trying to patch kernel 2.6.20-gentoo-r8. Any ideas? -- Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug, or are watching the assignee. - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ ___ acpi-bugzilla mailing list acpi-bugzilla@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla
[Bug 5832] Enabling ACPI Plug and Play in kernels >2.6.9 kills Parallel support
http://bugzilla.kernel.org/show_bug.cgi?id=5832 --- Comment #28 from [EMAIL PROTECTED] 2007-08-16 23:16 --- As for whether PNPACPI worked in one of the kernels, I'm no longer sure. It would seem that it was disabled after all in the kernels mentioned above; I looked at my kernel .config and was unable to find any reference to it being enabled in either kernels 2.6.9-r9 or 2.6.14-r5, although it's possible (as I haven't used those kernels in quite some time) that the last time I compiled them, they were without the option enabled, whereas it was enabled, and working at some point. -- Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug, or are watching the assignee. - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ ___ acpi-bugzilla mailing list acpi-bugzilla@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla
[Bug 8803] Sony Vaio Picturebook PCG-C1VE: Kernel panic - not syncinc: Fatal exception in interrupt
http://bugzilla.kernel.org/show_bug.cgi?id=8803 --- Comment #32 from [EMAIL PROTECTED] 2007-08-17 00:05 --- I cannot confirm any picture quality degradation when using the built-in camera. Picture quality has always been bad, even in the first hours after buying the device (when windows was still running on it). -- Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug, or are watching someone who is. - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ ___ acpi-bugzilla mailing list acpi-bugzilla@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla