Blame SOURCES/0083-fs-ntfs3-Refactor-ntfs_get_acl_ex-for-better-readabi.patch
|
Kmods SIG |
8b815c |
From 0bd5fdb811b0449fcef948a100099cc3197f1b73 Mon Sep 17 00:00:00 2001
|
|
Kmods SIG |
8b815c |
From: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
|
|
Kmods SIG |
8b815c |
Date: Wed, 22 Sep 2021 18:28:36 +0300
|
|
Kmods SIG |
8b815c |
Subject: [Backport 0bd5fdb811b0] src: Refactor ntfs_get_acl_ex for better
|
|
Kmods SIG |
8b815c |
readability
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
We can safely move set_cached_acl because it works with NULL acl too.
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
Reviewed-by: Kari Argillander <kari.argillander@gmail.com>
|
|
Kmods SIG |
8b815c |
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
|
|
Kmods SIG |
8b815c |
---
|
|
Kmods SIG |
8b815c |
src/xattr.c | 9 ++++++---
|
|
Kmods SIG |
8b815c |
1 file changed, 6 insertions(+), 3 deletions(-)
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
diff --git a/src/xattr.c b/src/xattr.c
|
|
Kmods SIG |
8b815c |
index 5c7c5c7a5ec1607cbe37c5cc6a847fd04a0d0464..3795943efc8e36d64710d8467ce48ef72c2121cd 100644
|
|
Kmods SIG |
8b815c |
--- a/src/xattr.c
|
|
Kmods SIG |
8b815c |
+++ b/src/xattr.c
|
|
Kmods SIG |
8b815c |
@@ -518,12 +518,15 @@ static struct posix_acl *ntfs_get_acl_ex(struct user_namespace *mnt_userns,
|
|
Kmods SIG |
8b815c |
/* Translate extended attribute to acl. */
|
|
Kmods SIG |
8b815c |
if (err >= 0) {
|
|
Kmods SIG |
8b815c |
acl = posix_acl_from_xattr(mnt_userns, buf, err);
|
|
Kmods SIG |
8b815c |
- if (!IS_ERR(acl))
|
|
Kmods SIG |
8b815c |
- set_cached_acl(inode, type, acl);
|
|
Kmods SIG |
8b815c |
+ } else if (err == -ENODATA) {
|
|
Kmods SIG |
8b815c |
+ acl = NULL;
|
|
Kmods SIG |
8b815c |
} else {
|
|
Kmods SIG |
8b815c |
- acl = err == -ENODATA ? NULL : ERR_PTR(err);
|
|
Kmods SIG |
8b815c |
+ acl = ERR_PTR(err);
|
|
Kmods SIG |
8b815c |
}
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
+ if (!IS_ERR(acl))
|
|
Kmods SIG |
8b815c |
+ set_cached_acl(inode, type, acl);
|
|
Kmods SIG |
8b815c |
+
|
|
Kmods SIG |
8b815c |
__putname(buf);
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
return acl;
|
|
Kmods SIG |
8b815c |
--
|
|
Kmods SIG |
8b815c |
2.31.1
|
|
Kmods SIG |
8b815c |
|