Unionfs: debugging: show inode reference counts for all branches
authorErez_Zadok <ezk@cs.sunysb.edu>
Tue, 17 Jul 2007 03:38:30 +0000 (23:38 -0400)
committerErez Zadok <ezk@cs.sunysb.edu>
Wed, 20 May 2009 20:59:09 +0000 (16:59 -0400)
Another useful utility function for debugging, to show the inode refcnt's
of all lower inodes.

Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
fs/unionfs/debug.c
fs/unionfs/union.h

index cc9d42ad676c6e95edae7e9efb1fbf62b20a6357..424c60d650b4dd3efc5577b5e8d59a6b36861c12 100644 (file)
@@ -468,3 +468,24 @@ void __show_dinode_times(const struct dentry *dentry,
                       lower_inode->i_ctime.tv_nsec);
        }
 }
+
+void __show_inode_counts(const struct inode *inode,
+                       const char *file, const char *fxn, int line)
+{
+       struct inode *lower_inode;
+       int bindex;
+
+       if (!inode) {
+               printk("SiC: Null inode\n");
+               return;
+       }
+       for (bindex=sbstart(inode->i_sb); bindex <= sbend(inode->i_sb); bindex++) {
+               lower_inode = unionfs_lower_inode_idx(inode, bindex);
+               if (!lower_inode)
+                       continue;
+               printk("SIC(%lu:%d:%d): ", inode->i_ino, bindex,
+                      atomic_read(&(inode)->i_count));
+               printk("lc=%d ", atomic_read(&(lower_inode)->i_count));
+               printk("%s:%s:%d\n",file,fxn,line);
+       }
+}
index 2bedaec4e2882087806bb3f5ca19776d822308eb..a13052b62291b73551e02860fb727995fa56aef6 100644 (file)
@@ -545,6 +545,8 @@ static inline void unionfs_mntput(struct dentry *dentry, int bindex)
        __FILE__,__FUNCTION__,__LINE__)
 #define show_dinode_times(d)   __show_dinode_times((d),        \
        __FILE__,__FUNCTION__,__LINE__)
+#define show_inode_counts(i)   __show_inode_counts((i),        \
+       __FILE__,__FUNCTION__,__LINE__)
 
 extern void __unionfs_check_inode(const struct inode *inode, const char *fname,
                                  const char *fxn, int line);
@@ -559,6 +561,8 @@ extern void __show_inode_times(const struct inode *inode,
                               const char *file, const char *fxn, int line);
 extern void __show_dinode_times(const struct dentry *dentry,
                                const char *file, const char *fxn, int line);
+extern void __show_inode_counts(const struct inode *inode,
+                               const char *file, const char *fxn, int line);
 
 #else /* not UNIONFS_DEBUG */
 
@@ -569,6 +573,7 @@ extern void __show_dinode_times(const struct dentry *dentry,
 #define show_branch_counts(sb)
 #define show_inode_times(i)
 #define show_dinode_times(d)
+#define show_inode_counts(i)
 
 #endif /* not UNIONFS_DEBUG */