blob: 3439ffb467b5f4c09badffd4e79131aad599de75 [file] [log] [blame]
Chris Mason2c90e5d2007-04-02 10:50:19 -04001#ifndef __BTRFS_I__
2#define __BTRFS_I__
3
4struct btrfs_inode {
5 u32 magic;
Chris Masond6e4a422007-04-06 15:37:36 -04006 struct btrfs_root *root;
7 struct btrfs_key location;
Chris Mason2c90e5d2007-04-02 10:50:19 -04008 struct inode vfs_inode;
9 u32 magic2;
10};
11static inline struct btrfs_inode *BTRFS_I(struct inode *inode)
12{
13 return container_of(inode, struct btrfs_inode, vfs_inode);
14}
15
16#endif