diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2014-03-31 12:48:27 -0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2014-03-31 12:48:27 -0400 |
commit | 1b2ad41214c9bf6e8befa000f0522629194bf540 (patch) | |
tree | ca9bfdbbabf9aa50e81565c643a8849789a69949 /fs/gfs2/meta_io.c | |
parent | 059788039f1e6343f34f46d202f8d9f2158c2783 (diff) |
GFS2: Fix address space from page function
Now that rgrps use the address space which is part of the super
block, we need to update gfs2_mapping2sbd() to take account of
that. The only way to do that easily is to use a different set
of address_space_operations for rgrps.
Reported-by: Abhi Das <adas@redhat.com>
Tested-by: Abhi Das <adas@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/meta_io.c')
-rw-r--r-- | fs/gfs2/meta_io.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fs/gfs2/meta_io.c b/fs/gfs2/meta_io.c index 005e4686af0d..2cf09b63a6b4 100644 --- a/fs/gfs2/meta_io.c +++ b/fs/gfs2/meta_io.c | |||
@@ -97,6 +97,11 @@ const struct address_space_operations gfs2_meta_aops = { | |||
97 | .releasepage = gfs2_releasepage, | 97 | .releasepage = gfs2_releasepage, |
98 | }; | 98 | }; |
99 | 99 | ||
100 | const struct address_space_operations gfs2_rgrp_aops = { | ||
101 | .writepage = gfs2_aspace_writepage, | ||
102 | .releasepage = gfs2_releasepage, | ||
103 | }; | ||
104 | |||
100 | /** | 105 | /** |
101 | * gfs2_getbuf - Get a buffer with a given address space | 106 | * gfs2_getbuf - Get a buffer with a given address space |
102 | * @gl: the glock | 107 | * @gl: the glock |