#include <linux/init.h>
#include <linux/xattr.h>
#define EXT2_XATTR_MAGIC …
#define EXT2_XATTR_REFCOUNT_MAX …
#define EXT2_XATTR_INDEX_USER …
#define EXT2_XATTR_INDEX_POSIX_ACL_ACCESS …
#define EXT2_XATTR_INDEX_POSIX_ACL_DEFAULT …
#define EXT2_XATTR_INDEX_TRUSTED …
#define EXT2_XATTR_INDEX_LUSTRE …
#define EXT2_XATTR_INDEX_SECURITY …
struct ext2_xattr_header { … };
struct ext2_xattr_entry { … };
#define EXT2_XATTR_PAD_BITS …
#define EXT2_XATTR_PAD …
#define EXT2_XATTR_ROUND …
#define EXT2_XATTR_LEN(name_len) …
#define EXT2_XATTR_NEXT(entry) …
#define EXT2_XATTR_SIZE(size) …
struct mb_cache;
# ifdef CONFIG_EXT2_FS_XATTR
extern const struct xattr_handler ext2_xattr_user_handler;
extern const struct xattr_handler ext2_xattr_trusted_handler;
extern const struct xattr_handler ext2_xattr_security_handler;
extern ssize_t ext2_listxattr(struct dentry *, char *, size_t);
extern int ext2_xattr_get(struct inode *, int, const char *, void *, size_t);
extern int ext2_xattr_set(struct inode *, int, const char *, const void *, size_t, int);
extern void ext2_xattr_delete_inode(struct inode *);
extern struct mb_cache *ext2_xattr_create_cache(void);
extern void ext2_xattr_destroy_cache(struct mb_cache *cache);
extern const struct xattr_handler * const ext2_xattr_handlers[];
# else
static inline int
ext2_xattr_get(struct inode *inode, int name_index,
const char *name, void *buffer, size_t size)
{
return -EOPNOTSUPP;
}
static inline int
ext2_xattr_set(struct inode *inode, int name_index, const char *name,
const void *value, size_t size, int flags)
{
return -EOPNOTSUPP;
}
static inline void
ext2_xattr_delete_inode(struct inode *inode)
{
}
static inline void ext2_xattr_destroy_cache(struct mb_cache *cache)
{
}
#define ext2_xattr_handlers …
#define ext2_listxattr …
# endif
#ifdef CONFIG_EXT2_FS_SECURITY
extern int ext2_init_security(struct inode *inode, struct inode *dir,
const struct qstr *qstr);
#else
static inline int ext2_init_security(struct inode *inode, struct inode *dir,
const struct qstr *qstr)
{
return 0;
}
#endif