messages from 2024-08-26 08:22:07 to 2024-09-18 01:53:10 UTC [more...]
[PATCH 0/4] Some small TCP cleanups
2024-09-18 1:53 UTC (3+ messages)
` [PATCH 1/4] tcp: Make some extra functions private
` [PATCH 4/4] tcp: Make tcp_update_seqack_wnd()s force_seq parameter explicitly boolean
[PATCH v2 00/10] RFC: Clean up TCP epoll mask handling
2024-09-18 1:31 UTC (15+ messages)
` [PATCH v2 01/10] tcp: Make some extra functions private
` [PATCH v2 02/10] tcp: Clean up tcpi_snd_wnd probing
` [PATCH v2 03/10] tcp: Simplify ifdef logic in tcp_update_seqack_wnd()
` [PATCH v2 04/10] tcp: Make tcp_update_seqack_wnd()s force_seq parameter explicitly boolean
` [PATCH v2 05/10] tcp: On socket EPOLLOUT, send new ACK to tap immediately
` [PATCH v2 06/10] tap: Re-introduce EPOLLET for tap connections
` [PATCH v2 07/10] tap: Keep track of whether there might be space in the tap buffers
` [PATCH v2 08/10] tcp: Keep track of connections blocked due to a full tap interface
` [PATCH v2 09/10] tcp: Move deferred handling functions later in tcp.c
` [PATCH v2 10/10] tcp: Simplify epoll event mask management
[PATCH v2 0/2] Allow UDP and TCP checksum to be disabled
2024-09-17 23:41 UTC (6+ messages)
` [PATCH v2 1/2] udp: Allow "
` [PATCH v2 2/2] tcp: "
[PATCH v2 0/2] tcp: unify IPv4 and IPv6 tap queues
2024-09-17 22:34 UTC (7+ messages)
` [PATCH v2 1/2] tcp: set ip and eth headers in l2 tap queues on the fly
` [PATCH v2 2/2] tcp: unify l2 TCPv4 and TCPv6 queues and structures
[PATCH v5 0/4] Add vhost-user support to passt. (part 3)
2024-09-17 10:03 UTC (7+ messages)
` [PATCH v5 1/4] packet: replace struct desc by struct iovec
` [PATCH v5 2/4] vhost-user: introduce virtio API
` [PATCH v5 3/4] vhost-user: introduce vhost-user API
` [PATCH v5 4/4] vhost-user: add vhost-user
[PATCH v2 0/2] util: Fix some problems in write_remainder()
2024-09-17 6:45 UTC (3+ messages)
` [PATCH v2 1/2] util: Add helper to write() all of a buffer
` [PATCH v2 2/2] util: Remove possible quadratic behaviour from write_remainder()
[PATCH 0/2] Allow UDP and TCP checksum to be disabled
2024-09-17 1:23 UTC (5+ messages)
` [PATCH 1/2] udp: Allow "
` [PATCH 2/2] tcp: "
[PATCH v4 0/4] Add vhost-user support to passt. (part 3)
2024-09-12 14:08 UTC (15+ messages)
` [PATCH v4 1/4] packet: replace struct desc by struct iovec
` [PATCH v4 2/4] vhost-user: introduce virtio API
` [PATCH v4 3/4] vhost-user: introduce vhost-user API
` [PATCH v4 4/4] vhost-user: add vhost-user
[PATCH 0/2] Avoid overlapping mempcy() in DUP_ACK handling
2024-09-12 7:54 UTC (4+ messages)
` [PATCH 1/2] tcp: Remove redundant initialisation of iov[TCP_IOV_ETH].iov_base
` [PATCH 2/2] tcp: Avoid overlapping memcpy() in DUP_ACK handling
Porting to macOS
2024-09-12 7:00 UTC (6+ messages)
[PATCH 0/4] tcp: unify IPv4 and IPv6 l2 tap queues
2024-09-09 8:31 UTC (9+ messages)
` [PATCH 1/4] tcp: create unified struct for IPv4 and IPv6 header
` [PATCH 2/4] tcp: update ip address in l2 tap queues on the fly
` [PATCH 3/4] tcp: unify l2 TCPv4 and TCPv6 queues and structures
` [PATCH 4/4] tcp: change prefix tcp4_ to tcp_ where applicable
passt: new version 2024_09_06.6b38f07 available
2024-09-06 15:15 UTC
[PATCH 0/2] LSM rules for /proc/sys/net/ipv4/ip_local_port_range
2024-09-06 13:56 UTC (3+ messages)
` [PATCH 1/2] selinux: Allow read access to /proc/sys/net/ipv4/ip_local_port_range
` [PATCH 2/2] apparmor: "
[PATCH 0/4] Fix possible truncation of frames from /dev/net/tun
2024-09-06 12:20 UTC (6+ messages)
` [PATCH 1/4] tap: Split out handling of EPOLLIN events
` [PATCH 2/4] tap: Improve handling of EINTR in tap_passt_input()
` [PATCH 3/4] tap: Restructure in tap_pasta_input()
` [PATCH 4/4] tap: Don't risk truncating frames on full buffer "
[PATCH 0/6] RFC: Possible fixes for bug 94 and bug 95
2024-09-06 11:29 UTC (8+ messages)
` [PATCH 1/6] flow: Fix incorrect hash probe in flowside_lookup()
` [PATCH 2/6] udp: Allow UDP flows to be prematurely closed
` [PATCH 3/6] flow: Helpers to log details of a flow
` [PATCH 4/6] udp: Split socket error handling out from udp_sock_recv()
` [PATCH 5/6] udp: Treat errors getting errors as unrecoverable
` [PATCH 6/6] udp: Handle more error conditions in udp_sock_errs()
[PATCH v2] cppcheck: Work around some cppcheck 2.15.0 redundantInitialization warnings
2024-09-06 11:29 UTC (2+ messages)
[PATCH] util: Fix missing carry of one second, as nanoseconds, in timespec_diff_us()
2024-09-06 11:06 UTC (4+ messages)
[PATCH] tcp: Use EPOLLET for any state of not established connections
2024-09-06 9:01 UTC
[PATCH 0/6] RFC: Clean up tap-side event handling
2024-09-05 11:33 UTC (23+ messages)
` [PATCH 1/6] tap: Split out handling of EPOLLIN events
` [PATCH 2/6] tap: Improve handling of EINTR in tap_passt_input()
` [PATCH 3/6] tap: Restructure in tap_pasta_input()
` [PATCH 4/6] tap: Don't risk truncating frames on full buffer "
` [PATCH 5/6] tap: Re-introduce EPOLLET for tap connections
` [PATCH 6/6] tap: Stub EPOLLOUT handling
[PATCH v3 0/4] Add vhost-user support to passt. (part 3)
2024-09-05 9:58 UTC (10+ messages)
` [PATCH v3 3/4] vhost-user: introduce vhost-user API
[PATCH] log: Don't prefix log file messages with time and severity if they're continuations
2024-09-05 0:27 UTC (2+ messages)
[PATCH 0/2] Adding SO_PEEK_OFF for TCPv6
2024-09-01 0:32 UTC (8+ messages)
` [PATCH 1/2] tcp: add SO_PEEK_OFF socket option tor TCPv6
` [PATCH 2/2] selftests: add selftest for tcp SO_PEEK_OFF support
[PATCH] Makefile: Enable _FORTIFY_SOURCE iff needed
2024-08-30 7:54 UTC (4+ messages)
[PATCH v3 0/3] Probe host's ephemeral ports, rather than using RFC values
2024-08-30 7:07 UTC (6+ messages)
` [PATCH v3 1/3] conf, fwd: Make ephemeral port logic more flexible
` [PATCH v3 2/3] conf, fwd: Don't attempt to forward port 0
` [PATCH v3 3/3] fwd, conf: Probe host's ephemeral ports
[net-next, v3 0/2] Adding SO_PEEK_OFF for TCPv6
2024-08-30 3:45 UTC (5+ messages)
` [net-next, v3 1/2] tcp: add SO_PEEK_OFF socket option tor TCPv6
` [net-next, v3 2/2] selftests: add selftest for tcp SO_PEEK_OFF support
[PATCH v2 0/3] Probe host's ephemeral ports, rather than using RFC values
2024-08-29 6:53 UTC (6+ messages)
` [PATCH v2 1/3] conf, fwd: Make ephemeral port logic more flexible
` [PATCH v2 2/3] conf, fwd: Don't attempt to forward port 0
` [PATCH v2 3/3] fwd, conf: Probe host's ephemeral ports
[PATCH 0/3] Probe host's ephemeral ports, rather than using RFC values
2024-08-29 4:14 UTC (10+ messages)
` [PATCH 1/3] conf, fwd: Make ephemeral port logic more flexible
` [PATCH 2/3] conf, fwd: Don't attempt to forward port 0
` [PATCH 3/3] fwd, conf: Probe host's ephemeral ports
[net-next, v2 0/2] Adding SO_PEEK_OFF for TCPv6
2024-08-28 17:43 UTC (8+ messages)
` [net-next, v2 1/2] tcp: add SO_PEEK_OFF socket option tor TCPv6
` [net-next, v2 2/2] selftests: add selftest for tcp SO_PEEK_OFF support
[PATCH v2 0/3] Dual stack sockets for UDP
2024-08-27 12:06 UTC (5+ messages)
` [PATCH v2 1/3] udp: Merge udp[46]_mh_recv arrays
` [PATCH v2 2/3] udp: Remove unnnecessary local from udp_sock_init()
` [PATCH v2 3/3] udp: Use dual stack sockets for port forwarding when possible
[PATCH] seccomp.sh: Try to account for terminal width while formatting list of system calls
2024-08-27 6:26 UTC
[PATCH 0/3] Dual stack sockets for UDP
2024-08-27 6:04 UTC (9+ messages)
` [PATCH 1/3] udp: Merge udp[46]_mh_recv arrays
` [PATCH 2/3] udp: Remove unnnecessary local from udp_sock_init()
` [PATCH 3/3] udp: Use dual stack sockets for port forwarding when possible
[PATCH] mbuto: Fix handling of binaries in /usr/libexec
2024-08-27 0:59 UTC (2+ messages)
[PATCH] test: Look for possible sshd-session paths (if it's there at all) in mbuto's profile
2024-08-27 0:55 UTC (2+ messages)
[PATCH] Remove incorrect special handling of /usr/libexec
2024-08-26 9:43 UTC (7+ messages)
page: next (older) | prev (newer) | latest
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).