public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
[PATCH v3 00/10] tcp: Fix throughput issues with non-local peers
 2025-12-09  5:12 UTC  (22+ messages)
` [PATCH v3 01/10] tcp, util: Add function for scaling to linearly interpolated factor, use it
` [PATCH v3 02/10] tcp: Change usage factor of sending buffer in tcp_get_sndbuf() to 75%
` [PATCH v3 03/10] tcp: Limit advertised window to available, not total sending buffer size
` [PATCH v3 04/10] tcp: Adaptive interval based on RTT for socket-side acknowledgement checks
` [PATCH v3 05/10] tcp: Don't clear ACK_TO_TAP_DUE if we're advertising a zero-sized window
` [PATCH v3 06/10] tcp: Acknowledge everything if it looks like bulk traffic, not interactive
` [PATCH v3 07/10] tcp: Don't limit window to less-than-MSS values, use zero instead
` [PATCH v3 08/10] tcp: Allow exceeding the available sending buffer size in window advertisements
` [PATCH v3 09/10] tcp: Send a duplicate ACK also on complete sendmsg() failure
` [PATCH v3 10/10] tcp: Skip redundant ACK on partial "

passt: new version 2025_12_09.c3f1ba7 available
 2025-12-09  3:05 UTC 

[PATCH] fedora: Fix build on Fedora 43, selinux_requires_min not available on Copr builders
 2025-12-09  0:33 UTC  (5+ messages)

[PATCH] tcp_splice, flow: Add socket to epoll set before connect(), drop assert
 2025-12-09  0:25 UTC  (4+ messages)

[PATCH] flow: Set EPOLLFD_ID_DEFAULT on newly allocated flows, not EPOLLFD_ID_INVALID
 2025-12-09  0:05 UTC  (6+ messages)

do *not* upgrade to 2025_12_08.e8b56a3
 2025-12-08 20:41 UTC 

[PATCH] spec: use %selinux_requires macro, drop overlapping dependencies
 2025-12-08 10:37 UTC  (5+ messages)
` [PATCH v2] spec: use %selinux_requires_min "

[PATCH] test: Update Makefile to avoid failing on missing images
 2025-12-08  9:52 UTC  (2+ messages)

[PATCH v2 0/9] tcp: Fix throughput issues with non-local peers
 2025-12-08  8:31 UTC  (23+ messages)
` [PATCH v2 1/9] tcp, util: Add function for scaling to linearly interpolated factor, use it
` [PATCH v2 2/9] tcp: Limit advertised window to available, not total sending buffer size
` [PATCH v2 3/9] tcp: Adaptive interval based on RTT for socket-side acknowledgement checks
` [PATCH v2 4/9] tcp: Don't clear ACK_TO_TAP_DUE if we're advertising a zero-sized window
` [PATCH v2 5/9] tcp: Acknowledge everything if it looks like bulk traffic, not interactive
` [PATCH v2 6/9] tcp: Don't limit window to less-than-MSS values, use zero instead
` [PATCH v2 7/9] tcp: Allow exceeding the available sending buffer size in window advertisements
` [PATCH v2 8/9] tcp: Send a duplicate ACK also on complete sendmsg() failure
` [PATCH v2 9/9] tcp: Skip redundant ACK on partial "

[PATCH v2] iov: Fix coding style of basic (non-IOV_TAIL) parts
 2025-12-08  2:17 UTC  (2+ messages)

[PATCH v3 0/5] Pad all inbound frames to 802.3 minimum size if needed
 2025-12-08  2:16 UTC  (8+ messages)
` [PATCH v3 1/5] tap: Pad non-batched frames to 802.3 minimum (60 bytes) "
` [PATCH v3 2/5] tcp: Fix coding style for comment to enum tcp_iov_parts
` [PATCH v3 3/5] udp: Fix coding style for comment to enum udp_iov_idx
` [PATCH v3 4/5] tcp, udp: Pad batched frames to 60 bytes (802.3 minimum) in non-vhost-user modes
` [PATCH v3 5/5] tcp, udp: Pad batched frames for vhost-user modes to 60 bytes (802.3 minimum)

[PATCH 0/8] tcp: Fix throughput issues with non-local peers
 2025-12-08  0:20 UTC  (25+ messages)
` [PATCH 1/8] tcp: Limit advertised window to available, not total sending buffer size
` [PATCH 2/8] tcp: Adaptive interval based on RTT for socket-side acknowledgement checks
` [PATCH 3/8] tcp: Don't clear ACK_TO_TAP_DUE if we're advertising a zero-sized window
` [PATCH 4/8] tcp: Acknowledge everything if sending buffer is less than SNDBUF_BIG
` [PATCH 5/8] tcp: Don't limit window to less-than-MSS values, use zero instead
` [PATCH 6/8] tcp: Allow exceeding the available sending buffer size in window advertisements
` [PATCH 7/8] tcp: Send a duplicate ACK also on complete sendmsg() failure
` [PATCH 8/8] tcp: Skip redundant ACK on partial "

[PATCH] iov: Fix coding style of basic (non-IOV_TAIL) parts
 2025-12-08  0:18 UTC  (3+ messages)

[PATCH v2] tcp: Enable SO_KEEPALIVE if we see keep-alive segments from container / guest
 2025-12-06  5:49 UTC  (2+ messages)

[PATCH v2 0/5] Pad all inbound frames to 802.3 minimum size if needed
 2025-12-06  1:26 UTC  (11+ messages)
` [PATCH v2 1/5] tap: Pad non-batched frames to 802.3 minimum (60 bytes) "
` [PATCH v2 2/5] tcp: Fix coding style for comment to enum tcp_iov_parts
` [PATCH v2 3/5] udp: Fix coding style for comment to enum udp_iov_idx
` [PATCH v2 4/5] tcp, udp: Pad batched frames to 60 bytes (802.3 minimum) in non-vhost-user modes
` [PATCH v2 5/5] tcp, udp: Pad batched frames for vhost-user modes to 60 bytes (802.3 minimum)

PASST/PASST Dynamic Networking Features
 2025-12-05 20:55 UTC 

[PATCH] conf: Separate local mode for each IP version, don't enable disabled IP version
 2025-12-05 12:19 UTC  (6+ messages)

[PATCH v3 0/6] vhost-user: Add multiqueue support
 2025-12-05  4:14 UTC  (8+ messages)
` [PATCH v3 1/6] tap: Remove pool parameter from tap4_handler() and tap6_handler()
` [PATCH v3 2/6] vhost-user: Enable multiqueue
` [PATCH v3 3/6] test: Add multiqueue support to vhost-user test infrastructure
` [PATCH v3 4/6] vhost-user: Add queue pair parameter throughout the network stack
` [PATCH v3 5/6] tap: Convert packet pools to per-queue-pair arrays for multiqueue
` [PATCH v3 6/6] flow: Add queue pair tracking to flow management

[RFC PATCH 0/5] Pad all inbound frames to 802.3 minimum size if needed
 2025-12-05  4:12 UTC  (5+ messages)
` [RFC PATCH 5/5] tcp, udp: Pad batched frames for vhost-user modes to 60 bytes (802.3 minimum)

[PATCH] vu_common: Clarify prototype of vu_collect()
 2025-12-05  2:55 UTC  (2+ messages)

[PATCH] test: Expand tmux right status bar to fit pass/fail/skipped counter and time
 2025-12-05  2:54 UTC  (2+ messages)

[PATCH] tcp: Enable SO_KEEPALIVE if we see keep-alive segments from container / guest
 2025-12-05  2:54 UTC  (2+ messages)

[PATCH] seccomp: Fix build and operation on 32-bit musl targets
 2025-12-04 21:18 UTC 

[PATCH v5 00/15] Reduce differences between inbound and outbound socket binding
 2025-12-03 13:13 UTC  (21+ messages)
` [PATCH v5 01/15] util: Correct error message on SO_BINDTODEVICE failure
` [PATCH v5 02/15] util: Extend sock_probe_mem() to sock_probe_features()
` [PATCH v5 03/15] conf: More useful errors for kernels without SO_BINDTODEVICE
` [PATCH v5 04/15] flow: Remove bogus @path field from flowside_sock_args
` [PATCH v5 05/15] inany: Let length of sockaddr_inany be implicit from the family
` [PATCH v5 06/15] util, flow, pif: Simplify sock_l4_sa() interface
` [PATCH v5 07/15] tcp: Merge tcp_ns_sock_init[46]() into tcp_sock_init_one()
` [PATCH v5 08/15] udp: Unify some more inbound/outbound parts of udp_sock_init()
` [PATCH v5 09/15] udp: Move udp_sock_init() special case to its caller
` [PATCH v5 10/15] util: Fix setting of IPV6_V6ONLY socket option
` [PATCH v5 11/15] tcp, udp: Remove fallback if creating dual stack socket fails
` [PATCH v5 12/15] tcp, udp: Bind outbound listening sockets by interface instead of address
` [PATCH v5 13/15] util: Rename sock_l4_dualstack() to sock_l4_dualstack_any()
` [PATCH v5 14/15] tcp: Always populate oaddr field for socket initiated flows
` [PATCH v5 15/15] fwd: Preserve non-standard loopback address when splice forwarding

[PATCH v10 0/5] Retry SYNs for inbound connections
 2025-12-03  6:33 UTC  (10+ messages)
` [PATCH v10 1/5] tcp: Rename "retrans" to "retries"
` [PATCH v10 2/5] util: Introduce read_file() and read_file_integer() function
` [PATCH v10 3/5] tcp: Resend SYN for inbound connections
` [PATCH v10 4/5] tcp: Update data retransmission timeout
` [PATCH v10 5/5] tcp: Clamp the retry timeout

[PATCH v9 0/5] Retry SYNs for inbound connections
 2025-12-01  4:09 UTC  (12+ messages)
` [PATCH v9 2/5] util: Introduce read_file() and read_file_integer() function
` [PATCH v9 3/5] tcp: Resend SYN for inbound connections
` [PATCH v9 4/5] tcp: Update data retransmission timeout
` [PATCH v9 5/5] tcp: Clamp the retry timeout

[PATCH 0/3] More graceful handling of kernels without SO_BINDTODEVICE
 2025-11-28  5:33 UTC  (4+ messages)
` [PATCH 1/3] util: Correct error message on SO_BINDTODEVICE failure
` [PATCH 2/3] util: Extend sock_probe_mem() to sock_probe_features()
` [PATCH 3/3] conf: More useful errors for kernels without SO_BINDTODEVICE

[PATCH v2 0/6] vhost-user: Add multiqueue support
 2025-11-28  0:54 UTC  (16+ messages)
` [PATCH v2 2/6] vhost-user: Enable multiqueue
` [PATCH v2 3/6] vhost-user: Add queue pair parameter throughout the network stack
` [PATCH v2 4/6] tap: Add queue pair parameter throughout the packet processing path
` [PATCH v2 5/6] flow: Add queue pair tracking to flow management
` [PATCH v2 6/6] test: Add multiqueue support to vhost-user test infrastructure

[PATCH] arp/ndp: don't send messages on uninitialized tap interface
 2025-11-27 22:33 UTC  (2+ messages)

[PATCH] test: Fix IPv6 address/prefix mismatch error
 2025-11-27 22:33 UTC  (3+ messages)

[PATCH v4 0/9] Reduce differences between inbound and outbound socket binding
 2025-11-26  5:42 UTC  (4+ messages)
` [PATCH v4 9/9] tcp, udp: Bind outbound listening sockets by interface instead of address

page: 

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