| Summary: | [abrt] kernel: [170012.908386] WARNING: at lib/list_debug.c:30 __list_add+0x8f/0xa0() | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Andy Freeland <andy> |
| Component: | kernel | Assignee: | John W. Linville <linville> |
| Status: | CLOSED DUPLICATE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 16 | CC: | gansalmon, itamar, jonathan, kernel-maint, madhu.chinakonda, wey-yi.w.guy |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | x86_64 | ||
| OS: | Unspecified | ||
| Whiteboard: | abrt_hash:8288d03885c5f7e738fedd0b2544957bf27fcb1c | ||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2012-07-10 21:54:03 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
|
Description
Andy Freeland
2012-04-17 20:35:06 UTC
If you can recreate this without the external modules loaded, that would be appreciated. I can try running without tp_smapi, but I have no idea what caused it. It looks like iwlwifi is mismanaging its list of rx_bufs -- hitting the second WARN below, FWIW...
void __list_add(struct list_head *new,
struct list_head *prev,
struct list_head *next)
{
WARN(next->prev != prev,
"list_add corruption. next->prev should be "
"prev (%p), but was %p. (next=%p).\n",
prev, next->prev, next);
WARN(prev->next != next,
"list_add corruption. prev->next should be "
"next (%p), but was %p. (prev=%p).\n",
next, prev->next, prev);
next->prev = new;
new->next = next;
new->prev = prev;
prev->next = new;
}
*** This bug has been marked as a duplicate of bug 807748 *** |