From: akpm@osdl.org Date: Sun, 1 May 2005 15:58:39 +0000 (-0700) Subject: [PATCH] drop_buffers() oops fix X-Git-Tag: upstream/snapshot3+hdmi~47413^2~235 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=de7d5a3b6c9ff8429bf046c36b56d3192b75c3da;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git [PATCH] drop_buffers() oops fix In rare situations, drop_buffers() can be called for a page which has buffers, but no ->mapping (it was truncated, but the buffers were left behind because ext3 was still fiddling with them). But if there was an I/O error in a buffer_head, drop_buffers() will try to get at the address_space and will oops. Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/buffer.c b/fs/buffer.c index 3b12cf9..665db84 100644 --- a/fs/buffer.c +++ b/fs/buffer.c @@ -2917,7 +2917,7 @@ drop_buffers(struct page *page, struct buffer_head **buffers_to_free) bh = head; do { - if (buffer_write_io_error(bh)) + if (buffer_write_io_error(bh) && page->mapping) set_bit(AS_EIO, &page->mapping->flags); if (buffer_busy(bh)) goto failed;