Bug 826970
| Summary: | Various kernel panics with F17 | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Luke Meyer <sosiouxme> |
| Component: | kernel | Assignee: | Kernel Maintainer List <kernel-maint> |
| Status: | CLOSED NOTABUG | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 17 | CC: | gansalmon, itamar, jonathan, kernel-maint, madhu.chinakonda |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2012-06-01 11:16:47 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
| Attachments: | |||
|
Description
Luke Meyer
2012-05-31 10:42:11 UTC
Created attachment 588029 [details]
first oops under kernel-3.3.7-1.fc17.x86_64
Created attachment 588030 [details]
second oops under kernel-3.3.7-1.fc17.x86_64
Created attachment 588031 [details]
oops under kernel-3.3.6-3.fc17.x86_64 too
The F16 oops is irrelevant since you have virtualbox modules loaded. They don't appear to be loaded in the F17 oopses, but the one you have marked as "first" already has the B flag set in taint, so something else bugged before that one. Is it available in /var/log/messages? The oops corresponds to this code:
static inline int put_page_testzero(struct page *page)
{
VM_BUG_ON(atomic_read(&page->_count) == 0); <<<------
return atomic_dec_and_test(&page->_count);
}
Which is weird. You might want to run memtest on this machine overnight.
Thanks for taking a look. The earlier kernel is from the F17 beta, but you're right, I have virtualbox modules loaded with that (might as well get rid of it, won't run with my hardware anyway). I will look in /var/log/messages and do a memory check when I get a chance. You were right on target; memtest uncovered hardware problems. Thanks again for looking at this, and sorry for the red herring. |