btrfs_inode.h 279 B

1234567891011121314
  1. #ifndef __BTRFS_I__
  2. #define __BTRFS_I__
  3. struct btrfs_inode {
  4. struct btrfs_root *root;
  5. struct btrfs_key location;
  6. struct inode vfs_inode;
  7. };
  8. static inline struct btrfs_inode *BTRFS_I(struct inode *inode)
  9. {
  10. return container_of(inode, struct btrfs_inode, vfs_inode);
  11. }
  12. #endif