Revert RIO - move to experimental branch#23
Merged
Conversation
Signed-off-by: Alan Jowett <alan.jowett@microsoft.com>
Alan-Jowett
force-pushed
the
remove_rio_from_main
branch
from
December 5, 2025 15:57
2dbc6a3 to
0022b6f
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request removes support for Windows RIO (Registered I/O) mode from the codebase and related CI workflow. The changes simplify the socket utilities by eliminating RIO-specific types, functions, and constants, and update the UDP socket creation API accordingly.
Removal of RIO (Registered I/O) support:
unique_rio_cq,unique_rio_rq,unique_rio_buffer), context structs (rio_context), constants, and helper functions have been deleted fromsrc/common/socket_utils.hppandsrc/common/socket_utils.cpp. This includes functions for creating RIO queues, registering buffers, and posting RIO sends/receives. [1] [2] [3] [4] [5]create_udp_socketfunction and its usage have been simplified: theuse_rioparameter has been removed, and the function no longer sets RIO-related flags. [1] [2]Continuous Integration workflow update:
.github/workflows/reusable-test.ymlno longer runs the "Run loopback test (RIO mode)" job, removing automated RIO testing from CI.These changes streamline the codebase by removing legacy RIO functionality and related complexity, focusing future development and testing on standard socket operations.