From 7130e37d8f29b1071d5a19361f5fef156a458a6c Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 6 May 2020 03:05:47 -0700 Subject: [PATCH] vfs_io_uring: fix the prefix for parametric options from 'vfs_io_uring' to 'io_uring' This is what the manpage describes. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14361 Signed-off-by: Stefan Metzmacher Reviewed-by: Jeremy Allison (cherry picked from commit fadc7043a71b409ad60a1a4076a7f88f379d2056) --- source3/modules/vfs_io_uring.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/modules/vfs_io_uring.c b/source3/modules/vfs_io_uring.c index 378e48d112f..b409d075337 100644 --- a/source3/modules/vfs_io_uring.c +++ b/source3/modules/vfs_io_uring.c @@ -172,13 +172,13 @@ static int vfs_io_uring_connect(vfs_handle_struct *handle, const char *service, } num_entries = lp_parm_ulong(SNUM(handle->conn), - "vfs_io_uring", + "io_uring", "num_entries", 128); num_entries = MAX(num_entries, 1); sqpoll = lp_parm_bool(SNUM(handle->conn), - "vfs_io_uring", + "io_uring", "sqpoll", false); if (sqpoll) { -- 2.11.4.GIT