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.
|
#ifndef __LINUX_UDF_I_H
|
|
#define __LINUX_UDF_I_H
|
|
|
|
#include <linux/udf_fs_i.h>
|
|
static inline struct udf_inode_info *UDF_I(struct inode *inode)
|
|
{
|
|
return list_entry(inode, struct udf_inode_info, vfs_inode);
|
|
}
|
|
|
|
#endif /* !defined(_LINUX_UDF_I_H) */
|
|
|