aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/ondisk.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/gfs2/ondisk.c')
-rw-r--r--fs/gfs2/ondisk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/gfs2/ondisk.c b/fs/gfs2/ondisk.c
index 5b32f1a35794..3b156a15cd8d 100644
--- a/fs/gfs2/ondisk.c
+++ b/fs/gfs2/ondisk.c
@@ -120,7 +120,7 @@ void gfs2_rindex_print(const struct gfs2_rindex *ri)
120 pv(ri, ri_bitbytes, "%u"); 120 pv(ri, ri_bitbytes, "%u");
121} 121}
122 122
123void gfs2_rgrp_in(struct gfs2_rgrp *rg, const void *buf) 123void gfs2_rgrp_in(struct gfs2_rgrp_host *rg, const void *buf)
124{ 124{
125 const struct gfs2_rgrp *str = buf; 125 const struct gfs2_rgrp *str = buf;
126 126
@@ -131,7 +131,7 @@ void gfs2_rgrp_in(struct gfs2_rgrp *rg, const void *buf)
131 rg->rg_igeneration = be64_to_cpu(str->rg_igeneration); 131 rg->rg_igeneration = be64_to_cpu(str->rg_igeneration);
132} 132}
133 133
134void gfs2_rgrp_out(const struct gfs2_rgrp *rg, void *buf) 134void gfs2_rgrp_out(const struct gfs2_rgrp_host *rg, void *buf)
135{ 135{
136 struct gfs2_rgrp *str = buf; 136 struct gfs2_rgrp *str = buf;
137 137