On Thu, 2006-10-05 17:14:28 -0700, Andrew Morton <[email protected]> wrote: > On Fri, 06 Oct 2006 01:16:21 +0159 > Jiri Slaby <[email protected]> wrote: > > Andrew Morton wrote: > > > On Thu, 05 Oct 2006 23:34:13 +0159 > > > Jiri Slaby <[email protected]> wrote: > > > > while yum update-ing, yum crashed and this appeared in log: > > > > [ 2840.688718] EXT3-fs error (device hda2): ext3_free_blocks_sb: bit already > > > > cleared for block 747938 > > > > [ 2840.688732] Aborting journal on device hda2. > > > > [ 2840.688858] ext3_abort called. > > > > > > > > ... > > > > > > > > I don't know how to reproduce it and really have no idea what version of -mm > > > > could introduce it (if any). > > > > > > I don't necessarily see a bug in there. The filesystem got a bit noisy but > > > did appropriately detect and handle the metadata inconsistency. > > > > Perhaps, but why did it occur? S.m.a.r.t. doesn't tell me anything suspicious. > > Don't know. The usual diagnosis for this sort of thing is "your disk shat > itself". Could be a bad disk, bad power supply, bad memory, some piece of > kernel code went and trashed some memory, bug in the driver. It's a > mystery, sorry. Just to add, I've seen right this, too, on Debian's 2.6.17-2-686, with a 00:07.1 IDE interface: Intel Corporation 82371AB/EB/MB PIIX4 IDE (rev 01) (8086:7111) PATA controller with a ST3300822A disk. That's healthy from smartmontool's point of view. The machine has 192MB RAM, an Intel P3 processor and is idle during daytime, busy with fetching backups at night. I'm using this filesystem with faubackup, lots of small files, lots of hard links and a number of large files. Some of the posts below mention large files, too. My impression would be that it happens when unlink()ing large files. Oh, and it's a LV, not a direct partition. memtest86 didn't reveal anything, too (ran it for nearly 24h.) http://www.issociate.de/board/post/157775/Linux_2.6.10_/_RAID1_problem.html January 5, 2005 2.6.10, UP, no PREEMPT, 2.4.25 was a lot more stable. Problem disappeared by changing the mainboard. And a test case: ~ dd if=/dev/zero of=test0 bs=1M count=300 ~ while :; do cp test0 test1; cp test1 test2; cp test2 test0; od test0; done Problem is RAID1 related and doesn't show up on bare disks. http://www.unixshell.com/forum/archive/index.php/t-208.html April 26, 2005 Author thinks this was 2.6.11. http://www.liangfok.com/blog/archives/2005/07/file_system_bec.html July 4, 2005 No specific information given. http://comments.gmane.org/gmane.linux.kernel/353757 December 10, 2005 2.6.15-rc5, happens when exiting qemu. http://www.nabble.com/-BUG-2.6.15-rc5--EXT3-fs-error-and-soft-lockup-detected-t723639.html December 10, 2005 2.6.15-rc5 http://www.ubuntuforums.org/archive/index.php/t-106260.html Dec 20, 2005, plus Dec 21, 2005 (another guy with the same problem) Disk works in one machine (P2), but not in a different box (P3). Breaks Ubuntu installation. http://lkml.org/lkml/2006/4/3/212 April 3, 2006 No specific information given. http://ebergen.net/wordpress/2006/04/ April 12, 2006 kubuntu user, drive is 4 years old and probably PATA. http://myrddin.org/2006/02/ February 14, 2006 The author sees a problem like this when deleting large (1GB..2GB) files. ": > $file" before removing them helps. This results in an open(x, O_WRONLY|O_CREAT|O_TRUNC|O_LARGEFILE) http://forum.hardware.fr/hardwarefr/OSAlternatifs/Resolu-Debian-Ext3-FS-Error-pour-partition-sujet-58230-1.htm June 19, 2006 In one case, there was a test case mentioned. I'll run that on my affected box in a non-productive LV, like this: dd bs=1M count=200 if=/dev/zero of=test0 while :; do echo "cp 0-1"; cp test0 test1 || break echo "cp 1-2"; cp test1 test2 || break echo "cp 2-3"; cp test2 test3 || break echo "cp 3-4"; cp test3 test4 || break echo "od 0" ; od test0 || break echo "rm 1"; rm test1 || break echo "rm 2"; rm test2 || break echo "rm 3"; rm test3 || break echo "rm 4"; rm test4 || break done After about 30h runtime, I got: EXT3-fs error (device dm-5): ext3_free_blocks_sb: bit already cleared for block 194810 Aborting journal on device dm-5. ext3_abort called. EXT3-fs error (device dm-5): ext3_journal_start_sb: Detected aborted journal Remounting filesystem read-only EXT3-fs error (device dm-5) in ext3_reserve_inode_write: Journal has aborted EXT3-fs error (device dm-5) in ext3_truncate: Journal has aborted EXT3-fs error (device dm-5) in ext3_reserve_inode_write: Journal has aborted EXT3-fs error (device dm-5) in ext3_orphan_del: Journal has aborted EXT3-fs error (device dm-5) in ext3_reserve_inode_write: Journal has aborted __journal_remove_journal_head: freeing b_committed_data __journal_remove_journal_head: freeing b_committed_data __journal_remove_journal_head: freeing b_committed_data Last echoes from the testcase above: rm 1 rm 2 rm: cannot remove `test2': Read-only file system kolbe34-backup:/mnt# dumpe2fs /dev/kolbe34_backup/ext3crash 2>/dev/null | grep features Filesystem features: has_journal resize_inode dir_index filetype needs_recovery sparse_super large_file kolbe34-backup:/mnt# e2fsck -fy /dev/kolbe34_backup/ext3crash e2fsck 1.39 (29-May-2006) /dev/kolbe34_backup/ext3crash: recovering journal Pass 1: Checking inodes, blocks, and sizes Deleted inode 49154 has zero dtime. Fix? yes Pass 2: Checking directory structure Pass 3: Checking directory connectivity Pass 4: Checking reference counts Pass 5: Checking group summary information Block bitmap differences: -(100884--124927) -(178242--194174) Fix? yes Free blocks count wrong for group #3 (1037, counted=25081). Fix? yes Free blocks count wrong for group #5 (2432, counted=18366). Fix? yes Free blocks count wrong (15190753, counted=15230731). Fix? yes Inode bitmap differences: -49154 Fix? yes Free inodes count wrong for group #3 (16382, counted=16383). Fix? yes Free inodes count wrong (7864304, counted=7864305). Fix? yes /dev/kolbe34_backup/ext3crash: ***** FILE SYSTEM WAS MODIFIED ***** /dev/kolbe34_backup/ext3crash: 15/7864320 files (6.7% non-contiguous), 497909/15728640 blocks kolbe34-backup:/mnt# mount /dev/kolbe34_backup/ext3crash test/ kolbe34-backup:/mnt# ls -li test/ total 820032 11 drwx------ 2 root root 16384 2006-10-06 10:42 lost+found 49153 -rw-r--r-- 1 root root 209715200 2006-10-07 16:42 test0 147457 -rw-r--r-- 1 root root 209715200 2006-10-08 02:21 test2 147458 -rw-r--r-- 1 root root 209715200 2006-10-08 02:21 test3 147459 -rw-r--r-- 1 root root 209715200 2006-10-08 02:22 test4 MfG, JBG -- Jan-Benedict Glaw [email protected] +49-172-7608481 Signature of: Eine Freie Meinung in einem Freien Kopf the second : für einen Freien Staat voll Freier Bürger.
Attachment:
signature.asc
Description: Digital signature
- Follow-Ups:
- Re: 2.6.18-mm2: ext3 BUG?
- From: Jan-Benedict Glaw <[email protected]>
- Re: 2.6.18-mm2: ext3 BUG?
- From: Jan-Benedict Glaw <[email protected]>
- Re: 2.6.18-mm2: ext3 BUG?
- From: Jan-Benedict Glaw <[email protected]>
- Re: 2.6.18-mm2: ext3 BUG?
- References:
- 2.6.18-mm2: ext3 BUG?
- From: Jiri Slaby <[email protected]>
- Re: 2.6.18-mm2: ext3 BUG?
- From: Andrew Morton <[email protected]>
- Re: 2.6.18-mm2: ext3 BUG?
- From: Jiri Slaby <[email protected]>
- Re: 2.6.18-mm2: ext3 BUG?
- From: Andrew Morton <[email protected]>
- 2.6.18-mm2: ext3 BUG?
- Prev by Date: Re: [linux-usb-devel] [PATCH 1/3] driver for mcs7830 (aka DeLOCK) USB ethernet adapter
- Next by Date: Re: 2.6.19-rc1: known regressions (v2)
- Previous by thread: Re: 2.6.18-mm2: ext3 BUG?
- Next by thread: Re: 2.6.18-mm2: ext3 BUG?
- Index(es):