You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tpool/aio_liburing.cc
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,10 @@ class aio_uring final : public tpool::aio
60
60
case EPERM:
61
61
my_printf_error(ER_UNKNOWN_ERROR,
62
62
"io_uring_queue_init() failed with EPERM:"
63
-
" sysctl kernel.io_uring_disabled has the value 2, or 1 and the user of the process is not a member of sysctl kernel.io_uring_group. (see man 2 io_uring_setup).",
63
+
" sysctl kernel.io_uring_disabled has the value 2, "
64
+
"or 1 and the user of the process is not a member of "
65
+
"sysctl kernel.io_uring_group. (see man 2 "
66
+
"io_uring_setup).",
64
67
ME_ERROR_LOG | ME_WARNING);
65
68
break;
66
69
default:
@@ -93,7 +96,7 @@ class aio_uring final : public tpool::aio
93
96
{
94
97
my_printf_error(ER_UNKNOWN_ERROR,
95
98
"io_uring_submit() returned %d during shutdown:"
96
-
" this may cause a hang\n",
99
+
" this may cause a hang",
97
100
ME_ERROR_LOG | ME_FATAL, ret);
98
101
abort();
99
102
}
@@ -152,7 +155,7 @@ class aio_uring final : public tpool::aio
0 commit comments