messages from 2024-10-11 18:07:57 to 2024-10-31 07:14:32 UTC [more...]
[PATCH v2] tcp: Fix build against musl, __sum16 comes from linux/types.h
2024-10-31 7:14 UTC
[PATCH] tcp: Fix build against musl, __sum16 comes from linux/types.h
2024-10-31 6:56 UTC (3+ messages)
[PATCH v3 0/9] Take care of clang-tidy warnings with LLVM >= 16
2024-10-31 0:35 UTC (19+ messages)
` [PATCH v3 1/9] Makefile: Exclude qrap.c from clang-tidy checks
` [PATCH v3 2/9] treewide: Comply with CERT C rule ERR33-C for snprintf()
` [PATCH v3 3/9] treewide: Silence cert-err33-c clang-tidy warnings for fprintf()
` [PATCH v3 4/9] Makefile: Disable readability-math-missing-parentheses clang-tidy check
` [PATCH v3 5/9] log: Don't use O_APPEND at all
` [PATCH v3 6/9] treewide: Suppress clang-tidy warning if we already use O_CLOEXEC or if we can't
` [PATCH v3 7/9] treewide: Address cert-err33-c clang-tidy warnings for clock and timer functions
` [PATCH v3 8/9] udp: Take care of cert-int09-c clang-tidy warning for enum udp_iov_idx
` [PATCH v3 9/9] util: Don't use errno after a successful call in __daemon()
[PATCH] tap: Explicitly cast TUNSETIFF to fix build warning with musl on ppc64le
2024-10-31 0:33 UTC (2+ messages)
passt: new version 2024_10_30.ee7d0b6 available
2024-10-30 13:11 UTC
[PATCH v5 0/8] Take care of clang-tidy warnings with LLVM >= 16
2024-10-30 8:45 UTC (10+ messages)
` [PATCH v5 1/8] Makefile: Exclude qrap.c from clang-tidy checks
` [PATCH v5 2/8] treewide: Comply with CERT C rule ERR33-C for snprintf()
` [PATCH v5 3/8] treewide: Silence cert-err33-c clang-tidy warnings for fprintf()
` [PATCH v5 4/8] Makefile: Disable readability-math-missing-parentheses clang-tidy check
` [PATCH v5 5/8] treewide: Suppress clang-tidy warning if we already use O_CLOEXEC
` [PATCH v5 6/8] treewide: Address cert-err33-c clang-tidy warnings for clock and timer functions
` [PATCH v5 7/8] udp: Take care of cert-int09-c clang-tidy warning for enum udp_iov_idx
` [PATCH v5 8/8] util: Don't use errno after a successful call in __daemon()
[PATCH v6 0/8] Take care of clang-tidy warnings with LLVM >= 16
2024-10-30 8:40 UTC (9+ messages)
` [PATCH v6 1/8] Makefile: Exclude qrap.c from clang-tidy checks
` [PATCH v6 2/8] treewide: Comply with CERT C rule ERR33-C for snprintf()
` [PATCH v6 3/8] treewide: Silence cert-err33-c clang-tidy warnings for fprintf()
` [PATCH v6 4/8] Makefile: Disable readability-math-missing-parentheses clang-tidy check
` [PATCH v6 5/8] treewide: Suppress clang-tidy warning if we already use O_CLOEXEC
` [PATCH v6 6/8] treewide: Address cert-err33-c clang-tidy warnings for clock and timer functions
` [PATCH v6 7/8] udp: Take care of cert-int09-c clang-tidy warning for enum udp_iov_idx
` [PATCH v6 8/8] util: Don't use errno after a successful call in __daemon()
[PATCH v4 0/8] Take care of clang-tidy warnings with LLVM >= 16
2024-10-30 0:34 UTC (10+ messages)
` [PATCH v4 1/8] Makefile: Exclude qrap.c from clang-tidy checks
` [PATCH v4 2/8] treewide: Comply with CERT C rule ERR33-C for snprintf()
` [PATCH v4 3/8] treewide: Silence cert-err33-c clang-tidy warnings for fprintf()
` [PATCH v4 4/8] Makefile: Disable readability-math-missing-parentheses clang-tidy check
` [PATCH v4 5/8] treewide: Suppress clang-tidy warning if we already use O_CLOEXEC
` [PATCH v4 6/8] treewide: Address cert-err33-c clang-tidy warnings for clock and timer functions
` [PATCH v4 7/8] udp: Take care of cert-int09-c clang-tidy warning for enum udp_iov_idx
` [PATCH v4 8/8] util: Don't use errno after a successful call in __daemon()
[PATCH v5 0/2] tcp: unify IPv4 and IPv6 tap queues
2024-10-29 13:57 UTC (6+ messages)
` [PATCH v5 1/2] tcp: set ip and eth headers in l2 tap queues on the fly
` [PATCH v5 2/2] tcp: unify l2 TCPv4 and TCPv6 queues and structures
[PATCH 0/7] Rework some IOV handling in TCP code
2024-10-29 10:32 UTC (14+ messages)
` [PATCH 1/7] tcp: Pass TCP header and payload separately to tcp_update_check_tcp[46]()
` [PATCH 2/7] tcp: Move tcp_l2_buf_fill_headers() to tcp_buf.c
` [PATCH 3/7] tcp: Rework tcp_l2_buf_fill_headers() into tcp_buf_make_frame()
` [PATCH 4/7] tcp: Don't use return value from tcp_fill_headers[46] to adjust iov_len
` [PATCH 5/7] tcp: Pass TCP header and payload separately to tcp_fill_headers[46]()
` [PATCH 6/7] tcp: Merge tcp_update_check_tcp[46]()
` [PATCH 7/7] tcp: Fold tcp_update_csum() into tcp_fill_header()
[PATCH v2 0/8] Take care of clang-tidy warnings with LLVM >= 16
2024-10-28 9:04 UTC (14+ messages)
` [PATCH v2 1/8] Makefile: Exclude qrap.c from clang-tidy checks
` [PATCH v2 2/8] treewide: Comply with CERT C rule ERR33-C for snprintf()
` [PATCH v2 3/8] treewide: Silence cert-err33-c clang-tidy warnings for fprintf()
` [PATCH v2 4/8] Makefile: Disable readability-math-missing-parentheses clang-tidy check
` [PATCH v2 5/8] treewide: Suppress clang-tidy warning if we already use O_CLOEXEC or if we can't
` [PATCH v2 6/8] treewide: Address cert-err33-c clang-tidy warnings for clock and timer functions
` [PATCH v2 7/8] udp: Take care of cert-int09-c clang-tidy warning for enum udp_iov_idx
` [PATCH v2 8/8] util: Don't use errno after a successful call in __daemon()
[PATCH] check: remove obsolete images
2024-10-25 13:38 UTC (3+ messages)
[PATCH] tcp: cleanup tcp_buf_data_from_sock()
2024-10-25 13:38 UTC (3+ messages)
[PATCH v2 0/3] tcp: Runtime checks for availability of TCP_INFO fields
2024-10-25 13:38 UTC (5+ messages)
` [PATCH v2 1/3] tcp: Remove compile-time dependency on struct tcp_info version
` [PATCH v2 2/3] tcp: Generalise probing for tcpi_snd_wnd field
` [PATCH v2 3/3] tcp: Use runtime tests for TCP_INFO fields
[PATCH 0/8] Take care of clang-tidy warnings with LLVM >= 16
2024-10-25 7:53 UTC (20+ messages)
` [PATCH 1/8] Makefile: Exclude qrap.c from clang-tidy checks
` [PATCH 2/8] treewide: Comply with CERT C rule ERR33-C for snprintf()
` [PATCH 3/8] treewide: Silence cert-err33-c clang-tidy warnings for fprintf()
` [PATCH 4/8] Makefile: Disable readability-math-missing-parentheses clang-tidy check
` [PATCH 5/8] treewide: Suppress clang-tidy warning if we already use O_CLOEXEC or if we can't
` [PATCH 6/8] treewide: Address cert-err33-c clang-tidy warnings for clock and timer functions
` [PATCH 7/8] udp: Take care of cert-int09-c clang-tidy warning for enum udp_iov_idx
` [PATCH 8/8] util: Don't use errno after a successful call in __daemon()
[PATCH] tcp_splice: fcntl(2) returns the size of the pipe, if F_SETPIPE_SZ succeeds
2024-10-25 7:52 UTC (3+ messages)
[PATCH] tcp_splice: splice() all we have to the writing side, not what we just read
2024-10-25 0:27 UTC (2+ messages)
[PATCH 0/2] tcp: Runtime checks for availability of TCP_INFO fields
2024-10-24 2:02 UTC (5+ messages)
` [PATCH 1/2] tcp: Generalise probing for tcpi_snd_wnd field
` [PATCH 2/2] tcp: Use runtime tests for TCP_INFO fields
[PATCH v8 0/8] Add vhost-user support to passt. (part 3)
2024-10-23 16:23 UTC (35+ messages)
` [PATCH v8 4/8] udp: Prepare udp.c to be shared with vhost-user
` [PATCH v8 5/8] tcp: Export headers functions
` [PATCH v8 6/8] passt: rename tap_sock_init() to tap_backend_init()
` [PATCH v8 7/8] vhost-user: add vhost-user
` [PATCH v8 8/8] test: Add tests for passt in vhost-user mode
[PATCH v4 0/2] tcp: unify IPv4 and IPv6 tap queues
2024-10-21 18:51 UTC (6+ messages)
` [PATCH v4 1/2] tcp: set ip and eth headers in l2 tap queues on the fly
` [PATCH v4 2/2] tcp: unify l2 TCPv4 and TCPv6 queues and structures
[PATCH] tcp: Use structures to construct initial TCP options
2024-10-21 18:11 UTC (2+ messages)
[PATCH v3 0/4] Don't expose container loopback services to the host
2024-10-21 1:35 UTC (13+ messages)
` [PATCH v3 4/4] fwd: Direct inbound spliced forwards to the guest's external address
[PATCH v5 0/7] Don't expose container loopback services to the host
2024-10-18 19:06 UTC (9+ messages)
` [PATCH v5 1/7] arp: Fix a handful of small warts
` [PATCH v5 2/7] test: Explicitly wait for DAD to complete on SLAAC addresses
` [PATCH v5 3/7] test: Wait for DAD on DHCPv6 addresses
` [PATCH v5 4/7] passt.1: Mark --stderr as deprecated more prominently
` [PATCH v5 5/7] passt.1: Clarify and update "Handling of local addresses" section
` [PATCH v5 6/7] test: Clarify test for spliced inbound transfers
` [PATCH v5 7/7] fwd: Direct inbound spliced forwards to the guest's external address
[PATCH v4 0/7] Don't expose container loopback services to the host
2024-10-18 1:13 UTC (12+ messages)
` [PATCH v4 1/7] arp: Fix a handful of small warts
` [PATCH v4 2/7] test: Explicitly wait for DAD to complete on SLAAC addresses
` [PATCH v4 3/7] test: Wait for DAD on DHCPv6 addresses
` [PATCH v4 4/7] passt.1: Mark --stderr as deprecated more prominently
` [PATCH v4 5/7] passt.1: Clarify and update "Handling of local addresses" section
` [PATCH v4 6/7] test: Clarify test for spliced inbound transfers
` [PATCH v4 7/7] fwd: Direct inbound spliced forwards to the guest's external address
[PATCH v7 0/8] Add vhost-user support to passt. (part 3)
2024-10-17 0:10 UTC (5+ messages)
[PATCH] tcp: Send "empty" handshake ACK before first data segment
2024-10-15 0:01 UTC (2+ messages)
Performance with unified IPv4/IPv6 tap queues
2024-10-11 18:07 UTC (2+ 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).