From mboxrd@z Thu Jan 1 00:00:00 1970 From: Badari Pulavarty Subject: Re: [ANNOUNCE] new new aops patchset Date: Mon, 02 Apr 2007 16:31:22 -0700 Message-ID: <1175556682.24533.16.camel@dyn9047017100.beaverton.ibm.com> References: <20070402120934.GA19626@wotan.suse.de> Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit Cc: Linux Filesystems , Mark Fasheh , Steven Whitehouse To: Nick Piggin Return-path: Received: from e31.co.us.ibm.com ([32.97.110.149]:37270 "EHLO e31.co.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S966104AbXDBXbV (ORCPT ); Mon, 2 Apr 2007 19:31:21 -0400 Received: from d03relay02.boulder.ibm.com (d03relay02.boulder.ibm.com [9.17.195.227]) by e31.co.us.ibm.com (8.13.8/8.13.8) with ESMTP id l32NVLXs019650 for ; Mon, 2 Apr 2007 19:31:21 -0400 Received: from d03av02.boulder.ibm.com (d03av02.boulder.ibm.com [9.17.195.168]) by d03relay02.boulder.ibm.com (8.13.8/8.13.8/NCO v8.3) with ESMTP id l32NVLX3046922 for ; Mon, 2 Apr 2007 17:31:21 -0600 Received: from d03av02.boulder.ibm.com (loopback [127.0.0.1]) by d03av02.boulder.ibm.com (8.12.11.20060308/8.13.3) with ESMTP id l32NVK0A004704 for ; Mon, 2 Apr 2007 17:31:20 -0600 In-Reply-To: <20070402120934.GA19626@wotan.suse.de> Sender: linux-fsdevel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org On Mon, 2007-04-02 at 14:09 +0200, Nick Piggin wrote: > Updated aops patchset against 2.6.21-rc5. > > http://www.kernel.org/pub/linux/kernel/people/npiggin/patches/new-aops/ > Sorry to send you so many silly fixes, but I though it would be easy to review individual ones. Thanks, Badari --- mm/filemap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: linux-2.6.21-rc5/mm/filemap.c =================================================================== --- linux-2.6.21-rc5.orig/mm/filemap.c 2007-04-02 13:45:56.000000000 -0700 +++ linux-2.6.21-rc5/mm/filemap.c 2007-04-02 16:23:48.000000000 -0700 @@ -2107,7 +2107,7 @@ int pagecache_write_end(struct file *fil const struct address_space_operations *aops = mapping->a_ops; int ret; - if (aops->write_begin) { + if (aops->write_end) { ret = aops->write_end(file, mapping, pos, len, copied, page, fsdata); } else {