We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67f1550 commit b8a5974Copy full SHA for b8a5974
testcases/kernel/syscalls/statx/statx04.c
@@ -96,8 +96,9 @@ static void setup(void)
96
for (i = 0, expected_mask = 0; i < ARRAY_SIZE(attr_list); i++)
97
expected_mask |= attr_list[i].attr;
98
99
- /* STATX_ATTR_COMPRESSED not supported on XFS, TMPFS */
100
- if (!strcmp(tst_device->fs_type, "xfs") || !strcmp(tst_device->fs_type, "tmpfs"))
+ /* STATX_ATTR_COMPRESSED not supported on Bcachefs, TMPFS, XFS */
+ if (!strcmp(tst_device->fs_type, "bcachefs") || !strcmp(tst_device->fs_type, "tmpfs") ||
101
+ !strcmp(tst_device->fs_type, "xfs"))
102
expected_mask &= ~STATX_ATTR_COMPRESSED;
103
104
/* Attribute support was added to Btrfs statx() in kernel v4.13 */
0 commit comments