ext4: BUG_ON fix: check if page has buffers before calling page_buffers()
authorTheodore Ts'o <tytso@mit.edu>
Thu, 28 Oct 2010 21:33:57 +0000 (17:33 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Thu, 28 Oct 2010 21:33:57 +0000 (17:33 -0400)
commitb1142e8fec6a594723e5054055a7b53379b90490
tree57d6234fa2eb33f861eaea4cee4a40a3ae44c09e
parent81280572ca6f54009edfa4deee563e8678784218
ext4: BUG_ON fix: check if page has buffers before calling page_buffers()

We need to make check if a page does not have buffes by checking
page_has_buffers(page) before calling page_buffers(page) in
ext4_writepage().  Otherwise page_buffers() could throw a BUG_ON.

Thanks also to Markus Trippelsdorf and Avinash Kurup who also reported
the problem.

Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Reported-by: Sedat Dilek <sedat.dilek@googlemail.com>
Tested-by: Sedat Dilek <sedat.dilek@googlemail.com>
fs/ext4/inode.c