Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
9cf4f616
Commit
9cf4f616
authored
May 04, 2022
by
Dave Chinner
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'guilt/xfs-5.19-misc-2' into xfs-5.19-for-next
parents
a44a027a
bc37e4fb
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
9 deletions
+9
-9
fs/xfs/xfs_acl.h
fs/xfs/xfs_acl.h
+5
-3
fs/xfs/xfs_filestream.c
fs/xfs/xfs_filestream.c
+4
-3
fs/xfs/xfs_iops.c
fs/xfs/xfs_iops.c
+0
-2
fs/xfs/xfs_trans_dquot.c
fs/xfs/xfs_trans_dquot.c
+0
-1
No files found.
fs/xfs/xfs_acl.h
View file @
9cf4f616
...
...
@@ -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
);
void
xfs_forget_acl
(
struct
inode
*
inode
,
const
char
*
name
);
#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
)
{
}
...
...
fs/xfs/xfs_filestream.c
View file @
9cf4f616
...
...
@@ -128,11 +128,12 @@ xfs_filestream_pick_ag(
if
(
!
pag
->
pagf_init
)
{
err
=
xfs_alloc_pagf_init
(
mp
,
NULL
,
ag
,
trylock
);
if
(
err
)
{
xfs_perag_put
(
pag
);
if
(
err
!=
-
EAGAIN
)
if
(
err
!=
-
EAGAIN
)
{
xfs_perag_put
(
pag
);
return
err
;
}
/* Couldn't lock the AGF, skip this AG. */
continue
;
goto
next_ag
;
}
}
...
...
fs/xfs/xfs_iops.c
View file @
9cf4f616
...
...
@@ -209,7 +209,6 @@ xfs_generic_create(
if
(
unlikely
(
error
))
goto
out_cleanup_inode
;
#ifdef CONFIG_XFS_POSIX_ACL
if
(
default_acl
)
{
error
=
__xfs_set_acl
(
inode
,
default_acl
,
ACL_TYPE_DEFAULT
);
if
(
error
)
...
...
@@ -220,7 +219,6 @@ xfs_generic_create(
if
(
error
)
goto
out_cleanup_inode
;
}
#endif
xfs_setup_iops
(
ip
);
...
...
fs/xfs/xfs_trans_dquot.c
View file @
9cf4f616
...
...
@@ -603,7 +603,6 @@ xfs_dqresv_check(
return
QUOTA_NL_ISOFTLONGWARN
;
}
res
->
warnings
++
;
return
QUOTA_NL_ISOFTWARN
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment