diff options
Diffstat (limited to 'fs/gfs2')
-rw-r--r-- | fs/gfs2/inode.c | 2 | ||||
-rw-r--r-- | fs/gfs2/ondisk.c | 4 |
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) | |||
229 | return -EIO; | 229 | return -EIO; |
230 | } | 230 | } |
231 | 231 | ||
232 | gfs2_dinode_in(&ip->i_di, dibh->b_data); | 232 | gfs2_dinode_in(ip, dibh->b_data); |
233 | 233 | ||
234 | brelse(dibh); | 234 | brelse(dibh); |
235 | 235 | ||
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) | |||
155 | qu->qu_value = be64_to_cpu(str->qu_value); | 155 | qu->qu_value = be64_to_cpu(str->qu_value); |
156 | } | 156 | } |
157 | 157 | ||
158 | void gfs2_dinode_in(struct gfs2_dinode_host *di, const void *buf) | 158 | void gfs2_dinode_in(struct gfs2_inode *ip, const void *buf) |
159 | { | 159 | { |
160 | struct gfs2_dinode_host *di = &ip->i_di; | ||
160 | const struct gfs2_dinode *str = buf; | 161 | const struct gfs2_dinode *str = buf; |
161 | 162 | ||
162 | gfs2_meta_header_in(&di->di_header, buf); | 163 | gfs2_meta_header_in(&di->di_header, buf); |
@@ -186,7 +187,6 @@ void gfs2_dinode_in(struct gfs2_dinode_host *di, const void *buf) | |||
186 | di->di_entries = be32_to_cpu(str->di_entries); | 187 | di->di_entries = be32_to_cpu(str->di_entries); |
187 | 188 | ||
188 | di->di_eattr = be64_to_cpu(str->di_eattr); | 189 | di->di_eattr = be64_to_cpu(str->di_eattr); |
189 | |||
190 | } | 190 | } |
191 | 191 | ||
192 | void gfs2_dinode_out(const struct gfs2_inode *ip, void *buf) | 192 | void gfs2_dinode_out(const struct gfs2_inode *ip, void *buf) |