|
Kmods SIG |
50e2b3 |
From 188df41f212c9282f6cb05b832383ffca3c66893 Mon Sep 17 00:00:00 2001
|
|
Kmods SIG |
50e2b3 |
From: Tetsuhiro Kohada <kohada.t2@gmail.com>
|
|
Kmods SIG |
50e2b3 |
Date: Wed, 2 Sep 2020 16:53:06 +0900
|
|
Kmods SIG |
50e2b3 |
Subject: [Backport 188df41f212c] exfat: eliminate dead code in exfat_find()
|
|
Kmods SIG |
50e2b3 |
|
|
Kmods SIG |
50e2b3 |
The exfat_find_dir_entry() called by exfat_find() doesn't return -EEXIST.
|
|
Kmods SIG |
50e2b3 |
Therefore, the root-dir information setting is never executed.
|
|
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/dir.c | 1 -
|
|
Kmods SIG |
50e2b3 |
src/namei.c | 120 +++++++++++++++++++----------------------------
|
|
Kmods SIG |
50e2b3 |
2 files changed, 47 insertions(+), 74 deletions(-)
|
|
Kmods SIG |
50e2b3 |
|
|
Kmods SIG |
50e2b3 |
diff --git a/src/dir.c b/src/dir.c
|
|
Kmods SIG |
50e2b3 |
index 573659bfbc5542f20d1181e95ef292f341aab0d6..a9b13ae3f325fcbf628657981055b91b5079d5f6 100644
|
|
Kmods SIG |
50e2b3 |
--- a/src/dir.c
|
|
Kmods SIG |
50e2b3 |
+++ b/src/dir.c
|
|
Kmods SIG |
50e2b3 |
@@ -911,7 +911,6 @@ enum {
|
|
Kmods SIG |
50e2b3 |
/*
|
|
Kmods SIG |
50e2b3 |
* return values:
|
|
Kmods SIG |
50e2b3 |
* >= 0 : return dir entiry position with the name in dir
|
|
Kmods SIG |
50e2b3 |
- * -EEXIST : (root dir, ".") it is the root dir itself
|
|
Kmods SIG |
50e2b3 |
* -ENOENT : entry with the name does not exist
|
|
Kmods SIG |
50e2b3 |
* -EIO : I/O error
|
|
Kmods SIG |
50e2b3 |
*/
|
|
Kmods SIG |
50e2b3 |
diff --git a/src/namei.c b/src/namei.c
|
|
Kmods SIG |
50e2b3 |
index 0b12033e15777966a05bdec5492eacd86b262e11..b966b9120c9ca25e8519b05bdacc5e17ced0f9da 100644
|
|
Kmods SIG |
50e2b3 |
--- a/src/namei.c
|
|
Kmods SIG |
50e2b3 |
+++ b/src/namei.c
|
|
Kmods SIG |
50e2b3 |
@@ -604,6 +604,8 @@ static int exfat_find(struct inode *dir, struct qstr *qname,
|
|
Kmods SIG |
50e2b3 |
struct super_block *sb = dir->i_sb;
|
|
Kmods SIG |
50e2b3 |
struct exfat_sb_info *sbi = EXFAT_SB(sb);
|
|
Kmods SIG |
50e2b3 |
struct exfat_inode_info *ei = EXFAT_I(dir);
|
|
Kmods SIG |
50e2b3 |
+ struct exfat_dentry *ep, *ep2;
|
|
Kmods SIG |
50e2b3 |
+ struct exfat_entry_set_cache *es;
|
|
Kmods SIG |
50e2b3 |
|
|
Kmods SIG |
50e2b3 |
if (qname->len == 0)
|
|
Kmods SIG |
50e2b3 |
return -ENOENT;
|
|
Kmods SIG |
50e2b3 |
@@ -629,91 +631,63 @@ static int exfat_find(struct inode *dir, struct qstr *qname,
|
|
Kmods SIG |
50e2b3 |
dentry = exfat_find_dir_entry(sb, ei, &cdir, &uni_name,
|
|
Kmods SIG |
50e2b3 |
num_entries, TYPE_ALL);
|
|
Kmods SIG |
50e2b3 |
|
|
Kmods SIG |
50e2b3 |
- if ((dentry < 0) && (dentry != -EEXIST))
|
|
Kmods SIG |
50e2b3 |
+ if (dentry < 0)
|
|
Kmods SIG |
50e2b3 |
return dentry; /* -error value */
|
|
Kmods SIG |
50e2b3 |
|
|
Kmods SIG |
50e2b3 |
memcpy(&info->dir, &cdir.dir, sizeof(struct exfat_chain));
|
|
Kmods SIG |
50e2b3 |
info->entry = dentry;
|
|
Kmods SIG |
50e2b3 |
info->num_subdirs = 0;
|
|
Kmods SIG |
50e2b3 |
|
|
Kmods SIG |
50e2b3 |
- /* root directory itself */
|
|
Kmods SIG |
50e2b3 |
- if (unlikely(dentry == -EEXIST)) {
|
|
Kmods SIG |
50e2b3 |
- int num_clu = 0;
|
|
Kmods SIG |
50e2b3 |
+ es = exfat_get_dentry_set(sb, &cdir, dentry, ES_2_ENTRIES);
|
|
Kmods SIG |
50e2b3 |
+ if (!es)
|
|
Kmods SIG |
50e2b3 |
+ return -EIO;
|
|
Kmods SIG |
50e2b3 |
+ ep = exfat_get_dentry_cached(es, 0);
|
|
Kmods SIG |
50e2b3 |
+ ep2 = exfat_get_dentry_cached(es, 1);
|
|
Kmods SIG |
50e2b3 |
+
|
|
Kmods SIG |
50e2b3 |
+ info->type = exfat_get_entry_type(ep);
|
|
Kmods SIG |
50e2b3 |
+ info->attr = le16_to_cpu(ep->dentry.file.attr);
|
|
Kmods SIG |
50e2b3 |
+ info->size = le64_to_cpu(ep2->dentry.stream.valid_size);
|
|
Kmods SIG |
50e2b3 |
+ if ((info->type == TYPE_FILE) && (info->size == 0)) {
|
|
Kmods SIG |
50e2b3 |
+ info->flags = ALLOC_NO_FAT_CHAIN;
|
|
Kmods SIG |
50e2b3 |
+ info->start_clu = EXFAT_EOF_CLUSTER;
|
|
Kmods SIG |
50e2b3 |
+ } else {
|
|
Kmods SIG |
50e2b3 |
+ info->flags = ep2->dentry.stream.flags;
|
|
Kmods SIG |
50e2b3 |
+ info->start_clu =
|
|
Kmods SIG |
50e2b3 |
+ le32_to_cpu(ep2->dentry.stream.start_clu);
|
|
Kmods SIG |
50e2b3 |
+ }
|
|
Kmods SIG |
50e2b3 |
|
|
Kmods SIG |
50e2b3 |
- info->type = TYPE_DIR;
|
|
Kmods SIG |
50e2b3 |
- info->attr = ATTR_SUBDIR;
|
|
Kmods SIG |
50e2b3 |
- info->flags = ALLOC_FAT_CHAIN;
|
|
Kmods SIG |
50e2b3 |
- info->start_clu = sbi->root_dir;
|
|
Kmods SIG |
50e2b3 |
- memset(&info->crtime, 0, sizeof(info->crtime));
|
|
Kmods SIG |
50e2b3 |
- memset(&info->mtime, 0, sizeof(info->mtime));
|
|
Kmods SIG |
50e2b3 |
- memset(&info->atime, 0, sizeof(info->atime));
|
|
Kmods SIG |
50e2b3 |
-
|
|
Kmods SIG |
50e2b3 |
- exfat_chain_set(&cdir, sbi->root_dir, 0, ALLOC_FAT_CHAIN);
|
|
Kmods SIG |
50e2b3 |
- if (exfat_count_num_clusters(sb, &cdir, &num_clu))
|
|
Kmods SIG |
50e2b3 |
- return -EIO;
|
|
Kmods SIG |
50e2b3 |
- info->size = num_clu << sbi->cluster_size_bits;
|
|
Kmods SIG |
50e2b3 |
+ exfat_get_entry_time(sbi, &info->crtime,
|
|
Kmods SIG |
50e2b3 |
+ ep->dentry.file.create_tz,
|
|
Kmods SIG |
50e2b3 |
+ ep->dentry.file.create_time,
|
|
Kmods SIG |
50e2b3 |
+ ep->dentry.file.create_date,
|
|
Kmods SIG |
50e2b3 |
+ ep->dentry.file.create_time_cs);
|
|
Kmods SIG |
50e2b3 |
+ exfat_get_entry_time(sbi, &info->mtime,
|
|
Kmods SIG |
50e2b3 |
+ ep->dentry.file.modify_tz,
|
|
Kmods SIG |
50e2b3 |
+ ep->dentry.file.modify_time,
|
|
Kmods SIG |
50e2b3 |
+ ep->dentry.file.modify_date,
|
|
Kmods SIG |
50e2b3 |
+ ep->dentry.file.modify_time_cs);
|
|
Kmods SIG |
50e2b3 |
+ exfat_get_entry_time(sbi, &info->atime,
|
|
Kmods SIG |
50e2b3 |
+ ep->dentry.file.access_tz,
|
|
Kmods SIG |
50e2b3 |
+ ep->dentry.file.access_time,
|
|
Kmods SIG |
50e2b3 |
+ ep->dentry.file.access_date,
|
|
Kmods SIG |
50e2b3 |
+ 0);
|
|
Kmods SIG |
50e2b3 |
+ exfat_free_dentry_set(es, false);
|
|
Kmods SIG |
50e2b3 |
+
|
|
Kmods SIG |
50e2b3 |
+ if (ei->start_clu == EXFAT_FREE_CLUSTER) {
|
|
Kmods SIG |
50e2b3 |
+ exfat_fs_error(sb,
|
|
Kmods SIG |
50e2b3 |
+ "non-zero size file starts with zero cluster (size : %llu, p_dir : %u, entry : 0x%08x)",
|
|
Kmods SIG |
50e2b3 |
+ i_size_read(dir), ei->dir.dir, ei->entry);
|
|
Kmods SIG |
50e2b3 |
+ return -EIO;
|
|
Kmods SIG |
50e2b3 |
+ }
|
|
Kmods SIG |
50e2b3 |
|
|
Kmods SIG |
50e2b3 |
+ if (info->type == TYPE_DIR) {
|
|
Kmods SIG |
50e2b3 |
+ exfat_chain_set(&cdir, info->start_clu,
|
|
Kmods SIG |
50e2b3 |
+ EXFAT_B_TO_CLU(info->size, sbi), info->flags);
|
|
Kmods SIG |
50e2b3 |
count = exfat_count_dir_entries(sb, &cdir);
|
|
Kmods SIG |
50e2b3 |
if (count < 0)
|
|
Kmods SIG |
50e2b3 |
return -EIO;
|
|
Kmods SIG |
50e2b3 |
|
|
Kmods SIG |
50e2b3 |
- info->num_subdirs = count;
|
|
Kmods SIG |
50e2b3 |
- } else {
|
|
Kmods SIG |
50e2b3 |
- struct exfat_dentry *ep, *ep2;
|
|
Kmods SIG |
50e2b3 |
- struct exfat_entry_set_cache *es;
|
|
Kmods SIG |
50e2b3 |
-
|
|
Kmods SIG |
50e2b3 |
- es = exfat_get_dentry_set(sb, &cdir, dentry, ES_2_ENTRIES);
|
|
Kmods SIG |
50e2b3 |
- if (!es)
|
|
Kmods SIG |
50e2b3 |
- return -EIO;
|
|
Kmods SIG |
50e2b3 |
- ep = exfat_get_dentry_cached(es, 0);
|
|
Kmods SIG |
50e2b3 |
- ep2 = exfat_get_dentry_cached(es, 1);
|
|
Kmods SIG |
50e2b3 |
-
|
|
Kmods SIG |
50e2b3 |
- info->type = exfat_get_entry_type(ep);
|
|
Kmods SIG |
50e2b3 |
- info->attr = le16_to_cpu(ep->dentry.file.attr);
|
|
Kmods SIG |
50e2b3 |
- info->size = le64_to_cpu(ep2->dentry.stream.valid_size);
|
|
Kmods SIG |
50e2b3 |
- if ((info->type == TYPE_FILE) && (info->size == 0)) {
|
|
Kmods SIG |
50e2b3 |
- info->flags = ALLOC_NO_FAT_CHAIN;
|
|
Kmods SIG |
50e2b3 |
- info->start_clu = EXFAT_EOF_CLUSTER;
|
|
Kmods SIG |
50e2b3 |
- } else {
|
|
Kmods SIG |
50e2b3 |
- info->flags = ep2->dentry.stream.flags;
|
|
Kmods SIG |
50e2b3 |
- info->start_clu =
|
|
Kmods SIG |
50e2b3 |
- le32_to_cpu(ep2->dentry.stream.start_clu);
|
|
Kmods SIG |
50e2b3 |
- }
|
|
Kmods SIG |
50e2b3 |
-
|
|
Kmods SIG |
50e2b3 |
- if (ei->start_clu == EXFAT_FREE_CLUSTER) {
|
|
Kmods SIG |
50e2b3 |
- exfat_fs_error(sb,
|
|
Kmods SIG |
50e2b3 |
- "non-zero size file starts with zero cluster (size : %llu, p_dir : %u, entry : 0x%08x)",
|
|
Kmods SIG |
50e2b3 |
- i_size_read(dir), ei->dir.dir, ei->entry);
|
|
Kmods SIG |
50e2b3 |
- exfat_free_dentry_set(es, false);
|
|
Kmods SIG |
50e2b3 |
- return -EIO;
|
|
Kmods SIG |
50e2b3 |
- }
|
|
Kmods SIG |
50e2b3 |
-
|
|
Kmods SIG |
50e2b3 |
- exfat_get_entry_time(sbi, &info->crtime,
|
|
Kmods SIG |
50e2b3 |
- ep->dentry.file.create_tz,
|
|
Kmods SIG |
50e2b3 |
- ep->dentry.file.create_time,
|
|
Kmods SIG |
50e2b3 |
- ep->dentry.file.create_date,
|
|
Kmods SIG |
50e2b3 |
- ep->dentry.file.create_time_cs);
|
|
Kmods SIG |
50e2b3 |
- exfat_get_entry_time(sbi, &info->mtime,
|
|
Kmods SIG |
50e2b3 |
- ep->dentry.file.modify_tz,
|
|
Kmods SIG |
50e2b3 |
- ep->dentry.file.modify_time,
|
|
Kmods SIG |
50e2b3 |
- ep->dentry.file.modify_date,
|
|
Kmods SIG |
50e2b3 |
- ep->dentry.file.modify_time_cs);
|
|
Kmods SIG |
50e2b3 |
- exfat_get_entry_time(sbi, &info->atime,
|
|
Kmods SIG |
50e2b3 |
- ep->dentry.file.access_tz,
|
|
Kmods SIG |
50e2b3 |
- ep->dentry.file.access_time,
|
|
Kmods SIG |
50e2b3 |
- ep->dentry.file.access_date,
|
|
Kmods SIG |
50e2b3 |
- 0);
|
|
Kmods SIG |
50e2b3 |
- exfat_free_dentry_set(es, false);
|
|
Kmods SIG |
50e2b3 |
-
|
|
Kmods SIG |
50e2b3 |
- if (info->type == TYPE_DIR) {
|
|
Kmods SIG |
50e2b3 |
- exfat_chain_set(&cdir, info->start_clu,
|
|
Kmods SIG |
50e2b3 |
- EXFAT_B_TO_CLU(info->size, sbi), info->flags);
|
|
Kmods SIG |
50e2b3 |
- count = exfat_count_dir_entries(sb, &cdir);
|
|
Kmods SIG |
50e2b3 |
- if (count < 0)
|
|
Kmods SIG |
50e2b3 |
- return -EIO;
|
|
Kmods SIG |
50e2b3 |
-
|
|
Kmods SIG |
50e2b3 |
- info->num_subdirs = count + EXFAT_MIN_SUBDIR;
|
|
Kmods SIG |
50e2b3 |
- }
|
|
Kmods SIG |
50e2b3 |
+ info->num_subdirs = count + EXFAT_MIN_SUBDIR;
|
|
Kmods SIG |
50e2b3 |
}
|
|
Kmods SIG |
50e2b3 |
return 0;
|
|
Kmods SIG |
50e2b3 |
}
|
|
Kmods SIG |
50e2b3 |
--
|
|
Kmods SIG |
50e2b3 |
2.31.1
|
|
Kmods SIG |
50e2b3 |
|