You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
250 B
15 lines
250 B
18 years ago
|
#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
|