diff options
author | Konstantin Komarov <almaz.alexandrovich@paragon-software.com> | 2023-02-14 14:00:04 +0400 |
---|---|---|
committer | Konstantin Komarov <almaz.alexandrovich@paragon-software.com> | 2023-03-27 16:59:20 +0400 |
commit | 1a6be5fb156a1a7e1c81d30ca4ca48bca99b7ca1 (patch) | |
tree | 823cd8ce532d3c4f63b35e3ef27a496c805d57d9 /fs/ntfs3 | |
parent | 63e92a0c5a0d5816803907a3e30a91ef72c903a5 (diff) |
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>
Diffstat (limited to 'fs/ntfs3')
-rw-r--r-- | fs/ntfs3/ntfs_fs.h | 1 | ||||
-rw-r--r-- | fs/ntfs3/super.c | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/fs/ntfs3/ntfs_fs.h b/fs/ntfs3/ntfs_fs.h index 50b7fb71ca26..7845c627a761 100644 --- a/fs/ntfs3/ntfs_fs.h +++ b/fs/ntfs3/ntfs_fs.h @@ -163,7 +163,6 @@ struct wnd_bitmap { size_t zone_bit; size_t zone_end; - bool set_tail; // Not necessary in driver. bool inited; }; diff --git a/fs/ntfs3/super.c b/fs/ntfs3/super.c index 10c019ef7da3..d7bec9b28a42 100644 --- a/fs/ntfs3/super.c +++ b/fs/ntfs3/super.c @@ -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; |