[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <4FAFBC30.4040305@gmail.com>
Date: Sun, 13 May 2012 15:50:40 +0200
From: Vladimir 'φ-coder/phcoder' Serbinenko
<phcoder@...il.com>
To: linux-fsdevel@...r.kernel.org, linux-kernel@...r.kernel.org
CC: Evgeniy Dushistov <dushistov@...l.ru>
Subject: [PATCH] Increase file size limit on FreeBSD UFS flavours
Increase the file size limit on FreeBSD UFS flavours.
Signed-off-by: Vladimir Serbinenko <phcoder@...il.com>
diff --git a/fs/ufs/super.c b/fs/ufs/super.c
index ac8e279..7e80a68 100644
--- a/fs/ufs/super.c
+++ b/fs/ufs/super.c
@@ -768,6 +768,7 @@ static int ufs_fill_super(struct super_block *sb, void *data, int silent)
uspi->s_fshift = 9;
uspi->s_sbsize = super_block_size = 1536;
uspi->s_sbbase = 0;
+ sb->s_maxbytes = MAX_LFS_FILESIZE;
flags |= UFS_DE_44BSD | UFS_UID_44BSD | UFS_ST_44BSD | UFS_CG_44BSD;
break;
case UFS_MOUNT_UFSTYPE_UFS2:
@@ -778,6 +779,7 @@ static int ufs_fill_super(struct super_block *sb, void *data, int silent)
uspi->s_fshift = 9;
uspi->s_sbsize = super_block_size = 1536;
uspi->s_sbbase = 0;
+ sb->s_maxbytes = MAX_LFS_FILESIZE;
flags |= UFS_TYPE_UFS2 | UFS_DE_44BSD | UFS_UID_44BSD | UFS_ST_44BSD | UFS_CG_44BSD;
break;
Download attachment "signature.asc" of type "application/pgp-signature" (295 bytes)
Powered by blists - more mailing lists