public inbox for gentoo-user@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-user] Corruption in reiserfs partition
@ 2007-09-08 15:36 Jorge Peixoto de Morais Neto
  2007-09-08 20:14 ` Volker Armin Hemmann
  0 siblings, 1 reply; 9+ messages in thread
From: Jorge Peixoto de Morais Neto @ 2007-09-08 15:36 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 1598 bytes --]

http://forums.gentoo.org/viewtopic-p-4225196.html#4225196

Hi. The forums being down, can you give me help by mail on the topic
http://forums.gentoo.org/viewtopic-p-4225196.html#4225196, since I can't use
my Gentoo installation until the problem is solved?

The most important thing to me is to know the answer to the two questions:

1) How can I know if other files were corrupted?
2) Do you think I should just use the computer, after reemerging the
packages that provide the corrupted files? Or should I reinstall the system
from scratch?

The background is: a corruption ocurred in my reiserfs partition, possibly
due to hardware problems; I performed reiserfsck and recovered virtually all
files, but at least some files in /bin are corrupted. In fact, they cannot
be executed, and executing the "file" command on them tells that they are
just "data" instead of recognising them as an executable. See:


jorge@jorge:/media/hda2/bin$ for file in *; do file "${file}" | grep -q data
&& wc -c "${file}"; done
13772 basename
13500 chroot
27048 cut
79420 dir
13836 dirname
59084 du
13436 env
23336 expr
24516 head
14644 mkfifo
18988 readlink
34100 rm
14684 rmdir
17740 seq
14772 sleep
65168 sort
37380 stty
12584 sync
35852 tail
34328 touch
27492 tr
12200 true
12800 tty
15316 uname
79420 vdir
23108 wc
12876 yes

Aren't all these files part of coreutils? So hopefully this was just a
misbehaved coreutils emerge instead of a consequence of filesystem
corruption.

For more details, see the forum thread.
I would appreciate any help. Thanks.
-- 
Software is like sex: it is better when it is free.

[-- Attachment #2: Type: text/html, Size: 1991 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [gentoo-user] Corruption in reiserfs partition
  2007-09-08 15:36 [gentoo-user] Corruption in reiserfs partition Jorge Peixoto de Morais Neto
@ 2007-09-08 20:14 ` Volker Armin Hemmann
  2007-09-08 22:15   ` Jorge Peixoto de Morais Neto
  0 siblings, 1 reply; 9+ messages in thread
From: Volker Armin Hemmann @ 2007-09-08 20:14 UTC (permalink / raw
  To: gentoo-user

On Samstag, 8. September 2007, Jorge Peixoto de Morais Neto wrote:
> http://forums.gentoo.org/viewtopic-p-4225196.html#4225196
>
> Hi. The forums being down, can you give me help by mail on the topic
> http://forums.gentoo.org/viewtopic-p-4225196.html#4225196, since I can't
> use my Gentoo installation until the problem is solved?
>
> The most important thing to me is to know the answer to the two questions:
>
> 1) How can I know if other files were corrupted?

well, you can try a script that compares the md5sums of the files installed 
with the m5sums of the files on the harddisk. But everything that wasn#t 
installed with portage can't be checked that way.


> 2) Do you think I should just use the computer, after reemerging the
> packages that provide the corrupted files?

yes

> Or should I reinstall the system from scratch?

no.

>
> The background is: a corruption ocurred in my reiserfs partition, possibly
> due to hardware problems; I performed reiserfsck and recovered virtually
> all files, but at least some files in /bin are corrupted. In fact, they
> cannot be executed, and executing the "file" command on them tells that
> they are just "data" instead of recognising them as an executable. See:
>
>
> jorge@jorge:/media/hda2/bin$ for file in *; do file "${file}" | grep -q
> data && wc -c "${file}"; done
> 13772 basename
> 13500 chroot
> 27048 cut
> 79420 dir
> 13836 dirname
> 59084 du
> 13436 env
> 23336 expr
> 24516 head
> 14644 mkfifo
> 18988 readlink
> 34100 rm
> 14684 rmdir
> 17740 seq
> 14772 sleep
> 65168 sort
> 37380 stty
> 12584 sync
> 35852 tail
> 34328 touch
> 27492 tr
> 12200 true
> 12800 tty
> 15316 uname
> 79420 vdir
> 23108 wc
> 12876 yes
>
> Aren't all these files part of coreutils?

not all, but most of them.

> So hopefully this was just a 
> misbehaved coreutils emerge instead of a consequence of filesystem
> corruption.

maybe both. I had a nasty corruption some weeks ago thanks to a loose 
sata-cable (I hate this f* plugs... ) .. which resulted in some nasty 
breakage in /var ... and it is not funny when can't log in....

>
> For more details, see the forum thread.
> I would appreciate any help. Thanks.

It doesn't look so bad. You can try moving the corrupted stuff to a backup 
dir, and create symlinks to busybox. Busybox should be installed on your 
system.
for example
ln  -s busybox rm

and so on. After that emerge coreutils and the other packages. Make sure, that 
you don't have 'collision protect' or something like that set.

I hope you learned your lessons!

Lesson 1: /home on its own partition.
Lesson 2: backups.


-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [gentoo-user] Corruption in reiserfs partition
  2007-09-08 20:14 ` Volker Armin Hemmann
@ 2007-09-08 22:15   ` Jorge Peixoto de Morais Neto
  2007-09-08 23:03     ` Neil Bothwick
  2007-09-09  1:46     ` Volker Armin Hemmann
  0 siblings, 2 replies; 9+ messages in thread
From: Jorge Peixoto de Morais Neto @ 2007-09-08 22:15 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 4035 bytes --]

On 9/8/07, Volker Armin Hemmann <volker.armin.hemmann@tu-clausthal.de>
wrote:
>
> On Samstag, 8. September 2007, Jorge Peixoto de Morais Neto wrote:
> > http://forums.gentoo.org/viewtopic-p-4225196.html#4225196
> >
> > Hi. The forums being down, can you give me help by mail on the topic
> > http://forums.gentoo.org/viewtopic-p-4225196.html#4225196, since I can't
> > use my Gentoo installation until the problem is solved?
> >
> > The most important thing to me is to know the answer to the two
> questions:
> >
> > 1) How can I know if other files were corrupted?
>
> well, you can try a script that compares the md5sums of the files
> installed
> with the m5sums of the files on the harddisk. But everything that wasn#t
> installed with portage can't be checked that way.

There is a equery command for that... equery check if memory serves. But I
issued this command some days ago and it always reports some files as
different... so I guess it is normal for one or two files out of 1000 in a
package to be modified without Portage knowing... but I want to know about
the packages that were modified *because of the corruption.*, not the ones
that were modified because of other reasons... but, perhaps this is the only
option: issue equery check and
1) if the checksum match I know it was not corrupted
2) if it does not match than it may or may not be because of the corruption

Too bad it does not apply to files not managed by Portage.
Hum, perhaps I should have made checksums of my personal data? Obviously,
nothing substitutes a backup, but for data that is not worth backing up
(because it is huge - thus costly to back up - and I can withstand a small
chance of losing said data, since I can obtain it again; a rip of a DVD
movie for example) I could at least save checksums, so if the file gets
corrupted, at least I'll know...


> 2) Do you think I should just use the computer, after reemerging the
> > packages that provide the corrupted files?
>
> yes

Do you think that there is any plausible chance that using the partition
might cause further damage?


> The background is: a corruption ocurred in my reiserfs partition, possibly
> > due to hardware problems; I performed reiserfsck and recovered virtually
> > all files, but at least some files in /bin are corrupted. In fact, they
> > cannot be executed, and executing the "file" command on them tells that
> > they are just "data" instead of recognising them as an executable. See:
> >
> >
> > jorge@jorge:/media/hda2/bin$ for file in *; do file "${file}" | grep -q
> > data && wc -c "${file}"; done
> > 13772 basename
> > 13500 chroot
> > 27048 cut
> > 79420 dir
> > 13836 dirname
> > 59084 du
> > 13436 env
> > 23336 expr
> > 24516 head
> > 14644 mkfifo
> > 18988 readlink
> > 34100 rm
> > 14684 rmdir
> > 17740 seq
> > 14772 sleep
> > 65168 sort
> > 37380 stty
> > 12584 sync
> > 35852 tail
> > 34328 touch
> > 27492 tr
> > 12200 true
> > 12800 tty
> > 15316 uname
> > 79420 vdir
> > 23108 wc
> > 12876 yes
> >
> > Aren't all these files part of coreutils?
>
> not all, but most of them.
>
> >
> > For more details, see the forum thread.
> > I would appreciate any help. Thanks.
>
> It doesn't look so bad. You can try moving the corrupted stuff to a backup
> dir, and create symlinks to busybox. Busybox should be installed on your
> system.

Yes it is.

for example
> ln  -s busybox rm

Gentoo should have an automated way to do this. For me, it looks like there
should be an eselect option for "activating" busybox.


> I hope you learned your lessons!
>
> Lesson 1: /home on its own partition.

I read somewhere that most of the time when a disk fails it will take all of
its partitions with it, so putting /home is its own partition does not help.

Perhaps that person was wrong... at least in my case, I clearly had a
logical failure in the partition, with no physical failure in the disk, so
if I had multiple partitions, maybe only one would have problems.


> Lesson 2: backups.

Hehe. Yes I know. Fortunately it seems I was very lucky this time...

[-- Attachment #2: Type: text/html, Size: 5632 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [gentoo-user] Corruption in reiserfs partition
  2007-09-08 22:15   ` Jorge Peixoto de Morais Neto
@ 2007-09-08 23:03     ` Neil Bothwick
  2007-09-09  1:46     ` Volker Armin Hemmann
  1 sibling, 0 replies; 9+ messages in thread
From: Neil Bothwick @ 2007-09-08 23:03 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 1484 bytes --]

Hello Jorge Peixoto de Morais Neto,

> There is a equery command for that... equery check if memory serves.
> But I issued this command some days ago and it always reports some
> files as different... so I guess it is normal for one or two files out
> of 1000 in a package to be modified without Portage knowing... but I
> want to know about the packages that were modified *because of the
> corruption.*, not the ones that were modified because of other
> reasons...

That should be fairly easy to tell by looking at the list. Binary files
should not file the test, but data and configuration files may.

> Too bad it does not apply to files not managed by Portage.
> Hum, perhaps I should have made checksums of my personal data?
> Obviously, nothing substitutes a backup, but for data that is not worth
> backing up (because it is huge - thus costly to back up - and I can
> withstand a small chance of losing said data, since I can obtain it
> again; a rip of a DVD movie for example) I could at least save
> checksums, so if the file gets corrupted, at least I'll know...

That's why I keep this sort of data on a separate filesystem from home. I
already have backups of my music and video collection, the original
discs, but things like work, accounts and emails need to be backed up
regularly. Excluding replaceable data from /home makes the backup process
much easier.


-- 
Neil Bothwick

Artificial Intelligence usually beats real stupidity.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [gentoo-user] Corruption in reiserfs partition
  2007-09-08 22:15   ` Jorge Peixoto de Morais Neto
  2007-09-08 23:03     ` Neil Bothwick
@ 2007-09-09  1:46     ` Volker Armin Hemmann
  2007-09-11  1:07       ` Jorge Peixoto de Morais Neto
  1 sibling, 1 reply; 9+ messages in thread
From: Volker Armin Hemmann @ 2007-09-09  1:46 UTC (permalink / raw
  To: gentoo-user

On Sonntag, 9. September 2007, Jorge Peixoto de Morais Neto wrote:
> On 9/8/07, Volker Armin Hemmann <volker.armin.hemmann@tu-clausthal.de>

>
> > 2) Do you think I should just use the computer, after reemerging the
> >
> > > packages that provide the corrupted files?
> >
> > yes
>
> Do you think that there is any plausible chance that using the partition
> might cause further damage?

if there isn't a hardware problem - very probably not. I have had very good 
experiences with reiserfsck (for 3.6) and fsck.reiser4 (with reiser4). If the 
fs got fixed, it is fixed.
If the disk is damaged, than reinstalling from scratch won't help you anyway.

> > ln  -s busybox rm
>
> Gentoo should have an automated way to do this. For me, it looks like there
> should be an eselect option for "activating" busybox.

no, it shouldn't. I tried it a few weeks ago - replaced most of /bin with 
symlinks to busybox. Emerging stuff still worked - but a handfull of 
init-scripts stopped working in the worst way - they just hung after spitting 
out some error messages. So using busybox should be something that is hard to 
do - to prevent unsuspecting users from problems. In case of emergency you 
can always boot into busybox with the right kernel boot parameter.


>
> > I hope you learned your lessons!
> >
> > Lesson 1: /home on its own partition.
>
> I read somewhere that most of the time when a disk fails it will take all
> of its partitions with it, so putting /home is its own partition does not
> help.

if your fs gets damaged for some reason or another, it is good, when the 
damage does not spread to your private data. The OS can be easily 
reinstalled. Several years of intensively collected nude pictures not.

A different partition for /home prevents some bad stuff from happening. It is 
a good thing!

For example my /var damage some weeks ago. It was contained to /var 
because /var was the partition the system was writing to, when the sata cable 
came loose. If everything would have been on one partition I might have lost 
my ~/Mail dir - with hundred thousand+ mails ... or my ~/text dir, which 
contains everything I write... 

>
> Perhaps that person was wrong... at least in my case, I clearly had a
> logical failure in the partition, with no physical failure in the disk, so
> if I had multiple partitions, maybe only one would have problems.

it is very probably only one would have had the problems.

>
> > Lesson 2: backups.
>
> Hehe. Yes I know. Fortunately it seems I was very lucky this time...

a little hint: ebay. Used dlt 35/70 drive. Pretty cheap and robust. use tar 
for backup, but use mbuffer to puffer or you will never backup/restore with 
full speed and the drive suffers.

-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [gentoo-user] Corruption in reiserfs partition
  2007-09-09  1:46     ` Volker Armin Hemmann
@ 2007-09-11  1:07       ` Jorge Peixoto de Morais Neto
  2007-09-11  1:35         ` Volker Armin Hemmann
  0 siblings, 1 reply; 9+ messages in thread
From: Jorge Peixoto de Morais Neto @ 2007-09-11  1:07 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 2745 bytes --]

> Do you think that there is any plausible chance that using the partition

> > might cause further damage?
>
> if there isn't a hardware problem - very probably not. I have had very
> good
> experiences with reiserfsck (for 3.6) and fsck.reiser4 (with reiser4). If
> the
> fs got fixed, it is fixed.
> If the disk is damaged, than reinstalling from scratch won't help you
> anyway.


I realized that the damaged files were filled with nulls, so  I made a
script that detected  null-filled files across my filesystem.  There are
some 250 files like this. Here are some:

/media/hda2/bin/du: 59084
/media/hda2/bin/rm: 34100
/media/hda2/bin/tr: 27492
/media/hda2/bin/wc: 23108
/media/hda2/bin/dir: 79420
/media/hda2/bin/cut: 27048
/media/hda2/bin/env: 13436
/media/hda2/bin/seq: 17740
/media/hda2/bin/tty: 12800
/media/hda2/bin/yes: 12876
/media/hda2/bin/expr: 23336
/media/hda2/bin/head: 24516
/media/hda2/bin/sort: 65168
/media/hda2/bin/stty: 37380
/media/hda2/bin/sync: 12584
/media/hda2/bin/true: 12200
/media/hda2/bin/vdir: 79420
/media/hda2/bin/dirname: 13836
/media/hda2/bin/rmdir: 14684
/media/hda2/bin/sleep: 14772
/media/hda2/bin/touch: 34328
/media/hda2/bin/uname: 15316
/media/hda2/bin/chroot: 13500
/media/hda2/bin/mkfifo: 14644
/media/hda2/bin/readlink: 18988
/media/hda2/bin/basename: 13772
/media/hda2/etc/enlightenment/sysactions.conf: 2964
/media/hda2/etc/laptop-mode/laptop-mode.conf: 15916
/media/hda2/etc/laptop-mode/lm-profiler.conf: 1561
/media/hda2/etc/portage/package.keywords/wanted~: 796
/media/hda2/var/lib/scrollkeeper/scrollkeeper_docs: 1812
/media/hda2/usr/lib/aspell-0.60/nroff-filter.info: 232
/media/hda2/usr/lib/aspell-0.60/iso-8859-1.cset: 13848
/media/hda2/usr/lib/aspell-0.60/iso-8859-2.cset: 14133
/media/hda2/usr/lib/aspell-0.60/cp1250.cmap: 31404
/media/hda2/usr/lib/aspell-0.60/cp1252.cset: 14039
/media/hda2/usr/lib/aspell-0.60/cp1253.cset: 13682
/media/hda2/usr/lib/aspell-0.60/iso-8859-8.cmap: 27758
/media/hda2/usr/lib/aspell-0.60/iso-8859-8.cset: 12557
/media/hda2/usr/lib/aspell-0.60/cp1255.cmap: 35133
/media/hda2/usr/lib/aspell-0.60/cp1256.cset: 13307
/media/hda2/usr/lib/aspell-0.60/cp1257.cmap: 31235
/media/hda2/usr/lib/aspell-0.60/cp1258.cset: 13920
/media/hda2/usr/lib/aspell-0.60/context-filter.so: 26976
/media/hda2/usr/lib/aspell-0.60/iso-8859-10.cmap: 31046
/media/hda2/usr/lib/aspell-0.60/iso-8859-10.cset: 14259
/media/hda2/usr/lib/aspell-0.60/texinfo-filter.info: 914


Most of these things are not essential; the big exception is the things in
/bin. So it does seem that the system is fixable.
Something else that I wanted to ask: this backup that I made after the
screwup but before rebuild-tree, do you think it is reliable?

-- 
Software is like sex: it is better when it is free.

[-- Attachment #2: Type: text/html, Size: 3182 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [gentoo-user] Corruption in reiserfs partition
  2007-09-11  1:07       ` Jorge Peixoto de Morais Neto
@ 2007-09-11  1:35         ` Volker Armin Hemmann
  2007-09-11 19:56           ` Jorge Peixoto de Morais Neto
  0 siblings, 1 reply; 9+ messages in thread
From: Volker Armin Hemmann @ 2007-09-11  1:35 UTC (permalink / raw
  To: gentoo-user

On Dienstag, 11. September 2007, Jorge Peixoto de Morais Neto wrote:
> > Do you think that there is any plausible chance that using the partition
> >
> > > might cause further damage?
> >
> > if there isn't a hardware problem - very probably not. I have had very
> > good
> > experiences with reiserfsck (for 3.6) and fsck.reiser4 (with reiser4). If
> > the
> > fs got fixed, it is fixed.
> > If the disk is damaged, than reinstalling from scratch won't help you
> > anyway.
>
> I realized that the damaged files were filled with nulls, so  I made a
> script that detected  null-filled files across my filesystem.  There are
> some 250 files like this. Here are some:
>
> /media/hda2/bin/du: 59084
> /media/hda2/bin/rm: 34100
> /media/hda2/bin/tr: 27492
> /media/hda2/bin/wc: 23108
> /media/hda2/bin/dir: 79420
> /media/hda2/bin/cut: 27048
> /media/hda2/bin/env: 13436
> /media/hda2/bin/seq: 17740
> /media/hda2/bin/tty: 12800
> /media/hda2/bin/yes: 12876
> /media/hda2/bin/expr: 23336
> /media/hda2/bin/head: 24516
> /media/hda2/bin/sort: 65168
> /media/hda2/bin/stty: 37380
> /media/hda2/bin/sync: 12584
> /media/hda2/bin/true: 12200
> /media/hda2/bin/vdir: 79420
> /media/hda2/bin/dirname: 13836
> /media/hda2/bin/rmdir: 14684
> /media/hda2/bin/sleep: 14772
> /media/hda2/bin/touch: 34328
> /media/hda2/bin/uname: 15316
> /media/hda2/bin/chroot: 13500
> /media/hda2/bin/mkfifo: 14644
> /media/hda2/bin/readlink: 18988
> /media/hda2/bin/basename: 13772
> /media/hda2/etc/enlightenment/sysactions.conf: 2964
> /media/hda2/etc/laptop-mode/laptop-mode.conf: 15916
> /media/hda2/etc/laptop-mode/lm-profiler.conf: 1561
> /media/hda2/etc/portage/package.keywords/wanted~: 796
> /media/hda2/var/lib/scrollkeeper/scrollkeeper_docs: 1812
> /media/hda2/usr/lib/aspell-0.60/nroff-filter.info: 232
> /media/hda2/usr/lib/aspell-0.60/iso-8859-1.cset: 13848
> /media/hda2/usr/lib/aspell-0.60/iso-8859-2.cset: 14133
> /media/hda2/usr/lib/aspell-0.60/cp1250.cmap: 31404
> /media/hda2/usr/lib/aspell-0.60/cp1252.cset: 14039
> /media/hda2/usr/lib/aspell-0.60/cp1253.cset: 13682
> /media/hda2/usr/lib/aspell-0.60/iso-8859-8.cmap: 27758
> /media/hda2/usr/lib/aspell-0.60/iso-8859-8.cset: 12557
> /media/hda2/usr/lib/aspell-0.60/cp1255.cmap: 35133
> /media/hda2/usr/lib/aspell-0.60/cp1256.cset: 13307
> /media/hda2/usr/lib/aspell-0.60/cp1257.cmap: 31235
> /media/hda2/usr/lib/aspell-0.60/cp1258.cset: 13920
> /media/hda2/usr/lib/aspell-0.60/context-filter.so: 26976
> /media/hda2/usr/lib/aspell-0.60/iso-8859-10.cmap: 31046
> /media/hda2/usr/lib/aspell-0.60/iso-8859-10.cset: 14259
> /media/hda2/usr/lib/aspell-0.60/texinfo-filter.info: 914

start with emerging coreutils and go on from that point.

>
>
> Most of these things are not essential; the big exception is the things in
> /bin. So it does seem that the system is fixable.
> Something else that I wanted to ask: this backup that I made after the
> screwup but before rebuild-tree, do you think it is reliable?

not really, no. Damaged files are damaged files. Some stuff might be usable 
but that has to be checked on a case to case basis.
-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [gentoo-user] Corruption in reiserfs partition
  2007-09-11  1:35         ` Volker Armin Hemmann
@ 2007-09-11 19:56           ` Jorge Peixoto de Morais Neto
  2007-09-11 21:02             ` Volker Armin Hemmann
  0 siblings, 1 reply; 9+ messages in thread
From: Jorge Peixoto de Morais Neto @ 2007-09-11 19:56 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 46245 bytes --]

I'm sorry about sending this huge email again, but the first one I sent from
the wrong account and I'm almost sure that it didn't reach the list (but,
how can I be sure?).
Below is the email:


> > Something else that I wanted to ask: this backup that I made after the
> > screwup but before rebuild-tree, do you think it is reliable?
>
> not really, no. Damaged files are damaged files. Some stuff might be
> usable
> but that has to be checked on a case to case basis.


But I have no prior backups... the *only* information I have came from the
filesystem after the screw up...
The "backup" I have was made *after* the screw up but before the
rebuild-tree.
I'm asking if this backup is reliable.

I have chosen one of the files that were zeroed in my filesystem and the
corresponding file from the backup was OK. So at least in this case, *it was
the rebuild-tree that corrupted the file*. This suggests that the *backup is
reliable*.

Oh, and I found useful information in the output of rebuild-tree. Turns out
that the output was huge because it prints status information in the screen
and erases it with ^H. So the information that stays on the screen is far
smaller than total information that is printed on the screen. I here show
you the information that stays in the screen (I hope this 44KB text does not
violate some limit of the gentoo-user mailing list). You can see that the
corrupted files are mentioned here:

####### Pass 0 #######
block 9201872: The number of items (15) is incorrect, should be (1) -
corrected
block 9201872: The free space (0) is incorrect, should be (3792) - corrected
pass0: vpf-10210: block 9201872, item 0: The item with wrong offset or
length found [4608 16778752 0x500120063030000 DRCT (2)], len 256 - deleted
block 11173978: The number of items (8) is incorrect, should be (7) -
corrected
block 11173978: The free space (544) is incorrect, should be (612) -
corrected
325827 directory entries were hashed with "r5" hash.
####### Pass 1 #######
####### Pass 2 #######
####### Pass 3 #########
/bin/duvpf-10680: The file [4 101209] has the wrong block count in the
StatData (120) - corrected to (0)
/rmvpf-10680: The file [4 100717] has the wrong block count in the StatData
(72) - corrected to (0)
/trvpf-10680: The file [4 101347] has the wrong block count in the StatData
(56) - corrected to (0)
/wcvpf-10680: The file [4 101431] has the wrong block count in the StatData
(48) - corrected to (0)
/dirvpf-10680: The file [4 101194] has the wrong block count in the StatData
(160) - corrected to (0)
/cutvpf-10680: The file [4 101180] has the wrong block count in the StatData
(56) - corrected to (0)
/envvpf-10680: The file [4 101223] has the wrong block count in the StatData
(32) - corrected to (0)
/pwdvpf-10680: The file [4 100696] has the wrong block count in the StatData
(40) - corrected to (16)
/seqvpf-10680: The file [4 101305] has the wrong block count in the StatData
(40) - corrected to (0)
/ttyvpf-10680: The file [4 101359] has the wrong block count in the StatData
(32) - corrected to (0)
/yesvpf-10680: The file [4 101443] has the wrong block count in the StatData
(32) - corrected to (0)
/exprvpf-10680: The file [4 101224] has the wrong block count in the
StatData (48) - corrected to (0)
/headvpf-10680: The file [4 101250] has the wrong block count in the
StatData (48) - corrected to (0)
/tailvpf-10680: The file [4 101310] has the wrong block count in the
StatData (72) - corrected to (8)
/sortvpf-10680: The file [4 103533] has the wrong block count in the
StatData (128) - corrected to (0)
/sttyvpf-10680: The file [4 100753] has the wrong block count in the
StatData (80) - corrected to (0)
/syncvpf-10680: The file [4 100762] has the wrong block count in the
StatData (32) - corrected to (0)
/truevpf-10680: The file [4 100774] has the wrong block count in the
StatData (24) - corrected to (0)
/vdirvpf-10680: The file [4 101391] has the wrong block count in the
StatData (160) - corrected to (0)
/dirnamevpf-10680: The file [4 101207] has the wrong block count in the
StatData (32) - corrected to (0)
/rmdirvpf-10680: The file [4 100721] has the wrong block count in the
StatData (32) - corrected to (0)
/sleepvpf-10680: The file [4 101306] has the wrong block count in the
StatData (32) - corrected to (0)
/touchvpf-10680: The file [4 101338] has the wrong block count in the
StatData (72) - corrected to (0)
/unamevpf-10680: The file [4 100789] has the wrong block count in the
StatData (32) - corrected to (0)
/chrootvpf-10680: The file [4 101151] has the wrong block count in the
StatData (32) - corrected to (0)
/mkfifovpf-10680: The file [4 101253] has the wrong block count in the
StatData (32) - corrected to (0)
/readlinkvpf-10680: The file [4 101300] has the wrong block count in the
StatData (40) - corrected to (0)
/basenamevpf-10680: The file [4 101150] has the wrong block count in the
StatData (32) - corrected to (0)
/etc/enlightenment/sysactions.confvpf-10680: The file [6035 6036] has the
wrong block count in the StatData (8) - corrected to (0)
/laptop-mode/laptop-mode.confvpf-10680: The file [328445 328462] has the
wrong block count in the StatData (32) - corrected to (0)
/lm-profiler.confvpf-10680: The file [328445 328461] has the wrong block
count in the StatData (8) - corrected to (0)
/portage/package.keywords/wanted~vpf-10680: The file [6609 130550] has the
wrong block count in the StatData (8) - corrected to (0)
/var/db/pkg/dev-perl/XML-Parser-2.34-r1/environment.bz2vpf-10680: The file
[1173086 1173089] has the wrong block count in the StatData (64) - corrected
to (56)
/var/lib/scrollkeeper/scrollkeeper_docsvpf-10680: The file [20671 35164] has
the wrong block count in the StatData (8) - corrected to (0)
/usr/lib/aspell-0.60/nroff-filter.infovpf-10680: The file [41919 955062] has
the wrong block count in the StatData (8) - corrected to (0)
/iso-8859-1.cmapvpf-10680: The file [41919 955441] has the wrong block count
in the StatData (64) - corrected to (24)
/iso-8859-1.csetvpf-10680: The file [41919 955446] has the wrong block count
in the StatData (32) - corrected to (0)
/iso-8859-2.cmapvpf-10680: The file [41919 955448] has the wrong block count
in the StatData (64) - corrected to (16)
/iso-8859-2.csetvpf-10680: The file [41919 955450] has the wrong block count
in the StatData (32) - corrected to (0)
/iso-8859-3.cmapvpf-10680: The file [41919 955454] has the wrong block count
in the StatData (64) - corrected to (48)
/cp1250.cmapvpf-10680: The file [41919 955070] has the wrong block count in
the StatData (64) - corrected to (0)
/cp1251.cmapvpf-10680: The file [41919 955072] has the wrong block count in
the StatData (64) - corrected to (24)
/cp1251.csetvpf-10680: The file [41919 955077] has the wrong block count in
the StatData (32) - corrected to (8)
/cp1252.cmapvpf-10680: The file [41919 955085] has the wrong block count in
the StatData (64) - corrected to (24)
/cp1252.csetvpf-10680: The file [41919 955101] has the wrong block count in
the StatData (32) - corrected to (0)
/iso-8859-7.csetvpf-10680: The file [41919 955694] has the wrong block count
in the StatData (32) - corrected to (16)
/sgml-filter.sovpf-10680: The file [41919 955019] has the wrong block count
in the StatData (56) - corrected to (24)
/cp1253.cmapvpf-10680: The file [41919 955397] has the wrong block count in
the StatData (80) - corrected to (32)
/cp1253.csetvpf-10680: The file [41919 955399] has the wrong block count in
the StatData (32) - corrected to (0)
/iso-8859-8.cmapvpf-10680: The file [41919 955905] has the wrong block count
in the StatData (56) - corrected to (0)
/iso-8859-8.csetvpf-10680: The file [41919 955917] has the wrong block count
in the StatData (32) - corrected to (0)
/cp1254.csetvpf-10680: The file [41919 955409] has the wrong block count in
the StatData (32) - corrected to (16)
/iso-8859-9.cmapvpf-10680: The file [41919 955918] has the wrong block count
in the StatData (64) - corrected to (24)
/iso-8859-9.csetvpf-10680: The file [41919 955919] has the wrong block count
in the StatData (32) - corrected to (8)
/cp1255.cmapvpf-10680: The file [41919 955412] has the wrong block count in
the StatData (72) - corrected to (0)
/cp1255.csetvpf-10680: The file [41919 955415] has the wrong block count in
the StatData (32) - corrected to (16)
/cp1256.cmapvpf-10680: The file [41919 955419] has the wrong block count in
the StatData (88) - corrected to (72)
/cp1256.csetvpf-10680: The file [41919 955423] has the wrong block count in
the StatData (32) - corrected to (0)
/cp1257.cmapvpf-10680: The file [41919 955424] has the wrong block count in
the StatData (64) - corrected to (0)
/cp1257.csetvpf-10680: The file [41919 955425] has the wrong block count in
the StatData (32) - corrected to (8)
/cp1258.cmapvpf-10680: The file [41919 955426] has the wrong block count in
the StatData (72) - corrected to (8)
/cp1258.csetvpf-10680: The file [41919 955427] has the wrong block count in
the StatData (32) - corrected to (0)
/nroff-filter.sovpf-10680: The file [41919 587511] has the wrong block count
in the StatData (32) - corrected to (16)
/context-filter.sovpf-10680: The file [41919 954991] has the wrong block
count in the StatData (56) - corrected to (0)
/email-filter.sovpf-10680: The file [41919 587502] has the wrong block count
in the StatData (40) - corrected to (32)
/texinfo-filter.sovpf-10680: The file [41919 955023] has the wrong block
count in the StatData (56) - corrected to (40)
/iso-8859-10.cmapvpf-10680: The file [41919 955931] has the wrong block
count in the StatData (64) - corrected to (0)
/iso-8859-10.csetvpf-10680: The file [41919 955935] has the wrong block
count in the StatData (32) - corrected to (0)
/texinfo-filter.infovpf-10680: The file [41919 955069] has the wrong block
count in the StatData (8) - corrected to (0)
/iso-8859-11.cmapvpf-10680: The file [41919 955943] has the wrong block
count in the StatData (56) - corrected to (24)
/usr/lib/python2.4/site-packages/pysqlite2/test/regression.pyovpf-10680: The
file [53326 1950591] has the wrong block count in the StatData (8) -
corrected to (0)
/dbapi.pyovpf-10680: The file [53326 1950588] has the wrong block count in
the StatData (64) - corrected to (8)
/hooks.pyovpf-10680: The file [53326 1950590] has the wrong block count in
the StatData (16) - corrected to (0)
/types.pyovpf-10680: The file [53326 1950593] has the wrong block count in
the StatData (32) - corrected to (0)
/userfunctions.pyovpf-10680: The file [53326 1950594] has the wrong block
count in the StatData (40) - corrected to (0)
/factory.pyovpf-10680: The file [53326 1950589] has the wrong block count in
the StatData (24) - corrected to (0)
/__init__.pyovpf-10680: The file [53326 1950587] has the wrong block count
in the StatData (8) - corrected to (0)
/transactions.pyovpf-10680: The file [53326 1950592] has the wrong block
count in the StatData (16) - corrected to (0)
/usr/lib/portage/pym/xpak.pyovpf-10680: The file [58805 2145846] has the
wrong block count in the StatData (32) - corrected to (8)
/cvstree.pyovpf-10680: The file [58805 362089] has the wrong block count in
the StatData (24) - corrected to (0)
/portage.pyvpf-10680: The file [58805 2144984] has the wrong block count in
the StatData (560) - corrected to (488)
/portage_dep.pyvpf-10680: The file [58805 2144976] has the wrong block count
in the StatData (40) - corrected to (32)
/output.pycvpf-10680: The file [58805 110265] has the wrong block count in
the StatData (32) - corrected to (24)
/portage_versions.pyvpf-10680: The file [58805 2144989] has the wrong block
count in the StatData (24) - corrected to (16)
/portage_data.pyvpf-10680: The file [58805 2144974] has the wrong block
count in the StatData (16) - corrected to (8)
/portage_dep.pycvpf-10680: The file [58805 122519] has the wrong block count
in the StatData (32) - corrected to (0)
/portage_const.pycvpf-10680: The file [58805 122463] has the wrong block
count in the StatData (8) - corrected to (0)
/portage_util.pycvpf-10680: The file [58805 122516] has the wrong block
count in the StatData (64) - corrected to (0)
/portage_exception.pycvpf-10680: The file [58805 122517] has the wrong block
count in the StatData (16) - corrected to (0)
/portage_versions.pycvpf-10680: The file [58805 122520] has the wrong block
count in the StatData (16) - corrected to (8)
/portage_manifest.pyvpf-10680: The file [58805 2144983] has the wrong block
count in the StatData (48) - corrected to (40)
/portage.pyovpf-10680: The file [58805 50208] has the wrong block count in
the StatData (456) - corrected to (256)
/portage_locks.pycvpf-10680: The file [58805 644193] has the wrong block
count in the StatData (24) - corrected to (16)
/portage_util.pyvpf-10680: The file [58805 2144987] has the wrong block
count in the StatData (64) - corrected to (24)
/usr/share/gimp/2.0/gradients/Pastels.ggrvpf-10680: The file [115166 115185]
has the wrong block count in the StatData (8) - corrected to (0)
/Purples.ggrvpf-10680: The file [115166 115214] has the wrong block count in
the StatData (8) - corrected to (0)
/Radial_Rainbow_Hoop.ggrvpf-10680: The file [115166 115168] has the wrong
block count in the StatData (8) - corrected to (0)
/Cold_Steel_2.ggrvpf-10680: The file [115166 115238] has the wrong block
count in the StatData (8) - corrected to (0)
/Abstract_1.ggrvpf-10680: The file [115166 115219] has the wrong block count
in the StatData (8) - corrected to (0)
/Abstract_2.ggrvpf-10680: The file [115166 115173] has the wrong block count
in the StatData (8) - corrected to (0)
/Abstract_3.ggrvpf-10680: The file [115166 115189] has the wrong block count
in the StatData (8) - corrected to (0)
/Radial_Eyeball_Blue.ggrvpf-10680: The file [115166 115210] has the wrong
block count in the StatData (8) - corrected to (0)
/Radial_Eyeball_Brown.ggrvpf-10680: The file [115166 115174] has the wrong
block count in the StatData (8) - corrected to (0)
/Radial_Eyeball_Green.ggrvpf-10680: The file [115166 115175] has the wrong
block count in the StatData (8) - corrected to (0)
/Crown_molding.ggrvpf-10680: The file [115166 115240] has the wrong block
count in the StatData (8) - corrected to (0)
/Pastel_Rainbow.ggrvpf-10680: The file [115166 115231] has the wrong block
count in the StatData (8) - corrected to (0)
/usr/share/gtk-doc/data/gtk-doc.dclvpf-10680: The file [131823 131835] has
the wrong block count in the StatData (8) - corrected to (0)
/gtk-doc.dslvpf-10680: The file [131823 131826] has the wrong block count in
the StatData (32) - corrected to (24)
/gtk-doc.xslvpf-10680: The file [131823 131829] has the wrong block count in
the StatData (48) - corrected to (0)
/gtkdoc-common.plvpf-10680: The file [131823 131824] has the wrong block
count in the StatData (24) - corrected to (16)
/devhelp.xslvpf-10680: The file [131823 131834] has the wrong block count in
the StatData (16) - corrected to (0)
/right.pngvpf-10680: The file [131823 131827] has the wrong block count in
the StatData (8) - corrected to (0)
/left.pngvpf-10680: The file [131823 131836] has the wrong block count in
the StatData (8) - corrected to (0)
/home.pngvpf-10680: The file [131823 131830] has the wrong block count in
the StatData (8) - corrected to (0)
/devhelp2.xslvpf-10680: The file [131823 131832] has the wrong block count
in the StatData (16) - corrected to (0)
/gtk-doc.makevpf-10680: The file [131823 131831] has the wrong block count
in the StatData (16) - corrected to (0)
/version-greater-or-equal.xslvpf-10680: The file [131823 131833] has the
wrong block count in the StatData (8) - corrected to (0)
/usr/share/pixmaps/emacs-w3m/open-up.xpmvpf-10680: The file [1064675
1949804] has the wrong block count in the StatData (8) - corrected to (0)
/image-up.xpmvpf-10680: The file [1064675 1949823] has the wrong block count
in the StatData (8) - corrected to (0)
/include/qt4/QtGui/QTimeEditvpf-10680: The file [109438 338285] has the
wrong block count in the StatData (8) - corrected to (0)
/QPushButtonvpf-10680: The file [109438 338289] has the wrong block count in
the StatData (8) - corrected to (0)
/QAbstractScrollAreavpf-10680: The file [109438 338283] has the wrong block
count in the StatData (8) - corrected to (0)
/QTabBarvpf-10680: The file [109438 338281] has the wrong block count in the
StatData (8) - corrected to (0)
/QMenuvpf-10680: The file [109438 338298] has the wrong block count in the
StatData (8) - corrected to (0)
/QAbstractSlidervpf-10680: The file [109438 338279] has the wrong block
count in the StatData (8) - corrected to (0)
/QDialogButtonBoxvpf-10680: The file [109438 338276] has the wrong block
count in the StatData (8) - corrected to (0)
/QLineEditvpf-10680: The file [109438 338280] has the wrong block count in
the StatData (8) - corrected to (0)
/QLabelvpf-10680: The file [109438 338282] has the wrong block count in the
StatData (8) - corrected to (0)
/QGraphicsItemAnimationvpf-10680: The file [109438 338300] has the wrong
block count in the StatData (8) - corrected to (0)
/QRegExpValidatorvpf-10680: The file [109438 338253] has the wrong block
count in the StatData (8) - corrected to (0)
/QAbstractSpinBoxvpf-10680: The file [109438 338290] has the wrong block
count in the StatData (8) - corrected to (0)
/QStackedWidgetvpf-10680: The file [109438 338292] has the wrong block count
in the StatData (8) - corrected to (0)
/QMdiSubWindowvpf-10680: The file [109438 338288] has the wrong block count
in the StatData (8) - corrected to (0)
/QButtonGroupvpf-10680: The file [109438 338296] has the wrong block count
in the StatData (8) - corrected to (0)
/QDockWidgetvpf-10680: The file [109438 338278] has the wrong block count in
the StatData (8) - corrected to (0)
/QWorkspacevpf-10680: The file [109438 338297] has the wrong block count in
the StatData (8) - corrected to (0)
/QCheckBoxvpf-10680: The file [109438 338299] has the wrong block count in
the StatData (8) - corrected to (0)
/QGroupBoxvpf-10680: The file [109438 338277] has the wrong block count in
the StatData (8) - corrected to (0)
/QMdiAreavpf-10680: The file [109438 338291] has the wrong block count in
the StatData (8) - corrected to (0)
/QSpinBoxvpf-10680: The file [109438 338295] has the wrong block count in
the StatData (8) - corrected to (0)
/QDoubleSpinBoxvpf-10680: The file [109438 338294] has the wrong block count
in the StatData (8) - corrected to (0)
/QLCDNumbervpf-10680: The file [109438 338293] has the wrong block count in
the StatData (8) - corrected to (0)
/QSplashScreenvpf-10680: The file [109438 338287] has the wrong block count
in the StatData (8) - corrected to (0)
/QToolBarvpf-10680: The file [109438 338251] has the wrong block count in
the StatData (8) - corrected to (0)
/QToolBoxvpf-10680: The file [109438 338250] has the wrong block count in
the StatData (8) - corrected to (0)
/QDateTimeEditvpf-10680: The file [109438 338286] has the wrong block count
in the StatData (8) - corrected to (0)
/QFocusFramevpf-10680: The file [109438 338258] has the wrong block count in
the StatData (8) - corrected to (0)
/QMainWindowvpf-10680: The file [109438 338275] has the wrong block count in
the StatData (8) - corrected to (0)
/QFontComboBoxvpf-10680: The file [109438 338252] has the wrong block count
in the StatData (8) - corrected to (0)
/usr/include/gconf/2/gconf/gconf-enum-types.hvpf-10680: The file [1173743
1126615] has the wrong block count in the StatData (8) - corrected to (0)
/gconf-client.hvpf-10680: The file [1173743 1126742] has the wrong block
count in the StatData (32) - corrected to (16)
/gconf.hvpf-10680: The file [1173743 1126910] has the wrong block count in
the StatData (32) - corrected to (24)
/usr/portage/dev-php/PEAR-Testing_Selenium/Manifestvpf-10680: The file
[2551293 1398636] has the wrong block count in the StatData (8) - corrected
to (0)
/PEAR-Testing_Selenium-0.3.2.ebuildvpf-10680: The file [2551293 1398637] has
the wrong block count in the StatData (8) - corrected to (0)
/usr/portage/metadata/cache/app-office/mozilla-sunbird-0.5vpf-10680: The
file [2602580 2594463] has the wrong block count in the StatData (16) -
corrected to (0)
/planner-0.14.2vpf-10680: The file [2602580 2602684] has the wrong block
count in the StatData (8) - corrected to (0)
/planner-0.14vpf-10680: The file [2602580 2551667] has the wrong block count
in the StatData (8) - corrected to (0)
/usr/portage/metadata/cache/www-apps/bugzilla-2.22.2vpf-10680: The file
[2609998 2569697] has the wrong block count in the StatData (8) - corrected
to (0)
/usr/portage/x11-misc/dxpc/files/dxpc-3.8.2-lzo2.patchvpf-10680: The file
[2643903 2643904] has the wrong block count in the StatData (32) - corrected
to (24)
/usr/portage/x11-misc/xcompmgr/Manifestvpf-10680: The file [2644702 2644703]
has the wrong block count in the StatData (16) - corrected to (0)
/usr/portage/x11-misc/afbinit/Manifestvpf-10680: The file [2645061 2645063]
has the wrong block count in the StatData (16) - corrected to (0)
/ChangeLogvpf-10680: The file [2645061 2645071] has the wrong block count in
the StatData (16) - corrected to (0)
/usr/portage/app-mobilephone/smssend/Manifestvpf-10680: The file [2529907
2144598] has the wrong block count in the StatData (8) - corrected to (0)
/ChangeLogvpf-10680: The file [2529907 2144597] has the wrong block count in
the StatData (8) - corrected to (0)
/usr/portage/app-mobilephone/smstools/Manifestvpf-10680: The file [2530031
2530032] has the wrong block count in the StatData (16) - corrected to (0)
/usr/portage/app-arch/unzip/Manifestvpf-10680: The file [2296286 2296287]
has the wrong block count in the StatData (16) - corrected to (0)
/ChangeLogvpf-10680: The file [2296286 2296294] has the wrong block count in
the StatData (16) - corrected to (0)
/usr/portage/app-accessibility/mbrola/Manifestvpf-10680: The file [2293999
2294005] has the wrong block count in the StatData (16) - corrected to (0)
/usr/portage/net-p2p/dctc/ChangeLogvpf-10680: The file [2623925 2623931] has
the wrong block count in the StatData (16) - corrected to (0)
/usr/portage/media-libs/libgphoto2/files/libgphoto2-
2.3.1-udev-rules-fix3.diffvpf-10680 : The file [2580356 2540311] has the
wrong block count in the StatData (8) - corrected to (0)
/usr/portage/app-emulation/uade/files/uade-
2.05-audacious-1.3api.patchvpf-10680: The file [2301949 2301950] has the
wrong block count in the StatData (16) - corrected to (0)
/usr/portage/app-emulation/crossover-office-pro-bin/Manifestvpf-10680: The
file [2302174 2302175] has the wrong block count in the StatData (16) -
corrected to (0)
/usr/portage/sys-cluster/vzctl/files/vz.initdvpf-10680: The file [2635773
2635776] has the wrong block count in the StatData (16) - corrected to (0)
/usr/portage/net-voip/wengophone-bin/files/wengophone-bin.pngvpf-10680: The
file [2625118 2625119] has the wrong block count in the StatData (16) -
corrected to (8)
/usr/portage/app-office/openoffice/openoffice-2.2.1.ebuildvpf-10680 : The
file [2530543 2530553] has the wrong block count in the StatData (24) -
corrected to (0)
/ChangeLogvpf-10680: The file [2530543 1386106] has the wrong block count in
the StatData (144) - corrected to (120)
/usr/portage/dev-java/poi/filesrebuild_semantic_pass: The entry [2537636
2537772] (" poi-3.0-src-isDateFormat.patch") in directory [2537636 2537771]
points to nowhere - is removed
vpf-10650: The directory [2537636 2537771] has the wrong size in the
StatData (184) - corrected to (136)
/usr/portage/media-sound/museseq/files/museseq- 0.6.2-gcc34.patchvpf-10680:
The file [2585525 2585527] has the wrong block count in the StatData (16) -
corrected to (0)
/museseq-0.6.2-int2ptr.patchvpf-10680: The file [2585525 2585531] has the
wrong block count in the StatData (40) - corrected to (16)
/usr/portage/media-sound/asunder/asunder-0.8.1.ebuildvpf-10680: The file
[2586156 2586157] has the wrong block count in the StatData (8) - corrected
to (0)
/usr/portage/app-pda/synce-rra/files/synce-rra-0.9.1-textrel.patchvpf-10680:
The file [2530782 2530784] has the wrong block count in the StatData
(40)
- corrected to (16)
/multisync/files/multisync-gcc4.patchvpf-10680: The file [2530813 2530815]
has the wrong block count in the StatData (16) - corrected to (0)
/usr/portage/app-vim/perl-support/Manifestvpf-10680: The file [2534233
2534234] has the wrong block count in the StatData (16) - corrected to (0)
/usr/portage/net-dialup/hsfmodem/Manifestvpf-10680: The file [2616182
2616189] has the wrong block count in the StatData (16) - corrected to (0)
/hsfmodem-7.60.00.09-r1.ebuildvpf-10680: The file [2616182 2616183] has the
wrong block count in the StatData (8) - corrected to (0)
/home/jorge/itarebuild_semantic_pass: The entry [328283 9083]
("catalogo.pdf") in directory [328283 99741] points to nowhere - is
removed
vpf-10650: The directory [328283 99741] has the wrong size in the StatData
(112) - corrected to (80)
/home/jorge/Mail/inbox/orkut/459vpf-10680: The file [133713 50310] has the
wrong block count in the StatData (8) - corrected to (0)
/462vpf-10680: The file [133713 2649630] has the wrong block count in the
StatData (8) - corrected to (0)
/463vpf-10680: The file [133713 2649632] has the wrong block count in the
StatData (8) - corrected to (0)
/goianos/102vpf-10680: The file [96260 328644] has the wrong block count in
the StatData (16) - corrected to (8)
/104vpf-10680: The file [96260 46405] has the wrong block count in the
StatData (16) - corrected to (0)
/105vpf-10680: The file [96260 2696861] has the wrong block count in the
StatData (16) - corrected to (8)
/home/jorge/hda2/samba_publico/Chiptune2.oggvpf-10680: The file [357681
115892] has the wrong block count in the StatData (1000) - corrected to
(144)
/home/jorge/hda2/samba_publico/apagao.mkvvpf-10680: The file [328283 50273]
has the wrong block count in the StatData (527296) - corrected to (524328)
/home/jorge/.claws-mailvpf-10680: The directory [328283 9076] has the wrong
block count in the StatData (5) - corrected to (4)
vpf-10650: The directory [328283 9076] has the wrong size in the StatData
(2224) - corrected to (2008)
...
nsions/{b9db16a4-6edc-47ec-a1f4-b86292ed211d}/components/dhIUtilService.xptvpf-10680:
The file [344007 2753874] has the wrong block count in the StatData (8) -
corrected to (0)
...
ult/extensions/{b9db16a4-6edc-47ec-a1f4-b86292ed211d}/components/.cvsignorevpf-10680:
The file [344007 2753872] has the wrong block count in the StatData (8) -
corrected to (0)
...
tensions/{b9db16a4-6edc-47ec-a1f4-b86292ed211d}/components/dhUtilService.jsvpf-10680:
The file [344007 2753870] has the wrong block count in the StatData (56) -
corrected to (0)
... 1.default/extensions/{D4DD63FA-01E4-46a7-B6B1-EDAB7D6AD389}/chrome.manifestvpf-10680:
The file [349636 2753710] has the wrong block count in the StatData (8) -
corrected to (0)
... 8b021.default/extensions/{D4DD63FA-01E4-46a7-B6B1-EDAB7D6AD389}/install.rdfvpf-10680:
The file [349636 2753640] has the wrong block count in the StatData (8) -
corrected to (0)
...
-01E4-46a7-B6B1-EDAB7D6AD389}/translations/0.9.5/pt-BR/downbarAboutText.dtdvpf-10680:
The file [2753599 2753697] has the wrong block count in the StatData (32) -
corrected to (0)
...
D63FA-01E4-46a7-B6B1-EDAB7D6AD389}/translations/0.9.5/pt-BR/downbartext.dtdvpf-10680:
The file [2753599 2753622] has the wrong block count in the StatData (16) -
corrected to (8)
...
FA-01E4-46a7-B6B1-EDAB7D6AD389}/translations/0.9.5/pt-BR/downbar.propertiesvpf-10680:
The file [2753599 2753600] has the wrong block count in the StatData (8) -
corrected to (0)
/home/jorge/arquivo.tar.7zvpf-10680: The file [328283 349968] has the wrong
block count in the StatData (32128) - corrected to (20136)
/home/jorge/Saturday_Night_Live__Nancy_Grace.flvvpf-10680: The file [328283
2754290] has the wrong block count in the StatData (17744) - corrected to
(17736)
/home/jorge/.thumbnails/normal/75cf25db52aee1645f444f68ff48704c.jpgvpf-10680:
The file [352016 2696557] has the wrong block count in the StatData (48) -
corrected to (0)
/86f85ff5e5002ba6df5d60f6f4992720.jpgvpf-10680: The file [352016 2696942]
has the wrong block count in the StatData (56) - corrected to (0)
/5c83f8e8feff0cce7c7b9a43c52c4d01.jpgvpf-10680: The file [352016 1394235]
has the wrong block count in the StatData (48) - corrected to (0)
/c0f76046511bc83dd45b56446edc3791.pngvpf-10680: The file [352016 103230] has
the wrong block count in the StatData (56) - corrected to (0)
/7b32c2264d4b655e696af470e02cf62f.jpgvpf-10680: The file [352016 2696919]
has the wrong block count in the StatData (40) - corrected to (0)
/b2d40c34ddf0d57b2d0ca85cc1f86f3a.jpgvpf-10680: The file [352016 1395458]
has the wrong block count in the StatData (56) - corrected to (0)
/5b69d6ff584bbdb46cdf134fa5959583.jpgvpf-10680: The file [352016 2696556]
has the wrong block count in the StatData (48) - corrected to (0)
/d9bbb59ae431a5f588cf99e78399f76a.jpgvpf-10680: The file [352016 2696936]
has the wrong block count in the StatData (40) - corrected to (0)
/35e31cf32515f670766c4a44f2cfc29f.jpgvpf-10680: The file [352016 1333984]
has the wrong block count in the StatData (64) - corrected to (0)
/dfbd2756cacc1e29f71a191f88b4b310.jpgvpf-10680: The file [352016 1334034]
has the wrong block count in the StatData (40) - corrected to (0)
/5393b199d7fac4221bfe62e9dd677bae.jpgvpf-10680: The file [352016 1395534]
has the wrong block count in the StatData (48) - corrected to (0)
/8a37a8e9d9189786212e152ed875a2bc.jpgvpf-10680: The file [352016 1333231]
has the wrong block count in the StatData (56) - corrected to (0)
/c3f6acad2fa2fb0b99baa0d8f0223766.jpgvpf-10680: The file [352016 1384552]
has the wrong block count in the StatData (64) - corrected to (0)
/14da797bf25a1c9529e0f0348d43abb8.jpgvpf-10680: The file [352016 1979380]
has the wrong block count in the StatData (48) - corrected to (0)
/3b677a81e6cd3405c2221cc5692a54b8.jpgvpf-10680: The file [352016 2696945]
has the wrong block count in the StatData (56) - corrected to (0)
/79976f49f883259be4bb38b2eec0b075.jpgvpf-10680: The file [352016 2696541]
has the wrong block count in the StatData (48) - corrected to (0)
/f438c57639c05ff15a94d7950834a09d.jpgvpf-10680: The file [352016 2696546]
has the wrong block count in the StatData (32) - corrected to (24)
/26813808b6b2744647a44608953508d7.jpgvpf-10680: The file [352016 1333224]
has the wrong block count in the StatData (48) - corrected to (0)
/b285c4d77a31107afed70433bbe0d08a.jpgvpf-10680: The file [352016 2696551]
has the wrong block count in the StatData (48) - corrected to (0)
/f7cba2b1206033616a1dfb92a576ae0a.jpgvpf-10680: The file [352016 2696562]
has the wrong block count in the StatData (64) - corrected to (0)
/711b741206eb3ca134ad0bb2dca38354.jpgvpf-10680: The file [352016 2696917]
has the wrong block count in the StatData (48) - corrected to (0)
/fd0dcf19a7e23360dbef7672050cfb0a.jpgvpf-10680: The file [352016 2242812]
has the wrong block count in the StatData (40) - corrected to (0)
/49a008b8deef9d8c226f8737a1080601.jpgvpf-10680: The file [352016 2696932]
has the wrong block count in the StatData (40) - corrected to (0)
/6fe524f9d86d5864799613f3140d2fb9.jpgvpf-10680: The file [352016 1333377]
has the wrong block count in the StatData (48) - corrected to (0)
/f822e979be1df8214a0894452fabd302.jpgvpf-10680: The file [352016 2696922]
has the wrong block count in the StatData (56) - corrected to (0)
/a91b7f30d5c6dfa015b16193c2f0a263.jpgvpf-10680: The file [352016 1393373]
has the wrong block count in the StatData (48) - corrected to (0)
/2a6c26a73352c8d09f39695bae487a09.jpgvpf-10680: The file [352016 1394226]
has the wrong block count in the StatData (56) - corrected to (0)
/d0c40e9d4d731c568ee0cf7b25ca8b85.pngvpf-10680: The file [352016 1025065]
has the wrong block count in the StatData (64) - corrected to (0)
/8b4ac2ed31ea78130763e2a9f6414189.jpgvpf-10680: The file [352016 2696559]
has the wrong block count in the StatData (56) - corrected to (0)
/ba816c9d90b5aeb83f5b71f8517af9fe.jpgvpf-10680: The file [352016 1979364]
has the wrong block count in the StatData (56) - corrected to (0)
/402a4e0b7c11acf93d6ac149028c2067.jpgvpf-10680: The file [352016 2696552]
has the wrong block count in the StatData (56) - corrected to (0)
/e6fc38032b8250dd4018becd1ef01a0b.jpgvpf-10680: The file [352016 2696543]
has the wrong block count in the StatData (48) - corrected to (40)
/7a8479061e01407d70913fc45cd4bb18.jpgvpf-10680: The file [352016 2696548]
has the wrong block count in the StatData (48) - corrected to (16)
/78fff8fb91df82dbfa99d060d32284ea.jpgvpf-10680: The file [352016 2696938]
has the wrong block count in the StatData (40) - corrected to (0)
/343600adea3f008aa72ec1493bb0b3a6.jpgvpf-10680: The file [352016 2696920]
has the wrong block count in the StatData (48) - corrected to (0)
/1ad398f9d8564d982a305f0e2b21628d.jpgvpf-10680: The file [352016 2145872]
has the wrong block count in the StatData (32) - corrected to (0)
/139fa7839bf1524586cdfc7f3ca9a073.jpgvpf-10680: The file [352016 1393393]
has the wrong block count in the StatData (56) - corrected to (0)
/ac316fe1adf75da6175cb2c2e2c493bf.jpgvpf-10680: The file [352016 2696542]
has the wrong block count in the StatData (56) - corrected to (0)
/7d15d80b8c2520847c45641fd113b89e.jpgvpf-10680: The file [352016 2696558]
has the wrong block count in the StatData (48) - corrected to (0)
/11b5173cf720ddc9be63339d888facbc.jpgvpf-10680: The file [352016 2696946]
has the wrong block count in the StatData (32) - corrected to (0)
/e7ce045fa55ada94b4d4fb8b664b1a43.jpgvpf-10680: The file [352016 1395580]
has the wrong block count in the StatData (48) - corrected to (0)
/2c6df5b5b52110c83f166a5c3f5f9197.jpgvpf-10680: The file [352016 1394245]
has the wrong block count in the StatData (40) - corrected to (0)
/d1c0a370cf8bb0638e04026651eb89d7.jpgvpf-10680: The file [352016 2696934]
has the wrong block count in the StatData (56) - corrected to (0)
/380f08f8fbbab49afad9174a947469d1.jpgvpf-10680: The file [352016 1981887]
has the wrong block count in the StatData (48) - corrected to (0)
/4db37e82f6c0c1d5d87f23037bf3f895.jpgvpf-10680: The file [352016 2696539]
has the wrong block count in the StatData (64) - corrected to (16)
/70b8565608ea3bd9a117cc82d1b92c1e.jpgvpf-10680: The file [352016 2696537]
has the wrong block count in the StatData (48) - corrected to (16)
/29a85fe6cf29ae37970185fb9883c4c7.jpgvpf-10680: The file [352016 2696925]
has the wrong block count in the StatData (40) - corrected to (0)
/29f5f0aa8c58fdc99561867fb5bd6493.jpgvpf-10680: The file [352016 1395558]
has the wrong block count in the StatData (48) - corrected to (0)
/d88b73cb04cd7e007336aa06d71e3699.jpgvpf-10680: The file [352016 2696555]
has the wrong block count in the StatData (56) - corrected to (0)
/9918632d609757550b28789d930f762c.jpgvpf-10680: The file [352016 1394995]
has the wrong block count in the StatData (48) - corrected to (0)
/210a62d4af4b825f407273b02eee7ebc.jpgvpf-10680: The file [352016 2696538]
has the wrong block count in the StatData (40) - corrected to (0)
/07e21a10faa6a28df3e12a66f12e3207.jpgvpf-10680: The file [352016 2696553]
has the wrong block count in the StatData (40) - corrected to (0)
/2021a2eda807d60d729274eea6c2b518.jpgvpf-10680: The file [352016 2672619]
has the wrong block count in the StatData (48) - corrected to (24)
/5acd1aa3f3068fa2faaebc6e67f5b49e.jpgvpf-10680: The file [352016 2696933]
has the wrong block count in the StatData (48) - corrected to (0)
/6f513e20f34b0ad826682be3e3909f82.jpgvpf-10680: The file [352016 1394282]
has the wrong block count in the StatData (40) - corrected to (0)
/45a99ae50fcb0f3a3b8ee920f42b158a.jpgvpf-10680: The file [352016 1979351]
has the wrong block count in the StatData (56) - corrected to (0)
/51b14e11cab9c01b70443ad1854ee222.jpgvpf-10680: The file [352016 1394198]
has the wrong block count in the StatData (32) - corrected to (0)
/11e8c47f7e80755ebaaf1aed5663a038.jpgvpf-10680: The file [352016 1394268]
has the wrong block count in the StatData (32) - corrected to (0)
/fb7a6fb4ee4a765f824eed0121f94221.jpgvpf-10680: The file [352016 2696540]
has the wrong block count in the StatData (56) - corrected to (0)
/993dd161aa173b24d929e56e7098ae0b.jpgvpf-10680: The file [352016 1393727]
has the wrong block count in the StatData (56) - corrected to (0)
/351930b29ba53ebb3c2f25decbcff4cd.jpgvpf-10680: The file [352016 1334021]
has the wrong block count in the StatData (40) - corrected to (0)
/bdade56ac866e938d87e8279166c28fb.jpgvpf-10680: The file [352016 2696929]
has the wrong block count in the StatData (48) - corrected to (0)
/1e8e36c89cb05fd8f00b10fcb41f55ca.jpgvpf-10680: The file [352016 1394254]
has the wrong block count in the StatData (48) - corrected to (0)
/2a12563ada540f7447528a971b53baff.jpgvpf-10680: The file [352016 2696941]
has the wrong block count in the StatData (48) - corrected to (0)
/5d7b2dee22cc4cbb810218797c1027dd.jpgvpf-10680: The file [352016 2696926]
has the wrong block count in the StatData (48) - corrected to (0)
/88f28df8c4d071cbfd99fff60be85c3e.jpgvpf-10680: The file [352016 1394277]
has the wrong block count in the StatData (40) - corrected to (8)
/3f39a7b3211105b3e4aee80bb743b3d3.jpgvpf-10680: The file [352016 2696923]
has the wrong block count in the StatData (48) - corrected to (0)
/9aa3d065b64fc66fee5492932b71324a.jpgvpf-10680: The file [352016 1333191]
has the wrong block count in the StatData (40) - corrected to (0)
/1c59d54b3633cdb05cef1b17d4249d2e.jpgvpf-10680: The file [352016 2696947]
has the wrong block count in the StatData (40) - corrected to (0)
/d5fc4aac8cb50e3b4ab93ae22a0bf113.jpgvpf-10680: The file [352016 2696927]
has the wrong block count in the StatData (40) - corrected to (0)
/5f1aa73bd2ab40d63676ab5d65024d06.jpgvpf-10680: The file [352016 2696939]
has the wrong block count in the StatData (40) - corrected to (0)
/a8f06bfc21927471b523250c70ba12fb.jpgvpf-10680: The file [352016 2696931]
has the wrong block count in the StatData (48) - corrected to (0)
/9ba84f1360a5a29e7dc20bcf6521ebe1.jpgvpf-10680: The file [352016 1333186]
has the wrong block count in the StatData (56) - corrected to (0)
/db6640d3c0bba3db5ec896806e4e3bc6.jpgvpf-10680: The file [352016 2696944]
has the wrong block count in the StatData (48) - corrected to (0)
/f434c812a1b56c32bcda3e9a921b4f26.jpgvpf-10680: The file [352016 2696943]
has the wrong block count in the StatData (40) - corrected to (0)
/61d215637edee3c27106b63430ca0f35.jpgvpf-10680: The file [352016 2696549]
has the wrong block count in the StatData (48) - corrected to (0)
/82061b3f1ca9e58607d8c393c89ee3c5.jpgvpf-10680: The file [352016 2696563]
has the wrong block count in the StatData (40) - corrected to (0)
/d0d4c7ffbad8b78c59b279c5c0f8cfb2.jpgvpf-10680: The file [352016 2696930]
has the wrong block count in the StatData (40) - corrected to (0)
/6ea092b457090bccdcce6782f14cbaf3.jpgvpf-10680: The file [352016 1333234]
has the wrong block count in the StatData (56) - corrected to (0)
/83f40bd56336a2cc74f3b2aab8b906ec.jpgvpf-10680: The file [352016 2696928]
has the wrong block count in the StatData (48) - corrected to (0)
/e49df82ad21de5db59be73dbe93e5ca1.jpgvpf-10680: The file [352016 2696554]
has the wrong block count in the StatData (56) - corrected to (0)
/7573ac9b4290f86da781512680f73b90.jpgvpf-10680: The file [352016 2696560]
has the wrong block count in the StatData (48) - corrected to (0)
/55b9cfb0b0d0d4df7d8c8ae230a5ff51.jpgvpf-10680: The file [352016 2696545]
has the wrong block count in the StatData (56) - corrected to (48)
/b661e5d3aa91721f826064a807000139.jpgvpf-10680: The file [352016 2696918]
has the wrong block count in the StatData (48) - corrected to (0)
/1066d664e7a1084bee738da8285fa278.jpgvpf-10680: The file [352016 1386154]
has the wrong block count in the StatData (56) - corrected to (0)
/b3d2dea660b98abad4e9fcb444691e33.jpgvpf-10680: The file [352016 2696921]
has the wrong block count in the StatData (48) - corrected to (0)
/15a432482b3631e91232fc8383db4d1e.jpgvpf-10680: The file [352016 1333212]
has the wrong block count in the StatData (32) - corrected to (0)
/f012acd0f0ff04079e884bb41b591f8d.jpgvpf-10680: The file [352016 1332998]
has the wrong block count in the StatData (48) - corrected to (24)
/3f6dd3d84d1bb18255fb03bcebb83b84.jpgvpf-10680: The file [352016 2696937]
has the wrong block count in the StatData (48) - corrected to (0)
/73393b64a42d40991c51f561b3b35788.jpgvpf-10680: The file [352016 2696924]
has the wrong block count in the StatData (56) - corrected to (0)
/c41f71bb0e29e9ebdb6659447ca56825.pngvpf-10680: The file [352016 1334463]
has the wrong block count in the StatData (8) - corrected to (0)
/1c22b19e413850928e1a7c73d73545ff.jpgvpf-10680: The file [352016 5783] has
the wrong block count in the StatData (56) - corrected to (24)
/5fad47d2ccbf42333021317c08a9b5aa.jpgvpf-10680: The file [352016 1384735]
has the wrong block count in the StatData (48) - corrected to (0)
/7b5f72280413b91a25c719bc8df4adee.jpgvpf-10680: The file [352016 1333092]
has the wrong block count in the StatData (48) - corrected to (0)
/c31b71be8f3fde0c94abbf37e6fc17f5.jpgvpf-10680: The file [352016 2696948]
has the wrong block count in the StatData (48) - corrected to (0)
/9836b0987d0caa7a6ce5d907c126ac06.jpgvpf-10680: The file [352016 2696550]
has the wrong block count in the StatData (56) - corrected to (0)
/65c140c2762439abb6e59320b2b8a542.jpgvpf-10680: The file [352016 1395474]
has the wrong block count in the StatData (40) - corrected to (0)
/0bb37b090806c4013f43c77823b0ca69.jpgvpf-10680: The file [352016 1393647]
has the wrong block count in the StatData (64) - corrected to (0)
/da4a2cd66fd269dd27d504db82440529.jpgvpf-10680: The file [352016 1384674]
has the wrong block count in the StatData (56) - corrected to (0)
/9babb0958bc5434c3256e0d1ca6f2d5e.jpgvpf-10680: The file [352016 2672609]
has the wrong block count in the StatData (48) - corrected to (0)
/f9d2fc2cfd142849037b27cf877b3404.jpgvpf-10680: The file [352016 1396170]
has the wrong block count in the StatData (40) - corrected to (0)
/71161843e20778cb601ff9d600fc2afa.jpgvpf-10680: The file [352016 1394210]
has the wrong block count in the StatData (56) - corrected to (0)
/5615e0ab287d6ad2e5340c1e515365fb.jpgvpf-10680: The file [352016 2696935]
has the wrong block count in the StatData (48) - corrected to (0)
/47d42d5010c35341f3eed82c67981ef4.jpgvpf-10680: The file [352016 1394952]
has the wrong block count in the StatData (48) - corrected to (0)
/.recently-usedvpf-10680: The file [328283 354486] has the wrong block count
in the StatData (144) - corrected to (0)
####### Pass 3a (lost+found pass)
#########
/9076_1250027get_next_directory_item: The entry ".." of the directory [9076
1250027] pointes to [328283 9076], instead of [2 6] - corrected
vpf-10680: The file [328283 355297] has the wrong block count in the
StatData (31248) - corrected to (6120)
rewrite_file: 2 items of file [2257391 197198] moved to [2257391 11]
rewrite_file: 2 items of file [2257391 211874] moved to [2257391 16]
rewrite_file: 2 items of file [2257391 292028] moved to [2257391 19]
rewrite_file: 2 items of file [2257391 292122] moved to [2257391 20]
rewrite_file: 2 items of file [2257391 332208] moved to [2257391 22]
rewrite_file: 2 items of file [2257391 352047] moved to [2257391 23]
vpf-10680: The file [2257391 23] has the wrong block count in the StatData
(120) - corrected to (0)
rewrite_file: 2 items of file [2257391 352204] moved to [2257391 24]
rewrite_file: 2 items of file [2257391 352232] moved to [2257391 25]
rewrite_file: 2 items of file [2257391 352238] moved to [2257391 26]
rewrite_file: 2 items of file [2257391 352241] moved to [2257391 29]
rewrite_file: 2 items of file [2257391 353282] moved to [2257391 30]
rewrite_file: 2 items of file [2257391 420157] moved to [2257391 31]
rewrite_file: 2 items of file [2257391 420159] moved to [2257391 32]
rewrite_file: 2 items of file [2257391 420163] moved to [2257391 33]
rewrite_file: 2 items of file [2257391 522090] moved to [2257391 36]
rewrite_file: 2 items of file [2257391 579878] moved to [2257391 38]
rewrite_file: 2 items of file [2257391 946271] moved to [2257391 39]
rewrite_file: 2 items of file [2257391 946306] moved to [2257391 40]
rewrite_file: 2 items of file [2257391 954199] moved to [2257391 41]
rewrite_file: 2 items of file [2257391 964790] moved to [2257391 42]
rewrite_file: 2 items of file [2257391 964796] moved to [2257391 49]
rewrite_file: 2 items of file [2257391 964837] moved to [2257391 51]
rewrite_file: 2 items of file [2257391 985325] moved to [2257391 53]
rewrite_file: 2 items of file [2257391 985386] moved to [2257391 54]
rewrite_file: 2 items of file [2257391 985394] moved to [2257391 55]
rewrite_file: 2 items of file [2257391 1077917] moved to [2257391 56]
rewrite_file: 2 items of file [2257391 1090409] moved to [2257391 58]
rewrite_file: 2 items of file [2257391 1091213] moved to [2257391 59]
rewrite_file: 2 items of file [2257391 1097192] moved to [2257391 60]
rewrite_file: 2 items of file [2257391 1112452] moved to [2257391 61]
rewrite_file: 2 items of file [2257391 1113860] moved to [2257391 62]
rewrite_file: 1 items of file [2257391 1198481] moved to [2257391 63]
vpf-10680: The file [2257391 63] has the wrong block count in the StatData
(56) - corrected to (0)
rewrite_file: 2 items of file [2257391 2257239] moved to [2257391 66]
rewrite_file: 2 items of file [2257391 2257367] moved to [2257391 67]
vpf-10680: The file [2257391 67] has the wrong block count in the StatData
(80) - corrected to (16)
rewrite_file: 2 items of file [2257391 2257392] moved to [2257391 68]
vpf-10680: The file [2257391 68] has the wrong block count in the StatData
(264) - corrected to (200)
rewrite_file: 1 items of file [2257391 2257393] moved to [2257391 69]
vpf-10680: The file [2257391 69] has the wrong block count in the StatData
(7552) - corrected to (0)
rewrite_file: 2 items of file [2257391 2257397] moved to [2257391 71]
vpf-10680: The file [2257391 71] has the wrong block count in the StatData
(296) - corrected to (192)
rewrite_file: 2 items of file [2257391 2257399] moved to [2257391 78]
vpf-10680: The file [2257391 78] has the wrong block count in the StatData
(216) - corrected to (80)
rewrite_file: 1 items of file [2257391 2257428] moved to [2257391 80]
vpf-10680: The file [2257391 80] has the wrong block count in the StatData
(96) - corrected to (0)

[-- Attachment #2: Type: text/html, Size: 48083 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [gentoo-user] Corruption in reiserfs partition
  2007-09-11 19:56           ` Jorge Peixoto de Morais Neto
@ 2007-09-11 21:02             ` Volker Armin Hemmann
  0 siblings, 0 replies; 9+ messages in thread
From: Volker Armin Hemmann @ 2007-09-11 21:02 UTC (permalink / raw
  To: gentoo-user

On Dienstag, 11. September 2007, Jorge Peixoto de Morais Neto wrote:
> I'm sorry about sending this huge email again, but the first one I sent
> from the wrong account and I'm almost sure that it didn't reach the list
> (but, how can I be sure?).
>
> Below is the email:
> > > Something else that I wanted to ask: this backup that I made after the
> > > screwup but before rebuild-tree, do you think it is reliable?
> >
> > not really, no. Damaged files are damaged files. Some stuff might be
> > usable
> > but that has to be checked on a case to case basis.
>
> But I have no prior backups... the *only* information I have came from the
> filesystem after the screw up...
> The "backup" I have was made *after* the screw up but before the
> rebuild-tree.
> I'm asking if this backup is reliable.

no, it is not. Some files in the backup might be ok. But there is no guarantee 
for it. So you have to check the files in the backup, if they are correct. 
And you have to do that with every file that you want to restore.

>
> I have chosen one of the files that were zeroed in my filesystem and the
> corresponding file from the backup was OK. So at least in this case, *it
> was the rebuild-tree that corrupted the file*. This suggests that the
> *backup is reliable*.

no, that only shows, that some files are ok. rebuilt-tree did not 'corrupt the 
file' it found severe damage in the fs-structure and there was no way to save 
the structure as a whole without discarding some information.


>
> Oh, and I found useful information in the output of rebuild-tree. Turns out
> that the output was huge because it prints status information in the screen
> and erases it with ^H. So the information that stays on the screen is far
> smaller than total information that is printed on the screen. I here show
> you the information that stays in the screen (I hope this 44KB text does
> not violate some limit of the gentoo-user mailing list). You can see that
> the corrupted files are mentioned here:
>
> ####### Pass 0 #######
> block 9201872: The number of items (15) is incorrect, should be (1) -
> corrected
> block 9201872: The free space (0) is incorrect, should be (3792) -
> corrected pass0: vpf-10210: block 9201872, item 0: The item with wrong
> offset or length found [4608 16778752 0x500120063030000 DRCT (2)], len 256
> - deleted block 11173978: The number of items (8) is incorrect, should be
> (7) - corrected
> block 11173978: The free space (544) is incorrect, should be (612) -
> corrected
> 325827 directory entries were hashed with "r5" hash.
> ####### Pass 1 #######
> ####### Pass 2 #######
> ####### Pass 3 #########
> /bin/duvpf-10680: The file [4 101209] has the wrong block count in the
> StatData (120) - corrected to (0)
> /rmvpf-10680: The file [4 100717] has the wrong block count in the StatData
> (72) - corrected to (0)
> /trvpf-10680: The file [4 101347] has the wrong block count in the StatData
> (56) - corrected to (0)
> /wcvpf-10680: The file [4 101431] has the wrong block count in the StatData
> (48) - corrected to (0)
> /dirvpf-10680: The file [4 101194] has the wrong block count in the
> StatData (160) - corrected to (0)
> /cutvpf-10680: The file [4 101180] has the wrong block count in the
> StatData (56) - corrected to (0)
> /envvpf-10680: The file [4 101223] has the wrong block count in the
> StatData (32) - corrected to (0)
> /pwdvpf-10680: The file [4 100696] has the wrong block count in the
> StatData (40) - corrected to (16)
> /seqvpf-10680: The file [4 101305] has the wrong block count in the
> StatData (40) - corrected to (0)
> /ttyvpf-10680: The file [4 101359] has the wrong block count in the
> StatData (32) - corrected to (0)
> /yesvpf-10680: The file [4 101443] has the wrong block count in the
> StatData (32) - corrected to (0)
> /exprvpf-10680: The file [4 101224] has the wrong block count in the
> StatData (48) - corrected to (0)
> /headvpf-10680: The file [4 101250] has the wrong block count in the
> StatData (48) - corrected to (0)
> /tailvpf-10680: The file [4 101310] has the wrong block count in the
> StatData (72) - corrected to (8)
> /sortvpf-10680: The file [4 103533] has the wrong block count in the
> StatData (128) - corrected to (0)
> /sttyvpf-10680: The file [4 100753] has the wrong block count in the
> StatData (80) - corrected to (0)
> /syncvpf-10680: The file [4 100762] has the wrong block count in the
> StatData (32) - corrected to (0)
> /truevpf-10680: The file [4 100774] has the wrong block count in the
> StatData (24) - corrected to (0)
> /vdirvpf-10680: The file [4 101391] has the wrong block count in the
> StatData (160) - corrected to (0)
> /dirnamevpf-10680: The file [4 101207] has the wrong block count in the
> StatData (32) - corrected to (0)
> /rmdirvpf-10680: The file [4 100721] has the wrong block count in the
> StatData (32) - corrected to (0)
> /sleepvpf-10680: The file [4 101306] has the wrong block count in the
> StatData (32) - corrected to (0)
> /touchvpf-10680: The file [4 101338] has the wrong block count in the
> StatData (72) - corrected to (0)
> /unamevpf-10680: The file [4 100789] has the wrong block count in the
> StatData (32) - corrected to (0)
> /chrootvpf-10680: The file [4 101151] has the wrong block count in the
> StatData (32) - corrected to (0)
> /mkfifovpf-10680: The file [4 101253] has the wrong block count in the
> StatData (32) - corrected to (0)
> /readlinkvpf-10680: The file [4 101300] has the wrong block count in the
> StatData (40) - corrected to (0)
> /basenamevpf-10680: The file [4 101150] has the wrong block count in the
> StatData (32) - corrected to (0)
> /etc/enlightenment/sysactions.confvpf-10680: The file [6035 6036] has the
> wrong block count in the StatData (8) - corrected to (0)
> /laptop-mode/laptop-mode.confvpf-10680: The file [328445 328462] has the
> wrong block count in the StatData (32) - corrected to (0)
> /lm-profiler.confvpf-10680: The file [328445 328461] has the wrong block
> count in the StatData (8) - corrected to (0)
> /portage/package.keywords/wanted~vpf-10680: The file [6609 130550] has the
> wrong block count in the StatData (8) - corrected to (0)
> /var/db/pkg/dev-perl/XML-Parser-2.34-r1/environment.bz2vpf-10680: The file
> [1173086 1173089] has the wrong block count in the StatData (64) -
> corrected to (56)
> /var/lib/scrollkeeper/scrollkeeper_docsvpf-10680: The file [20671 35164]
> has the wrong block count in the StatData (8) - corrected to (0)
> /usr/lib/aspell-0.60/nroff-filter.infovpf-10680: The file [41919 955062]
> has the wrong block count in the StatData (8) - corrected to (0)
> /iso-8859-1.cmapvpf-10680: The file [41919 955441] has the wrong block
> count in the StatData (64) - corrected to (24)
> /iso-8859-1.csetvpf-10680: The file [41919 955446] has the wrong block
> count in the StatData (32) - corrected to (0)
> /iso-8859-2.cmapvpf-10680: The file [41919 955448] has the wrong block
> count in the StatData (64) - corrected to (16)
> /iso-8859-2.csetvpf-10680: The file [41919 955450] has the wrong block
> count in the StatData (32) - corrected to (0)
> /iso-8859-3.cmapvpf-10680: The file [41919 955454] has the wrong block
> count in the StatData (64) - corrected to (48)
> /cp1250.cmapvpf-10680: The file [41919 955070] has the wrong block count in
> the StatData (64) - corrected to (0)
> /cp1251.cmapvpf-10680: The file [41919 955072] has the wrong block count in
> the StatData (64) - corrected to (24)
> /cp1251.csetvpf-10680: The file [41919 955077] has the wrong block count in
> the StatData (32) - corrected to (8)
> /cp1252.cmapvpf-10680: The file [41919 955085] has the wrong block count in
> the StatData (64) - corrected to (24)
> /cp1252.csetvpf-10680: The file [41919 955101] has the wrong block count in
> the StatData (32) - corrected to (0)
> /iso-8859-7.csetvpf-10680: The file [41919 955694] has the wrong block
> count in the StatData (32) - corrected to (16)
> /sgml-filter.sovpf-10680: The file [41919 955019] has the wrong block count
> in the StatData (56) - corrected to (24)
> /cp1253.cmapvpf-10680: The file [41919 955397] has the wrong block count in
> the StatData (80) - corrected to (32)
> /cp1253.csetvpf-10680: The file [41919 955399] has the wrong block count in
> the StatData (32) - corrected to (0)
> /iso-8859-8.cmapvpf-10680: The file [41919 955905] has the wrong block
> count in the StatData (56) - corrected to (0)
> /iso-8859-8.csetvpf-10680: The file [41919 955917] has the wrong block
> count in the StatData (32) - corrected to (0)
> /cp1254.csetvpf-10680: The file [41919 955409] has the wrong block count in
> the StatData (32) - corrected to (16)
> /iso-8859-9.cmapvpf-10680: The file [41919 955918] has the wrong block
> count in the StatData (64) - corrected to (24)
> /iso-8859-9.csetvpf-10680: The file [41919 955919] has the wrong block
> count in the StatData (32) - corrected to (8)
> /cp1255.cmapvpf-10680: The file [41919 955412] has the wrong block count in
> the StatData (72) - corrected to (0)
> /cp1255.csetvpf-10680: The file [41919 955415] has the wrong block count in
> the StatData (32) - corrected to (16)
> /cp1256.cmapvpf-10680: The file [41919 955419] has the wrong block count in
> the StatData (88) - corrected to (72)
> /cp1256.csetvpf-10680: The file [41919 955423] has the wrong block count in
> the StatData (32) - corrected to (0)
> /cp1257.cmapvpf-10680: The file [41919 955424] has the wrong block count in
> the StatData (64) - corrected to (0)
> /cp1257.csetvpf-10680: The file [41919 955425] has the wrong block count in
> the StatData (32) - corrected to (8)
> /cp1258.cmapvpf-10680: The file [41919 955426] has the wrong block count in
> the StatData (72) - corrected to (8)
> /cp1258.csetvpf-10680: The file [41919 955427] has the wrong block count in
> the StatData (32) - corrected to (0)
> /nroff-filter.sovpf-10680: The file [41919 587511] has the wrong block
> count in the StatData (32) - corrected to (16)
> /context-filter.sovpf-10680: The file [41919 954991] has the wrong block
> count in the StatData (56) - corrected to (0)
> /email-filter.sovpf-10680: The file [41919 587502] has the wrong block
> count in the StatData (40) - corrected to (32)
> /texinfo-filter.sovpf-10680: The file [41919 955023] has the wrong block
> count in the StatData (56) - corrected to (40)
> /iso-8859-10.cmapvpf-10680: The file [41919 955931] has the wrong block
> count in the StatData (64) - corrected to (0)
> /iso-8859-10.csetvpf-10680: The file [41919 955935] has the wrong block
> count in the StatData (32) - corrected to (0)
> /texinfo-filter.infovpf-10680: The file [41919 955069] has the wrong block
> count in the StatData (8) - corrected to (0)
> /iso-8859-11.cmapvpf-10680: The file [41919 955943] has the wrong block
> count in the StatData (56) - corrected to (24)
> /usr/lib/python2.4/site-packages/pysqlite2/test/regression.pyovpf-10680:
> The file [53326 1950591] has the wrong block count in the StatData (8) -
> corrected to (0)
> /dbapi.pyovpf-10680: The file [53326 1950588] has the wrong block count in
> the StatData (64) - corrected to (8)
> /hooks.pyovpf-10680: The file [53326 1950590] has the wrong block count in
> the StatData (16) - corrected to (0)
> /types.pyovpf-10680: The file [53326 1950593] has the wrong block count in
> the StatData (32) - corrected to (0)
> /userfunctions.pyovpf-10680: The file [53326 1950594] has the wrong block
> count in the StatData (40) - corrected to (0)
> /factory.pyovpf-10680: The file [53326 1950589] has the wrong block count
> in the StatData (24) - corrected to (0)
> /__init__.pyovpf-10680: The file [53326 1950587] has the wrong block count
> in the StatData (8) - corrected to (0)
> /transactions.pyovpf-10680: The file [53326 1950592] has the wrong block
> count in the StatData (16) - corrected to (0)
> /usr/lib/portage/pym/xpak.pyovpf-10680: The file [58805 2145846] has the
> wrong block count in the StatData (32) - corrected to (8)
> /cvstree.pyovpf-10680: The file [58805 362089] has the wrong block count in
> the StatData (24) - corrected to (0)
> /portage.pyvpf-10680: The file [58805 2144984] has the wrong block count in
> the StatData (560) - corrected to (488)
> /portage_dep.pyvpf-10680: The file [58805 2144976] has the wrong block
> count in the StatData (40) - corrected to (32)
> /output.pycvpf-10680: The file [58805 110265] has the wrong block count in
> the StatData (32) - corrected to (24)
> /portage_versions.pyvpf-10680: The file [58805 2144989] has the wrong block
> count in the StatData (24) - corrected to (16)
> /portage_data.pyvpf-10680: The file [58805 2144974] has the wrong block
> count in the StatData (16) - corrected to (8)
> /portage_dep.pycvpf-10680: The file [58805 122519] has the wrong block
> count in the StatData (32) - corrected to (0)
> /portage_const.pycvpf-10680: The file [58805 122463] has the wrong block
> count in the StatData (8) - corrected to (0)
> /portage_util.pycvpf-10680: The file [58805 122516] has the wrong block
> count in the StatData (64) - corrected to (0)
> /portage_exception.pycvpf-10680: The file [58805 122517] has the wrong
> block count in the StatData (16) - corrected to (0)
> /portage_versions.pycvpf-10680: The file [58805 122520] has the wrong block
> count in the StatData (16) - corrected to (8)
> /portage_manifest.pyvpf-10680: The file [58805 2144983] has the wrong block
> count in the StatData (48) - corrected to (40)
> /portage.pyovpf-10680: The file [58805 50208] has the wrong block count in
> the StatData (456) - corrected to (256)
> /portage_locks.pycvpf-10680: The file [58805 644193] has the wrong block
> count in the StatData (24) - corrected to (16)
> /portage_util.pyvpf-10680: The file [58805 2144987] has the wrong block
> count in the StatData (64) - corrected to (24)
> /usr/share/gimp/2.0/gradients/Pastels.ggrvpf-10680: The file [115166
> 115185] has the wrong block count in the StatData (8) - corrected to (0)
> /Purples.ggrvpf-10680: The file [115166 115214] has the wrong block count
> in the StatData (8) - corrected to (0)
> /Radial_Rainbow_Hoop.ggrvpf-10680: The file [115166 115168] has the wrong
> block count in the StatData (8) - corrected to (0)
> /Cold_Steel_2.ggrvpf-10680: The file [115166 115238] has the wrong block
> count in the StatData (8) - corrected to (0)
> /Abstract_1.ggrvpf-10680: The file [115166 115219] has the wrong block
> count in the StatData (8) - corrected to (0)
> /Abstract_2.ggrvpf-10680: The file [115166 115173] has the wrong block
> count in the StatData (8) - corrected to (0)
> /Abstract_3.ggrvpf-10680: The file [115166 115189] has the wrong block
> count in the StatData (8) - corrected to (0)
> /Radial_Eyeball_Blue.ggrvpf-10680: The file [115166 115210] has the wrong
> block count in the StatData (8) - corrected to (0)
> /Radial_Eyeball_Brown.ggrvpf-10680: The file [115166 115174] has the wrong
> block count in the StatData (8) - corrected to (0)
> /Radial_Eyeball_Green.ggrvpf-10680: The file [115166 115175] has the wrong
> block count in the StatData (8) - corrected to (0)
> /Crown_molding.ggrvpf-10680: The file [115166 115240] has the wrong block
> count in the StatData (8) - corrected to (0)
> /Pastel_Rainbow.ggrvpf-10680: The file [115166 115231] has the wrong block
> count in the StatData (8) - corrected to (0)
> /usr/share/gtk-doc/data/gtk-doc.dclvpf-10680: The file [131823 131835] has
> the wrong block count in the StatData (8) - corrected to (0)
> /gtk-doc.dslvpf-10680: The file [131823 131826] has the wrong block count
> in the StatData (32) - corrected to (24)
> /gtk-doc.xslvpf-10680: The file [131823 131829] has the wrong block count
> in the StatData (48) - corrected to (0)
> /gtkdoc-common.plvpf-10680: The file [131823 131824] has the wrong block
> count in the StatData (24) - corrected to (16)
> /devhelp.xslvpf-10680: The file [131823 131834] has the wrong block count
> in the StatData (16) - corrected to (0)
> /right.pngvpf-10680: The file [131823 131827] has the wrong block count in
> the StatData (8) - corrected to (0)
> /left.pngvpf-10680: The file [131823 131836] has the wrong block count in
> the StatData (8) - corrected to (0)
> /home.pngvpf-10680: The file [131823 131830] has the wrong block count in
> the StatData (8) - corrected to (0)
> /devhelp2.xslvpf-10680: The file [131823 131832] has the wrong block count
> in the StatData (16) - corrected to (0)
> /gtk-doc.makevpf-10680: The file [131823 131831] has the wrong block count
> in the StatData (16) - corrected to (0)
> /version-greater-or-equal.xslvpf-10680: The file [131823 131833] has the
> wrong block count in the StatData (8) - corrected to (0)
> /usr/share/pixmaps/emacs-w3m/open-up.xpmvpf-10680: The file [1064675
> 1949804] has the wrong block count in the StatData (8) - corrected to (0)
> /image-up.xpmvpf-10680: The file [1064675 1949823] has the wrong block
> count in the StatData (8) - corrected to (0)
> /include/qt4/QtGui/QTimeEditvpf-10680: The file [109438 338285] has the
> wrong block count in the StatData (8) - corrected to (0)
> /QPushButtonvpf-10680: The file [109438 338289] has the wrong block count
> in the StatData (8) - corrected to (0)
> /QAbstractScrollAreavpf-10680: The file [109438 338283] has the wrong block
> count in the StatData (8) - corrected to (0)
> /QTabBarvpf-10680: The file [109438 338281] has the wrong block count in
> the StatData (8) - corrected to (0)
> /QMenuvpf-10680: The file [109438 338298] has the wrong block count in the
> StatData (8) - corrected to (0)
> /QAbstractSlidervpf-10680: The file [109438 338279] has the wrong block
> count in the StatData (8) - corrected to (0)
> /QDialogButtonBoxvpf-10680: The file [109438 338276] has the wrong block
> count in the StatData (8) - corrected to (0)
> /QLineEditvpf-10680: The file [109438 338280] has the wrong block count in
> the StatData (8) - corrected to (0)
> /QLabelvpf-10680: The file [109438 338282] has the wrong block count in the
> StatData (8) - corrected to (0)
> /QGraphicsItemAnimationvpf-10680: The file [109438 338300] has the wrong
> block count in the StatData (8) - corrected to (0)
> /QRegExpValidatorvpf-10680: The file [109438 338253] has the wrong block
> count in the StatData (8) - corrected to (0)
> /QAbstractSpinBoxvpf-10680: The file [109438 338290] has the wrong block
> count in the StatData (8) - corrected to (0)
> /QStackedWidgetvpf-10680: The file [109438 338292] has the wrong block
> count in the StatData (8) - corrected to (0)
> /QMdiSubWindowvpf-10680: The file [109438 338288] has the wrong block count
> in the StatData (8) - corrected to (0)
> /QButtonGroupvpf-10680: The file [109438 338296] has the wrong block count
> in the StatData (8) - corrected to (0)
> /QDockWidgetvpf-10680: The file [109438 338278] has the wrong block count
> in the StatData (8) - corrected to (0)
> /QWorkspacevpf-10680: The file [109438 338297] has the wrong block count in
> the StatData (8) - corrected to (0)
> /QCheckBoxvpf-10680: The file [109438 338299] has the wrong block count in
> the StatData (8) - corrected to (0)
> /QGroupBoxvpf-10680: The file [109438 338277] has the wrong block count in
> the StatData (8) - corrected to (0)
> /QMdiAreavpf-10680: The file [109438 338291] has the wrong block count in
> the StatData (8) - corrected to (0)
> /QSpinBoxvpf-10680: The file [109438 338295] has the wrong block count in
> the StatData (8) - corrected to (0)
> /QDoubleSpinBoxvpf-10680: The file [109438 338294] has the wrong block
> count in the StatData (8) - corrected to (0)
> /QLCDNumbervpf-10680: The file [109438 338293] has the wrong block count in
> the StatData (8) - corrected to (0)
> /QSplashScreenvpf-10680: The file [109438 338287] has the wrong block count
> in the StatData (8) - corrected to (0)
> /QToolBarvpf-10680: The file [109438 338251] has the wrong block count in
> the StatData (8) - corrected to (0)
> /QToolBoxvpf-10680: The file [109438 338250] has the wrong block count in
> the StatData (8) - corrected to (0)
> /QDateTimeEditvpf-10680: The file [109438 338286] has the wrong block count
> in the StatData (8) - corrected to (0)
> /QFocusFramevpf-10680: The file [109438 338258] has the wrong block count
> in the StatData (8) - corrected to (0)
> /QMainWindowvpf-10680: The file [109438 338275] has the wrong block count
> in the StatData (8) - corrected to (0)
> /QFontComboBoxvpf-10680: The file [109438 338252] has the wrong block count
> in the StatData (8) - corrected to (0)
> /usr/include/gconf/2/gconf/gconf-enum-types.hvpf-10680: The file [1173743
> 1126615] has the wrong block count in the StatData (8) - corrected to (0)
> /gconf-client.hvpf-10680: The file [1173743 1126742] has the wrong block
> count in the StatData (32) - corrected to (16)
> /gconf.hvpf-10680: The file [1173743 1126910] has the wrong block count in
> the StatData (32) - corrected to (24)
> /usr/portage/dev-php/PEAR-Testing_Selenium/Manifestvpf-10680: The file
> [2551293 1398636] has the wrong block count in the StatData (8) - corrected
> to (0)
> /PEAR-Testing_Selenium-0.3.2.ebuildvpf-10680: The file [2551293 1398637]
> has the wrong block count in the StatData (8) - corrected to (0)
> /usr/portage/metadata/cache/app-office/mozilla-sunbird-0.5vpf-10680: The
> file [2602580 2594463] has the wrong block count in the StatData (16) -
> corrected to (0)
> /planner-0.14.2vpf-10680: The file [2602580 2602684] has the wrong block
> count in the StatData (8) - corrected to (0)
> /planner-0.14vpf-10680: The file [2602580 2551667] has the wrong block
> count in the StatData (8) - corrected to (0)
> /usr/portage/metadata/cache/www-apps/bugzilla-2.22.2vpf-10680: The file
> [2609998 2569697] has the wrong block count in the StatData (8) - corrected
> to (0)
> /usr/portage/x11-misc/dxpc/files/dxpc-3.8.2-lzo2.patchvpf-10680: The file
> [2643903 2643904] has the wrong block count in the StatData (32) -
> corrected to (24)
> /usr/portage/x11-misc/xcompmgr/Manifestvpf-10680: The file [2644702
> 2644703] has the wrong block count in the StatData (16) - corrected to (0)
> /usr/portage/x11-misc/afbinit/Manifestvpf-10680: The file [2645061 2645063]
> has the wrong block count in the StatData (16) - corrected to (0)
> /ChangeLogvpf-10680: The file [2645061 2645071] has the wrong block count
> in the StatData (16) - corrected to (0)
> /usr/portage/app-mobilephone/smssend/Manifestvpf-10680: The file [2529907
> 2144598] has the wrong block count in the StatData (8) - corrected to (0)
> /ChangeLogvpf-10680: The file [2529907 2144597] has the wrong block count
> in the StatData (8) - corrected to (0)
> /usr/portage/app-mobilephone/smstools/Manifestvpf-10680: The file [2530031
> 2530032] has the wrong block count in the StatData (16) - corrected to (0)
> /usr/portage/app-arch/unzip/Manifestvpf-10680: The file [2296286 2296287]
> has the wrong block count in the StatData (16) - corrected to (0)
> /ChangeLogvpf-10680: The file [2296286 2296294] has the wrong block count
> in the StatData (16) - corrected to (0)
> /usr/portage/app-accessibility/mbrola/Manifestvpf-10680: The file [2293999
> 2294005] has the wrong block count in the StatData (16) - corrected to (0)
> /usr/portage/net-p2p/dctc/ChangeLogvpf-10680: The file [2623925 2623931]
> has the wrong block count in the StatData (16) - corrected to (0)
> /usr/portage/media-libs/libgphoto2/files/libgphoto2-
> 2.3.1-udev-rules-fix3.diffvpf-10680 : The file [2580356 2540311] has the
> wrong block count in the StatData (8) - corrected to (0)
> /usr/portage/app-emulation/uade/files/uade-
> 2.05-audacious-1.3api.patchvpf-10680: The file [2301949 2301950] has the
> wrong block count in the StatData (16) - corrected to (0)
> /usr/portage/app-emulation/crossover-office-pro-bin/Manifestvpf-10680: The
> file [2302174 2302175] has the wrong block count in the StatData (16) -
> corrected to (0)
> /usr/portage/sys-cluster/vzctl/files/vz.initdvpf-10680: The file [2635773
> 2635776] has the wrong block count in the StatData (16) - corrected to (0)
> /usr/portage/net-voip/wengophone-bin/files/wengophone-bin.pngvpf-10680: The
> file [2625118 2625119] has the wrong block count in the StatData (16) -
> corrected to (8)
> /usr/portage/app-office/openoffice/openoffice-2.2.1.ebuildvpf-10680 : The
> file [2530543 2530553] has the wrong block count in the StatData (24) -
> corrected to (0)
> /ChangeLogvpf-10680: The file [2530543 1386106] has the wrong block count
> in the StatData (144) - corrected to (120)
> /usr/portage/dev-java/poi/filesrebuild_semantic_pass: The entry [2537636
> 2537772] (" poi-3.0-src-isDateFormat.patch") in directory [2537636 2537771]
> points to nowhere - is removed
> vpf-10650: The directory [2537636 2537771] has the wrong size in the
> StatData (184) - corrected to (136)
> /usr/portage/media-sound/museseq/files/museseq- 0.6.2-gcc34.patchvpf-10680:
> The file [2585525 2585527] has the wrong block count in the StatData (16) -
> corrected to (0)
> /museseq-0.6.2-int2ptr.patchvpf-10680: The file [2585525 2585531] has the
> wrong block count in the StatData (40) - corrected to (16)
> /usr/portage/media-sound/asunder/asunder-0.8.1.ebuildvpf-10680: The file
> [2586156 2586157] has the wrong block count in the StatData (8) - corrected
> to (0)
> /usr/portage/app-pda/synce-rra/files/synce-rra-0.9.1-textrel.patchvpf-10680
>: The file [2530782 2530784] has the wrong block count in the StatData (40)
> - corrected to (16)
> /multisync/files/multisync-gcc4.patchvpf-10680: The file [2530813 2530815]
> has the wrong block count in the StatData (16) - corrected to (0)
> /usr/portage/app-vim/perl-support/Manifestvpf-10680: The file [2534233
> 2534234] has the wrong block count in the StatData (16) - corrected to (0)
> /usr/portage/net-dialup/hsfmodem/Manifestvpf-10680: The file [2616182
> 2616189] has the wrong block count in the StatData (16) - corrected to (0)
> /hsfmodem-7.60.00.09-r1.ebuildvpf-10680: The file [2616182 2616183] has the
> wrong block count in the StatData (8) - corrected to (0)
> /home/jorge/itarebuild_semantic_pass: The entry [328283 9083]
> ("catalogo.pdf") in directory [328283 99741] points to nowhere - is
> removed
> vpf-10650: The directory [328283 99741] has the wrong size in the StatData
> (112) - corrected to (80)
> /home/jorge/Mail/inbox/orkut/459vpf-10680: The file [133713 50310] has the
> wrong block count in the StatData (8) - corrected to (0)
> /462vpf-10680: The file [133713 2649630] has the wrong block count in the
> StatData (8) - corrected to (0)
> /463vpf-10680: The file [133713 2649632] has the wrong block count in the
> StatData (8) - corrected to (0)
> /goianos/102vpf-10680: The file [96260 328644] has the wrong block count in
> the StatData (16) - corrected to (8)
> /104vpf-10680: The file [96260 46405] has the wrong block count in the
> StatData (16) - corrected to (0)
> /105vpf-10680: The file [96260 2696861] has the wrong block count in the
> StatData (16) - corrected to (8)
> /home/jorge/hda2/samba_publico/Chiptune2.oggvpf-10680: The file [357681
> 115892] has the wrong block count in the StatData (1000) - corrected to
> (144)
> /home/jorge/hda2/samba_publico/apagao.mkvvpf-10680: The file [328283 50273]
> has the wrong block count in the StatData (527296) - corrected to (524328)
> /home/jorge/.claws-mailvpf-10680: The directory [328283 9076] has the wrong
> block count in the StatData (5) - corrected to (4)
> vpf-10650: The directory [328283 9076] has the wrong size in the StatData
> (2224) - corrected to (2008)
> ...
> nsions/{b9db16a4-6edc-47ec-a1f4-b86292ed211d}/components/dhIUtilService.xpt
>vpf-10680: The file [344007 2753874] has the wrong block count in the
> StatData (8) - corrected to (0)
> ...
> ult/extensions/{b9db16a4-6edc-47ec-a1f4-b86292ed211d}/components/.cvsignore
>vpf-10680: The file [344007 2753872] has the wrong block count in the
> StatData (8) - corrected to (0)
> ...
> tensions/{b9db16a4-6edc-47ec-a1f4-b86292ed211d}/components/dhUtilService.js
>vpf-10680: The file [344007 2753870] has the wrong block count in the
> StatData (56) - corrected to (0)
> ...
> 1.default/extensions/{D4DD63FA-01E4-46a7-B6B1-EDAB7D6AD389}/chrome.manifest
>vpf-10680: The file [349636 2753710] has the wrong block count in the
> StatData (8) - corrected to (0)
> ...
> 8b021.default/extensions/{D4DD63FA-01E4-46a7-B6B1-EDAB7D6AD389}/install.rdf
>vpf-10680: The file [349636 2753640] has the wrong block count in the
> StatData (8) - corrected to (0)
> ...
> -01E4-46a7-B6B1-EDAB7D6AD389}/translations/0.9.5/pt-BR/downbarAboutText.dtd
>vpf-10680: The file [2753599 2753697] has the wrong block count in the
> StatData (32) - corrected to (0)
> ...
> D63FA-01E4-46a7-B6B1-EDAB7D6AD389}/translations/0.9.5/pt-BR/downbartext.dtd
>vpf-10680: The file [2753599 2753622] has the wrong block count in the
> StatData (16) - corrected to (8)
> ...
> FA-01E4-46a7-B6B1-EDAB7D6AD389}/translations/0.9.5/pt-BR/downbar.properties
>vpf-10680: The file [2753599 2753600] has the wrong block count in the
> StatData (8) - corrected to (0)
> /home/jorge/arquivo.tar.7zvpf-10680: The file [328283 349968] has the wrong
> block count in the StatData (32128) - corrected to (20136)
> /home/jorge/Saturday_Night_Live__Nancy_Grace.flvvpf-10680: The file [328283
> 2754290] has the wrong block count in the StatData (17744) - corrected to
> (17736)
> /home/jorge/.thumbnails/normal/75cf25db52aee1645f444f68ff48704c.jpgvpf-1068
>0: The file [352016 2696557] has the wrong block count in the StatData (48)
> - corrected to (0)
> /86f85ff5e5002ba6df5d60f6f4992720.jpgvpf-10680: The file [352016 2696942]
> has the wrong block count in the StatData (56) - corrected to (0)
> /5c83f8e8feff0cce7c7b9a43c52c4d01.jpgvpf-10680: The file [352016 1394235]
> has the wrong block count in the StatData (48) - corrected to (0)
> /c0f76046511bc83dd45b56446edc3791.pngvpf-10680: The file [352016 103230]
> has the wrong block count in the StatData (56) - corrected to (0)
> /7b32c2264d4b655e696af470e02cf62f.jpgvpf-10680: The file [352016 2696919]
> has the wrong block count in the StatData (40) - corrected to (0)
> /b2d40c34ddf0d57b2d0ca85cc1f86f3a.jpgvpf-10680: The file [352016 1395458]
> has the wrong block count in the StatData (56) - corrected to (0)
> /5b69d6ff584bbdb46cdf134fa5959583.jpgvpf-10680: The file [352016 2696556]
> has the wrong block count in the StatData (48) - corrected to (0)
> /d9bbb59ae431a5f588cf99e78399f76a.jpgvpf-10680: The file [352016 2696936]
> has the wrong block count in the StatData (40) - corrected to (0)
> /35e31cf32515f670766c4a44f2cfc29f.jpgvpf-10680: The file [352016 1333984]
> has the wrong block count in the StatData (64) - corrected to (0)
> /dfbd2756cacc1e29f71a191f88b4b310.jpgvpf-10680: The file [352016 1334034]
> has the wrong block count in the StatData (40) - corrected to (0)
> /5393b199d7fac4221bfe62e9dd677bae.jpgvpf-10680: The file [352016 1395534]
> has the wrong block count in the StatData (48) - corrected to (0)
> /8a37a8e9d9189786212e152ed875a2bc.jpgvpf-10680: The file [352016 1333231]
> has the wrong block count in the StatData (56) - corrected to (0)
> /c3f6acad2fa2fb0b99baa0d8f0223766.jpgvpf-10680: The file [352016 1384552]
> has the wrong block count in the StatData (64) - corrected to (0)
> /14da797bf25a1c9529e0f0348d43abb8.jpgvpf-10680: The file [352016 1979380]
> has the wrong block count in the StatData (48) - corrected to (0)
> /3b677a81e6cd3405c2221cc5692a54b8.jpgvpf-10680: The file [352016 2696945]
> has the wrong block count in the StatData (56) - corrected to (0)
> /79976f49f883259be4bb38b2eec0b075.jpgvpf-10680: The file [352016 2696541]
> has the wrong block count in the StatData (48) - corrected to (0)
> /f438c57639c05ff15a94d7950834a09d.jpgvpf-10680: The file [352016 2696546]
> has the wrong block count in the StatData (32) - corrected to (24)
> /26813808b6b2744647a44608953508d7.jpgvpf-10680: The file [352016 1333224]
> has the wrong block count in the StatData (48) - corrected to (0)
> /b285c4d77a31107afed70433bbe0d08a.jpgvpf-10680: The file [352016 2696551]
> has the wrong block count in the StatData (48) - corrected to (0)
> /f7cba2b1206033616a1dfb92a576ae0a.jpgvpf-10680: The file [352016 2696562]
> has the wrong block count in the StatData (64) - corrected to (0)
> /711b741206eb3ca134ad0bb2dca38354.jpgvpf-10680: The file [352016 2696917]
> has the wrong block count in the StatData (48) - corrected to (0)
> /fd0dcf19a7e23360dbef7672050cfb0a.jpgvpf-10680: The file [352016 2242812]
> has the wrong block count in the StatData (40) - corrected to (0)
> /49a008b8deef9d8c226f8737a1080601.jpgvpf-10680: The file [352016 2696932]
> has the wrong block count in the StatData (40) - corrected to (0)
> /6fe524f9d86d5864799613f3140d2fb9.jpgvpf-10680: The file [352016 1333377]
> has the wrong block count in the StatData (48) - corrected to (0)
> /f822e979be1df8214a0894452fabd302.jpgvpf-10680: The file [352016 2696922]
> has the wrong block count in the StatData (56) - corrected to (0)
> /a91b7f30d5c6dfa015b16193c2f0a263.jpgvpf-10680: The file [352016 1393373]
> has the wrong block count in the StatData (48) - corrected to (0)
> /2a6c26a73352c8d09f39695bae487a09.jpgvpf-10680: The file [352016 1394226]
> has the wrong block count in the StatData (56) - corrected to (0)
> /d0c40e9d4d731c568ee0cf7b25ca8b85.pngvpf-10680: The file [352016 1025065]
> has the wrong block count in the StatData (64) - corrected to (0)
> /8b4ac2ed31ea78130763e2a9f6414189.jpgvpf-10680: The file [352016 2696559]
> has the wrong block count in the StatData (56) - corrected to (0)
> /ba816c9d90b5aeb83f5b71f8517af9fe.jpgvpf-10680: The file [352016 1979364]
> has the wrong block count in the StatData (56) - corrected to (0)
> /402a4e0b7c11acf93d6ac149028c2067.jpgvpf-10680: The file [352016 2696552]
> has the wrong block count in the StatData (56) - corrected to (0)
> /e6fc38032b8250dd4018becd1ef01a0b.jpgvpf-10680: The file [352016 2696543]
> has the wrong block count in the StatData (48) - corrected to (40)
> /7a8479061e01407d70913fc45cd4bb18.jpgvpf-10680: The file [352016 2696548]
> has the wrong block count in the StatData (48) - corrected to (16)
> /78fff8fb91df82dbfa99d060d32284ea.jpgvpf-10680: The file [352016 2696938]
> has the wrong block count in the StatData (40) - corrected to (0)
> /343600adea3f008aa72ec1493bb0b3a6.jpgvpf-10680: The file [352016 2696920]
> has the wrong block count in the StatData (48) - corrected to (0)
> /1ad398f9d8564d982a305f0e2b21628d.jpgvpf-10680: The file [352016 2145872]
> has the wrong block count in the StatData (32) - corrected to (0)
> /139fa7839bf1524586cdfc7f3ca9a073.jpgvpf-10680: The file [352016 1393393]
> has the wrong block count in the StatData (56) - corrected to (0)
> /ac316fe1adf75da6175cb2c2e2c493bf.jpgvpf-10680: The file [352016 2696542]
> has the wrong block count in the StatData (56) - corrected to (0)
> /7d15d80b8c2520847c45641fd113b89e.jpgvpf-10680: The file [352016 2696558]
> has the wrong block count in the StatData (48) - corrected to (0)
> /11b5173cf720ddc9be63339d888facbc.jpgvpf-10680: The file [352016 2696946]
> has the wrong block count in the StatData (32) - corrected to (0)
> /e7ce045fa55ada94b4d4fb8b664b1a43.jpgvpf-10680: The file [352016 1395580]
> has the wrong block count in the StatData (48) - corrected to (0)
> /2c6df5b5b52110c83f166a5c3f5f9197.jpgvpf-10680: The file [352016 1394245]
> has the wrong block count in the StatData (40) - corrected to (0)
> /d1c0a370cf8bb0638e04026651eb89d7.jpgvpf-10680: The file [352016 2696934]
> has the wrong block count in the StatData (56) - corrected to (0)
> /380f08f8fbbab49afad9174a947469d1.jpgvpf-10680: The file [352016 1981887]
> has the wrong block count in the StatData (48) - corrected to (0)
> /4db37e82f6c0c1d5d87f23037bf3f895.jpgvpf-10680: The file [352016 2696539]
> has the wrong block count in the StatData (64) - corrected to (16)
> /70b8565608ea3bd9a117cc82d1b92c1e.jpgvpf-10680: The file [352016 2696537]
> has the wrong block count in the StatData (48) - corrected to (16)
> /29a85fe6cf29ae37970185fb9883c4c7.jpgvpf-10680: The file [352016 2696925]
> has the wrong block count in the StatData (40) - corrected to (0)
> /29f5f0aa8c58fdc99561867fb5bd6493.jpgvpf-10680: The file [352016 1395558]
> has the wrong block count in the StatData (48) - corrected to (0)
> /d88b73cb04cd7e007336aa06d71e3699.jpgvpf-10680: The file [352016 2696555]
> has the wrong block count in the StatData (56) - corrected to (0)
> /9918632d609757550b28789d930f762c.jpgvpf-10680: The file [352016 1394995]
> has the wrong block count in the StatData (48) - corrected to (0)
> /210a62d4af4b825f407273b02eee7ebc.jpgvpf-10680: The file [352016 2696538]
> has the wrong block count in the StatData (40) - corrected to (0)
> /07e21a10faa6a28df3e12a66f12e3207.jpgvpf-10680: The file [352016 2696553]
> has the wrong block count in the StatData (40) - corrected to (0)
> /2021a2eda807d60d729274eea6c2b518.jpgvpf-10680: The file [352016 2672619]
> has the wrong block count in the StatData (48) - corrected to (24)
> /5acd1aa3f3068fa2faaebc6e67f5b49e.jpgvpf-10680: The file [352016 2696933]
> has the wrong block count in the StatData (48) - corrected to (0)
> /6f513e20f34b0ad826682be3e3909f82.jpgvpf-10680: The file [352016 1394282]
> has the wrong block count in the StatData (40) - corrected to (0)
> /45a99ae50fcb0f3a3b8ee920f42b158a.jpgvpf-10680: The file [352016 1979351]
> has the wrong block count in the StatData (56) - corrected to (0)
> /51b14e11cab9c01b70443ad1854ee222.jpgvpf-10680: The file [352016 1394198]
> has the wrong block count in the StatData (32) - corrected to (0)
> /11e8c47f7e80755ebaaf1aed5663a038.jpgvpf-10680: The file [352016 1394268]
> has the wrong block count in the StatData (32) - corrected to (0)
> /fb7a6fb4ee4a765f824eed0121f94221.jpgvpf-10680: The file [352016 2696540]
> has the wrong block count in the StatData (56) - corrected to (0)
> /993dd161aa173b24d929e56e7098ae0b.jpgvpf-10680: The file [352016 1393727]
> has the wrong block count in the StatData (56) - corrected to (0)
> /351930b29ba53ebb3c2f25decbcff4cd.jpgvpf-10680: The file [352016 1334021]
> has the wrong block count in the StatData (40) - corrected to (0)
> /bdade56ac866e938d87e8279166c28fb.jpgvpf-10680: The file [352016 2696929]
> has the wrong block count in the StatData (48) - corrected to (0)
> /1e8e36c89cb05fd8f00b10fcb41f55ca.jpgvpf-10680: The file [352016 1394254]
> has the wrong block count in the StatData (48) - corrected to (0)
> /2a12563ada540f7447528a971b53baff.jpgvpf-10680: The file [352016 2696941]
> has the wrong block count in the StatData (48) - corrected to (0)
> /5d7b2dee22cc4cbb810218797c1027dd.jpgvpf-10680: The file [352016 2696926]
> has the wrong block count in the StatData (48) - corrected to (0)
> /88f28df8c4d071cbfd99fff60be85c3e.jpgvpf-10680: The file [352016 1394277]
> has the wrong block count in the StatData (40) - corrected to (8)
> /3f39a7b3211105b3e4aee80bb743b3d3.jpgvpf-10680: The file [352016 2696923]
> has the wrong block count in the StatData (48) - corrected to (0)
> /9aa3d065b64fc66fee5492932b71324a.jpgvpf-10680: The file [352016 1333191]
> has the wrong block count in the StatData (40) - corrected to (0)
> /1c59d54b3633cdb05cef1b17d4249d2e.jpgvpf-10680: The file [352016 2696947]
> has the wrong block count in the StatData (40) - corrected to (0)
> /d5fc4aac8cb50e3b4ab93ae22a0bf113.jpgvpf-10680: The file [352016 2696927]
> has the wrong block count in the StatData (40) - corrected to (0)
> /5f1aa73bd2ab40d63676ab5d65024d06.jpgvpf-10680: The file [352016 2696939]
> has the wrong block count in the StatData (40) - corrected to (0)
> /a8f06bfc21927471b523250c70ba12fb.jpgvpf-10680: The file [352016 2696931]
> has the wrong block count in the StatData (48) - corrected to (0)
> /9ba84f1360a5a29e7dc20bcf6521ebe1.jpgvpf-10680: The file [352016 1333186]
> has the wrong block count in the StatData (56) - corrected to (0)
> /db6640d3c0bba3db5ec896806e4e3bc6.jpgvpf-10680: The file [352016 2696944]
> has the wrong block count in the StatData (48) - corrected to (0)
> /f434c812a1b56c32bcda3e9a921b4f26.jpgvpf-10680: The file [352016 2696943]
> has the wrong block count in the StatData (40) - corrected to (0)
> /61d215637edee3c27106b63430ca0f35.jpgvpf-10680: The file [352016 2696549]
> has the wrong block count in the StatData (48) - corrected to (0)
> /82061b3f1ca9e58607d8c393c89ee3c5.jpgvpf-10680: The file [352016 2696563]
> has the wrong block count in the StatData (40) - corrected to (0)
> /d0d4c7ffbad8b78c59b279c5c0f8cfb2.jpgvpf-10680: The file [352016 2696930]
> has the wrong block count in the StatData (40) - corrected to (0)
> /6ea092b457090bccdcce6782f14cbaf3.jpgvpf-10680: The file [352016 1333234]
> has the wrong block count in the StatData (56) - corrected to (0)
> /83f40bd56336a2cc74f3b2aab8b906ec.jpgvpf-10680: The file [352016 2696928]
> has the wrong block count in the StatData (48) - corrected to (0)
> /e49df82ad21de5db59be73dbe93e5ca1.jpgvpf-10680: The file [352016 2696554]
> has the wrong block count in the StatData (56) - corrected to (0)
> /7573ac9b4290f86da781512680f73b90.jpgvpf-10680: The file [352016 2696560]
> has the wrong block count in the StatData (48) - corrected to (0)
> /55b9cfb0b0d0d4df7d8c8ae230a5ff51.jpgvpf-10680: The file [352016 2696545]
> has the wrong block count in the StatData (56) - corrected to (48)
> /b661e5d3aa91721f826064a807000139.jpgvpf-10680: The file [352016 2696918]
> has the wrong block count in the StatData (48) - corrected to (0)
> /1066d664e7a1084bee738da8285fa278.jpgvpf-10680: The file [352016 1386154]
> has the wrong block count in the StatData (56) - corrected to (0)
> /b3d2dea660b98abad4e9fcb444691e33.jpgvpf-10680: The file [352016 2696921]
> has the wrong block count in the StatData (48) - corrected to (0)
> /15a432482b3631e91232fc8383db4d1e.jpgvpf-10680: The file [352016 1333212]
> has the wrong block count in the StatData (32) - corrected to (0)
> /f012acd0f0ff04079e884bb41b591f8d.jpgvpf-10680: The file [352016 1332998]
> has the wrong block count in the StatData (48) - corrected to (24)
> /3f6dd3d84d1bb18255fb03bcebb83b84.jpgvpf-10680: The file [352016 2696937]
> has the wrong block count in the StatData (48) - corrected to (0)
> /73393b64a42d40991c51f561b3b35788.jpgvpf-10680: The file [352016 2696924]
> has the wrong block count in the StatData (56) - corrected to (0)
> /c41f71bb0e29e9ebdb6659447ca56825.pngvpf-10680: The file [352016 1334463]
> has the wrong block count in the StatData (8) - corrected to (0)
> /1c22b19e413850928e1a7c73d73545ff.jpgvpf-10680: The file [352016 5783] has
> the wrong block count in the StatData (56) - corrected to (24)
> /5fad47d2ccbf42333021317c08a9b5aa.jpgvpf-10680: The file [352016 1384735]
> has the wrong block count in the StatData (48) - corrected to (0)
> /7b5f72280413b91a25c719bc8df4adee.jpgvpf-10680: The file [352016 1333092]
> has the wrong block count in the StatData (48) - corrected to (0)
> /c31b71be8f3fde0c94abbf37e6fc17f5.jpgvpf-10680: The file [352016 2696948]
> has the wrong block count in the StatData (48) - corrected to (0)
> /9836b0987d0caa7a6ce5d907c126ac06.jpgvpf-10680: The file [352016 2696550]
> has the wrong block count in the StatData (56) - corrected to (0)
> /65c140c2762439abb6e59320b2b8a542.jpgvpf-10680: The file [352016 1395474]
> has the wrong block count in the StatData (40) - corrected to (0)
> /0bb37b090806c4013f43c77823b0ca69.jpgvpf-10680: The file [352016 1393647]
> has the wrong block count in the StatData (64) - corrected to (0)
> /da4a2cd66fd269dd27d504db82440529.jpgvpf-10680: The file [352016 1384674]
> has the wrong block count in the StatData (56) - corrected to (0)
> /9babb0958bc5434c3256e0d1ca6f2d5e.jpgvpf-10680: The file [352016 2672609]
> has the wrong block count in the StatData (48) - corrected to (0)
> /f9d2fc2cfd142849037b27cf877b3404.jpgvpf-10680: The file [352016 1396170]
> has the wrong block count in the StatData (40) - corrected to (0)
> /71161843e20778cb601ff9d600fc2afa.jpgvpf-10680: The file [352016 1394210]
> has the wrong block count in the StatData (56) - corrected to (0)
> /5615e0ab287d6ad2e5340c1e515365fb.jpgvpf-10680: The file [352016 2696935]
> has the wrong block count in the StatData (48) - corrected to (0)
> /47d42d5010c35341f3eed82c67981ef4.jpgvpf-10680: The file [352016 1394952]
> has the wrong block count in the StatData (48) - corrected to (0)
> /.recently-usedvpf-10680: The file [328283 354486] has the wrong block
> count in the StatData (144) - corrected to (0)
> ####### Pass 3a (lost+found pass)
> #########
> /9076_1250027get_next_directory_item: The entry ".." of the directory [9076
> 1250027] pointes to [328283 9076], instead of [2 6] - corrected
> vpf-10680: The file [328283 355297] has the wrong block count in the
> StatData (31248) - corrected to (6120)
> rewrite_file: 2 items of file [2257391 197198] moved to [2257391 11]
> rewrite_file: 2 items of file [2257391 211874] moved to [2257391 16]
> rewrite_file: 2 items of file [2257391 292028] moved to [2257391 19]
> rewrite_file: 2 items of file [2257391 292122] moved to [2257391 20]
> rewrite_file: 2 items of file [2257391 332208] moved to [2257391 22]
> rewrite_file: 2 items of file [2257391 352047] moved to [2257391 23]
> vpf-10680: The file [2257391 23] has the wrong block count in the StatData
> (120) - corrected to (0)
> rewrite_file: 2 items of file [2257391 352204] moved to [2257391 24]
> rewrite_file: 2 items of file [2257391 352232] moved to [2257391 25]
> rewrite_file: 2 items of file [2257391 352238] moved to [2257391 26]
> rewrite_file: 2 items of file [2257391 352241] moved to [2257391 29]
> rewrite_file: 2 items of file [2257391 353282] moved to [2257391 30]
> rewrite_file: 2 items of file [2257391 420157] moved to [2257391 31]
> rewrite_file: 2 items of file [2257391 420159] moved to [2257391 32]
> rewrite_file: 2 items of file [2257391 420163] moved to [2257391 33]
> rewrite_file: 2 items of file [2257391 522090] moved to [2257391 36]
> rewrite_file: 2 items of file [2257391 579878] moved to [2257391 38]
> rewrite_file: 2 items of file [2257391 946271] moved to [2257391 39]
> rewrite_file: 2 items of file [2257391 946306] moved to [2257391 40]
> rewrite_file: 2 items of file [2257391 954199] moved to [2257391 41]
> rewrite_file: 2 items of file [2257391 964790] moved to [2257391 42]
> rewrite_file: 2 items of file [2257391 964796] moved to [2257391 49]
> rewrite_file: 2 items of file [2257391 964837] moved to [2257391 51]
> rewrite_file: 2 items of file [2257391 985325] moved to [2257391 53]
> rewrite_file: 2 items of file [2257391 985386] moved to [2257391 54]
> rewrite_file: 2 items of file [2257391 985394] moved to [2257391 55]
> rewrite_file: 2 items of file [2257391 1077917] moved to [2257391 56]
> rewrite_file: 2 items of file [2257391 1090409] moved to [2257391 58]
> rewrite_file: 2 items of file [2257391 1091213] moved to [2257391 59]
> rewrite_file: 2 items of file [2257391 1097192] moved to [2257391 60]
> rewrite_file: 2 items of file [2257391 1112452] moved to [2257391 61]
> rewrite_file: 2 items of file [2257391 1113860] moved to [2257391 62]
> rewrite_file: 1 items of file [2257391 1198481] moved to [2257391 63]
> vpf-10680: The file [2257391 63] has the wrong block count in the StatData
> (56) - corrected to (0)
> rewrite_file: 2 items of file [2257391 2257239] moved to [2257391 66]
> rewrite_file: 2 items of file [2257391 2257367] moved to [2257391 67]
> vpf-10680: The file [2257391 67] has the wrong block count in the StatData
> (80) - corrected to (16)
> rewrite_file: 2 items of file [2257391 2257392] moved to [2257391 68]
> vpf-10680: The file [2257391 68] has the wrong block count in the StatData
> (264) - corrected to (200)
> rewrite_file: 1 items of file [2257391 2257393] moved to [2257391 69]
> vpf-10680: The file [2257391 69] has the wrong block count in the StatData
> (7552) - corrected to (0)
> rewrite_file: 2 items of file [2257391 2257397] moved to [2257391 71]
> vpf-10680: The file [2257391 71] has the wrong block count in the StatData
> (296) - corrected to (192)
> rewrite_file: 2 items of file [2257391 2257399] moved to [2257391 78]
> vpf-10680: The file [2257391 78] has the wrong block count in the StatData
> (216) - corrected to (80)
> rewrite_file: 1 items of file [2257391 2257428] moved to [2257391 80]
> vpf-10680: The file [2257391 80] has the wrong block count in the StatData
> (96) - corrected to (0)

so you have a complete list of files you could restore from your backup, if 
you want to.
-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2007-09-11 21:16 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-09-08 15:36 [gentoo-user] Corruption in reiserfs partition Jorge Peixoto de Morais Neto
2007-09-08 20:14 ` Volker Armin Hemmann
2007-09-08 22:15   ` Jorge Peixoto de Morais Neto
2007-09-08 23:03     ` Neil Bothwick
2007-09-09  1:46     ` Volker Armin Hemmann
2007-09-11  1:07       ` Jorge Peixoto de Morais Neto
2007-09-11  1:35         ` Volker Armin Hemmann
2007-09-11 19:56           ` Jorge Peixoto de Morais Neto
2007-09-11 21:02             ` Volker Armin Hemmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox