If file is metacopy only, it is possible that lower is compressed while upper is not. In that case, report file as compressed (despite the fact that only data is compressed while metadata is not). Signed-off-by: Vivek Goyal <vgoyal@xxxxxxxxxx> --- fs/overlayfs/inode.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/fs/overlayfs/inode.c b/fs/overlayfs/inode.c index 15713d4ac2dd..dc7573ed947a 100644 --- a/fs/overlayfs/inode.c +++ b/fs/overlayfs/inode.c @@ -75,6 +75,15 @@ static void ovl_stat_set_encryption(struct kstat *ustat, struct kstat *lstat) { ustat->attributes_mask |= STATX_ATTR_ENCRYPTED; } +static void ovl_stat_set_compressed(struct kstat *ustat, struct kstat *lstat) { + if (!((lstat->attributes_mask & STATX_ATTR_COMPRESSED) && + (lstat->attributes & STATX_ATTR_COMPRESSED))) + return; + + ustat->attributes |= STATX_ATTR_COMPRESSED; + ustat->attributes_mask |= STATX_ATTR_COMPRESSED; +} + int ovl_getattr(const struct path *path, struct kstat *stat, u32 request_mask, unsigned int flags) @@ -136,6 +145,7 @@ int ovl_getattr(const struct path *path, struct kstat *stat, if (metacopy) { stat->blocks = lowerstat.blocks; ovl_stat_set_encryption(stat, &lowerstat); + ovl_stat_set_compressed(stat, &lowerstat); } } if (samefs) { -- 2.13.6 -- To unsubscribe from this list: send the line "unsubscribe linux-unionfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html