fs/ntfs3: Remove field sbi->used.bitmap.set_tail

This field is not used in driver.

Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
This commit is contained in:
Konstantin Komarov 2023-02-14 14:00:04 +04:00
parent 63e92a0c5a
commit 1a6be5fb15
No known key found for this signature in database
GPG Key ID: A9B0331F832407B6
2 changed files with 0 additions and 3 deletions

View File

@ -163,7 +163,6 @@ struct wnd_bitmap {
size_t zone_bit;
size_t zone_end;
bool set_tail; // Not necessary in driver.
bool inited;
};

View File

@ -1117,8 +1117,6 @@ static int ntfs_fill_super(struct super_block *sb, struct fs_context *fc)
goto put_inode_out;
}
/* Not necessary. */
sbi->used.bitmap.set_tail = true;
err = wnd_init(&sbi->used.bitmap, sb, tt);
if (err)
goto put_inode_out;