Loading fs/freevxfs/vxfs_extern.h +0 −1 Original line number Diff line number Diff line Loading @@ -56,7 +56,6 @@ extern struct kmem_cache *vxfs_inode_cachep; extern void vxfs_dumpi(struct vxfs_inode_info *, ino_t); extern struct inode * vxfs_get_fake_inode(struct super_block *, struct vxfs_inode_info *); extern void vxfs_put_fake_inode(struct inode *); extern struct vxfs_inode_info * vxfs_blkiget(struct super_block *, u_long, ino_t); extern struct vxfs_inode_info * vxfs_stiget(struct super_block *, ino_t); extern struct inode * vxfs_iget(struct super_block *, ino_t); Loading fs/freevxfs/vxfs_inode.c +0 −13 Original line number Diff line number Diff line Loading @@ -295,19 +295,6 @@ vxfs_get_fake_inode(struct super_block *sbp, struct vxfs_inode_info *vip) return (ip); } /** * vxfs_put_fake_inode - free faked inode * *ip: VFS inode * * Description: * vxfs_put_fake_inode frees all data associated with @ip. */ void vxfs_put_fake_inode(struct inode *ip) { iput(ip); } /** * vxfs_iget - get an inode * @sbp: the superblock to get the inode for Loading fs/freevxfs/vxfs_super.c +6 −6 Original line number Diff line number Diff line Loading @@ -79,9 +79,9 @@ vxfs_put_super(struct super_block *sbp) { struct vxfs_sb_info *infp = VXFS_SBI(sbp); vxfs_put_fake_inode(infp->vsi_fship); vxfs_put_fake_inode(infp->vsi_ilist); vxfs_put_fake_inode(infp->vsi_stilist); iput(infp->vsi_fship); iput(infp->vsi_ilist); iput(infp->vsi_stilist); brelse(infp->vsi_bp); kfree(infp); Loading Loading @@ -278,9 +278,9 @@ static int vxfs_fill_super(struct super_block *sbp, void *dp, int silent) return 0; out_free_ilist: vxfs_put_fake_inode(infp->vsi_fship); vxfs_put_fake_inode(infp->vsi_ilist); vxfs_put_fake_inode(infp->vsi_stilist); iput(infp->vsi_fship); iput(infp->vsi_ilist); iput(infp->vsi_stilist); out: brelse(infp->vsi_bp); kfree(infp); Loading Loading
fs/freevxfs/vxfs_extern.h +0 −1 Original line number Diff line number Diff line Loading @@ -56,7 +56,6 @@ extern struct kmem_cache *vxfs_inode_cachep; extern void vxfs_dumpi(struct vxfs_inode_info *, ino_t); extern struct inode * vxfs_get_fake_inode(struct super_block *, struct vxfs_inode_info *); extern void vxfs_put_fake_inode(struct inode *); extern struct vxfs_inode_info * vxfs_blkiget(struct super_block *, u_long, ino_t); extern struct vxfs_inode_info * vxfs_stiget(struct super_block *, ino_t); extern struct inode * vxfs_iget(struct super_block *, ino_t); Loading
fs/freevxfs/vxfs_inode.c +0 −13 Original line number Diff line number Diff line Loading @@ -295,19 +295,6 @@ vxfs_get_fake_inode(struct super_block *sbp, struct vxfs_inode_info *vip) return (ip); } /** * vxfs_put_fake_inode - free faked inode * *ip: VFS inode * * Description: * vxfs_put_fake_inode frees all data associated with @ip. */ void vxfs_put_fake_inode(struct inode *ip) { iput(ip); } /** * vxfs_iget - get an inode * @sbp: the superblock to get the inode for Loading
fs/freevxfs/vxfs_super.c +6 −6 Original line number Diff line number Diff line Loading @@ -79,9 +79,9 @@ vxfs_put_super(struct super_block *sbp) { struct vxfs_sb_info *infp = VXFS_SBI(sbp); vxfs_put_fake_inode(infp->vsi_fship); vxfs_put_fake_inode(infp->vsi_ilist); vxfs_put_fake_inode(infp->vsi_stilist); iput(infp->vsi_fship); iput(infp->vsi_ilist); iput(infp->vsi_stilist); brelse(infp->vsi_bp); kfree(infp); Loading Loading @@ -278,9 +278,9 @@ static int vxfs_fill_super(struct super_block *sbp, void *dp, int silent) return 0; out_free_ilist: vxfs_put_fake_inode(infp->vsi_fship); vxfs_put_fake_inode(infp->vsi_ilist); vxfs_put_fake_inode(infp->vsi_stilist); iput(infp->vsi_fship); iput(infp->vsi_ilist); iput(infp->vsi_stilist); out: brelse(infp->vsi_bp); kfree(infp); Loading