diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-10-13 21:29:46 -0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2006-11-30 10:33:11 -0500 |
commit | e697264709c86040271cdd7abee781d7adbb7f91 (patch) | |
tree | 4050d047b28a7a85b56a41143096bf11a4fa3095 /fs/gfs2/ondisk.c | |
parent | 68826664d12827d7a732192e2f00ba46fb899414 (diff) |
[GFS2] split and annotate gfs2_inum_range
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/ondisk.c')
-rw-r--r-- | fs/gfs2/ondisk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/gfs2/ondisk.c b/fs/gfs2/ondisk.c index 3b156a15cd8d..64f5f0c604aa 100644 --- a/fs/gfs2/ondisk.c +++ b/fs/gfs2/ondisk.c | |||
@@ -263,7 +263,7 @@ void gfs2_log_header_in(struct gfs2_log_header *lh, const void *buf) | |||
263 | lh->lh_hash = be32_to_cpu(str->lh_hash); | 263 | lh->lh_hash = be32_to_cpu(str->lh_hash); |
264 | } | 264 | } |
265 | 265 | ||
266 | void gfs2_inum_range_in(struct gfs2_inum_range *ir, const void *buf) | 266 | void gfs2_inum_range_in(struct gfs2_inum_range_host *ir, const void *buf) |
267 | { | 267 | { |
268 | const struct gfs2_inum_range *str = buf; | 268 | const struct gfs2_inum_range *str = buf; |
269 | 269 | ||
@@ -271,7 +271,7 @@ void gfs2_inum_range_in(struct gfs2_inum_range *ir, const void *buf) | |||
271 | ir->ir_length = be64_to_cpu(str->ir_length); | 271 | ir->ir_length = be64_to_cpu(str->ir_length); |
272 | } | 272 | } |
273 | 273 | ||
274 | void gfs2_inum_range_out(const struct gfs2_inum_range *ir, void *buf) | 274 | void gfs2_inum_range_out(const struct gfs2_inum_range_host *ir, void *buf) |
275 | { | 275 | { |
276 | struct gfs2_inum_range *str = buf; | 276 | struct gfs2_inum_range *str = buf; |
277 | 277 | ||