Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Aufs5 Standalone
Commits
be53027f
Commit
be53027f
authored
Oct 08, 2019
by
J. R. Okajima
Browse files
Merge branch 'aufs5.0/00base' into aufs5.0/01modular
parents
1031a690
a8614c2e
Changes
1
Hide whitespace changes
Inline
Side-by-side
fs/aufs/posix_acl.c
View file @
be53027f
...
...
@@ -37,7 +37,9 @@ struct posix_acl *aufs_get_acl(struct inode *inode, int type)
/* always topmost only */
acl
=
get_acl
(
h_inode
,
type
);
if
(
!
IS_ERR_OR_NULL
(
acl
))
if
(
IS_ERR
(
acl
))
forget_cached_acl
(
inode
,
type
);
else
set_cached_acl
(
inode
,
type
,
acl
);
out:
...
...
@@ -78,12 +80,12 @@ int aufs_set_acl(struct inode *inode, struct posix_acl *acl, int type)
}
ssz
=
au_sxattr
(
dentry
,
inode
,
&
arg
);
/* forget even it if succeeds since the branch might set differently */
forget_cached_acl
(
inode
,
type
);
dput
(
dentry
);
err
=
ssz
;
if
(
ssz
>=
0
)
{
if
(
ssz
>=
0
)
err
=
0
;
set_cached_acl
(
inode
,
type
,
acl
);
}
out:
return
err
;
...
...
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