public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
 messages from 2023-12-21 06:53:35 to 2024-02-02 14:11:58 UTC [more...]

[PATCH 00/24] Add vhost-user support to passt
 2024-02-02 14:11 UTC  (19+ messages)
` [PATCH 01/24] iov: add some functions to manage iovec
` [PATCH 02/24] pcap: add pcap_iov()
` [PATCH 03/24] checksum: align buffers
` [PATCH 05/24] util: move IP stuff from util.[ch] to ip.[ch]
` [PATCH 06/24] ip: move duplicate IPv4 checksum function to ip.h
` [PATCH 07/24] ip: introduce functions to compute the header part checksum for TCP/UDP
` [PATCH 08/24] tcp: extract buffer management from tcp_send_flag()
` [PATCH 09/24] tcp: extract buffer management from tcp_conn_tap_mss()
` [PATCH 10/24] tcp: rename functions that manage buffers
` [PATCH 12/24] tap: make tap_update_mac() generic
` [PATCH 13/24] tap: export pool_flush()/tapX_handler()/packet_add()
` [PATCH 14/24] udp: move udpX_l2_buf_t and udpX_l2_mh_sock out of udp_update_hdrX()
` [PATCH 15/24] udp: rename udp_sock_handler() to udp_buf_sock_handler()
` [PATCH 16/24] packet: replace struct desc by struct iovec
` [PATCH 17/24] vhost-user: compare mode MODE_PASTA and not MODE_PASST
` [PATCH 18/24] vhost-user: introduce virtio API
` [PATCH 19/24] vhost-user: introduce vhost-user API
` [PATCH 20/24] vhost-user: add vhost-user

[PATCH] log: setlogmask(0) can actually result in a system call, don't use it
 2024-02-02  1:02 UTC  (2+ messages)

[PATCH] netlink: Add support to fetch default gateway from multipath routes
 2024-02-01 23:32 UTC 

tcp: leverage support of SO_PEEK_OFF socket option when available
 2024-02-01 22:12 UTC 

[RFC net-next] tcp: add support for SO_PEEK_OFF
 2024-02-01 21:47 UTC  (2+ messages)

[PATCH 00/16] More flow table preliminaries: address handling improvements
 2024-01-29  9:02 UTC  (18+ messages)
` [PATCH 01/16] treewide: Use sa_family_t for address family variables
` [PATCH 02/16] tcp, udp: Don't precompute port remappings in epoll references
` [PATCH 03/16] flow: Add helper to determine a flow's protocol
` [PATCH 04/16] tcp_splice: Simplify clean up logic
` [PATCH 05/16] inany: Helper to test for IPv4 or IPv6 loopback address
` [PATCH 06/16] tcp, tcp_splice: Helpers for getting sockets from the pools
` [PATCH 07/16] tcp_splice: More specific variable names in new splice path
` [PATCH 08/16] tcp_splice: Fix incorrect parameter comment for tcp_splice_connect()
` [PATCH 09/16] tcp_splice: Merge tcp_splice_new() into its caller
` [PATCH 10/16] tcp_splice: Improve error reporting on connect path
` [PATCH 11/16] inany: Add inany_ntop() helper
` [PATCH 12/16] tcp_splice: Improve logic deciding when to splice
` [PATCH 13/16] util: Provide global constants for IPv4 loopback and unspecified address
` [PATCH 14/16] inany: Introduce union sockaddr_inany
` [PATCH 15/16] tcp, tcp_splice: Better construction of IPv4 or IPv6 sockaddrs
` [PATCH 16/16] inany: Extend inany_from_af to easily set unspecified addresses

[PATCH v3 00/11] RFC: ICMP reworks preliminary to flow table integration
 2024-01-23  0:39 UTC  (13+ messages)
` [PATCH v3 01/11] icmp: Don't set "port" on destination sockaddr for ping sockets
` [PATCH v3 02/11] icmp: Remove redundant initialisation of sendto() address
` [PATCH v3 03/11] icmp: Don't attempt to handle "wrong direction" ping socket traffic
` [PATCH v3 04/11] icmp: Don't attempt to match host IDs to guest IDs
` [PATCH v3 05/11] icmp: Use -1 to represent "missing" sockets
` [PATCH v3 06/11] icmp: Simplify socket expiry scanning
` [PATCH v3 07/11] icmp: Share more between IPv4 and IPv6 paths in icmp_tap_handler()
` [PATCH v3 08/11] icmp: Consolidate icmp_sock_handler() with icmpv6_sock_handler()
` [PATCH v3 09/11] icmp: Warn on receive errors from ping sockets
` [PATCH v3 10/11] icmp: Validate packets received on "
` [PATCH v3 11/11] icmp: Dedicated functions for starting and closing ping sequences

[PATCH v4 00/13] Manage more flow related things from generic flow code
 2024-01-23  0:39 UTC  (15+ messages)
` [PATCH v4 01/13] flow: Make flow_table.h #include the protocol specific headers it needs
` [PATCH v4 02/13] treewide: Standardise on 'now' for current timestamp variables
` [PATCH v4 03/13] tcp, tcp_splice: Remove redundant handling from tcp_timer()
` [PATCH v4 04/13] tcp, tcp_splice: Move per-type cleanup logic into per-type helpers
` [PATCH v4 05/13] flow, tcp: Add flow-centric dispatch for deferred flow handling
` [PATCH v4 06/13] flow, tcp: Add handling for per-flow timers
` [PATCH v4 07/13] epoll: Better handling of number of epoll types
` [PATCH v4 08/13] tcp, tcp_splice: Avoid double layered dispatch for connected TCP sockets
` [PATCH v4 09/13] flow: Move flow_log_() to near top of flow.c
` [PATCH v4 10/13] flow: Move flow_count from context structure to a global
` [PATCH v4 11/13] flow: Abstract allocation of new flows with helper function
` [PATCH v4 12/13] flow: Enforce that freeing of closed flows must happen in deferred handlers
` [PATCH v4 13/13] flow: Avoid moving flow entries to compact table

[RFC net-next] tcp: add support for read with offset when using MSG_PEEK
 2024-01-22 16:22 UTC  (5+ messages)

[RFC net-next v2] tcp: add support for read with offset when using MSG_PEEK
 2024-01-20 16:52 UTC 

[PATCH v2] tcp.c: leverage MSG_PEEK with offset kernel capability when available
 2024-01-20  4:47 UTC  (6+ messages)

[PATCH v3 00/15] RFC: Unified flow table
 2024-01-18 23:58 UTC  (33+ messages)
` [PATCH v3 01/15] flow: Common data structures for tracking flow addresses
` [PATCH v3 02/15] tcp, flow: Maintain guest side flow information
` [PATCH v3 03/15] tcp, flow: Maintain host "
` [PATCH v3 04/15] tcp_splice,flow: Maintain flow information for spliced connections
` [PATCH v3 05/15] flow, tcp, tcp_splice: Uniform debug helpers for new flows
` [PATCH v3 06/15] tcp, flow: Replace TCP specific hash function with general flow hash
` [PATCH v3 07/15] flow: Add helper to determine a flow's protocol
` [PATCH v3 08/15] flow, tcp: Generalise TCP hash table to general flow hash table
` [PATCH v3 09/15] tcp: Re-use flow hash for initial sequence number generation
` [PATCH v3 10/15] icmp: Store ping socket information in the flow table
` [PATCH v3 11/15] icmp: Populate guest side information for ping flows
` [PATCH v3 12/15] icmp: Populate and use host side flow information
` [PATCH v3 13/15] icmp: Use 'flowside' epoll references for ping sockets
` [PATCH v3 14/15] icmp: Merge EPOLL_TYPE_ICMP and EPOLL_TYPE_ICMPV6
` [PATCH v3 15/15] icmp: Eliminate icmp_id_map

[PATCH 0/3] Assorted fixes
 2024-01-16 22:51 UTC  (5+ messages)
` [PATCH 1/3] test: Fix passt.mbuto for cases where /usr/sbin doesn't exist
` [PATCH 2/3] treewide: Make a bunch of pointer variables pointers to const
` [PATCH 3/3] pif: Remove unused pif_name() function

[PATCH] test: Fix passt.mbuto for cases where /usr/sbin doesn't exist
 2024-01-15  5:53 UTC 

[PATCH 0/8] Small cleanups related to addresses and binding
 2024-01-13 22:50 UTC  (11+ messages)
` [PATCH 1/8] tcp: Fix address type for tcp_sock_init_af()
` [PATCH 5/8] util: Improve sockaddr initialisation in sock_l4()

[RFC net-next] tcp: add support for read with offset when using MSG_PEEK
 2024-01-11 22:22 UTC 

[RFC net-next v4] tcp: add support for read with offset when using MSG_PEEK
 2024-01-11 15:31 UTC  (3+ messages)

[RFC net-next v3] tcp: add support for read with offset when using MSG_PEEK
 2024-01-10 16:12 UTC  (2+ messages)

[PATCH v2 00/12] RFC: ICMP reworks preliminary to flow table integration
 2024-01-07 14:59 UTC  (24+ messages)
` [PATCH v2 01/12] checksum: Don't use linux/icmp.h when netinet/ip_icmp.h will do
` [PATCH v2 04/12] icmp: Don't attempt to handle "wrong direction" ping socket traffic
` [PATCH v2 05/12] icmp: Don't attempt to match host IDs to guest IDs
` [PATCH v2 06/12] icmp: Use -1 to represent "missing" sockets
` [PATCH v2 07/12] icmp: Simplify socket expiry scanning
` [PATCH v2 08/12] icmp: Share more between IPv4 and IPv6 paths in icmp_tap_handler()
` [PATCH v2 09/12] icmp: Consolidate icmp_sock_handler() with icmpv6_sock_handler()
` [PATCH v2 10/12] icmp: Warn on receive errors from ping sockets
` [PATCH v2 11/12] icmp: Validate packets received on "
` [PATCH v2 12/12] icmp: Dedicated functions for starting and closing ping sequences

[PATCH v3 00/13] Manage more flow related things from generic flow code
 2024-01-07  5:23 UTC  (30+ messages)
` [PATCH v3 05/13] flow, tcp: Add flow-centric dispatch for deferred flow handling
` [PATCH v3 10/13] flow: Move flow_count from context structure to a global
` [PATCH v3 13/13] flow: Avoid moving flow entries to compact table

passt: new version 2023_12_30.f091893 available
 2024-01-02 16:58 UTC 

[PATCH] netlink: nl_addr_get() returns 0, not 9, on success
 2023-12-28  2:47 UTC  (2+ messages)

[PATCH v2] test: make passt.mbuto script more robust
 2023-12-27 20:25 UTC  (2+ messages)

[PATCH] tcp: make tcp_sock_set_bufsize() static (again)
 2023-12-27 20:25 UTC  (3+ messages)

[PATCH] checksum: Don't use linux/icmp.h when netinet/ip_icmp.h will do
 2023-12-27 20:24 UTC  (2+ messages)

[PATCH v2 0/4] TCP hash table changes, in preparation for flow table
 2023-12-27 20:23 UTC  (2+ messages)

[PATCH v2] README: Default SLAAC prefix comes from address (not prefix) on host
 2023-12-27 16:37 UTC 

[PATCH] README: Default SLAAC prefix comes from address (not prefix) on host
 2023-12-27 15:53 UTC 

[PATCH] netlink: Fetch most specific (longest prefix) address in nl_addr_get()
 2023-12-27 15:53 UTC 

[PATCH] flow: Add missing include, stdio.h
 2023-12-27  3:41 UTC  (2+ messages)

[PATCH] tcp: Cast timeval fields to unsigned long long for printing
 2023-12-27  3:40 UTC  (2+ messages)

[PATCH] README: Update "Availability" section
 2023-12-27  3:38 UTC  (2+ 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).