diff options
author | Theodore Ts'o <tytso@mit.edu> | 2006-09-27 04:50:48 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-09-27 11:26:17 -0400 |
commit | eaf796e7ef6014f208c409b2b14fddcfaafe7e3a (patch) | |
tree | 4a872d4b2b086132a9ebdaec1420b8a861ddf6b7 /include/linux/fs.h | |
parent | 4c1541680f8d189d21dd07b053bc12996574646e (diff) |
[PATCH] inode-diet: Move i_bdev into a union
Move the i_bdev pointer in struct inode into a union.
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r-- | include/linux/fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index ca695fc8d69c..98ff684a5b1c 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -531,8 +531,8 @@ struct inode { | |||
531 | struct list_head i_devices; | 531 | struct list_head i_devices; |
532 | union { | 532 | union { |
533 | struct pipe_inode_info *i_pipe; | 533 | struct pipe_inode_info *i_pipe; |
534 | struct block_device *i_bdev; | ||
534 | }; | 535 | }; |
535 | struct block_device *i_bdev; | ||
536 | struct cdev *i_cdev; | 536 | struct cdev *i_cdev; |
537 | int i_cindex; | 537 | int i_cindex; |
538 | 538 | ||