Bug 699161
| Summary: | Kernel bug at fs/ext4/inode.c:2188 with F15 beta | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Andre Costa <andre.ocosta> |
| Component: | kernel | Assignee: | Eric Sandeen <esandeen> |
| Status: | CLOSED INSUFFICIENT_DATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | urgent | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 15 | CC: | gansalmon, itamar, jonathan, kernel-maint, madhu.chinakonda |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | x86_64 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2012-06-04 19:01: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: | |
| Embargoed: | |||
|
Description
Andre Costa
2011-04-23 19:28:27 UTC
fs/ext4/inode.c:2188:ext4_da_block_invalidatepages():
for (i = 0; i < nr_pages; i++) {
struct page *page = pvec.pages[i];
if (page->index > end)
break;
===> BUG_ON(!PageLocked(page));
BUG_ON(PageWriteback(page));
block_invalidatepage(page, 0);
ClearPageUptodate(page);
unlock_page(page);
}
> the last stackreace entry is:
>
> mpage_da_map_and_submit+0x1fa/0x2e0
Maybe the multipage write code is still buggy?
(In reply to comment #1) > Maybe the multipage write code is still buggy? Good possibility, new bugs are still being found. we'll see how it goes, I guess, maybe disabling for a while longer would be in order. How do we even tell if the multipage write code is enabled? I don't see any defaults in ext4. It's not on by default in 2.6.38.3... sorry, not sure yet what's going on here. Andre, have you been able to reproduce this at all ? (In reply to comment #5) > Andre, have you been able to reproduce this at all ? Hi Dave, sorry, forgot to follow up on this. Been using F16 for a while now, and even reported a couple of bugs already on it using ABRT, so it could have been a problem with F15 beta only. Maybe it's not worth chasing this anymore. Thks for the interest anyway. If you'd like me to try to report something with ABRT on F17 alpha/beta to see if it's still there, just let me know. |