Index: libcfa/src/concurrency/io/setup.cfa
===================================================================
--- libcfa/src/concurrency/io/setup.cfa	(revision 8bee858990b2b51491609072db909e1fd09e5127)
+++ libcfa/src/concurrency/io/setup.cfa	(revision 0f1336cbd29fbab1e765b02e04c1b7e14d4f22bc)
@@ -228,4 +228,5 @@
 
 		#if !defined(CFA_WITH_IO_URING_IDLE)
+		{
 			// Step 4 : eventfd
 			__cfadbg_print_safe(io_core, "Kernel I/O : registering %d for completion with ring %d\n", procfd, fd);
@@ -237,7 +238,12 @@
 
 			__cfadbg_print_safe(io_core, "Kernel I/O : registered %d for completion with ring %d\n", procfd, fd);
-		#endif
-
+		}
+		#endif
+
+		// TODO: implement a proper version of this.
+		// I have not found a better maximum that works in general but users should be able to configure it
+		// the same way they configure other I/O options
 		// #if defined(CFA_HAVE_IORING_REGISTER_IOWQ_MAX_WORKERS)
+		// {
 		// 	// Step 5 : max worker count
 		// 	__cfadbg_print_safe(io_core, "Kernel I/O : lmiting max workers for ring %d\n", fd);
@@ -252,4 +258,5 @@
 
 		// 	__cfadbg_print_safe(io_core, "Kernel I/O : lmited max workers for ring %d\n", fd);
+		// }
 		// #endif
 
