Skip to content
Snippets Groups Projects
Commit 39e7b64d authored by Florian Fischer's avatar Florian Fischer
Browse files

negate waitfd punt option to fix builds of non waitfd configs

parent ddc63ae1
No related branches found
No related tags found
No related merge requests found
......@@ -162,10 +162,10 @@ const bool IO_NOTIFICATION =
;
const bool IO_PUNT_WAITFD_READ =
#ifdef EMPER_IO_PUNT_WAITFD_READ
true
#else
#ifdef EMPER_IO_SKIP_WAITFD_READ_PUNT
false
#else
true
#endif
;
......
......@@ -194,7 +194,7 @@ io_bool_options = [
{'option': 'notification',
'dependencies': {'worker_sleep_strategy': 'waitfd'}},
{'option': 'synchronous'},
{'option': 'punt_waitfd_read',
{'option': 'skip_waitfd_read_punt',
'dependencies': {'worker_sleep_strategy': 'waitfd'}},
]
......
......@@ -74,10 +74,10 @@ option(
value: 'none',
)
option(
'io_punt_waitfd_read',
'io_skip_waitfd_read_punt',
type: 'boolean',
description: 'Punt the sleep watfd read to the io_wq',
value: true,
description: 'Skip punting the sleep waitfd read to the io_wq',
value: false,
)
option(
'wakeup_semaphore_implementation',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment