aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2
diff options
context:
space:
mode:
authorSteven Whitehouse <swhiteho@redhat.com>2006-10-31 15:22:10 -0500
committerSteven Whitehouse <swhiteho@redhat.com>2006-11-30 10:33:57 -0500
commit891ea14712da68e282de8583e5fa14f0d3f3731e (patch)
tree2550fb6f9cfe3fce0f1a27b7b4c781a67f2497e2 /fs/gfs2
parent[GFS2] Change argument of gfs2_dinode_out (diff)
downloadlinux-dev-891ea14712da68e282de8583e5fa14f0d3f3731e.tar.xz
linux-dev-891ea14712da68e282de8583e5fa14f0d3f3731e.zip
[GFS2] Change argument to gfs2_dinode_in
This is a preliminary patch to enable the removal of fields in gfs2_dinode_host which are duplicated in struct inode. Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2')
-rw-r--r--fs/gfs2/inode.c2
-rw-r--r--fs/gfs2/ondisk.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/fs/gfs2/inode.c b/fs/gfs2/inode.c
index b861ddba8688..9875e9356cd3 100644
--- a/fs/gfs2/inode.c
+++ b/fs/gfs2/inode.c
@@ -229,7 +229,7 @@ int gfs2_inode_refresh(struct gfs2_inode *ip)
return -EIO;
}
- gfs2_dinode_in(&ip->i_di, dibh->b_data);
+ gfs2_dinode_in(ip, dibh->b_data);
brelse(dibh);
diff --git a/fs/gfs2/ondisk.c b/fs/gfs2/ondisk.c
index 2c50fa0261f5..edf87567bb2b 100644
--- a/fs/gfs2/ondisk.c
+++ b/fs/gfs2/ondisk.c
@@ -155,8 +155,9 @@ void gfs2_quota_in(struct gfs2_quota_host *qu, const void *buf)
qu->qu_value = be64_to_cpu(str->qu_value);
}
-void gfs2_dinode_in(struct gfs2_dinode_host *di, const void *buf)
+void gfs2_dinode_in(struct gfs2_inode *ip, const void *buf)
{
+ struct gfs2_dinode_host *di = &ip->i_di;
const struct gfs2_dinode *str = buf;
gfs2_meta_header_in(&di->di_header, buf);
@@ -186,7 +187,6 @@ void gfs2_dinode_in(struct gfs2_dinode_host *di, const void *buf)
di->di_entries = be32_to_cpu(str->di_entries);
di->di_eattr = be64_to_cpu(str->di_eattr);
-
}
void gfs2_dinode_out(const struct gfs2_inode *ip, void *buf)