public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Andrew Morton <akpm@linux-foundation.org>
To: Vasily Averin <vvs@sw.ru>
Cc: Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	devel@openvz.org, linux-ext4@vger.kernel.org,
	Stephen Tweedie <sct@redhat.com>,
	adilger@clusterfs.com
Subject: Re: [PATCH ext3/ext4] orphan list check on destroy_inode
Date: Mon, 4 Jun 2007 18:54:20 -0700	[thread overview]
Message-ID: <20070604185420.b4206698.akpm@linux-foundation.org> (raw)
In-Reply-To: <4663A0BF.9010008@sw.ru>

On Mon, 04 Jun 2007 09:18:55 +0400 Vasily Averin <vvs@sw.ru> 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 <vvs@sw.ru>
> 
> 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.

  reply	other threads:[~2007-06-05  1:55 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-06-04  5:18 [PATCH ext3/ext4] orphan list check on destroy_inode Vasily Averin
2007-06-05  1:54 ` Andrew Morton [this message]
2007-06-05  3:04 ` Eric Sandeen
2007-06-05  6:49   ` Vasily Averin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20070604185420.b4206698.akpm@linux-foundation.org \
    --to=akpm@linux-foundation.org \
    --cc=adilger@clusterfs.com \
    --cc=devel@openvz.org \
    --cc=linux-ext4@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sct@redhat.com \
    --cc=vvs@sw.ru \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox