- Feb 05, 2021
-
-
Florian Fischer authored
The gtest wrap can be updated with the meson wrap command
-
Florian Schmaus authored
Towards fixing modernize-avoid-c-arrays, add template_util::getSize() See merge request i4/manycore/emper!84
-
Florian Schmaus authored
-
Florian Schmaus authored
[tests] Run tests in parallel if io_uring is disabled See merge request i4/manycore/emper!85
-
- Feb 03, 2021
-
-
Florian Schmaus authored
-
Florian Schmaus authored
[IO] fail hard if the globalCompleter would drop a Future See merge request i4/manycore/emper!83
-
Florian Schmaus authored
Improve networking code See merge request i4/manycore/emper!82
-
Florian Fischer authored
Currently the globalCompleter would drop Futures which he is unable to submit to its SQ because io_uring_submit returned -EBUSY, signalizing a full CQ. For now we fail hard if this hopefully unlikely condition occurs. Additional small code changes: * don't wrap assert in if constexpr(DEBUG) * annotate Future completion in globalCompleter as unlikely * use prepared Future count as unsigned * remove redundant parenthesis * introduce helper function for IoContext* tagging * introduce Stats::record_io_submit_full_cq default parameter
-
Florian Fischer authored
Use getaddrinfo instead to get the socket information instead of using always ipv4 sockets. Pass host and port as strings for use with getaddrinfo.
-
Florian Fischer authored
Start client Fibers in batches to make sure we don't exceed the server's TCP listen backlog.
-
Florian Fischer authored
-
- Feb 02, 2021
-
-
Florian Schmaus authored
Add support for open/openat and a simple fixed string search utility See merge request i4/manycore/emper!77
-
Modified-by:
Florian Schmaus <flow@cs.fau.de>
-
Modified-by:
Florian Schmaus <flow@cs.fau.de>
-
Florian Schmaus authored
[Makefile][CI] Add static-analysis Make target, and gitlab-ci stage See merge request i4/manycore/emper!81
-
Florian Schmaus authored
The 'static-analysis' Make target runs all static analysis we currently have. This allows to run at least static analysis, in cases where we are able build a particular EMPER configuration, but no able to execute it (e.g. because the kernel lacks io_uring support).
-
Florian Schmaus authored
Remove linux time types include See merge request i4/manycore/emper!80
-
On our bigboxes the build failed because both liburing.h and linux/time_types.h define struct __kernel_time_spec. The linux headers were added because of iwyu and are not unnecessary. Modified-by:
Florian Schmaus <flow@cs.fau.de>
-
Florian Schmaus authored
fix build with locked work-stealing queues and add test See merge request i4/manycore/emper!79
-
- Feb 01, 2021
-
-
Florian Fischer authored
-
- Jan 29, 2021
-
-
Florian Schmaus authored
Improve default read/write offset See merge request i4/manycore/emper!78
-
Florian Schmaus authored
[test] fix occasional failures of SimpleDiskAndNetworkTest See merge request i4/manycore/emper!76
-
Florian Schmaus authored
Remove feature_flags from test and introduce io test runner Closes #10 See merge request i4/manycore/emper!75
-
Florian Fischer authored
Add a warning when the kernel does not support IORING_FEAT_NODROP that maybe IO request are getting lost.
-
Florian Fischer authored
To skip test if emper::IO is false the new io test runner in tests/test-runner is introduced which checks emper::IO and skips the test otherwise executes our normal testMain function. Fixes #10.
-
- Jan 28, 2021
-
-
Florian Fischer authored
The current default offset is 0 which means read/write will not work like POSIX read/write and update the file position and instead will always work at the beginning of the file. Since linux v5.5 (ba04291eb66ed895f194ae5abd3748d72bf8aaea) io_uring supports offset=-1 which behaves like pvread2/pvwrite2. This feature is reported by IORING_FEAT_RW_CUR_POS. By using the default offset -1 emper::io::readFile and emper::io::writeFile will work like write/read but does also support pwrite/pread.
-
Florian Fischer authored
Concurrently connecting and creating the server socket is racy. Now the server socket is created before any Fiber is started removing this race. Note: The same race is theoretically in SimpleNetworkTest and ConcurrenctEchoTest too but I haven't observed the failure yet
-
- Jan 27, 2021
-
-
Florian Schmaus authored
[gitlab-ci] disable IO since io_uring is not available in our CI See merge request i4/manycore/emper!74
-
- Jan 26, 2021
-
-
Florian Fischer authored
-
Florian Schmaus authored
[clang-tidy] Set HeaderFilterRegex to '.*' See merge request i4/manycore/emper!73
-
Florian Schmaus authored
This matches now all headers in the repository, instead of just the ones in the emper/ subdirectory, for example the /tests/fixtures.network.hpp header.
-
Florian Schmaus authored
Minor fixes See merge request i4/manycore/emper!72
-
Florian Schmaus authored
-
Florian Schmaus authored
-
Florian Schmaus authored
-
Florian Schmaus authored
Both are semantically equivalent, and it appears that "enum struct" is a little bit more confusing.
-
Florian Schmaus authored
The operation is called 'dequeue', 'deque' is a double-ended queue.
-
Florian Schmaus authored
Worker exclusive uring See merge request !54
-
Florian Fischer authored
The echo client established X connections and start the echo phase after all sockets are connected. Each client Fiber measures the time from sending the message until receiving the echo.
-
Florian Fischer authored
-