diff options
author | Konstantin Komarov <almaz.alexandrovich@paragon-software.com> | 2021-09-09 13:15:20 +0300 |
---|---|---|
committer | Konstantin Komarov <almaz.alexandrovich@paragon-software.com> | 2021-09-21 18:37:01 +0300 |
commit | 6354467245ff8dd04b54e39790f2ee4d21d5419e (patch) | |
tree | 5113b96325e1f9813687c626827cfb4a6fdae3a5 /fs/ntfs3/attrib.c | |
parent | 56eaeb10e2619081cc383febf6740a4c3e806777 (diff) | |
download | linux-6354467245ff8dd04b54e39790f2ee4d21d5419e.tar.xz |
fs/ntfs3: Add sync flag to ntfs_sb_write_run and al_update
This allows to wait only when it's requested.
It speeds up creation of hardlinks.
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
Diffstat (limited to 'fs/ntfs3/attrib.c')
-rw-r--r-- | fs/ntfs3/attrib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ntfs3/attrib.c b/fs/ntfs3/attrib.c index c15cc17e3cd9..8a00fa978f5f 100644 --- a/fs/ntfs3/attrib.c +++ b/fs/ntfs3/attrib.c @@ -287,7 +287,7 @@ int attr_make_nonresident(struct ntfs_inode *ni, struct ATTRIB *attr, if (!rsize) { /* Empty resident -> Non empty nonresident. */ } else if (!is_data) { - err = ntfs_sb_write_run(sbi, run, 0, data, rsize); + err = ntfs_sb_write_run(sbi, run, 0, data, rsize, 0); if (err) goto out2; } else if (!page) { |