From 0b9ce242e4f9ca50395d0a5ccaa77c09ed795894 Mon Sep 17 00:00:00 2001 From: Robert Landers Date: Wed, 15 Jul 2026 04:07:24 +0200 Subject: [PATCH] fix wording Signed-off-by: Robert Landers --- c/glm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c/glm.c b/c/glm.c index 7d307dc..81978a8 100644 --- a/c/glm.c +++ b/c/glm.c @@ -5273,7 +5273,7 @@ int main(int argc, char **argv){ (g_pilot_real&&coli_uring_set_workers(&g_ub_pilot.ring,uw))) fprintf(stderr,"[URING] warning: cannot set io-wq workers=%u: %s\n",uw,strerror(errno)); fprintf(stderr,"[URING] queued expert I/O active (depth=%d, workers=%u, %s%s)\n",URING_REQ_MAX,uw, - g_direct?"O_DIRECT":"buffered",g_pilot_real?", batched PILOT_REAL":""); + g_direct?"DIRECT=1":"buffered",g_pilot_real?", batched PILOT_REAL":""); if(!g_direct) fprintf(stderr,"[URING] cold NVMe: DIRECT=1 avoids page-cache copy/readahead bottlenecks\n"); #else fprintf(stderr,"URING=1 is supported only on Linux\n"); return 2;