From: Eric Biggers Date: Fri, 24 Jan 2020 04:15:48 +0000 (-0800) Subject: f2fs: fix dcache lookup of !casefolded directories X-Git-Tag: v5.6-rc1~110^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5515eae647426169e4b7969271fb207881eba7f6;p=thirdparty%2Flinux.git f2fs: fix dcache lookup of !casefolded directories Do the name comparison for non-casefolded directories correctly. This is analogous to ext4's commit 66883da1eee8 ("ext4: fix dcache lookup of !casefolded directories"). Fixes: 2c2eb7a300cd ("f2fs: Support case-insensitive file name lookups") Cc: # v5.4+ Signed-off-by: Eric Biggers Signed-off-by: Jaegeuk Kim --- diff --git a/fs/f2fs/dir.c b/fs/f2fs/dir.c index b56f6060c1a6b..aea9e2806144d 100644 --- a/fs/f2fs/dir.c +++ b/fs/f2fs/dir.c @@ -1087,7 +1087,7 @@ static int f2fs_d_compare(const struct dentry *dentry, unsigned int len, if (!IS_CASEFOLDED(dentry->d_parent->d_inode)) { if (len != name->len) return -1; - return memcmp(str, name, len); + return memcmp(str, name->name, len); } return f2fs_ci_compare(dentry->d_parent->d_inode, name, &qstr, false);