diff options
author | Linus Torvalds | 2022-06-26 08:41:04 -0700 |
---|---|---|
committer | Linus Torvalds | 2022-06-26 08:41:04 -0700 |
commit | 97d4d0269706c468ec57cbb95a79f1a5c8fd1892 (patch) | |
tree | d5f610e8e3f4277bada5044a0c7c8e436a981dbd /fs | |
parent | 918c30dffd14cd3f4af1e67cb40db91a008fc4fe (diff) | |
parent | 204e6ceaa1035cb7b92b156517e88842ebb4c7ff (diff) |
Merge tag 'exfat-for-5.19-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/linkinjeon/exfat
Pull exfat fix from Namjae Jeon:
- Use updated exfat_chain directly instead of snapshot values in
rename.
* tag 'exfat-for-5.19-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/linkinjeon/exfat:
exfat: use updated exfat_chain directly during renaming
Diffstat (limited to 'fs')
-rw-r--r-- | fs/exfat/namei.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/exfat/namei.c b/fs/exfat/namei.c index 76acc3721951..c6eaf7e9ea74 100644 --- a/fs/exfat/namei.c +++ b/fs/exfat/namei.c @@ -1198,7 +1198,9 @@ static int __exfat_rename(struct inode *old_parent_inode, return -ENOENT; } - exfat_chain_dup(&olddir, &ei->dir); + exfat_chain_set(&olddir, EXFAT_I(old_parent_inode)->start_clu, + EXFAT_B_TO_CLU_ROUND_UP(i_size_read(old_parent_inode), sbi), + EXFAT_I(old_parent_inode)->flags); dentry = ei->entry; ep = exfat_get_dentry(sb, &olddir, dentry, &old_bh); |