diff --git a/fs/jfs/inode.c b/fs/jfs/inode.c index 920d58a1566b..fc7d4470a4fd 100644 --- a/fs/jfs/inode.c +++ b/fs/jfs/inode.c @@ -152,6 +152,7 @@ void jfs_evict_inode(struct inode *inode) if (test_cflag(COMMIT_Freewmap, inode)) jfs_free_zero_link(inode); + printk("ipimap: %p, %s\n", ipimap, __func__); if (ipimap && JFS_IP(ipimap)->i_imap) diFree(inode); diff --git a/fs/jfs/jfs_mount.c b/fs/jfs/jfs_mount.c index b83aae56a1f2..ae04ddaa63d1 100644 --- a/fs/jfs/jfs_mount.c +++ b/fs/jfs/jfs_mount.c @@ -111,6 +111,7 @@ int jfs_mount(struct super_block *sb) goto err_umount_ipaimap; } + printk("read, ipbmap: %p, fileset:%d, %s\n", ipbmap, JFS_IP(ipbmap)->fileset, __func__); jfs_info("jfs_mount: ipbmap:0x%p", ipbmap); sbi->ipbmap = ipbmap; @@ -170,6 +171,7 @@ int jfs_mount(struct super_block *sb) rc = -EIO; goto err_umount_ipaimap2; } + printk("read, ipimap: %p, fileset:%d, %s\n", ipimap, JFS_IP(ipimap)->fileset, __func__); jfs_info("jfs_mount: ipimap:0x%p", ipimap); /* map further access of per fileset inodes by the fileset inode */ @@ -188,6 +190,7 @@ int jfs_mount(struct super_block *sb) */ err_ipimap: /* close fileset inode allocation map inode */ + printk("err, ipimap: %p, fileset:%d, %s\n", ipimap, JFS_IP(ipimap)->fileset, __func__); diFreeSpecial(ipimap); err_umount_ipaimap2: /* close secondary aggregate inode allocation map */ @@ -200,6 +203,7 @@ int jfs_mount(struct super_block *sb) err_umount_ipbmap: /* close aggregate block allocation map */ dbUnmount(ipbmap, 1); err_ipbmap: /* close aggregate inodes */ + printk("err, ipbmap: %p, fileset:%d, %s\n", ipbmap, JFS_IP(ipbmap)->fileset, __func__); diFreeSpecial(ipbmap); err_umount_ipaimap: /* close aggregate inode allocation map */ diUnmount(ipaimap, 1); diff --git a/fs/jfs/super.c b/fs/jfs/super.c index 2e2f7f6d36a0..02fc47863a4d 100644 --- a/fs/jfs/super.c +++ b/fs/jfs/super.c @@ -113,6 +113,7 @@ static struct inode *jfs_alloc_inode(struct super_block *sb) static void jfs_free_inode(struct inode *inode) { + printk("inode: %p, %s\n", inode, __func__); kmem_cache_free(jfs_inode_cachep, JFS_IP(inode)); }