Commit eaf796e7 authored by Theodore Ts'o's avatar Theodore Ts'o Committed by Linus Torvalds

[PATCH] inode-diet: Move i_bdev into a union

Move the i_bdev pointer in struct inode into a union.
Signed-off-by: default avatar"Theodore Ts'o" <tytso@mit.edu>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 4c154168
...@@ -254,7 +254,7 @@ void clear_inode(struct inode *inode) ...@@ -254,7 +254,7 @@ void clear_inode(struct inode *inode)
DQUOT_DROP(inode); DQUOT_DROP(inode);
if (inode->i_sb && inode->i_sb->s_op->clear_inode) if (inode->i_sb && inode->i_sb->s_op->clear_inode)
inode->i_sb->s_op->clear_inode(inode); inode->i_sb->s_op->clear_inode(inode);
if (inode->i_bdev) if (S_ISBLK(inode->i_mode) && inode->i_bdev)
bd_forget(inode); bd_forget(inode);
if (inode->i_cdev) if (inode->i_cdev)
cd_forget(inode); cd_forget(inode);
......
...@@ -531,8 +531,8 @@ struct inode { ...@@ -531,8 +531,8 @@ struct inode {
struct list_head i_devices; struct list_head i_devices;
union { union {
struct pipe_inode_info *i_pipe; struct pipe_inode_info *i_pipe;
};
struct block_device *i_bdev; struct block_device *i_bdev;
};
struct cdev *i_cdev; struct cdev *i_cdev;
int i_cindex; int i_cindex;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment