diff options
author | Pankaj Raghav <p.raghav@samsung.com> | 2024-08-22 15:50:18 +0200 |
---|---|---|
committer | Christian Brauner <brauner@kernel.org> | 2024-09-03 15:00:52 +0200 |
commit | 7df7c204c678e24cd32d33360538670b7b90e330 (patch) | |
tree | 9fc1af709d984fea1688cf55aae9b774419abc4f /fs/xfs/xfs_mount.c | |
parent | xfs: make the calculation generic in xfs_sb_validate_fsb_count() (diff) | |
download | linux-7df7c204c678e24cd32d33360538670b7b90e330.tar.xz linux-7df7c204c678e24cd32d33360538670b7b90e330.zip |
xfs: enable block size larger than page size support
Page cache now has the ability to have a minimum order when allocating
a folio which is a prerequisite to add support for block size > page
size.
Signed-off-by: Pankaj Raghav <p.raghav@samsung.com>
Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
Link: https://lore.kernel.org/r/20240827-xfs-fix-wformat-bs-gt-ps-v1-1-aec6717609e0@kernel.org # fix folded
Link: https://lore.kernel.org/r/20240822135018.1931258-11-kernel@pankajraghav.com
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'fs/xfs/xfs_mount.c')
-rw-r--r-- | fs/xfs/xfs_mount.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/xfs/xfs_mount.c b/fs/xfs/xfs_mount.c index 3949f720b535..c6933440f806 100644 --- a/fs/xfs/xfs_mount.c +++ b/fs/xfs/xfs_mount.c @@ -134,7 +134,6 @@ xfs_sb_validate_fsb_count( { uint64_t max_bytes; - ASSERT(PAGE_SHIFT >= sbp->sb_blocklog); ASSERT(sbp->sb_blocklog >= BBSHIFT); if (check_shl_overflow(nblocks, sbp->sb_blocklog, &max_bytes)) |