#include "btrfs_inode.h"
#include "xattr.h"
- #ifdef CONFIG_BTRFS_FS_POSIX_ACL
-
-static struct posix_acl *btrfs_get_acl(struct inode *inode, int type)
+struct posix_acl *btrfs_get_acl(struct inode *inode, int type)
{
int size;
const char *name;
/* acl.c */
#ifdef CONFIG_BTRFS_FS_POSIX_ACL
-int btrfs_check_acl(struct inode *inode, int mask, unsigned int flags);
+struct posix_acl *btrfs_get_acl(struct inode *inode, int type);
- #else
- #define btrfs_get_acl NULL
- #endif
int btrfs_init_acl(struct btrfs_trans_handle *trans,
struct inode *inode, struct inode *dir);
int btrfs_acl_chmod(struct inode *inode);
-#define btrfs_check_acl NULL
+ #else
++#define btrfs_get_acl NULL
+ static inline int btrfs_init_acl(struct btrfs_trans_handle *trans,
+ struct inode *inode, struct inode *dir)
+ {
+ return 0;
+ }
+ static inline int btrfs_acl_chmod(struct inode *inode)
+ {
+ return 0;
+ }
+ #endif
/* relocation.c */
int btrfs_relocate_block_group(struct btrfs_root *root, u64 group_start);