blob: 43a4f1ddb3758e436cf042fde22fbb9634cac14e [file] [log] [blame]
Chris Mason2c90e5d2007-04-02 10:50:19 -04001#ifndef __BTRFS_I__
2#define __BTRFS_I__
3
4struct btrfs_inode {
Chris Masond6e4a422007-04-06 15:37:36 -04005 struct btrfs_root *root;
6 struct btrfs_key location;
Chris Mason2c90e5d2007-04-02 10:50:19 -04007 struct inode vfs_inode;
Chris Mason2c90e5d2007-04-02 10:50:19 -04008};
9static inline struct btrfs_inode *BTRFS_I(struct inode *inode)
10{
11 return container_of(inode, struct btrfs_inode, vfs_inode);
12}
13
14#endif