aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2
diff options
context:
space:
mode:
authorSteven Whitehouse <swhiteho@redhat.com>2007-11-01 09:34:14 +0000
committerSteven Whitehouse <swhiteho@redhat.com>2008-01-25 08:07:40 +0000
commit52d4c74b08bf859f698ddb4e8a43c0dc8d4a0685 (patch)
tree3454c250947bc4b19ee5410345d00fef20c98c8d /fs/gfs2
parent[GFS2] Remove "reclaim limit" (diff)
downloadlinux-dev-52d4c74b08bf859f698ddb4e8a43c0dc8d4a0685.tar.xz
linux-dev-52d4c74b08bf859f698ddb4e8a43c0dc8d4a0685.zip
[GFS2] Add sync_page to metadata address space operations
This set of address space operations was missing a sync_page operation. Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2')
-rw-r--r--fs/gfs2/meta_io.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/gfs2/meta_io.c b/fs/gfs2/meta_io.c
index 01ef90253ed1..4b1aced9023d 100644
--- a/fs/gfs2/meta_io.c
+++ b/fs/gfs2/meta_io.c
@@ -50,6 +50,7 @@ static int gfs2_aspace_writepage(struct page *page,
static const struct address_space_operations aspace_aops = {
.writepage = gfs2_aspace_writepage,
.releasepage = gfs2_releasepage,
+ .sync_page = block_sync_page,
};
/**