Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1762567AbXFEBzw (ORCPT ); Mon, 4 Jun 2007 21:55:52 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1756130AbXFEBzo (ORCPT ); Mon, 4 Jun 2007 21:55:44 -0400 Received: from smtp2.linux-foundation.org ([207.189.120.14]:48658 "EHLO smtp2.linux-foundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754665AbXFEBzn (ORCPT ); Mon, 4 Jun 2007 21:55:43 -0400 Date: Mon, 4 Jun 2007 18:54:20 -0700 From: Andrew Morton To: Vasily Averin Cc: Linux Kernel Mailing List , devel@openvz.org, linux-ext4@vger.kernel.org, Stephen Tweedie , adilger@clusterfs.com Subject: Re: [PATCH ext3/ext4] orphan list check on destroy_inode Message-Id: <20070604185420.b4206698.akpm@linux-foundation.org> In-Reply-To: <4663A0BF.9010008@sw.ru> References: <4663A0BF.9010008@sw.ru> X-Mailer: Sylpheed 2.4.1 (GTK+ 2.8.17; x86_64-unknown-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1342 Lines: 35 On Mon, 04 Jun 2007 09:18:55 +0400 Vasily Averin wrote: > Customers claims to ext3-related errors, investigation showed that ext3 orphan list has been corrupted and have the reference to non-ext3 inode. The following debug helps to understand the reasons of this issue. > > Signed-off-by: Vasily Averin > > diff --git a/fs/ext3/super.c b/fs/ext3/super.c > index 6e30629..46e2fa6 100644 > --- a/fs/ext3/super.c > +++ b/fs/ext3/super.c > @@ -459,6 +459,21 @@ static struct inode *ext3_alloc_inode(struct super_block *sb) > > static void ext3_destroy_inode(struct inode *inode) > { > + if (!list_empty(&(EXT3_I(inode)->i_orphan))) { > + int i, imax; > + unsigned int *p; > + > + p = (unsigned int *)EXT3_I(inode); > + imax = sizeof(struct ext3_inode_info) / sizeof(unsigned int); > + printk("Inode %p: orphan list check failed!\n", EXT3_I(inode)); > + for (i = 0; i < imax; i++) { > + if (i && ((i % 8) == 0)) > + printk("\n"); > + printk("%08x ", *p++); > + } > + printk("\n"); > + dump_stack(); umm, OK, but please use the new lib/hexdump.c for this. - 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/