From mboxrd@z Thu Jan 1 00:00:00 1970 From: Boaz Harrosh Subject: [PATCH 2/3] [SQUASHME] exofs does support 64bit file sizes Date: Wed, 25 Mar 2009 11:50:52 +0200 Message-ID: <49C9FE7C.9060600@panasas.com> References: <49C9FD2E.3030201@panasas.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: Evgeniy Polyakov , Marcin Slusarz To: Andrew Morton , Jeff Garzik , open-osd mailing-list , linux-fsdevel Return-path: Received: from gw-ca.panasas.com ([209.116.51.66]:11236 "EHLO laguna.int.panasas.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1753933AbZCYJw2 (ORCPT ); Wed, 25 Mar 2009 05:52:28 -0400 In-Reply-To: <49C9FD2E.3030201@panasas.com> Sender: linux-fsdevel-owner@vger.kernel.org List-ID: Tell VFS that we support 64-bit files [SQUASH TO: exofs: super_operations and file_system_type] Signed-off-by: Boaz Harrosh --- fs/exofs/super.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/fs/exofs/super.c b/fs/exofs/super.c index feed8d2..7cfaaa0 100644 --- a/fs/exofs/super.c +++ b/fs/exofs/super.c @@ -305,6 +305,7 @@ static int exofs_fill_super(struct super_block *sb, void *data, int silent) strcpy(sb->s_id, "exofs"); sb->s_blocksize = EXOFS_BLKSIZE; sb->s_blocksize_bits = EXOFS_BLKSHIFT; + sb->s_maxbytes = MAX_LFS_FILESIZE; atomic_set(&sbi->s_curr_pending, 0); sb->s_bdev = NULL; sb->s_dev = 0; -- 1.6.2.1