Files
linux-apfs/fs/btrfs/btrfs_inode.h
T

16 lines
325 B
C
Raw Normal View History

2007-04-02 10:50:19 -04:00
#ifndef __BTRFS_I__
#define __BTRFS_I__
struct btrfs_inode {
2007-04-06 15:37:36 -04:00
struct btrfs_root *root;
struct btrfs_block_group_cache *block_group;
2007-04-06 15:37:36 -04:00
struct btrfs_key location;
2007-04-02 10:50:19 -04:00
struct inode vfs_inode;
};
static inline struct btrfs_inode *BTRFS_I(struct inode *inode)
{
return container_of(inode, struct btrfs_inode, vfs_inode);
}
#endif