public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
 messages from 2024-07-04 04:58:52 to 2024-07-20 03:37:22 UTC [more...]

[PATCH v8 00/27] Unified flow table
 2024-07-20  3:37 UTC  (30+ messages)
` [PATCH v8 01/27] flow: Common address information for initiating side
` [PATCH v8 02/27] flow: Common address information for target side
` [PATCH v8 03/27] tcp, flow: Remove redundant information, repack connection structures
` [PATCH v8 04/27] tcp: Obtain guest address from flowside
` [PATCH v8 05/27] tcp: Manage outbound address via flow table
` [PATCH v8 06/27] tcp: Simplify endpoint validation using flowside information
` [PATCH v8 07/27] tcp_splice: Eliminate SPLICE_V6 flag
` [PATCH v8 08/27] tcp, flow: Replace TCP specific hash function with general flow hash
` [PATCH v8 09/27] flow, tcp: Generalise TCP hash table to general flow hash table
` [PATCH v8 10/27] tcp: Re-use flow hash for initial sequence number generation
` [PATCH v8 11/27] icmp: Remove redundant id field from flow table entry
` [PATCH v8 12/27] icmp: Obtain destination addresses from the flowsides
` [PATCH v8 13/27] icmp: Look up ping flows using flow hash
` [PATCH v8 14/27] icmp: Eliminate icmp_id_map
` [PATCH v8 15/27] flow: Helper to create sockets based on flowside
` [PATCH v8 16/27] icmp: Manage outbound socket address via flow table
` [PATCH v8 17/27] flow, tcp: Flow based NAT and port forwarding for TCP
` [PATCH v8 18/27] flow, icmp: Use general flow forwarding rules for ICMP
` [PATCH v8 19/27] fwd: Update flow forwarding logic for UDP
` [PATCH v8 20/27] udp: Create flows for datagrams from originating sockets
` [PATCH v8 21/27] udp: Handle "spliced" datagrams with per-flow sockets
` [PATCH v8 22/27] udp: Remove obsolete splice tracking
` [PATCH v8 23/27] udp: Find or create flows for datagrams from tap interface
` [PATCH v8 24/27] udp: Direct datagrams from host to guest via flow table
` [PATCH v8 25/27] udp: Remove obsolete socket tracking
` [PATCH v8 26/27] udp: Remove rdelta port forwarding maps
` [PATCH v8 27/27] udp: Rename UDP listening sockets

[PATCH v2 0/4] Add vhost-user support to passt. (part 3)
 2024-07-19 21:29 UTC  (10+ messages)
` [PATCH v2 1/4] packet: replace struct desc by struct iovec
` [PATCH v2 2/4] vhost-user: introduce virtio API
` [PATCH v2 3/4] vhost-user: introduce vhost-user API
` [PATCH v2 4/4] vhost-user: add vhost-user

[PATCH 0/4] RFC: Proof-of-concept based exeter+Avocado tests
 2024-07-19  6:59 UTC  (5+ messages)
` [PATCH 1/4] test: run static checkers with Avocado and JSON definitions
` [PATCH 2/4] test: Extend make targets to run Avocado tests
` [PATCH 3/4] test: Exeter based static tests
` [PATCH 4/4] test: Add exeter+Avocado based build tests

[PATCH 0/6] Of course there are more flow table preliminaries
 2024-07-17 15:07 UTC  (14+ messages)
` [PATCH 1/6] flow, icmp, tcp: Clean up helpers for getting flow from index
` [PATCH 2/6] flow, tcp_splice: Prefer 'sidei' for variables referring to side index
` [PATCH 3/6] flow: Introduce flow_foreach_sidei() macro
` [PATCH 4/6] tcp_splice: Use parameterised macros for per-side event/flag bits
` [PATCH 5/6] doc: Test behaviour of closing duplicate UDP sockets
` [PATCH 6/6] doc: Extend zero-recv test with methods using msghdr

[PATCH v2 0/5] Handle error events on UDP sockets
 2024-07-17  6:32 UTC  (7+ messages)
` [PATCH v2 1/5] conf: Don't configure port forwarding for a disabled protocol
` [PATCH v2 2/5] udp: Make udp_sock_recv static
` [PATCH v2 3/5] udp, tcp: Tweak handling of no_udp and no_tcp flags
` [PATCH v2 4/5] util: Add AF_UNSPEC support to sockaddr_ntop()
` [PATCH v2 5/5] udp: Handle errors on UDP sockets

[PATCH v7 00/27] Unified flow table
 2024-07-17  0:49 UTC  (59+ messages)
` [PATCH v7 01/27] flow: Common address information for initiating side
` [PATCH v7 02/27] flow: Common address information for target side
` [PATCH v7 03/27] tcp, flow: Remove redundant information, repack connection structures
` [PATCH v7 04/27] tcp: Obtain guest address from flowside
` [PATCH v7 05/27] tcp: Manage outbound address via flow table
` [PATCH v7 06/27] tcp: Simplify endpoint validation using flowside information
` [PATCH v7 07/27] tcp_splice: Eliminate SPLICE_V6 flag
` [PATCH v7 08/27] tcp, flow: Replace TCP specific hash function with general flow hash
` [PATCH v7 09/27] flow, tcp: Generalise TCP hash table to general flow hash table
` [PATCH v7 10/27] tcp: Re-use flow hash for initial sequence number generation
` [PATCH v7 11/27] icmp: Remove redundant id field from flow table entry
` [PATCH v7 12/27] icmp: Obtain destination addresses from the flowsides
` [PATCH v7 13/27] icmp: Look up ping flows using flow hash
` [PATCH v7 14/27] icmp: Eliminate icmp_id_map
` [PATCH v7 15/27] flow: Helper to create sockets based on flowside
` [PATCH v7 16/27] icmp: Manage outbound socket address via flow table
` [PATCH v7 17/27] flow, tcp: Flow based NAT and port forwarding for TCP
` [PATCH v7 18/27] flow, icmp: Use general flow forwarding rules for ICMP
` [PATCH v7 19/27] fwd: Update flow forwarding logic for UDP
` [PATCH v7 20/27] udp: Create flows for datagrams from originating sockets
` [PATCH v7 21/27] udp: Handle "spliced" datagrams with per-flow sockets
` [PATCH v7 22/27] udp: Remove obsolete splice tracking
` [PATCH v7 23/27] udp: Find or create flows for datagrams from tap interface
` [PATCH v7 24/27] udp: Direct datagrams from host to guest via flow table
` [PATCH v7 25/27] udp: Remove obsolete socket tracking
` [PATCH v7 26/27] udp: Remove rdelta port forwarding maps
` [PATCH v7 27/27] udp: Rename UDP listening sockets

[PATCH 0/5] Handle error events on UDP sockets
 2024-07-17  0:04 UTC  (8+ messages)
` [PATCH 1/5] conf: Don't configure port forwarding for a disabled protocol
` [PATCH 2/5] udp: Make udp_sock_recv static
` [PATCH 3/5] udp, tcp: Tweak handling of no_udp and no_tcp flags
` [PATCH 4/5] util: Add AF_UNSPEC support to sockaddr_ntop()
` [PATCH 5/5] udp: Handle errors on UDP sockets

[PATCH v9 0/2] Add support for SO_PEEK_OFF
 2024-07-15 18:52 UTC  (8+ messages)
` [PATCH v9 1/2] tcp: leverage support of SO_PEEK_OFF socket option when available
` [PATCH v9 2/2] tcp: handle shrunk window advertisemenst from guest

[PATCH] doc: Trivial fix for reuseaddr-priority
 2024-07-15 16:57 UTC  (2+ messages)

[PATCH/RFC] test: run static checkers with Avocado and JSON definitions
 2024-07-15  4:15 UTC  (5+ messages)

[PATCH v2 00/11] Preliminaries for UDP flow support
 2024-07-15  0:43 UTC  (15+ messages)
` [PATCH v2 01/11] util: sock_l4() determine protocol from epoll type rather than the reverse
` [PATCH v2 02/11] flow: Add flow_sidx_valid() helper
` [PATCH v2 03/11] udp: Pass full epoll reference through more of sock handler path
` [PATCH v2 04/11] udp: Rename IOV and mmsghdr arrays
` [PATCH v2 05/11] udp: Unify udp[46]_mh_splice
` [PATCH v2 06/11] udp: Unify udp[46]_l2_iov
` [PATCH v2 07/11] udp: Don't repeatedly initialise udp[46]_eth_hdr
` [PATCH v2 08/11] udp: Move some more of sock_handler tasks into sub-functions
` [PATCH v2 09/11] udp: Consolidate datagram batching
` [PATCH v2 10/11] doc: Add program to document and test assumptions about SO_REUSEADDR
` [PATCH v2 11/11] doc: Test behaviour of zero length datagram recv()s

[PATCH 0/5] Add vhost-user support to passt. (part 3)
 2024-07-15  0:37 UTC  (16+ messages)
` [PATCH 1/5] packet: replace struct desc by struct iovec
` [PATCH 2/5] vhost-user: introduce virtio API
` [PATCH 3/5] vhost-user: introduce vhost-user API
` [PATCH 5/5] vhost-user: add vhost-user

[PATCH v8 0/2] Add support for SO_PEEK_OFF
 2024-07-12 14:20 UTC  (5+ messages)
` [PATCH v8 1/2] tcp: leverage support of SO_PEEK_OFF socket option when available
` [PATCH v8 2/2] tcp: handle shrunk window advertisemenst from guest

[PATCH 0/4] Small, assorted "hardening" fixes
 2024-07-08 13:01 UTC  (8+ messages)
` [PATCH 3/4] util, lineread, tap: Overflow checks on long signed sums and subtractions

Avocado, passt, etc
 2024-07-05 11:46 UTC 

[PATCH 00/11] Preliminaries for UDP flow support
 2024-07-05  9:49 UTC  (24+ messages)
` [PATCH 01/11] util: sock_l4() determine protocol from epoll type rather than the reverse
` [PATCH 02/11] flow: Add flow_sidx_valid() helper
` [PATCH 03/11] udp: Pass full epoll reference through more of sock handler path
` [PATCH 04/11] udp: Rename IOV and mmsghdr arrays
` [PATCH 05/11] udp: Unify udp[46]_mh_splice
` [PATCH 06/11] udp: Unify udp[46]_l2_iov
` [PATCH 07/11] udp: Don't repeatedly initialise udp[46]_eth_hdr
` [PATCH 08/11] udp: Move some more of sock_handler tasks into sub-functions
` [PATCH 09/11] udp: Consolidate datagram batching
` [PATCH 10/11] contrib: Add program to document and test assumptions about SO_REUSEADDR
` [PATCH 11/11] contrib: Test behaviour of zero length datagram recv()s


Code repositories for project(s) associated with this public inbox

	https://passt.top/passt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for IMAP folder(s).