mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-18 16:26:54 +07:00
31f3c99b73
Signed-off-by: Chris Mason <chris.mason@oracle.com>
16 lines
325 B
C
16 lines
325 B
C
#ifndef __BTRFS_I__
|
|
#define __BTRFS_I__
|
|
|
|
struct btrfs_inode {
|
|
struct btrfs_root *root;
|
|
struct btrfs_block_group_cache *block_group;
|
|
struct btrfs_key location;
|
|
struct inode vfs_inode;
|
|
};
|
|
static inline struct btrfs_inode *BTRFS_I(struct inode *inode)
|
|
{
|
|
return container_of(inode, struct btrfs_inode, vfs_inode);
|
|
}
|
|
|
|
#endif
|