diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2007-11-01 09:34:14 +0000 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2008-01-25 08:07:40 +0000 |
commit | 52d4c74b08bf859f698ddb4e8a43c0dc8d4a0685 (patch) | |
tree | 3454c250947bc4b19ee5410345d00fef20c98c8d | |
parent | c2932e03dbcfe7ea9052953dbd5f3157183c1e9b (diff) | |
download | linux-3.10-52d4c74b08bf859f698ddb4e8a43c0dc8d4a0685.tar.gz linux-3.10-52d4c74b08bf859f698ddb4e8a43c0dc8d4a0685.tar.bz2 linux-3.10-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>
-rw-r--r-- | fs/gfs2/meta_io.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/gfs2/meta_io.c b/fs/gfs2/meta_io.c index 01ef90253ed..4b1aced9023 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, }; /** |