diff options
author | Dave Jones <davej@redhat.com> | 2006-01-08 04:01:00 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-08 23:12:44 -0500 |
commit | ef2bf0dc8675e14cf8cba3b7fb9f48d72640a70e (patch) | |
tree | 6ef3afba5ca1929cc982efad092ffae62233b813 /mm | |
parent | cd105df4590c89837a1c300843238148cfef9b5f (diff) |
[PATCH] rmap: additional diagnostics in page_remove_rmap()
We seem to be hitting this assertion failure too often for it to be
hardware bugs.
Cc: Hugh Dickins <hugh@veritas.com>
Cc: Nick Piggin <nickpiggin@yahoo.com.au>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'mm')
-rw-r--r-- | mm/rmap.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -514,6 +514,13 @@ void page_add_file_rmap(struct page *page) | |||
514 | void page_remove_rmap(struct page *page) | 514 | void page_remove_rmap(struct page *page) |
515 | { | 515 | { |
516 | if (atomic_add_negative(-1, &page->_mapcount)) { | 516 | if (atomic_add_negative(-1, &page->_mapcount)) { |
517 | if (page_mapcount(page) < 0) { | ||
518 | printk (KERN_EMERG "Eeek! page_mapcount(page) went negative! (%d)\n", page_mapcount(page)); | ||
519 | printk (KERN_EMERG " page->flags = %lx\n", page->flags); | ||
520 | printk (KERN_EMERG " page->count = %x\n", page_count(page)); | ||
521 | printk (KERN_EMERG " page->mapping = %p\n", page->mapping); | ||
522 | } | ||
523 | |||
517 | BUG_ON(page_mapcount(page) < 0); | 524 | BUG_ON(page_mapcount(page) < 0); |
518 | /* | 525 | /* |
519 | * It would be tidy to reset the PageAnon mapping here, | 526 | * It would be tidy to reset the PageAnon mapping here, |