From: Jan Kara Subject: Re: [PATCH 1/2] [PATCH] ext4: Add inode to the orphan list during block allocation failure Date: Sat, 6 Jun 2009 01:44:58 +0200 Message-ID: <20090605234458.GG11650@duck.suse.cz> References: <20090331044544.GB5979@skywalker> <1238491766-13182-1-git-send-email-aneesh.kumar@linux.vnet.ibm.com> <20090405031116.GG7553@mit.edu> <20090406100509.GB31189@duck.suse.cz> <20090605043117.GB4046@mit.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Jan Kara , "Aneesh Kumar K.V" , linux-ext4@vger.kernel.org To: Theodore Tso Return-path: Received: from cantor.suse.de ([195.135.220.2]:49715 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757041AbZFEXo7 (ORCPT ); Fri, 5 Jun 2009 19:44:59 -0400 Content-Disposition: inline In-Reply-To: <20090605043117.GB4046@mit.edu> Sender: linux-ext4-owner@vger.kernel.org List-ID: On Fri 05-06-09 00:31:17, Theodore Tso wrote: > On Mon, Apr 06, 2009 at 12:05:09PM +0200, Jan Kara wrote: > > > I think this can be fixed by making sure that ext4_truncate() and > > > ext4_ext_truncate() calls ext4_orphan_del() in *all* of their error > > > paths. That *should* the problem, since at the moment, it doesn't > > > look vmtruncate() will return without calling inode->i_op->truncate(). > > > But could you double check this carefully? > > > > Ah, OK, that should be fixed. But note that current ext4_setattr() > > does exactly the same thing on standard truncates - it adds inode to > > orphan list and calls inode_setattr() which end's up calling vmtruncate(). > > I finally had a chance to take a closer look at this. ext4_setattr() > is safe, because it does this after calling inode_setattr(): > > /* If inode_setattr's call to ext4_truncate failed to get a > * transaction handle at all, we need to clean up the in-core > * orphan list manually. */ > if (inode->i_nlink) > ext4_orphan_del(NULL, inode); > > So if we put the same thing into the ext4_write_begin() and > ext4_writeback_write_end() in these patches, it should be OK. The key > is that if the inode is already is on the orphan list, it's harmless > to call ext4_orphan_add() --- and if the inode has already been > removed from the orphan list, it's harmless to call ext4_orphan_del() > on it. Ah, good point. I haven't noticed this in ext4_inode_setattr when I was checking it. Aneesh, will you take care of it for ext4? I'll cook up an appropriate change for ext3... Thanks Ted for looking into this. Honza -- Jan Kara SUSE Labs, CR