On 2/10/22 2:04 AM, Stefan Roesch wrote:
@@ -156,6 +211,16 @@ int main(int argc, char *argv[]) goto err; }+ ret = test_statx_stable(&ring, fname);+ if (ret) { + if (ret == -EINVAL) { + fprintf(stdout, "statx not supported, skipping\n"); + goto done; + } + fprintf(stderr, "test_statx_loop failed: %d\n", ret); + goto err; + } +
Why do we call it test_statx_loop? Isn't the function name test_statx_stable? -- Ammar Faizi