t/nvmept_trim: increase transfer size for some tests
[fio.git] / oslib / statx.h
1 #ifndef CONFIG_HAVE_STATX
2 #ifdef CONFIG_HAVE_STATX_SYSCALL
3 #include <linux/stat.h>
4 #include <sys/stat.h>
5 #else
6 #define STATX_ALL 0
7 #undef statx
8 struct statx
9 {
10 };
11 #endif
12 int statx(int dfd, const char *pathname, int flags, unsigned int mask,
13           struct statx *buffer);
14 #endif