Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5f3fdc58 authored by Jaegeuk Kim's avatar Jaegeuk Kim Committed by Sahitya Tummala
Browse files

FROMLIST: f2fs: expose some sectors to user in inline data or dentry case

(from https://patchwork.kernel.org/patch/10005409/

)

If there's some data written through inline data or dentry, we need to shouw
st_blocks. This fixes reporting zero blocks even though there is small written
data.

Bug: 67651285
Bug: 67600404
Change-Id: I9ad5cb137eb627b9fd22740d2ab98e0221433c95
Cc: stable@vger.kernel.org
Signed-off-by: default avatarJaegeuk Kim <jaegeuk@kernel.org>
Git-commit: 362adf02
Git-repo: https://android.googlesource.com/kernel/common.git


Signed-off-by: default avatarSahitya Tummala <stummala@codeaurora.org>
parent 167e1f32
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -665,6 +665,11 @@ int f2fs_getattr(struct vfsmount *mnt,
{
	struct inode *inode = d_inode(dentry);
	generic_fillattr(inode, stat);

	/* we need to show initial sectors used for inline_data/dentries */
	if (f2fs_has_inline_data(inode) || f2fs_has_inline_dentry(inode))
		stat->blocks += (stat->size + 511) >> 9;

	return 0;
}