Use nobh_writepage rather than calling mpage_writepage directly.

Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Cc: Christoph Hellwig <hch@lst.de>
This commit is contained in:
Steven Whitehouse 2010-06-14 09:58:41 +01:00
Родитель 540ad6b62b
Коммит 30116ff6c6
1 изменённых файлов: 1 добавлений и 4 удалений

Просмотреть файл

@ -136,10 +136,7 @@ static int gfs2_writeback_writepage(struct page *page,
if (ret <= 0)
return ret;
ret = mpage_writepage(page, gfs2_get_block_noalloc, wbc);
if (ret == -EAGAIN)
ret = block_write_full_page(page, gfs2_get_block_noalloc, wbc);
return ret;
return nobh_writepage(page, gfs2_get_block_noalloc, wbc);
}
/**