Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Storage API - listen sockets support #218

Open
wants to merge 5 commits into
base: vNext
Choose a base branch
from

Commits on Nov 15, 2024

  1. issue: Reduce flow_tuple by 8 bytes

    in_protocol_t represents several values and doens't have to be 4 bytes
    in size. Reducing it to 2 bytes allows to utilize flow_tuple layout more
    efficiently.
    
    Signed-off-by: Dmytro Podgornyi <[email protected]>
    pasis committed Nov 15, 2024
    Configuration menu
    Copy the full SHA
    f62d474 View commit details
    Browse the repository at this point in the history
  2. Add support of listen sockets to XLIO Socket API

    Signed-off-by: Dmytro Podgornyi <[email protected]>
    pasis committed Nov 15, 2024
    Configuration menu
    Copy the full SHA
    06669a5 View commit details
    Browse the repository at this point in the history
  3. Add test application for XLIO listen sockets

    Signed-off-by: Dmytro Podgornyi <[email protected]>
    pasis committed Nov 15, 2024
    Configuration menu
    Copy the full SHA
    4562ac8 View commit details
    Browse the repository at this point in the history
  4. Implement xlio_socket_geetsockname()

    Signed-off-by: Dmytro Podgornyi <[email protected]>
    pasis committed Nov 15, 2024
    Configuration menu
    Copy the full SHA
    0c685ec View commit details
    Browse the repository at this point in the history
  5. Don't send RST on ACK TCP segments in listen socket RX path

    During guided migration between xlio_poll_groups, between detach and
    attach operations the new RX packets arrive to the respective listen
    socket due to 3T steering. Drop such packets with TCP RST, so the
    packets can be retransmitted eventually and the TCP stream recover.
    
    Signed-off-by: Dmytro Podgornyi <[email protected]>
    pasis committed Nov 15, 2024
    Configuration menu
    Copy the full SHA
    930ad2a View commit details
    Browse the repository at this point in the history