diff options
| author | Steven Whitehouse <swhiteho@redhat.com> | 2010-06-14 04:58:41 -0400 |
|---|---|---|
| committer | Steven Whitehouse <swhiteho@redhat.com> | 2010-07-29 04:36:14 -0400 |
| commit | 30116ff6c6d140bc696cc624e6d8e38f018c886e (patch) | |
| tree | d6a69965d025c9de83ff0611a6c5eda913da0430 | |
| parent | 540ad6b62b3a188a53b51cac81d8a60d40e29fbd (diff) | |
GFS2: Use nobh_writepage
Use nobh_writepage rather than calling mpage_writepage directly.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Cc: Christoph Hellwig <hch@lst.de>
| -rw-r--r-- | fs/gfs2/aops.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/fs/gfs2/aops.c b/fs/gfs2/aops.c index 9f8b52500d63..9485a882d80b 100644 --- a/fs/gfs2/aops.c +++ b/fs/gfs2/aops.c | |||
| @@ -136,10 +136,7 @@ static int gfs2_writeback_writepage(struct page *page, | |||
| 136 | if (ret <= 0) | 136 | if (ret <= 0) |
| 137 | return ret; | 137 | return ret; |
| 138 | 138 | ||
| 139 | ret = mpage_writepage(page, gfs2_get_block_noalloc, wbc); | 139 | return nobh_writepage(page, gfs2_get_block_noalloc, wbc); |
| 140 | if (ret == -EAGAIN) | ||
| 141 | ret = block_write_full_page(page, gfs2_get_block_noalloc, wbc); | ||
| 142 | return ret; | ||
| 143 | } | 140 | } |
| 144 | 141 | ||
| 145 | /** | 142 | /** |
