mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
fs/ntfs3: Remove always false condition check
We do not need this check as this is same thing as NTFS_MIN_MFT_ZONE > zlen. We already check NTFS_MIN_MFT_ZONE <= zlen and exit because is too big request. Remove it so code is cleaner. Signed-off-by: Kari Argillander <kari.argillander@gmail.com> Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
This commit is contained in:
parent
edb853ff3d
commit
f162f7b8db
@ -422,11 +422,8 @@ int ntfs_look_for_free_space(struct ntfs_sb_info *sbi, CLST lcn, CLST len,
|
||||
ztrim = len > zlen ? zlen : (len > zlen2 ? len : zlen2);
|
||||
new_zlen = zlen - ztrim;
|
||||
|
||||
if (new_zlen < NTFS_MIN_MFT_ZONE) {
|
||||
if (new_zlen < NTFS_MIN_MFT_ZONE)
|
||||
new_zlen = NTFS_MIN_MFT_ZONE;
|
||||
if (new_zlen > zlen)
|
||||
new_zlen = zlen;
|
||||
}
|
||||
|
||||
wnd_zone_set(wnd, zlcn, new_zlen);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user