aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/ops_inode.c
diff options
context:
space:
mode:
authorSteven Whitehouse <swhiteho@redhat.com>2011-05-09 08:36:10 -0400
committerSteven Whitehouse <swhiteho@redhat.com>2011-05-09 11:44:29 -0400
commit94fb763b1a76a2000ad21f3119b05c90040acaf0 (patch)
tree72cb7fd210b8bb58e52403ba8c7fb35e93e2a5cc /fs/gfs2/ops_inode.c
parent3d6ecb7d16fd4248fce58387a982a0756ad3fcc2 (diff)
GFS2: Remove gfs2_dinode_print() function
This function was intended for debugging purposes, but it is not very useful. If we want to know what is on disk then all we need is a block number and gfs2_edit can give us much better information about what is there. Otherwise, if we are interested in what is stored in the in-core inode, it doesn't help us out there either. Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/ops_inode.c')
-rw-r--r--fs/gfs2/ops_inode.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/gfs2/ops_inode.c b/fs/gfs2/ops_inode.c
index 6b8c2bdb5a0..2607c2c6de2 100644
--- a/fs/gfs2/ops_inode.c
+++ b/fs/gfs2/ops_inode.c
@@ -754,8 +754,7 @@ static int gfs2_rename(struct inode *odir, struct dentry *odentry,
754 754
755 if (S_ISDIR(nip->i_inode.i_mode)) { 755 if (S_ISDIR(nip->i_inode.i_mode)) {
756 if (nip->i_entries < 2) { 756 if (nip->i_entries < 2) {
757 if (gfs2_consist_inode(nip)) 757 gfs2_consist_inode(nip);
758 gfs2_dinode_print(nip);
759 error = -EIO; 758 error = -EIO;
760 goto out_gunlock; 759 goto out_gunlock;
761 } 760 }