public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
 messages from 2024-05-16 02:57:21 to 2024-06-11 22:10:06 UTC [more...]

[PATCH v5 0/8] Add vhost-user support to passt (part 2)
 2024-06-11 22:09 UTC  (13+ 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  (8+ 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/4] Even more flow table preliminaries
 2024-06-05  1:39 UTC  (5+ 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 0/3] conf, log: Fix regression in usage() printing
 2024-06-04 23:51 UTC  (6+ messages)
` [PATCH 1/3] conf: Remove unhelpful usage() wrapper
` [PATCH 2/3] conf: Don't print usage via the logging subsystem
` [PATCH 3/3] log: Remove log_to_stdout option

[PATCH v4 0/3] Support for SO_PEEK_OFF socket option
 2024-06-04 18:10 UTC  (16+ messages)
` [PATCH v4 1/3] tcp: move seq_to_tap update to when frame is queued
` [PATCH v4 2/3] tcp: leverage support of SO_PEEK_OFF socket option when available
` [PATCH v4 3/3] tcp: allow retransmit when peer receive window is zero

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

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

[PATCH v7 0/3] Support for SO_PEEK_OFF
 2024-05-31  1:54 UTC  (6+ messages)
` [PATCH v7 1/3] tcp: move seq_to_tap update to when frame is queued
` [PATCH v7 2/3] tcp: leverage support of SO_PEEK_OFF socket option when available
` [PATCH v7 3/3] tcp: allow retransmit when peer receive window is zero

[PATCH 0/8] Open socket and PID files as root, before switching
 2024-05-29  2:35 UTC  (24+ messages)
` [PATCH 1/8] conf: Don't lecture user about starting us as root
` [PATCH 2/8] tap: Move all-ones initialisation of mac_guest to tap_sock_init()
` [PATCH 3/8] passt, tap: Don't use -1 as uninitialised value for fd_tap_listen
` [PATCH 4/8] tap: Split tap_sock_unix_init() into opening and listening parts
` [PATCH 5/8] util: Rename write_pidfile() to pidfile_write()
` [PATCH 6/8] passt, util: Move opening of PID file to its own function
` [PATCH 7/8] conf, passt, tap: Open socket and PID files before switching UID/GID
` [PATCH 8/8] conf, passt.h: Rename pid_file in struct ctx to pidfile

[PATCH v2 0/8] Add vhost-user support to passt (part 2)
 2024-05-28 17:31 UTC  (9+ messages)
` [PATCH v2 1/8] tcp: inline tcp_l2_buf_fill_headers()
` [PATCH v2 2/8] tcp: extract buffer management from tcp_send_flag()
` [PATCH v2 3/8] tcp: extract buffer management from tcp_conn_tap_mss()
` [PATCH v2 4/8] tcp: move buffers management functions to their own file
` [PATCH v2 5/8] tap: export pool_flush()/tapX_handler()/packet_add()
` [PATCH v2 6/8] udp: move udpX_l2_buf_t and udpX_l2_mh_sock out of udp_update_hdrX()
` [PATCH v2 7/8] udp: rename udp_sock_handler() to udp_buf_sock_handler()
` [PATCH v2 8/8] vhost-user: compare mode MODE_PASTA and not MODE_PASST

[PATCH 0/8] Add vhost-user support to passt (part 2)
 2024-05-27  9:10 UTC  (9+ messages)
` [PATCH 1/8] tcp: inline tcp_l2_buf_fill_headers()
` [PATCH 2/8] tcp: extract buffer management from tcp_send_flag()
` [PATCH 3/8] tcp: extract buffer management from tcp_conn_tap_mss()
` [PATCH 4/8] tcp: move buffers management functions to their own file
` [PATCH 5/8] tap: export pool_flush()/tapX_handler()/packet_add()
` [PATCH 6/8] udp: move udpX_l2_buf_t and udpX_l2_mh_sock out of udp_update_hdrX()
` [PATCH 7/8] udp: rename udp_sock_handler() to udp_buf_sock_handler()
` [PATCH 8/8] vhost-user: compare mode MODE_PASTA and not MODE_PASST

[PATCH] pasta.c: modify hostname when detaching new namespace
 2024-05-24 17:39 UTC  (7+ messages)

passt: new version 2024_05_23.765eb0b available
 2024-05-23 18:19 UTC 

[PATCH] apparmor: Fix comments after PID file and AF_UNIX socket creation refactoring
 2024-05-23 13:08 UTC  (2+ messages)

[PATCH] netlink, test: Ignore deprecated addresses
 2024-05-22  7:22 UTC 

[PATCH v6 0/3] Support for SO_PEEK_OFF socket option
 2024-05-21 22:25 UTC  (8+ messages)
` [PATCH v6 1/3] tcp: move seq_to_tap update to when frame is queued
` [PATCH v6 2/3] tcp: leverage support of SO_PEEK_OFF socket option when available
` [PATCH v6 3/3] tcp: allow retransmit when peer receive window is zero

[PATCH] apparmor: Fix passt abstraction
 2024-05-21  7:50 UTC  (3+ messages)

[PATCH 0/6] Final flow table preliminaries
 2024-05-21  5:57 UTC  (7+ messages)
` [PATCH 1/6] flow: Properly type callbacks to protocol specific handlers
` [PATCH 2/6] inany: Better helpers for using inany and specific family addrs together
` [PATCH 3/6] flow: Clarify and enforce flow state transitions
` [PATCH 4/6] flow: Make side 0 always be the initiating side
` [PATCH 5/6] flow: Record the pifs for each side of each flow
` [PATCH 6/6] tcp: Remove interim 'tapside' field from connection

[PATCH v3] util, tcp: Add helper to display socket addresses
 2024-05-21  4:48 UTC 

[PATCH v5 00/19] RFC: Unified flow table
 2024-05-20  5:56 UTC  (15+ messages)
` [PATCH v5 01/19] flow: Clarify and enforce flow state transitions
` [PATCH v5 02/19] flow: Make side 0 always be the initiating side
` [PATCH v5 06/19] flow: Populate address information for "
` [PATCH v5 15/19] icmp: Use flowsides as the source of truth wherever possible
` [PATCH v5 18/19] flow, tcp: Flow based NAT and port forwarding for TCP
` [PATCH v5 19/19] flow, icmp: Use general flow forwarding rules for ICMP

[PATCH v6 0/3] Support for SO_PEEK_OFF socket option
 2024-05-17 15:06 UTC  (4+ messages)
` [PATCH v6 1/3] tcp: move seq_to_tap update to when frame is queued
` [PATCH v6 2/3] tcp: leverage support of SO_PEEK_OFF socket option when available
` [PATCH v6 3/3] tcp: allow retransmit when peer receive window is zero

[PATCH v5 3/3] tcp: allow retransmit when peer receive window is zero
 2024-05-17 14:13 UTC  (2+ messages)

[PATCH] util, tcp: Add helper to display socket addresses
 2024-05-16  7:49 UTC  (3+ messages)


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