summaryrefslogtreecommitdiffstats
path: root/src/ioq.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2025-02-05 16:52:15 -0500
committerTavian Barnes <tavianator@tavianator.com>2025-02-06 10:38:45 -0500
commit5fee84b972a381301cd78f42e1190115c4bed8a5 (patch)
tree68076b23fabc3d2795cd232fdde17f649cf01a19 /src/ioq.c
parenta85565334708840dd44b849a91c1fa09b9038093 (diff)
downloadbfs-5fee84b972a381301cd78f42e1190115c4bed8a5.tar.xz
stat: Expose mount IDs from statx()
Diffstat (limited to 'src/ioq.c')
-rw-r--r--src/ioq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ioq.c b/src/ioq.c
index 6fc4cbb..0e7ac42 100644
--- a/src/ioq.c
+++ b/src/ioq.c
@@ -846,7 +846,7 @@ static struct io_uring_sqe *ioq_dispatch_async(struct ioq_ring_state *state, str
sqe = ioq_get_sqe(state);
struct ioq_stat *args = &ent->stat;
int flags = bfs_statx_flags(args->flags);
- unsigned int mask = STATX_BASIC_STATS | STATX_BTIME;
+ unsigned int mask = bfs_statx_mask();
io_uring_prep_statx(sqe, args->dfd, args->path, flags, mask, args->xbuf);
}
#endif