From: "Justin P. Mattock" <justinmattock-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: Dan Carpenter <error27-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
linux1394-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org,
"Rafael J. Wysocki" <rjw-KKrjLPT3xs0@public.gmane.org>,
Linux Kernel Mailing List
<linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
Kernel
Subject: Re: [Bug #14487] PANIC: early exception 08 rip 246:10 error ffffffff810251b5 cr2 0
Date: Mon, 01 Feb 2010 09:57:26 -0800 [thread overview]
Message-ID: <4B671606.3080405@gmail.com> (raw)
In-Reply-To: <20100201125441.GB2576@bicker>
On 02/01/10 04:54, Dan Carpenter wrote:
> On Sun, Jan 31, 2010 at 05:39:22PM -0800, Justin P. Mattock wrote:
>> On 01/31/10 16:43, Rafael J. Wysocki wrote:
>>> This message has been generated automatically as a part of a report
>>> of regressions introduced between 2.6.31 and 2.6.32.
>>>
>>> The following bug entry is on the current list of known regressions
>>> introduced between 2.6.31 and 2.6.32. Please verify if it still should
>>> be listed and let me know (either way).
>>>
>>>
>>> Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=14487
>>> Subject : PANIC: early exception 08 rip 246:10 error ffffffff810251b5 cr2 0
>>> Submitter : Justin P. Mattock<justinmattock-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
>>> Date : 2009-10-23 16:45 (101 days old)
>>> References : http://lkml.org/lkml/2009/10/23/252
>>>
>>>
>>>
>>
>>
>> yeah still hitting this.
>> looking at the issue if I change:
>>
>> @@ 260
>>
>> if ((class == 0xffffffff))
>> continue;
>> to
>>
>> if ((class == 0xffffffff || 0xffffffffffffffff))
>> continue;
>>
>
> Uh... 0xffffffffffffffff is always true so basically that's the same as deleting the
> if condition.
>
> I've added the linux1394-devel people to the CC list.
>
> Justin has found an issue that when he boots with: ohci1394_dma=early his computer
> crashes.
>
> He can get it to boot by modifying drivers/ieee1394/init_ohci1394_dma.c:
>
> init_ohci1394_dma_on_all_controllers()
> 254 /* Poor man's PCI discovery, the only thing we can do at early boot */
> 255 for (num = 0; num< 32; num++) {
> 256 for (slot = 0; slot< 32; slot++) {
> 257 for (func = 0; func< 8; func++) {
> 258 u32 class = read_pci_config(num,slot,func,
> 259 PCI_CLASS_REVISION);
> 260 if ((class == 0xffffffff))
> 261 continue; /* No device at this func */
>
> If he continues here then his system boots.
>
> 262
> 263 if (class>>8 != PCI_CLASS_SERIAL_FIREWIRE_OHCI)
> 264 continue; /* Not an OHCI-1394 device */
> 265
> 266 init_ohci1394_controller(num, slot, func);
> 267 break; /* Assume one controller per device */
>
> This comment is not terribly clear btw. The code assumes one controller per slot.
>
> 268 }
> 269 }
> 270 }
>
> regards,
> dan carpenter
>
>
>> I'm able to boot, but don't have enough knowledge to know
>> what is really happening(or how to execute this).
>> will continue looking at this
>> (hopefully I get somewhere on this);
>>
>> Justin P. Mattock
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
>> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
>> More majordomo info at http://vger.kernel.org/majordomo-info.html
>> Please read the FAQ at http://www.tux.org/lkml/
>
yeah I'll admit it, I don't know what I'm doing
(but am willing to try).
Thanks for the response, I'll try and
give as much info on this as possible.
Justin P. Mattock
next prev parent reply other threads:[~2010-02-01 17:57 UTC|newest]
Thread overview: 133+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-02-01 0:38 2.6.33-rc6: Reported regressions 2.6.31 -> 2.6.32 Rafael J. Wysocki
2010-02-01 0:38 ` [Bug #14297] console resume broken since ba15ab0e8d Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #14442] resume after hibernate: /dev/sdb drops and returns as /dev/sde Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #14426] CE: hpet increasing min_delta_ns flood Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #14504] intermittent hibernation problem again Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #14298] warning at manage.c:361 (set_irq_wake), matrix-keypad related? Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #14482] kernel BUG at fs/dcache.c:670 +lvm +md +ext3 Rafael J. Wysocki
2010-02-01 15:47 ` Thomas Backlund
[not found] ` <4B66F79E.1040606-4qZELD6Fgxhg9hUCZPvPmw@public.gmane.org>
2010-02-02 21:04 ` Rafael J. Wysocki
2010-02-08 9:59 ` Alexander Clouter
2010-02-15 16:24 ` Alexander Clouter
2010-02-15 21:00 ` Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #14487] PANIC: early exception 08 rip 246:10 error ffffffff810251b5 cr2 0 Rafael J. Wysocki
2010-02-01 1:39 ` Justin P. Mattock
[not found] ` <4B6630CA.9010207-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2010-02-01 12:54 ` Dan Carpenter
2010-02-01 17:57 ` Justin P. Mattock [this message]
2010-02-01 19:57 ` ohci1394_dma=early crash since 2.6.32 (was Re: [Bug #14487] PANIC: early exception 08 rip 246:10 error ffffffff810251b5 cr2 0) Stefan Richter
[not found] ` <4B673233.8000300-MtYdepGKPcBMYopoZt5u/LNAH6kLmebB@public.gmane.org>
2010-02-01 20:59 ` Justin P. Mattock
[not found] ` <4B6740B5.5070601-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2010-02-01 22:27 ` Stefan Richter
[not found] ` <4B675534.5070107-MtYdepGKPcBMYopoZt5u/LNAH6kLmebB@public.gmane.org>
2010-02-01 23:51 ` Justin P. Mattock
[not found] ` <4B676917.2080506-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2010-02-02 5:45 ` Stefan Richter
[not found] ` <4B67BC12.4080709-MtYdepGKPcBMYopoZt5u/LNAH6kLmebB@public.gmane.org>
2010-02-02 6:23 ` Justin P. Mattock
[not found] ` <4B67C4D2.5050205-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2010-02-02 6:55 ` Stefan Richter
[not found] ` <4B67CC55.40301-MtYdepGKPcBMYopoZt5u/LNAH6kLmebB@public.gmane.org>
2010-02-02 6:57 ` Stefan Richter
2010-02-02 7:42 ` Justin P. Mattock
2010-02-03 1:43 ` Justin P. Mattock
2010-02-03 9:18 ` Jan Beulich
[not found] ` <4B694D5C020000780002D6DA-Qfbpwmsw6RoS3W1tAdPHOtBPR1lH4CV8@public.gmane.org>
2010-02-03 17:11 ` Justin P. Mattock
2010-02-03 19:26 ` Justin P. Mattock
2010-02-03 23:05 ` Justin P. Mattock
[not found] ` <4B6A0123.3010607-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2010-02-04 8:54 ` Jan Beulich
2010-02-04 9:04 ` Justin P. Mattock
[not found] ` <4B6A8DA9.4090804-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2010-02-04 9:11 ` Jan Beulich
[not found] ` <4B6A9D4C020000780002DA99-Qfbpwmsw6RoS3W1tAdPHOtBPR1lH4CV8@public.gmane.org>
2010-02-04 9:17 ` Justin P. Mattock
2010-02-04 9:35 ` Jan Beulich
[not found] ` <4B6AA2D6020000780002DAD1-Qfbpwmsw6RoS3W1tAdPHOtBPR1lH4CV8@public.gmane.org>
2010-02-04 9:48 ` Justin P. Mattock
2010-02-04 9:57 ` Jan Beulich
2010-02-04 10:13 ` Justin P. Mattock
[not found] ` <4B6AA817020000780002DB11@vpn. id2.novell.com>
[not found] ` <4B6AA817020000780002DB11-Qfbpwmsw6RoS3W1tAdPHOtBPR1lH4CV8@public.gmane.org>
2010-02-06 23:57 ` Justin P. Mattock
[not found] ` <4B68D4CA.2010803-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2010-02-24 14:37 ` Jan Beulich
2010-02-24 15:59 ` Justin P. mattock
2010-02-02 7:03 ` Justin P. Mattock
2010-02-02 6:46 ` Justin P. Mattock
2010-02-01 0:43 ` [Bug #14376] Kernel NULL pointer dereference/ kvm subsystem Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #14621] specjbb2005 and aim7 regression with 2.6.32-rc kernels Rafael J. Wysocki
2010-02-01 8:06 ` Mike Galbraith
[not found] ` <1265011579.6220.18.camel-YqMYhexLQo1vAv1Ojkdn7Q@public.gmane.org>
2010-02-02 20:56 ` Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #14657] perf subsystem breakage in 2.6.32-rc7 Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #14656] Oops at __rmqueue+0x98 with 2.6.32-rc6 Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #14624] ath9k: BUG kmalloc-8192: Poison overwritten Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #14695] regression in karmic thermal control Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #14667] bisected 2.6.32 EC regression - Temperatures not correctly detected after suspend - Dell Studio XPS 16 laptop Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #14670] i915: playing video via XVideo extension makes the screen flicker Rafael J. Wysocki
2010-02-05 18:49 ` Jesse Barnes
2010-02-01 0:43 ` [Bug #14668] Resume from disk hangs in acpi_ex_acquire_global_lock Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #14748] e1000e NIC not working after reboot Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #14782] Suspend hangs Lenovo SL300 after gdm login Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #14742] 2.6.32 new menu idle governor causes very high CPU temp Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #14886] Asus P2B-DS not detected as SMP moterboard Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #14868] flood of "don't try to register things with the same name in the same directory." on upgrade to 2.6.32 Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #14817] When is system under load, then freeze/HD fail Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #14783] Unhandled IRQ on Thinkpad R61i: "irq 16: nobody cared" Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #14891] Deadlock regression related to NFS root Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #14895] BUG in kernel 2.6.32 when using luks encrypted root and RAID0 Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #14894] pohmelfs: NULL pointer dereference Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #14897] i915: Commit 0e442c60 causes flickering Rafael J. Wysocki
2010-02-01 9:31 ` David John
[not found] ` <4B669F8F.1030402-XRr60H37pjdAfugRpC6u6w@public.gmane.org>
2010-02-02 20:55 ` Rafael J. Wysocki
[not found] ` <201002022155.44016.rjw-KKrjLPT3xs0@public.gmane.org>
2010-02-07 12:55 ` David John
[not found] ` <4B6EB844.4090001-XRr60H37pjdAfugRpC6u6w@public.gmane.org>
2010-02-07 13:14 ` Rafael J. Wysocki
2010-02-05 18:51 ` Jesse Barnes
2010-02-01 0:43 ` [Bug #14922] 2.6.32 seemed to have broken nVidia MCP7A sata controller Rafael J. Wysocki
2010-02-01 1:13 ` Robert Hancock
[not found] ` <51f3faa71001311713sf4dbd45w240003a77de24f68-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2010-02-02 20:53 ` Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #14898] ksoftirqd problem Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #14939] drm: random hang with i915 Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #14997] Closing and re-opening the lid does not reactivate the backlight Rafael J. Wysocki
2010-02-05 18:57 ` Jesse Barnes
2010-02-01 0:43 ` [Bug #15000] Thinkpad dock button no longer works Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #14998] Caught 32-bit read from uninitialized memory in acpi_system_read_event -- 2.6.31 regression Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #14943] nfs regression? Rafael J. Wysocki
2010-02-01 21:46 ` Nikola Ciprich
2010-02-01 0:43 ` [Bug #15040] High cpu temperature with 2.6.32 - bisected to cpuidle menu update Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #15021] agpgart sometimes fails to initialize sometimes Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #15015] blank screen at random times in laptop when sitting idle Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #15042] socket(PF_INET6 hangs when ipv6 not yet initialized Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #15004] i915: *ERROR* Execbuf while wedged Rafael J. Wysocki
2010-02-05 19:01 ` Jesse Barnes
2010-02-05 19:09 ` Chris Mason
2010-02-05 19:17 ` Jesse Barnes
2010-02-08 17:24 ` Chris Mason
2010-02-08 17:35 ` Jesse Barnes
2010-02-08 20:00 ` Chris Mason
2010-02-08 23:39 ` Jesse Barnes
2010-02-10 16:44 ` Jesse Barnes
2010-02-01 0:43 ` [Bug #15096] Resume lock up -- bisected, commit 3a1151e3f124fd1a2c54b8153f510f1a7c715369 Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #15071] IBM/Lenovo Trackpoint speed, sensitivity reset after suspend Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #15100] X11 is black after resume from s2ram if my T400 was previous in docking station before Rafael J. Wysocki
2010-02-05 19:05 ` Jesse Barnes
2010-02-01 0:43 ` [Bug #15127] Bluetooth: sleeping function called from invalid context Rafael J. Wysocki
2010-02-01 1:06 ` Marcel Holtmann
[not found] ` <1264986406.31341.5.camel-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2010-02-01 17:39 ` David John
[not found] ` <4B6711E2.6010409-XRr60H37pjdAfugRpC6u6w@public.gmane.org>
2010-02-01 19:14 ` Marcel Holtmann
[not found] ` <1265051657.31341.56.camel-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2010-02-01 22:00 ` Luiz Augusto von Dentz
2010-02-02 5:17 ` David John
[not found] ` <4B67B57A.7000709-XRr60H37pjdAfugRpC6u6w@public.gmane.org>
2010-02-02 5:41 ` Marcel Holtmann
[not found] ` <1265089284.31341.63.camel-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2010-02-02 5:57 ` David John
2010-02-02 20:52 ` Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #15108] Blank screen with KMS enabled (on clevo M5xN laptop) Rafael J. Wysocki
2010-02-05 19:08 ` Jesse Barnes
2010-02-05 22:31 ` Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #15158] oops related to i915_gem_object_save_bit_17_swizzle Rafael J. Wysocki
2010-02-07 23:11 ` Werner LEMBERG
2010-02-01 0:43 ` [Bug #15135] Kernel 2.6.32.x hangs during boot process Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #15134] gobi_loader hangs after commit 8e8dce065088 Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #15156] 2.6.32.6 hang at boot with ati x1600 Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #15193] kswapd continuously active Rafael J. Wysocki
2010-02-01 0:43 ` [Bug #15197] padlock_sha1 and hmac broken? Rafael J. Wysocki
-- strict thread matches above, loose matches on Subject: below --
2010-02-14 23:46 2.6.33-rc8: Reported regressions 2.6.31 -> 2.6.32 Rafael J. Wysocki
2010-02-14 23:52 ` [Bug #14487] PANIC: early exception 08 rip 246:10 error ffffffff810251b5 cr2 0 Rafael J. Wysocki
2010-02-08 0:13 2.6.33-rc7: Reported regressions 2.6.31 -> 2.6.32 Rafael J. Wysocki
2010-02-08 0:28 ` [Bug #14487] PANIC: early exception 08 rip 246:10 error ffffffff810251b5 cr2 0 Rafael J. Wysocki
2010-02-08 1:02 ` Justin P. Mattock
[not found] ` <4B6F62BE.1090803-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2010-02-08 1:12 ` Rafael J. Wysocki
2010-01-24 22:15 2.6.33-rc5: Reported regressions 2.6.31 -> 2.6.32 Rafael J. Wysocki
2010-01-24 22:22 ` [Bug #14487] PANIC: early exception 08 rip 246:10 error ffffffff810251b5 cr2 0 Rafael J. Wysocki
2010-01-24 23:02 ` Justin P. Mattock
2010-01-10 22:45 2.6.33-rc3-git3: Reported regressions 2.6.31 -> 2.6.32 Rafael J. Wysocki
2010-01-10 22:56 ` [Bug #14487] PANIC: early exception 08 rip 246:10 error ffffffff810251b5 cr2 0 Rafael J. Wysocki
2010-01-11 13:56 ` Justin P. Mattock
2010-01-11 19:42 ` Rafael J. Wysocki
2009-12-29 15:26 2.6.33-rc2: Reported regressions 2.6.31 -> 2.6.32 Rafael J. Wysocki
2009-12-29 15:28 ` [Bug #14487] PANIC: early exception 08 rip 246:10 error ffffffff810251b5 cr2 0 Rafael J. Wysocki
2009-11-21 14:46 2.6.32-rc8-git1: Reported regressions from 2.6.31 Rafael J. Wysocki
2009-11-21 14:51 ` [Bug #14487] PANIC: early exception 08 rip 246:10 error ffffffff810251b5 cr2 0 Rafael J. Wysocki
2009-11-22 14:59 ` Justin P. Mattock
2009-11-16 22:33 2.6.32-rc7-git1: Reported regressions from 2.6.31 Rafael J. Wysocki
2009-11-16 22:37 ` [Bug #14487] PANIC: early exception 08 rip 246:10 error ffffffff810251b5 cr2 0 Rafael J. Wysocki
2009-11-17 0:40 ` Justin P. Mattock
[not found] ` <4B01F0F8.4040807-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2009-11-17 22:44 ` Rafael J. Wysocki
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4B671606.3080405@gmail.com \
--to=justinmattock-re5jqeeqqe8avxtiumwx3w@public.gmane.org \
--cc=error27-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux1394-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org \
--cc=rjw-KKrjLPT3xs0@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).