Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_samsung_universal7904
/
3eb0314dc1053b1ae617dcc8d6d93f776c5baa31
/
.
/
fs
/
btrfs
/
btrfs_inode.h
blob: e159841650a486e09e43b45e5c411abdec331792 [
file
] [
log
] [
blame
]
#ifndef
__BTRFS_I__
#define
__BTRFS_I__
struct
btrfs_inode
{
u32 magic
;
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