mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-29 23:24:11 +08:00
ext4: return non-zero st_blocks for inline data
Return a non-zero st_blocks to userspace for statfs() and friends. Some versions of tar will assume that files with st_blocks == 0 do not contain any data and will skip reading them entirely. Signed-off-by: Andreas Dilger <andreas.dilger@intel.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
This commit is contained in:
parent
dd1f723bf5
commit
9206c56155
@ -4693,6 +4693,15 @@ int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry,
|
|||||||
inode = dentry->d_inode;
|
inode = dentry->d_inode;
|
||||||
generic_fillattr(inode, stat);
|
generic_fillattr(inode, stat);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* If there is inline data in the inode, the inode will normally not
|
||||||
|
* have data blocks allocated (it may have an external xattr block).
|
||||||
|
* Report at least one sector for such files, so tools like tar, rsync,
|
||||||
|
* others doen't incorrectly think the file is completely sparse.
|
||||||
|
*/
|
||||||
|
if (unlikely(ext4_has_inline_data(inode)))
|
||||||
|
stat->blocks += (stat->size + 511) >> 9;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* We can't update i_blocks if the block allocation is delayed
|
* We can't update i_blocks if the block allocation is delayed
|
||||||
* otherwise in the case of system crash before the real block
|
* otherwise in the case of system crash before the real block
|
||||||
@ -4704,9 +4713,8 @@ int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry,
|
|||||||
* blocks for this file.
|
* blocks for this file.
|
||||||
*/
|
*/
|
||||||
delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb),
|
delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb),
|
||||||
EXT4_I(inode)->i_reserved_data_blocks);
|
EXT4_I(inode)->i_reserved_data_blocks);
|
||||||
|
stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits - 9);
|
||||||
stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits-9);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user