aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/inode.c
diff options
context:
space:
mode:
authorSteven Whitehouse <swhiteho@redhat.com>2006-10-31 19:00:24 -0500
committerSteven Whitehouse <swhiteho@redhat.com>2006-11-30 10:34:03 -0500
commit4cc14f0b88bf3e0b508143e091eb5a8dff3e3b9c (patch)
tree122fd017b608a6421bb720c544c21d84a9f41e82 /fs/gfs2/inode.c
parentea744d01c6a5acf1f6171b4c6e1658a742063613 (diff)
[GFS2] Change argument to gfs2_dinode_print
Change argument for gfs2_dinode_print in order to prepare for removal of duplicate fields between struct inode and struct gfs2_dinode_host. Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/inode.c')
-rw-r--r--fs/gfs2/inode.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/gfs2/inode.c b/fs/gfs2/inode.c
index b39cfcfe9276..4c5d286fefdb 100644
--- a/fs/gfs2/inode.c
+++ b/fs/gfs2/inode.c
@@ -269,7 +269,7 @@ int gfs2_inode_refresh(struct gfs2_inode *ip)
269 269
270 if (ip->i_num.no_addr != ip->i_di.di_num.no_addr) { 270 if (ip->i_num.no_addr != ip->i_di.di_num.no_addr) {
271 if (gfs2_consist_inode(ip)) 271 if (gfs2_consist_inode(ip))
272 gfs2_dinode_print(&ip->i_di); 272 gfs2_dinode_print(ip);
273 return -EIO; 273 return -EIO;
274 } 274 }
275 if (ip->i_num.no_formal_ino != ip->i_di.di_num.no_formal_ino) 275 if (ip->i_num.no_formal_ino != ip->i_di.di_num.no_formal_ino)
@@ -289,7 +289,7 @@ int gfs2_dinode_dealloc(struct gfs2_inode *ip)
289 289
290 if (ip->i_di.di_blocks != 1) { 290 if (ip->i_di.di_blocks != 1) {
291 if (gfs2_consist_inode(ip)) 291 if (gfs2_consist_inode(ip))
292 gfs2_dinode_print(&ip->i_di); 292 gfs2_dinode_print(ip);
293 return -EIO; 293 return -EIO;
294 } 294 }
295 295
@@ -359,7 +359,7 @@ int gfs2_change_nlink(struct gfs2_inode *ip, int diff)
359 bigger than the old one, we must have underflowed. */ 359 bigger than the old one, we must have underflowed. */
360 if (diff < 0 && nlink > ip->i_di.di_nlink) { 360 if (diff < 0 && nlink > ip->i_di.di_nlink) {
361 if (gfs2_consist_inode(ip)) 361 if (gfs2_consist_inode(ip))
362 gfs2_dinode_print(&ip->i_di); 362 gfs2_dinode_print(ip);
363 return -EIO; 363 return -EIO;
364 } 364 }
365 365
@@ -1010,7 +1010,7 @@ int gfs2_rmdiri(struct gfs2_inode *dip, const struct qstr *name,
1010 1010
1011 if (ip->i_di.di_entries != 2) { 1011 if (ip->i_di.di_entries != 2) {
1012 if (gfs2_consist_inode(ip)) 1012 if (gfs2_consist_inode(ip))
1013 gfs2_dinode_print(&ip->i_di); 1013 gfs2_dinode_print(ip);
1014 return -EIO; 1014 return -EIO;
1015 } 1015 }
1016 1016