* Re: xfs internal error on a new filesystem
@ 2007-02-15 16:19 Ahmed El Zein
2007-02-16 17:58 ` David Chinner
2007-02-18 13:56 ` Leon Kolchinsky
0 siblings, 2 replies; 4+ messages in thread
From: Ahmed El Zein @ 2007-02-15 16:19 UTC (permalink / raw)
To: David Chinner; +Cc: Ramy M. Hassan , linux-kernel, xfs
David Chinner <dgc@sgi.com> wrote on 15 Feb 2007, 11:16 AM:
Subject: Re: xfs internal error on a new filesystem
>On Wed, Feb 14, 2007 at 10:24:27AM +0000, Ramy M. Hassan wrote:
>> Hello,
>> We got the following xfs internal error on one of our production servers:
>>
>> Feb 14 08:28:52 info6 kernel: [238186.676483] Filesystem "sdd8": XFS
>> internal error xfs_trans_cancel at line 1138 of file fs/xfs/xfs_trans.c.
>> Caller 0xf8b906e7
>
>Real stack looks to be:
>
> xfs_trans_cancel
> xfs_mkdir
> xfs_vn_mknod
> xfs_vn_mkdir
> vfs_mkdir
> sys_mkdirat
> sys_mkdir
>
>We aborted a transaction for some reason. We got an error somewhere in
>a mkdir while we had a dirty transaction. Unfortunately, this tells us
>very
>little about the error that actually caused the shutdown.
>
>What is your filessytem layout? (xfs_info <mntpt>) How much memory
>do you have and were you near enomem conditions?
We have 1536 MB of ram. It is possible that at the time of the crash we
were near enomem conditions, I don;t know for sure but we have seen such
spikes on our servers.
root@info6:~# xfs_info /vol/6/
meta-data=/dev/sdd8 isize=256 agcount=16, agsize=7001584
blks
= sectsz=512 attr=0
data = bsize=4096 blocks=112025248, imaxpct=25
= sunit=16 swidth=64 blks, unwritten=0
naming =version 2 bsize=4096
log =internal bsize=4096 blocks=32768, version=1
= sectsz=512 sunit=0 blks
realtime =none extsz=65536 blocks=0, rtextents=0
>
>> We were able to unmount/remount the volume (didn't do xfs_repair because
>we
>> thought it might take long time, and the server was already in production
>> at the moement)
>
>Risky to run a production system on a filesystem that might be corrupted.
>You risk further problems if you don't run repair....
>
>> The file system was created less than 48hours ago, and 370G of sensitve
>> production data was moved to the server before it xfs crash.
>
>So that's not a "new" filesystem at all...
By new we meant 48 hours old.
>
>FWIW, did you do any offline testing before you put it into production?
We did some basic testing. But as a filesystem developer, how would you
test a filesystem so that you would be comfortable with the stability of
the filesystem and be worry free in terms of faulty hardware?
>
>> System details :
>> Kernel: 2.6.18
>> Controller: 3ware 9550SX-8LP (RAID 10)
>
>Can you describe your dm/md volume layout?
one unit, 8HDDs, a stripe of 4 mirrors.
>
>> We are wondering here if this problem is an indicator to data corruption
>on
>> disk ?
>
>It might be. You didn't run xfs_check or xfs_repair, so we don't know if
>there is any on disk corruption here.
>
>> is it really necessary to run xfs_repair ?
>
>If you want to know if you haven't left any landmines around for the
>filesystem to trip over again. i.e. You should run repair after any
>sort of XFS shutdown to make sure nothing is corrupted on disk.
>If nothing is corrupted on disk, then we are looking at an in-memory
>problem....
we will run repair tonight.
>
>> Do u recommend that we switch back to reiserfs ?
>
>Not yet.
>
>> Could it be a hardware related problems ?
>
>Yes. Do you have ECC memory on your server? Have you run memtest86?
>Were there any I/O errors in the log prior to the shutdown message?
Yes, we have ECC memory.
We will try to run memtest86 as soon as possible.
There were no I/O errors in the log prior to the shutdown message.
Btw, this is a vmware image. /vol/6 is an exported physical partition.
>Cheers,
>
>Dave.
>--
>Dave Chinner
>Principal Engineer
>SGI Australian Software Group
>
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: xfs internal error on a new filesystem
2007-02-15 16:19 xfs internal error on a new filesystem Ahmed El Zein
@ 2007-02-16 17:58 ` David Chinner
2007-02-18 13:56 ` Leon Kolchinsky
1 sibling, 0 replies; 4+ messages in thread
From: David Chinner @ 2007-02-16 17:58 UTC (permalink / raw)
To: Ahmed El Zein; +Cc: David Chinner, Ramy M. Hassan , linux-kernel, xfs
On Thu, Feb 15, 2007 at 04:19:32PM +0000, Ahmed El Zein wrote:
> David Chinner <dgc@sgi.com> wrote on 15 Feb 2007, 11:16 AM:
> >What is your filessytem layout? (xfs_info <mntpt>) How much memory
> >do you have and were you near enomem conditions?
>
> We have 1536 MB of ram. It is possible that at the time of the crash we
> were near enomem conditions, I don;t know for sure but we have seen such
> spikes on our servers.
Ok, so that's a possibility.
> root@info6:~# xfs_info /vol/6/
> meta-data=/dev/sdd8 isize=256 agcount=16, agsize=7001584
> blks
> = sectsz=512 attr=0
> data = bsize=4096 blocks=112025248, imaxpct=25
> = sunit=16 swidth=64 blks, unwritten=0
> naming =version 2 bsize=4096
> log =internal bsize=4096 blocks=32768, version=1
> = sectsz=512 sunit=0 blks
> realtime =none extsz=65536 blocks=0, rtextents=0
Nothing unusual here...
> >Yes. Do you have ECC memory on your server? Have you run memtest86?
> >Were there any I/O errors in the log prior to the shutdown message?
> Yes, we have ECC memory.
> We will try to run memtest86 as soon as possible.
> There were no I/O errors in the log prior to the shutdown message.
>
> Btw, this is a vmware image. /vol/6 is an exported physical partition.
I'd suggest trying to reproduce this problem without vmware in the
picture - you need to rule out a vmware based problem first before we
can really make any progress on this....
Cheers,
Dave.
--
Dave Chinner
Principal Engineer
SGI Australian Software Group
^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: xfs internal error on a new filesystem
2007-02-15 16:19 xfs internal error on a new filesystem Ahmed El Zein
2007-02-16 17:58 ` David Chinner
@ 2007-02-18 13:56 ` Leon Kolchinsky
1 sibling, 0 replies; 4+ messages in thread
From: Leon Kolchinsky @ 2007-02-18 13:56 UTC (permalink / raw)
To: 'Ahmed El Zein', 'David Chinner'
Cc: 'Ramy M. Hassan ', linux-kernel, xfs
> >
> >> Do u recommend that we switch back to reiserfs ?
> >
> >Not yet.
> >
> >> Could it be a hardware related problems ?
> >
> >Yes. Do you have ECC memory on your server? Have you run memtest86?
> >Were there any I/O errors in the log prior to the shutdown message?
> Yes, we have ECC memory.
> We will try to run memtest86 as soon as possible.
> There were no I/O errors in the log prior to the shutdown message.
>
> Btw, this is a vmware image. /vol/6 is an exported physical partition.
>
I've read that vmware do disk caching by default and we know xfs has problem
with when disaster strikes.
You definitely should disable disk caching on you side.
> >Cheers,
> >
> >Dave.
> >--
> >Dave Chinner
> >Principal Engineer
> >SGI Australian Software Group
> >
>
Regards,
Leon Kolchinsky
^ permalink raw reply [flat|nested] 4+ messages in thread
[parent not found: <20070214102432.6346.qmail@info6.gawab.com>]
* Re: xfs internal error on a new filesystem
[not found] <20070214102432.6346.qmail@info6.gawab.com>
@ 2007-02-15 9:16 ` David Chinner
0 siblings, 0 replies; 4+ messages in thread
From: David Chinner @ 2007-02-15 9:16 UTC (permalink / raw)
To: Ramy M. Hassan ; +Cc: linux-kernel, Ahmed El Zein, xfs
On Wed, Feb 14, 2007 at 10:24:27AM +0000, Ramy M. Hassan wrote:
> Hello,
> We got the following xfs internal error on one of our production servers:
>
> Feb 14 08:28:52 info6 kernel: [238186.676483] Filesystem "sdd8": XFS
> internal error xfs_trans_cancel at line 1138 of file fs/xfs/xfs_trans.c.
> Caller 0xf8b906e7
Real stack looks to be:
xfs_trans_cancel
xfs_mkdir
xfs_vn_mknod
xfs_vn_mkdir
vfs_mkdir
sys_mkdirat
sys_mkdir
We aborted a transaction for some reason. We got an error somewhere in
a mkdir while we had a dirty transaction. Unfortunately, this tells us very
little about the error that actually caused the shutdown.
What is your filessytem layout? (xfs_info <mntpt>) How much memory
do you have and were you near enomem conditions?
> We were able to unmount/remount the volume (didn't do xfs_repair because we
> thought it might take long time, and the server was already in production
> at the moement)
Risky to run a production system on a filesystem that might be corrupted.
You risk further problems if you don't run repair....
> The file system was created less than 48hours ago, and 370G of sensitve
> production data was moved to the server before it xfs crash.
So that's not a "new" filesystem at all...
FWIW, did you do any offline testing before you put it into production?
> System details :
> Kernel: 2.6.18
> Controller: 3ware 9550SX-8LP (RAID 10)
Can you describe your dm/md volume layout?
> We are wondering here if this problem is an indicator to data corruption on
> disk ?
It might be. You didn't run xfs_check or xfs_repair, so we don't know if
there is any on disk corruption here.
> is it really necessary to run xfs_repair ?
If you want to know if you haven't left any landmines around for the
filesystem to trip over again. i.e. You should run repair after any
sort of XFS shutdown to make sure nothing is corrupted on disk.
If nothing is corrupted on disk, then we are looking at an in-memory
problem....
> Do u recommend that we switch back to reiserfs ?
Not yet.
> Could it be a hardware related problems ?
Yes. Do you have ECC memory on your server? Have you run memtest86?
Were there any I/O errors in the log prior to the shutdown message?
Cheers,
Dave.
--
Dave Chinner
Principal Engineer
SGI Australian Software Group
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2007-02-18 13:54 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-02-15 16:19 xfs internal error on a new filesystem Ahmed El Zein
2007-02-16 17:58 ` David Chinner
2007-02-18 13:56 ` Leon Kolchinsky
[not found] <20070214102432.6346.qmail@info6.gawab.com>
2007-02-15 9:16 ` David Chinner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox