aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/fs/exfat/inode.c
diff options
context:
space:
mode:
authorYuezhang Mo <Yuezhang.Mo@sony.com>2022-08-05 16:57:04 +0800
committerNamjae Jeon <linkinjeon@kernel.org>2024-03-19 20:56:01 +0900
commit4d714559768911b4738dca521ca38be84a8444b5 (patch)
tree1d9a99b61d6b5474ae42faee77b749b7ac45bd73 /fs/exfat/inode.c
parentexfat: convert exfat_find_empty_entry() to use dentry cache (diff)
downloadwireguard-linux-4d714559768911b4738dca521ca38be84a8444b5.tar.xz
wireguard-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 '')
-rw-r--r--fs/exfat/inode.c2
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);
}