Blame SOURCES/0061-exfat-remove-useless-check-in-exfat_move_file.patch

Kmods SIG 50e2b3
From eae503f7eb0509594076a951e422e29082385c96 Mon Sep 17 00:00:00 2001
Kmods SIG 50e2b3
From: Tetsuhiro Kohada <kohada.t2@gmail.com>
Kmods SIG 50e2b3
Date: Fri, 11 Sep 2020 13:45:06 +0900
Kmods SIG 50e2b3
Subject: [Backport eae503f7eb05] exfat: remove useless check in
Kmods SIG 50e2b3
 exfat_move_file()
Kmods SIG 50e2b3
Kmods SIG 50e2b3
In exfat_move_file(), the identity of source and target directory has been
Kmods SIG 50e2b3
checked by the caller.
Kmods SIG 50e2b3
Also, it gets stream.start_clu from file dir-entry, which is an invalid
Kmods SIG 50e2b3
determination.
Kmods SIG 50e2b3
Kmods SIG 50e2b3
Signed-off-by: Tetsuhiro Kohada <kohada.t2@gmail.com>
Kmods SIG 50e2b3
Acked-by: Sungjong Seo <sj1557.seo@samsung.com>
Kmods SIG 50e2b3
Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
Kmods SIG 50e2b3
---
Kmods SIG 50e2b3
 src/namei.c | 5 -----
Kmods SIG 50e2b3
 1 file changed, 5 deletions(-)
Kmods SIG 50e2b3
Kmods SIG 50e2b3
diff --git a/src/namei.c b/src/namei.c
Kmods SIG 50e2b3
index 676094f2abe2d13573c7e970cbf595586f46a059..2932b23a3b6c36ebfb82e5a5e7621c07fbb2822d 100644
Kmods SIG 50e2b3
--- a/src/namei.c
Kmods SIG 50e2b3
+++ b/src/namei.c
Kmods SIG 50e2b3
@@ -1094,11 +1094,6 @@ static int exfat_move_file(struct inode *inode, struct exfat_chain *p_olddir,
Kmods SIG 50e2b3
 	if (!epmov)
Kmods SIG 50e2b3
 		return -EIO;
Kmods SIG 50e2b3
 
Kmods SIG 50e2b3
-	/* check if the source and target directory is the same */
Kmods SIG 50e2b3
-	if (exfat_get_entry_type(epmov) == TYPE_DIR &&
Kmods SIG 50e2b3
-	    le32_to_cpu(epmov->dentry.stream.start_clu) == p_newdir->dir)
Kmods SIG 50e2b3
-		return -EINVAL;
Kmods SIG 50e2b3
-
Kmods SIG 50e2b3
 	num_old_entries = exfat_count_ext_entries(sb, p_olddir, oldentry,
Kmods SIG 50e2b3
 		epmov);
Kmods SIG 50e2b3
 	if (num_old_entries < 0)
Kmods SIG 50e2b3
-- 
Kmods SIG 50e2b3
2.31.1
Kmods SIG 50e2b3