On Tue, Feb 02, 2016 at 11:09:15PM -0800, Dilip Simha wrote: > Hi Dave, > > On Tue, Feb 2, 2016 at 10:37 PM, Dave Chinner <david@xxxxxxxxxxxxx> wrote: > > > On Tue, Feb 02, 2016 at 07:40:34PM -0800, Dilip Simha wrote: > > > Hi Eric, > > > > > > Thank you for your quick reply. > > > > > > Using xfs_io as per your suggestion, I am able to reproduce the issue. > > > However, I need to falloc for 256K and write for 257K to see this issue. > > > > > > # xfs_io -f -c "falloc 0 256k" -c "pwrite 0 257k" /srv/node/r1/t1.txt > > > # stat /srv/node/r1/t4.txt | grep Blocks > > > Size: 263168 Blocks: 1536 IO Block: 4096 regular file > > > > Fallocate sets the XFS_DIFLAG_PREALLOC on the inode. > > > > When you writing *past the preallocated area* and do delayed > > allocation, the speculative preallocation beyond EOF is double the > > size of the extent at EOF. i.e. 512k, leading to 768k being > > allocated to the file (1536 blocks, exactly). > > > > Thank you for the details. > This is exactly where I am a bit perplexed. Since the reclamation logic > skips inodes that have the XFS_DIFLAG_PREALLOC flag set, why did the > allocation logic allot more blocks on such an inode? To store the data you wrote outside the preallocated region, of course. > My understanding is that the fallocate caller only requested for 256K worth > of blocks to be available sequentially if possible. fallocate only guarantees the blocks are allocated - it does not guarantee anything about the layout of the blocks. > On any subsequent write beyond the EOF, the caller is completely > unaware of the underlying file-system storing that data adjacent > to the first 256K data. Since XFS is speculatively allocating > additional space (512K) adjacent to the first 256K data, I would > expect XFS to either treat these two allocations distinctly and > NOT mark XFS_DIFLAG_PREALLOC on the additional 512K data(minus the > actually used additional data=1K), OR remove XFS_DIFLAG_PREALLOC > flag on the entire inode. Oh, if only it were that simple. It's way more complex than I have time to explain here. Fundamentally, XFS_DIFLAG_PREALLOC is used to indicate that persistent preallocation has been done on the file, and so if that has happened we need to turn off optimistic removal of blocks anywhere in the file because we can't tell what blocks had persistent preallocation done on them after the fact. That's the way it's been since unwritten extents were added to XFS back in 1998, and I don't really see the need for it to change right now. If an application wants to mix fallocate and delayed allocatin writes to the same file in the same IO, then that's an application bug. It's going to cause bad IO patterns and file fragmentation and have other side effects (as you've noticed), and there's nothing the filesystem can do about it. fallocate() requires expertise to use in a beneficial manner - most developers do not have the required expertise (and don't have enough expertise to realise this) and so usually make things worse rather than better by using fallocate. > Also, is there any way I can check for this flag? > The FLAGS, as observed from xfs_bmap doesn't show any flags set to it. Am I > not looking at the right flags? xfs_io -c stat <file> Cheers, Dave. -- Dave Chinner david@xxxxxxxxxxxxx _______________________________________________ xfs mailing list xfs@xxxxxxxxxxx http://oss.sgi.com/mailman/listinfo/xfs