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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/gfs2/ondisk.c b/fs/gfs2/ondisk.c
index c4e099d582f7..32f592f4a3c0 100644
--- a/fs/gfs2/ondisk.c
+++ b/fs/gfs2/ondisk.c
@@ -32,7 +32,7 @@
32 * first arg: the cpu-order structure 32 * first arg: the cpu-order structure
33 */ 33 */
34 34
35void gfs2_inum_in(struct gfs2_inum *no, const void *buf) 35void gfs2_inum_in(struct gfs2_inum_host *no, const void *buf)
36{ 36{
37 const struct gfs2_inum *str = buf; 37 const struct gfs2_inum *str = buf;
38 38
@@ -40,7 +40,7 @@ void gfs2_inum_in(struct gfs2_inum *no, const void *buf)
40 no->no_addr = be64_to_cpu(str->no_addr); 40 no->no_addr = be64_to_cpu(str->no_addr);
41} 41}
42 42
43void gfs2_inum_out(const struct gfs2_inum *no, void *buf) 43void gfs2_inum_out(const struct gfs2_inum_host *no, void *buf)
44{ 44{
45 struct gfs2_inum *str = buf; 45 struct gfs2_inum *str = buf;
46 46
@@ -48,7 +48,7 @@ void gfs2_inum_out(const struct gfs2_inum *no, void *buf)
48 str->no_addr = cpu_to_be64(no->no_addr); 48 str->no_addr = cpu_to_be64(no->no_addr);
49} 49}
50 50
51static void gfs2_inum_print(const struct gfs2_inum *no) 51static void gfs2_inum_print(const struct gfs2_inum_host *no)
52{ 52{
53 printk(KERN_INFO " no_formal_ino = %llu\n", (unsigned long long)no->no_formal_ino); 53 printk(KERN_INFO " no_formal_ino = %llu\n", (unsigned long long)no->no_formal_ino);
54 printk(KERN_INFO " no_addr = %llu\n", (unsigned long long)no->no_addr); 54 printk(KERN_INFO " no_addr = %llu\n", (unsigned long long)no->no_addr);