From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joe Perches Subject: Re: [PATCH] isofs: Fix lseek() to position beyond 4 GB Date: Tue, 03 Aug 2010 14:23:57 -0700 Message-ID: <1280870637.6088.24.camel@Joe-Laptop.home> References: <20100803211814.GA4436@pitr.home.jan> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Cc: linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org To: Jan Andres Return-path: In-Reply-To: <20100803211814.GA4436@pitr.home.jan> Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org On Tue, 2010-08-03 at 23:18 +0200, Jan Andres wrote: > isofs supports files larger than 4 GB by using multi-extent files. > However an lseek() to a position beyond 4 GB in such a file will > fail with EINVAL, because s_maxbytes in the isofs superblock is > initialized to 2^32-1, and generic_file_llseek() checks against > that value. > --- linux-2.6.35-j7/fs/isofs/inode.c.orig 2010-08-02 00:11:14.000000000 +0200 > +++ linux-2.6.35-j7/fs/isofs/inode.c 2010-08-03 22:54:38.000000000 +0200 > + s->s_maxbytes = 0x80000000000; 0x80000000000LL;