diff options
author | Konstantin Komarov <almaz.alexandrovich@paragon-software.com> | 2022-10-11 19:12:02 +0200 |
---|---|---|
committer | Konstantin Komarov <almaz.alexandrovich@paragon-software.com> | 2022-11-14 17:50:47 +0100 |
commit | 97a6815e50619377704e6566fb2b77c1aa4e2647 (patch) | |
tree | 64edfff0d92604c8f00f9d0c2fcd4f7d6499c88f /fs/ntfs3/ntfs_fs.h | |
parent | fs/ntfs3: Fix incorrect if in ntfs_set_acl_ex (diff) | |
download | linux-97a6815e50619377704e6566fb2b77c1aa4e2647.tar.xz linux-97a6815e50619377704e6566fb2b77c1aa4e2647.zip |
fs/ntfs3: Use ALIGN kernel macro
This way code will be more readable.
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
Diffstat (limited to 'fs/ntfs3/ntfs_fs.h')
-rw-r--r-- | fs/ntfs3/ntfs_fs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/ntfs3/ntfs_fs.h b/fs/ntfs3/ntfs_fs.h index 8dd835626c7e..1ab8bbaf8eaa 100644 --- a/fs/ntfs3/ntfs_fs.h +++ b/fs/ntfs3/ntfs_fs.h @@ -199,6 +199,8 @@ struct ntfs_index { /* Minimum MFT zone. */ #define NTFS_MIN_MFT_ZONE 100 +/* Step to increase the MFT. */ +#define NTFS_MFT_INCREASE_STEP 1024 /* Ntfs file system in-core superblock data. */ struct ntfs_sb_info { |