From: Andrew Morton Subject: Re: [PATCH] ext4 calls journal_stop Date: Fri, 8 Dec 2006 00:14:08 -0800 Message-ID: <20061208001408.f8d33e76.akpm@osdl.org> References: <20061207221741.2012ad20.randy.dunlap@oracle.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: linux-ext4@vger.kernel.org Return-path: Received: from smtp.osdl.org ([65.172.181.25]:34025 "EHLO smtp.osdl.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1425152AbWLHIOT (ORCPT ); Fri, 8 Dec 2006 03:14:19 -0500 To: Randy Dunlap In-Reply-To: <20061207221741.2012ad20.randy.dunlap@oracle.com> Sender: linux-ext4-owner@vger.kernel.org List-Id: linux-ext4.vger.kernel.org On Thu, 7 Dec 2006 22:17:41 -0800 Randy Dunlap wrote: > From: Randy Dunlap > > journal_stop() is not defined for ext4; change to ext4_journal_stop(). > > Signed-off-by: Randy Dunlap > --- > fs/ext4/inode.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > --- linux-2.6.19-git11.orig/fs/ext4/inode.c > +++ linux-2.6.19-git11/fs/ext4/inode.c > @@ -1232,7 +1232,7 @@ retry: > from, to, NULL, do_journal_get_write_access); > if (ret) > /* fatal error, just put the handle and return */ > - journal_stop(handle); > + ext4_journal_stop(handle); rofl. That'll link and run if both filesystems are built. I bet it doesn't run very well though