Commit 9cf4f616 authored by Dave Chinner's avatar Dave Chinner

Merge branch 'guilt/xfs-5.19-misc-2' into xfs-5.19-for-next

parents a44a027a bc37e4fb
...@@ -16,11 +16,13 @@ extern int xfs_set_acl(struct user_namespace *mnt_userns, struct inode *inode, ...@@ -16,11 +16,13 @@ extern int xfs_set_acl(struct user_namespace *mnt_userns, struct inode *inode,
extern int __xfs_set_acl(struct inode *inode, struct posix_acl *acl, int type); extern int __xfs_set_acl(struct inode *inode, struct posix_acl *acl, int type);
void xfs_forget_acl(struct inode *inode, const char *name); void xfs_forget_acl(struct inode *inode, const char *name);
#else #else
static inline struct posix_acl *xfs_get_acl(struct inode *inode, int type, bool rcu) #define xfs_get_acl NULL
#define xfs_set_acl NULL
static inline int __xfs_set_acl(struct inode *inode, struct posix_acl *acl,
int type)
{ {
return NULL; return 0;
} }
# define xfs_set_acl NULL
static inline void xfs_forget_acl(struct inode *inode, const char *name) static inline void xfs_forget_acl(struct inode *inode, const char *name)
{ {
} }
......
...@@ -128,11 +128,12 @@ xfs_filestream_pick_ag( ...@@ -128,11 +128,12 @@ xfs_filestream_pick_ag(
if (!pag->pagf_init) { if (!pag->pagf_init) {
err = xfs_alloc_pagf_init(mp, NULL, ag, trylock); err = xfs_alloc_pagf_init(mp, NULL, ag, trylock);
if (err) { if (err) {
xfs_perag_put(pag); if (err != -EAGAIN) {
if (err != -EAGAIN) xfs_perag_put(pag);
return err; return err;
}
/* Couldn't lock the AGF, skip this AG. */ /* Couldn't lock the AGF, skip this AG. */
continue; goto next_ag;
} }
} }
......
...@@ -209,7 +209,6 @@ xfs_generic_create( ...@@ -209,7 +209,6 @@ xfs_generic_create(
if (unlikely(error)) if (unlikely(error))
goto out_cleanup_inode; goto out_cleanup_inode;
#ifdef CONFIG_XFS_POSIX_ACL
if (default_acl) { if (default_acl) {
error = __xfs_set_acl(inode, default_acl, ACL_TYPE_DEFAULT); error = __xfs_set_acl(inode, default_acl, ACL_TYPE_DEFAULT);
if (error) if (error)
...@@ -220,7 +219,6 @@ xfs_generic_create( ...@@ -220,7 +219,6 @@ xfs_generic_create(
if (error) if (error)
goto out_cleanup_inode; goto out_cleanup_inode;
} }
#endif
xfs_setup_iops(ip); xfs_setup_iops(ip);
......
...@@ -603,7 +603,6 @@ xfs_dqresv_check( ...@@ -603,7 +603,6 @@ xfs_dqresv_check(
return QUOTA_NL_ISOFTLONGWARN; return QUOTA_NL_ISOFTLONGWARN;
} }
res->warnings++;
return QUOTA_NL_ISOFTWARN; return QUOTA_NL_ISOFTWARN;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment