diff options
Diffstat (limited to 'fs/freevxfs/vxfs_inode.c')
-rw-r--r-- | fs/freevxfs/vxfs_inode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/freevxfs/vxfs_inode.c b/fs/freevxfs/vxfs_inode.c index ca6a39714771..32a82ed108e4 100644 --- a/fs/freevxfs/vxfs_inode.c +++ b/fs/freevxfs/vxfs_inode.c | |||
@@ -243,7 +243,7 @@ vxfs_iinit(struct inode *ip, struct vxfs_inode_info *vip) | |||
243 | ip->i_blocks = vip->vii_blocks; | 243 | ip->i_blocks = vip->vii_blocks; |
244 | ip->i_generation = vip->vii_gen; | 244 | ip->i_generation = vip->vii_gen; |
245 | 245 | ||
246 | ip->u.generic_ip = (void *)vip; | 246 | ip->i_private = vip; |
247 | 247 | ||
248 | } | 248 | } |
249 | 249 | ||
@@ -338,5 +338,5 @@ vxfs_read_inode(struct inode *ip) | |||
338 | void | 338 | void |
339 | vxfs_clear_inode(struct inode *ip) | 339 | vxfs_clear_inode(struct inode *ip) |
340 | { | 340 | { |
341 | kmem_cache_free(vxfs_inode_cachep, ip->u.generic_ip); | 341 | kmem_cache_free(vxfs_inode_cachep, ip->i_private); |
342 | } | 342 | } |