Re: Heads up Linux 2.6.38-rc4 compile problems.

From: Linus Torvalds
Date: Mon Feb 14 2011 - 10:27:14 EST


On Sun, Feb 13, 2011 at 9:34 PM, Eric W. Biederman
<ebiederm@xxxxxxxxxxxx> wrote:
>
> And for completeness.  When I was rebooting v2.6.38-rc4 to start running
> 795abaf1e4e188c4171e3cd3dbb11a9fcacaf505  I hit this.

.. but this was while still running the older kernel, right?

> <2>kernel BUG at mm/filemap.c:125!

I suspect this is "normal" after page table corruption. Any page that
was mapped but overwritten by the corruption would never get unmapped
(since it can't be found in the page tables), and then you trigger the

BUG_ON(page_mapped(page));

in __remove_from_page_cache() at umount time. Your register state
shows that %eax is 0, and that's the count that we tested
("page->_mapcount" is -1 when there are no mappings, so you have one
lost mapping reference to that page).

So that oops isn't all that interesting, I'm afraid.

Linus
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/