mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 17:12:06 +00:00
2c90e5d658
Signed-off-by: Chris Mason <chris.mason@oracle.com>
15 lines
250 B
C
15 lines
250 B
C
#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
|