Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Thu, 1 Mar 2001 15:58:38 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Thu, 1 Mar 2001 15:58:28 -0500 Received: from baldur.fh-brandenburg.de ([195.37.0.5]:53914 "HELO baldur.fh-brandenburg.de") by vger.kernel.org with SMTP id ; Thu, 1 Mar 2001 15:58:21 -0500 Date: Thu, 1 Mar 2001 21:56:23 +0100 (MET) From: Roman Zippel To: Alexander Viro cc: Alan Cox , gator@cs.tu-berlin.de, linux-kernel@vger.kernel.org Subject: Re: [CFT][PATCH] Re: fat problem in 2.4.2 In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Hi, On Thu, 1 Mar 2001, Alexander Viro wrote: > +static int generic_vm_expand(struct address_space *mapping, loff_t size) > +{ > + struct page *page; > + unsigned long index, offset; > + int err; > + > + if (!mapping->a_ops->prepare_write || !mapping->a_ops->commit_write) > + return -ENOSYS; > + > + offset = (size & (PAGE_CACHE_SIZE-1)); /* Within page */ > + index = size >> PAGE_CACHE_SHIFT; For affs I did basically the same with a small difference: offset = ((size-1) & (PAGE_CACHE_SIZE-1)) + 1; index = (size-1) >> PAGE_CACHE_SHIFT; That works fine here and allocates a page in the cache more likely to be used. bye, Roman - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/