projects
/
linux-2.6
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Btrfs: subvolumes
[linux-2.6]
/
fs
/
btrfs
/
btrfs_inode.h
1
#ifndef __BTRFS_I__
2
#define __BTRFS_I__
3
4
struct btrfs_inode {
5
struct btrfs_root *root;
6
struct btrfs_key location;
7
struct inode vfs_inode;
8
};
9
static inline struct btrfs_inode *BTRFS_I(struct inode *inode)
10
{
11
return container_of(inode, struct btrfs_inode, vfs_inode);
12
}
13
14
#endif