diff options
author | Konstantin Komarov <almaz.alexandrovich@paragon-software.com> | 2022-06-30 19:14:43 +0300 |
---|---|---|
committer | Konstantin Komarov <almaz.alexandrovich@paragon-software.com> | 2022-08-03 18:25:06 +0300 |
commit | 071100ea0e6c353258f322cb2f8dde9be62d6808 (patch) | |
tree | 32e11122178d72eb2f1acad76bc424ea47841844 /fs/ntfs3/inode.c | |
parent | 6700eabb90d50c50be21ecbb71131cd6ecf91ded (diff) | |
download | lwn-071100ea0e6c353258f322cb2f8dde9be62d6808.tar.gz lwn-071100ea0e6c353258f322cb2f8dde9be62d6808.zip |
fs/ntfs3: Add new argument is_mft to ntfs_mark_rec_free
This argument helps in avoiding double locking
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
Diffstat (limited to 'fs/ntfs3/inode.c')
-rw-r--r-- | fs/ntfs3/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ntfs3/inode.c b/fs/ntfs3/inode.c index 6c78930be035..a49da4ec6dc3 100644 --- a/fs/ntfs3/inode.c +++ b/fs/ntfs3/inode.c @@ -1636,7 +1636,7 @@ out4: ni->mi.dirty = false; discard_new_inode(inode); out3: - ntfs_mark_rec_free(sbi, ino); + ntfs_mark_rec_free(sbi, ino, false); out2: __putname(new_de); |