public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
 messages from 2024-05-31 14:23:51 to 2024-06-19 01:56:42 UTC [more...]

[PATCH] netlink: Ignore EHOSTUNREACH failures when duplicating routes
 2024-06-19  1:56 UTC  (2+ messages)

[PATCH] conf: Accept duplicate and conflicting options, the last one wins
 2024-06-19  1:50 UTC  (2+ messages)

[PATCH v2] tcp: Don't rely on bind() to fail to decide that connection target is valid
 2024-06-19  1:27 UTC  (2+ messages)

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

[PATCH] netlink: With no default route, pick the first interface with a route
 2024-06-18 17:18 UTC 

[PATCH] tcp: Don't rely on bind() to fail to decide that connection target is valid
 2024-06-18 10:48 UTC 

[PATCH v2 0/6] Fixes for early logging/prints and related cleanups
 2024-06-18  7:14 UTC  (7+ messages)
` [PATCH v2 1/6] conf, passt: Don't try to log to stderr after we close it
` [PATCH v2 2/6] conf, log: Instead of abusing log levels, add log_conf_parsed flag
` [PATCH v2 3/6] log, passt: Always print to stderr before initialisation is complete
` [PATCH v2 4/6] log: Add _perror() logging function variants
` [PATCH v2 5/6] treewide: Replace perror() calls with calls to logging functions
` [PATCH v2 6/6] treewide: Replace strerror() calls

[PATCH 0/6] Fixes for early logging/prints and related cleanups
 2024-06-18  6:02 UTC  (18+ messages)
` [PATCH 1/6] conf, passt: Don't try to log to stderr after we close it
` [PATCH 2/6] conf, log: Introduce internal log flags, instead of abusing log levels
` [PATCH 3/6] log, passt: Always print to stderr before initialisation is complete
` [PATCH 4/6] log: Add _perror() logging function variants
` [PATCH 5/6] treewide: Replace perror() calls with calls to logging functions
` [PATCH 6/6] treewide: Replace strerror() calls

[PATCH v2 0/4] Even more flow table preliminaries
 2024-06-14 11:14 UTC  (6+ messages)
` [PATCH v2 1/4] util: Split construction of bind socket address from the rest of sock_l4()
` [PATCH v2 2/4] udp: Fold checking of splice flag into udp_mmh_splice_port()
` [PATCH v2 3/4] udp: Rework how we divide queued datagrams between sending methods
` [PATCH v2 4/4] udp: Move management of udp[46]_localname into udp_splice_send()

[PATCH v6 00/26] RFC: Unified flow table
 2024-06-14  6:13 UTC  (27+ 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 04/26] tcp: Obtain guest address from flowside
` [PATCH v6 05/26] tcp: Manage outbound address via flow table
` [PATCH v6 06/26] tcp: Simplify endpoint validation using flowside information
` [PATCH v6 07/26] tcp_splice: Eliminate SPLICE_V6 flag
` [PATCH v6 08/26] tcp, flow: Replace TCP specific hash function with general flow hash
` [PATCH v6 09/26] flow, tcp: Generalise TCP hash table to general flow hash table
` [PATCH v6 10/26] tcp: Re-use flow hash for initial sequence number generation
` [PATCH v6 11/26] icmp: Remove redundant id field from flow table entry
` [PATCH v6 12/26] icmp: Obtain destination addresses from the flowsides
` [PATCH v6 13/26] icmp: Look up ping flows using flow hash
` [PATCH v6 14/26] icmp: Eliminate icmp_id_map
` [PATCH v6 15/26] icmp: Manage outbound socket address via flow table
` [PATCH v6 16/26] flow, tcp: Flow based NAT and port forwarding for TCP
` [PATCH v6 17/26] flow, icmp: Use general flow forwarding rules for ICMP
` [PATCH v6 18/26] fwd: Update flow forwarding logic for UDP
` [PATCH v6 19/26] udp: Create flow table entries "
` [PATCH v6 20/26] udp: Direct traffic from tap according to flow table
` [PATCH v6 21/26] udp: Direct traffic from host to guest "
` [PATCH v6 22/26] udp: Direct spliced traffic "
` [PATCH v6 23/26] udp: Remove 'splicesrc' tracking
` [PATCH v6 24/26] udp: Remove tap port flags field
` [PATCH v6 25/26] udp: Remove rdelta port forwarding maps
` [PATCH v6 26/26] udp: Eliminate 'splice' flag from epoll reference

[PATCH 0/4] Even more flow table preliminaries
 2024-06-14  1:08 UTC  (11+ messages)
` [PATCH 1/4] util: Split construction of bind socket address from the rest of sock_l4()
` [PATCH 2/4] udp: Fold checking of splice flag into udp_mmh_splice_port()
` [PATCH 3/4] udp: Rework how we divide queued datagrams between sending methods
` [PATCH 4/4] udp: Move management of udp[46]_localname into udp_splice_send()

[PATCH v6 0/8] Add vhost-user support to passt (part 2)
 2024-06-13 14:36 UTC  (25+ messages)
` [PATCH v6 1/8] tcp: extract buffer management from tcp_send_flag()
` [PATCH v6 2/8] tcp: move buffers management functions to their own file
` [PATCH v6 3/8] tap: refactor packets handling functions
` [PATCH v6 4/8] udp: refactor UDP header update functions
` [PATCH v6 5/8] udp: rename udp_sock_handler() to udp_buf_sock_handler()
` [PATCH v6 6/8] vhost-user: compare mode MODE_PASTA and not MODE_PASST
` [PATCH v6 7/8] iov: remove iov_copy()
` [PATCH v6 8/8] tap: use in->buf_size rather than sizeof(pkt_buf)

[PATCH v7 0/8] Add vhost-user support to passt (part 2)
 2024-06-13 14:34 UTC  (12+ messages)
` [PATCH v7 1/8] tcp: extract buffer management from tcp_send_flag()
` [PATCH v7 2/8] tcp: move buffers management functions to their own file
` [PATCH v7 3/8] tap: refactor packets handling functions
` [PATCH v7 4/8] udp: refactor UDP header update functions
` [PATCH v7 5/8] udp: rename udp_sock_handler() to udp_buf_sock_handler()
` [PATCH v7 6/8] vhost-user: compare mode MODE_PASTA and not MODE_PASST
` [PATCH v7 7/8] iov: remove iov_copy()
` [PATCH v7 8/8] tap: use in->buf_size rather than sizeof(pkt_buf)

[PATCH v5 0/8] Add vhost-user support to passt (part 2)
 2024-06-12 12:03 UTC  (26+ messages)
` [PATCH v5 1/8] tcp: extract buffer management from tcp_send_flag()
` [PATCH v5 2/8] tcp: move buffers management functions to their own file
` [PATCH v5 3/8] tap: refactor packets handling functions
` [PATCH v5 4/8] udp: refactor UDP header update functions
` [PATCH v5 5/8] udp: rename udp_sock_handler() to udp_buf_sock_handler()
` [PATCH v5 6/8] vhost-user: compare mode MODE_PASTA and not MODE_PASST
` [PATCH v5 7/8] iov: remove iov_copy()
` [PATCH v5 8/8] tap: use in->buf_size rather than sizeof(pkt_buf)

[PATCH 0/9] Some more static checker fixes
 2024-06-08 11:48 UTC  (13+ messages)
` [PATCH 1/9] tcp: Make pointer const in tcp_revert_seq
` [PATCH 2/9] udp: Make rport calculation more local
` [PATCH 3/9] cppcheck: Suppress constParameterCallback errors
` [PATCH 4/9] Remove pointless macro parameters in CALL_PROTO_HANDLER
` [PATCH 5/9] clang-tidy: Enable the bugprone-macro-parentheses check
` [PATCH 6/9] util: Use unsigned indices for bits in bitmaps
` [PATCH 7/9] conf: Safer parsing of MAC addresses
` [PATCH 8/9] lineread: Use ssize_t for line lengths
` [PATCH 9/9] util: Use 'long' to represent millisecond durations

[PATCH v2 0/1] Some more static checker fixes
 2024-06-08  6:30 UTC  (2+ messages)
` [PATCH v2 1/1] cppcheck: Suppress constParameterCallback errors

passt: new version 2024_06_07.8a83b53 available
 2024-06-07 21:01 UTC 

[PATCH] tcp, flow: Fix some error paths which didn't clean up flows properly
 2024-06-07 18:49 UTC  (2+ messages)

[PATCH] selinux: Allow access to user_devpts
 2024-06-07 18:48 UTC  (6+ messages)

[PATCH v6] tcp: Make pointer const in tcp_revert_seq
 2024-06-06  2:41 UTC  (2+ messages)

[PATCH v2 0/3] conf, log: Fix regression in usage() printing
 2024-06-05 19:59 UTC  (5+ messages)
` [PATCH v2 1/3] conf: Remove unhelpful usage() wrapper
` [PATCH v2 2/3] conf: Don't print usage via the logging subsystem
` [PATCH v2 3/3] log: Remove log_to_stdout option

[PATCH v8] tcp: move seq_to_tap update to when frame is queued
 2024-06-05 19:58 UTC  (7+ messages)

[PATCH 0/3] conf, log: Fix regression in usage() printing
 2024-06-04 23:51 UTC  (4+ messages)
` [PATCH 2/3] conf: Don't print usage via the logging subsystem

[PATCH v4 0/3] Support for SO_PEEK_OFF socket option
 2024-06-04 18:10 UTC  (8+ messages)
` [PATCH v4 1/3] tcp: move seq_to_tap update to when frame is queued

[PATCH v4 00/10] Add vhost-user support to passt (part 2)
 2024-06-03  4:20 UTC  (20+ messages)
` [PATCH v4 01/10] tcp: inline tcp_l2_buf_fill_headers()
` [PATCH v4 02/10] tcp: extract buffer management from tcp_send_flag()
` [PATCH v4 03/10] tcp: move buffers management functions to their own file
` [PATCH v4 04/10] tap: export pool_flush()/tapX_handler()/packet_add()
` [PATCH v4 05/10] udp: move udpX_l2_buf_t and udpX_l2_mh_sock out of udp_update_hdrX()
` [PATCH v4 06/10] udp: rename udp_sock_handler() to udp_buf_sock_handler()
` [PATCH v4 07/10] vhost-user: compare mode MODE_PASTA and not MODE_PASST
` [PATCH v4 08/10] iov: remove iov_copy()
` [PATCH v4 09/10] tcp: remove tap_hdr parameter
` [PATCH v4 10/10] tap: use in->buf_size rather than sizeof(pkt_buf)


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