public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
 messages from 2024-06-20 00:16:41 to 2024-07-11 01:54:17 UTC [more...]

[PATCH v7 00/27] Unified flow table
 2024-07-11  1:30 UTC  (48+ 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/RFC] test: run static checkers with Avocado and JSON definitions
 2024-07-08 23:57 UTC  (4+ messages)

[PATCH 0/4] Small, assorted "hardening" fixes
 2024-07-08 13:01 UTC  (21+ messages)
` [PATCH 1/4] conf: Copy up to MAXDNSRCH - 1 bytes, not MAXDNSRCH
` [PATCH 2/4] tcp_splice: Check return value of setsockopt() for SO_RCVLOWAT
` [PATCH 3/4] util, lineread, tap: Overflow checks on long signed sums and subtractions
` [PATCH 4/4] tap: Drop frames from guest whose length is more than remaining buffer

[PATCH 0/5] Add vhost-user support to passt. (part 3)
 2024-07-05 23:53 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 4/5] iov: add iov_count()
` [PATCH 5/5] vhost-user: add vhost-user

[PATCH v2 00/11] Preliminaries for UDP flow support
 2024-07-05 16:38 UTC  (13+ 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

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

[PATCH v2 0/5] Small, assorted "hardening" fixes
 2024-07-02 20:54 UTC  (8+ messages)
` [PATCH v2 1/5] conf: Copy up to MAXDNSRCH - 1 bytes, not MAXDNSRCH
` [PATCH v2 2/5] tcp_splice: Check return value of setsockopt() for SO_RCVLOWAT
` [PATCH v2 3/5] util, lineread, tap: Overflow checks on long signed sums and subtractions
` [PATCH v2 4/5] tap: Discard guest data on length descriptor mismatch
` [PATCH v2 5/5] conf: Use the right maximum buffer size for c->sock_path

[PATCH v6 00/26] RFC: Unified flow table
 2024-06-27  5:55 UTC  (13+ messages)
` [PATCH v6 01/26] flow: Common address information for initiating side
` [PATCH v6 02/26] flow: Common address information for target side
` [PATCH v6 03/26] tcp, flow: Remove redundant information, repack connection structures
` [PATCH v6 16/26] flow, tcp: Flow based NAT and port forwarding for TCP

[PATCH v5 0/9] Fixes for early logging/prints and related cleanups
 2024-06-26  1:50 UTC  (17+ messages)
` [PATCH v5 1/9] conf, passt: Don't try to log to stderr after we close it
` [PATCH v5 2/9] conf, passt: Make --stderr do nothing, and deprecate it
` [PATCH v5 3/9] conf, log: Instead of abusing log levels, add log_conf_parsed flag
` [PATCH v5 4/9] log, passt: Always print to stderr before initialisation is complete
` [PATCH v5 5/9] log: Add _perror() logging function variants
` [PATCH v5 6/9] treewide: Replace perror() calls with calls to logging functions
` [PATCH v5 7/9] treewide: Replace strerror() calls
` [PATCH v5 8/9] conf, passt: Don't call __openlog() if a log file is used
` [PATCH v5 9/9] log: Don't report syslog failures to stderr after initialisation

[PATCH] pasta.c: modify hostname when detaching new namespace
 2024-06-25 22:27 UTC  (4+ messages)

[PATCH 0/2] Fix bug #80 again
 2024-06-24 19:08 UTC  (6+ messages)
` [PATCH 1/2] Revert "udp: Make rport calculation more local"
` [PATCH 2/2] udp: Reduce scope of rport in udp_invert_portmap()

passt: new version 2024_06_24.1ee2eca available
 2024-06-24 19:06 UTC 

[PATCH v3] conf: Accept duplicate and conflicting options, the last one wins
 2024-06-21  9:55 UTC  (4+ messages)

[PATCH 0/8] Open socket and PID files as root, before switching
 2024-06-21  1:02 UTC  (8+ messages)
` [PATCH 7/8] conf, passt, tap: Open socket and PID files before switching UID/GID

[PATCH v2] conf: Accept duplicate and conflicting options, the last one wins
 2024-06-20 10:09 UTC  (4+ messages)

[PATCH v4 0/8] Fixes for early logging/prints and related cleanups
 2024-06-20  4:34 UTC  (10+ messages)
` [PATCH v4 1/8] conf, passt: Don't try to log to stderr after we close it
` [PATCH v4 2/8] conf, passt: Make --stderr do nothing, and deprecate it
` [PATCH v4 3/8] conf, log: Instead of abusing log levels, add log_conf_parsed flag
` [PATCH v4 4/8] log, passt: Always print to stderr before initialisation is complete
` [PATCH v4 5/8] log: Add _perror() logging function variants
` [PATCH v4 6/8] treewide: Replace perror() calls with calls to logging functions
` [PATCH v4 7/8] treewide: Replace strerror() calls
` [PATCH v4 8/8] conf, passt: Don't call __openlog() if a log file is used

[PATCH v3 0/8] Fixes for early logging/prints and related cleanups
 2024-06-20  0:49 UTC  (17+ messages)
` [PATCH v3 1/8] conf, passt: Don't try to log to stderr after we close it
` [PATCH v3 2/8] conf, passt: Make --stderr do nothing, and deprecate it
` [PATCH v3 3/8] conf, log: Instead of abusing log levels, add log_conf_parsed flag
` [PATCH v3 4/8] log, passt: Always print to stderr before initialisation is complete
` [PATCH v3 5/8] log: Add _perror() logging function variants
` [PATCH v3 6/8] treewide: Replace perror() calls with calls to logging functions
` [PATCH v3 7/8] treewide: Replace strerror() calls
` [PATCH v3 8/8] conf, passt: Don't call __openlog() if a log file is used

[PATCH v2] netlink: Strip nexthop identifiers when duplicating routes
 2024-06-20  0:22 UTC  (2+ messages)

[PATCH v2 0/6] Fixes for early logging/prints and related cleanups
 2024-06-20  0:16 UTC  (5+ messages)
` [PATCH v2 1/6] conf, passt: Don't try to log to stderr after we close it


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).