On Tue, May 14, 2013 at 11:55:50PM +0200, Andras Korn wrote: > Hi, > > I have thousands of files on xfs whose inode claims their size is zero, but > they have blocks allocated to them; du(1) reports a nonzero size. xfs_repair > 3.1.9 ignores this. xfs_db can be used to recover the contents of the files > (using commands like inode 1234; write core.size 4567). > > David Chinner explained to me that xfs_repair ignores these files because > it's legitimate to have blocks beyond eof (e.g. due to fallocate()), and Actually due to speculative preallocation done by delayed allocation. > that unwritten extent flagging doesn't help because such extents don't need > to be flagged as it's impossible to read them. fallocate will leave unwritten extents beyond EOF, in which case we can detect it, but we know there's nothing to be done as there's no data.... > My zero-sized files were likely effected by a crash (certainly not > fallocate()). > > I think it would be useful to have the ability to distinguish between files > that legitimately have extents beyond EOF and files whose inode incorrectly > reports a too-small size. How? Add a transaction to track the data that has been written? Well, we already do that - with the inode size. How do we prevent that from going missing when the application doesn't use fsync()? By making all inode size update transactions synchronous. i.e. really, really slow. Really, the problem you see is that the applicaiton is not using fsync, and so there's no guarantee what part of the change has got to disk when a crash occurs. > Maybe an allocated-size field could be added to the inode, That's in the extent map. > or extents > assigned to files via fallocate() could be flagged somehow? They are flagged as unwritten, even beyond EOF. > And if files > with incorrect sizes (i.e. where allocated-size div blocksize < number_of_blocks > OR allocated-size < core.size OR where a file contains extents beyond EOF > that are not fallocate-flagged) are found, xfs_repair could at least report > them? Like I said - how do you reliably determine that there's data in the blocks if you can lose the update that indicates that there's data in the blocks? Cheers, Dave. -- Dave Chinner david@xxxxxxxxxxxxx _______________________________________________ xfs mailing list xfs@xxxxxxxxxxx http://oss.sgi.com/mailman/listinfo/xfs