| Chris Mason | 2c90e5d | 2007-04-02 10:50:19 -0400 | [diff] [blame] | 1 | #ifndef __BTRFS_I__ |
| 2 | #define __BTRFS_I__ | ||||
| 3 | |||||
| 4 | struct btrfs_inode { | ||||
| 5 | u32 magic; | ||||
| Chris Mason | d6e4a42 | 2007-04-06 15:37:36 -0400 | [diff] [blame^] | 6 | struct btrfs_root *root; |
| 7 | struct btrfs_key location; | ||||
| Chris Mason | 2c90e5d | 2007-04-02 10:50:19 -0400 | [diff] [blame] | 8 | struct inode vfs_inode; |
| 9 | u32 magic2; | ||||
| 10 | }; | ||||
| 11 | static inline struct btrfs_inode *BTRFS_I(struct inode *inode) | ||||
| 12 | { | ||||
| 13 | return container_of(inode, struct btrfs_inode, vfs_inode); | ||||
| 14 | } | ||||
| 15 | |||||
| 16 | #endif | ||||