https://bugzilla.novell.com/show_bug.cgi?id=373847 User jeffm@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=373847#c2 Jeff Mahoney <jeffm@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jeffm@novell.com Status|NEW |NEEDINFO Info Provider| |rdgaydos@yahoo.com --- Comment #2 from Jeff Mahoney <jeffm@novell.com> 2008-03-28 13:51:31 MST --- Thanks for the report. This one is going to be tough to track down. What's happened is that the page_buffers(page) list has gotten corrupted with an invalid entry. Have you seen this happen more than once? The stack trace corresponds to this: static int drop_buffers(struct page *page, struct buffer_head **buffers_to_free) { struct buffer_head *head = page_buffers(page); struct buffer_head *bh; bh = head; do { v--- bh is garbage. if (buffer_write_io_error(bh) && page->mapping) set_bit(AS_EIO, &page->mapping->flags); if (buffer_busy(bh)) goto failed; bh = bh->b_this_page; } while (bh != head); /* ... */ -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.