From ed70e3fbd3788d5a6584a26d7ddb4b445a48bff7 Mon Sep 17 00:00:00 2001 From: Christoph Lameter Date: Wed, 25 Jul 2007 20:36:26 -0700 Subject: [PATCH] vps_filesystem_xfs Large blocksize support in XFS From: David Chinner The only thing that needs to change to enable Large Block I/O is to remove the check for a too large blocksize ;-) Signed-off-by: Dave Chinner Signed-off-by: Christoph Lameter --- fs/xfs/xfs_mount.c | 13 ------------- 1 files changed, 0 insertions(+), 13 deletions(-) diff --git a/fs/xfs/xfs_mount.c b/fs/xfs/xfs_mount.c index a66b398..47ddc89 100644 --- a/fs/xfs/xfs_mount.c +++ b/fs/xfs/xfs_mount.c @@ -326,19 +326,6 @@ xfs_mount_validate_sb( return XFS_ERROR(ENOSYS); } - /* - * Until this is fixed only page-sized or smaller data blocks work. - */ - if (unlikely(sbp->sb_blocksize > PAGE_SIZE)) { - xfs_fs_mount_cmn_err(flags, - "file system with blocksize %d bytes", - sbp->sb_blocksize); - xfs_fs_mount_cmn_err(flags, - "only pagesize (%ld) or less will currently work.", - PAGE_SIZE); - return XFS_ERROR(ENOSYS); - } - return 0; } -- 1.4.4.4