diff options
author | Yuezhang Mo <Yuezhang.Mo@sony.com> | 2022-08-05 10:57:04 +0200 |
---|---|---|
committer | Namjae Jeon <linkinjeon@kernel.org> | 2024-03-19 12:56:01 +0100 |
commit | 4d714559768911b4738dca521ca38be84a8444b5 (patch) | |
tree | 1d9a99b61d6b5474ae42faee77b749b7ac45bd73 /fs/exfat/inode.c | |
parent | exfat: convert exfat_find_empty_entry() to use dentry cache (diff) | |
download | linux-4d714559768911b4738dca521ca38be84a8444b5.tar.xz linux-4d714559768911b4738dca521ca38be84a8444b5.zip |
exfat: remove unused functions
exfat_count_ext_entries() is no longer called, remove it.
exfat_update_dir_chksum() is no longer called, remove it and
rename exfat_update_dir_chksum_with_entry_set() to it.
Signed-off-by: Yuezhang Mo <Yuezhang.Mo@sony.com>
Reviewed-by: Andy Wu <Andy.Wu@sony.com>
Reviewed-by: Aoyama Wataru <wataru.aoyama@sony.com>
Reviewed-by: Sungjong Seo <sj1557.seo@samsung.com>
Signed-off-by: Namjae Jeon <linkinjeon@kernel.org>
Diffstat (limited to 'fs/exfat/inode.c')
-rw-r--r-- | fs/exfat/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/exfat/inode.c b/fs/exfat/inode.c index 0687f952956c..dd894e558c91 100644 --- a/fs/exfat/inode.c +++ b/fs/exfat/inode.c @@ -94,7 +94,7 @@ int __exfat_write_inode(struct inode *inode, int sync) ep2->dentry.stream.start_clu = EXFAT_FREE_CLUSTER; } - exfat_update_dir_chksum_with_entry_set(&es); + exfat_update_dir_chksum(&es); return exfat_put_dentry_set(&es, sync); } |