The existence of fname->cf_name.name requires s_encoding & IS_CASEFOLDED,
therefore this can be simplified.

Signed-off-by: Gabriel Krisman Bertazi <[email protected]>
---
 fs/ext4/namei.c | 18 ++++++------------
 1 file changed, 6 insertions(+), 12 deletions(-)

diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c
index 5102652b5af4..e450e52eef48 100644
--- a/fs/ext4/namei.c
+++ b/fs/ext4/namei.c
@@ -1440,19 +1440,13 @@ static bool ext4_match(struct inode *parent,
 #endif
 
 #if IS_ENABLED(CONFIG_UNICODE)
-       if (parent->i_sb->s_encoding && IS_CASEFOLDED(parent) &&
-           (!IS_ENCRYPTED(parent) || fscrypt_has_encryption_key(parent))) {
-               if (fname->cf_name.name) {
-                       if (IS_ENCRYPTED(parent)) {
-                               if (fname->hinfo.hash != EXT4_DIRENT_HASH(de) ||
-                                       fname->hinfo.minor_hash !=
-                                               EXT4_DIRENT_MINOR_HASH(de)) {
-
-                                       return false;
-                               }
-                       }
-               }
+       if (IS_ENCRYPTED(parent) && fname->cf_name.name) {
+               if (fname->hinfo.hash != EXT4_DIRENT_HASH(de) ||
+                   fname->hinfo.minor_hash != EXT4_DIRENT_MINOR_HASH(de))
+                       return false;
+       }
 
+       if (parent->i_sb->s_encoding && IS_CASEFOLDED(parent)) {
                u.folded_name = &fname->cf_name;
                u.usr_name = fname->usr_fname;
 
-- 
2.35.1



_______________________________________________
Linux-f2fs-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel

Reply via email to