summaryrefslogtreecommitdiffstats
path: root/fs/btrfs/btrfs_inode.h
blob: 3439ffb467b5f4c09badffd4e79131aad599de75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __BTRFS_I__
#define __BTRFS_I__

struct btrfs_inode {
	u32 magic;
	struct btrfs_root *root;
	struct btrfs_key location;
	struct inode vfs_inode;
	u32 magic2;
};
static inline struct btrfs_inode *BTRFS_I(struct inode *inode)
{
	return container_of(inode, struct btrfs_inode, vfs_inode);
}

#endif