public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
 messages from 2022-09-17 08:44:36 to 2022-10-07 00:47:42 UTC [more...]

[PATCH 0/8] Add support for log file, version display, and tests
 2022-10-07  0:47 UTC  (9+ messages)
` [PATCH 1/8] Move logging functions to a new file, log.c
` [PATCH 2/8] conf: Drop duplicate, diverging optstring assignments
` [PATCH 3/8] passt.h: Include netinet/if_ether.h before struct ctx declaration
` [PATCH 4/8] log, conf: Add support for logging to file
` [PATCH 5/8] log: Add missing function comment for trace_init()
` [PATCH 6/8] conf, log, Makefile: Add versioning information
` [PATCH 7/8] util: Check return value of lseek() while reading bound ports from procfs
` [PATCH 8/8] test: Add log file tests for pasta plus corresponding layout and setup

[PATCH] test: Add rudimentary support to run selected tests only
 2022-10-07  0:47 UTC 

[PATCH v2 00/28] Fixes for static checkers
 2022-09-29 23:31 UTC  (30+ messages)
` [PATCH v2 01/28] Clean up parsing of port ranges
` [PATCH v2 02/28] clang-tidy: Suppress warning about unchecked error in logfn macro
` [PATCH v2 03/28] clang-tidy: Fix spurious null pointer warning in pasta_start_ns()
` [PATCH v2 04/28] clang-tidy: Remove duplicate #include from icmp.c
` [PATCH v2 05/28] Catch failures when installing signal handlers
` [PATCH v2 06/28] Pack DHCPv6 "on wire" structures
` [PATCH v2 07/28] Clean up parsing in conf_runas()
` [PATCH v2 08/28] cppcheck: Reduce scope of some variables
` [PATCH v2 09/28] Don't shadow 'i' in conf_ports()
` [PATCH v2 10/28] Don't shadow global function names
` [PATCH v2 11/28] Stricter checking for nsholder.c
` [PATCH v2 12/28] cppcheck: Work around false positive NULL pointer dereference error
` [PATCH v2 13/28] cppcheck: Use inline suppression for ffsl()
` [PATCH v2 14/28] cppcheck: Use inline suppressions for qrap.c
` [PATCH v2 15/28] cppcheck: Use inline suppression for strtok() in conf.c
` [PATCH v2 16/28] Avoid ugly 'end' members in netlink structures
` [PATCH v2 17/28] cppcheck: Broaden suppression for unused struct members
` [PATCH v2 18/28] cppcheck: Remove localtime suppression for pcap.c
` [PATCH v2 19/28] qrap: Handle case of PATH environment variable being unset
` [PATCH v2 20/28] cppcheck: Suppress same-value-in-ternary branches warning
` [PATCH v2 21/28] cppcheck: Suppress NULL pointer warning in tcp_sock_consume()
` [PATCH v2 22/28] Regenerate seccomp.h if seccomp.sh changes
` [PATCH v2 23/28] cppcheck: Avoid errors due to zeroes in bitwise ORs
` [PATCH v2 24/28] cppcheck: Remove unused knownConditionTrueFalse suppression
` [PATCH v2 25/28] cppcheck: Remove unused objectIndex suppressions
` [PATCH v2 26/28] cppcheck: Remove unused va_list_usedBeforeStarted suppression
` [PATCH v2 27/28] Mark unused functions for cppcheck
` [PATCH v2 28/28] cppcheck: Remove unused unmatchedSuppression suppressions

[PATCH] Makefile: Hack for optimised-away store in ndp() before checksum calculation
 2022-09-29  9:22 UTC 

[PATCH 00/28] Fixes for static checkers
 2022-09-29  1:44 UTC  (41+ messages)
` [PATCH 01/28] Clean up parsing of port ranges
` [PATCH 02/28] clang-tidy: Suppress warning about unchecked error in logfn macro
` [PATCH 03/28] clang-tidy: Fix spurious null pointer warning in pasta_start_ns()
` [PATCH 04/28] clang-tidy: Remove duplicate #include from icmp.c
` [PATCH 05/28] Catch failures when installing signal handlers
` [PATCH 06/28] Pack DHCPv6 "on wire" structures
` [PATCH 07/28] Clean up parsing in conf_runas()
` [PATCH 08/28] cppcheck: Reduce scope of some variables
` [PATCH 09/28] Don't shadow 'i' in conf_ports()
` [PATCH 10/28] Don't shadow global function names
` [PATCH 11/28] Stricter checking for nsholder.c
` [PATCH 12/28] cppcheck: Work around false positive NULL pointer dereference error
` [PATCH 13/28] cppcheck: Use inline suppression for ffsl()
` [PATCH 14/28] cppcheck: Use inline suppressions for qrap.c
` [PATCH 15/28] cppcheck: Use inline suppression for strtok() in conf.c
` [PATCH 16/28] Avoid ugly 'end' members in netlink structures
` [PATCH 17/28] cppcheck: Broaden suppression for unused struct members
` [PATCH 18/28] cppcheck: Remove localtime suppression for pcap.c
` [PATCH 19/28] qrap: Handle case of PATH environment variable being unset
` [PATCH 20/28] cppcheck: Suppress same-value-in-ternary branches warning
` [PATCH 21/28] cppcheck: Suppress NULL pointer warning in tcp_sock_consume()
` [PATCH 22/28] Regenerate seccomp.h if seccomp.sh changes
` [PATCH 23/28] cppcheck: Avoid errors due to zeroes in bitwise ORs
` [PATCH 24/28] cppcheck: Remove unused knownConditionTrueFalse suppression
` [PATCH 25/28] cppcheck: Remove unused objectIndex suppressions
` [PATCH 26/28] cppcheck: Remove unused va_list_usedBeforeStarted suppression
` [PATCH 27/28] Mark unused functions for cppcheck
` [PATCH 28/28] cppcheck: Remove unused unmatchedSuppression suppressions

[PATCH 0/2] Address warnings from gcc 12.2 with -flto
 2022-09-28 19:00 UTC  (3+ messages)
` [PATCH 1/2] Makefile: Extend noinline workarounds for LTO and -O2 to gcc 12
` [PATCH 2/2] udp: Replace pragma to ignore bogus stringop-overread warning with workaround

[PATCH v2 00/11] Assorted test fixes, batch 7
 2022-09-26 10:43 UTC  (12+ messages)
` [PATCH v2 01/11] test: Add wait_for() shell helper
` [PATCH v2 02/11] test: Remove unnecessary sleeps from shutdown tests
` [PATCH v2 03/11] test: More robust wait for pasta/passt to be ready
` [PATCH v2 04/11] test: Use --config-net for namespace setup
` [PATCH v2 05/11] test: Simplify data handling for transfer tests
` [PATCH v2 06/11] test: Remove unneccessary pane naming from layout_two_guests
` [PATCH v2 07/11] clang-tidy: Disable 'readability-identifier-length'
` [PATCH v2 08/11] cppcheck: Avoid excessive scanning due to system headers
` [PATCH v2 09/11] cppcheck: Run quietly
` [PATCH v2 10/11] Makefile: Simplify getting target triple for compiler
` [PATCH v2 11/11] cppcheck: Add target specific headers

[PATCH v2 0/8] Clean up and fix bugs in port forwarding data structures
 2022-09-24 20:25 UTC  (11+ messages)
` [PATCH v2 1/8] Improve types and names for port forwarding configuration
` [PATCH v2 2/8] Consolidate port forwarding configuration into a common structure
` [PATCH v2 3/8] udp: Delay initialization of UDP reversed port mapping table
` [PATCH v2 4/8] Don't use indirect remap functions for conf_ports()
` [PATCH v2 5/8] Pass entire port forwarding configuration substructure to conf_ports()
` [PATCH v2 6/8] Treat port numbers as unsigned
` [PATCH v2 7/8] Fix widespread off-by-one error dealing with port numbers
` [PATCH v2 8/8] icmp: Correct off by one errors dealing with number of echo request ids

[PATCH] Fix the name of the qemu-system-* executable
 2022-09-24 12:47 UTC  (4+ messages)

[PATCH 0/8] Clean up and fix bugs in port forwarding data structures
 2022-09-24  9:06 UTC  (13+ messages)
` [PATCH 1/8] Improve types and names for port forwarding configuration
` [PATCH 2/8] Consolidate port forwarding configuration into a common structure
` [PATCH 3/8] udp: Delay initialization of UDP reversed port mapping table
` [PATCH 4/8] Don't use indirect remap functions for conf_ports()
` [PATCH 5/8] Pass entire port forwarding configuration substructure to conf_ports()
` [PATCH 6/8] Treat port numbers as unsigned
` [PATCH 7/8] Fix widespread off-by-one error dealing with port numbers
` [PATCH 8/8] icmp: Correct off by one errors dealing with number of echo request ids

[PATCH 00/12] Assorted test fixes, batch 7
 2022-09-24  3:06 UTC  (22+ messages)
` [PATCH 01/12] test: Add wait_for() shell helper
` [PATCH 02/12] test: Remove unnecessary sleeps from layout functions
` [PATCH 03/12] test: Remove unnecessary sleeps from shutdown tests
` [PATCH 04/12] test: More robust wait for pasta/passt to be ready
` [PATCH 05/12] test: Use --config-net for namespace setup
` [PATCH 06/12] test: Simplify data handling for transfer tests
` [PATCH 07/12] test: Remove unneccessary pane naming from layout_two_guests
` [PATCH 08/12] clang-tidy: Disable 'readability-identifier-length'
` [PATCH 09/12] cppcheck: Avoid excessive scanning due to system headers
` [PATCH 10/12] cppcheck: Run quietly
` [PATCH 11/12] Makefile: Simplify getting target triple for compiler
` [PATCH 12/12] cppcheck: Add target specific headers

[PATCH 00/11] Fixes for demos, pre-push hook, README
 2022-09-23 22:42 UTC  (12+ messages)
` [PATCH 01/11] contrib/podman: Rebase to latest upstream
` [PATCH 02/11] hooks/pre_push: Fix upload of CI's logs and terminal capture file
` [PATCH 03/11] test/demo: Use relative paths to change directories when possible
` [PATCH 04/11] test/demo: Avoid using port 5201 on the host
` [PATCH 05/11] test/lib: Drop perf_report_append() from perf_report
` [PATCH 06/11] test/lib: Don't try to write to perf.js when running demos
` [PATCH 07/11] README: Fix misspellings of openSUSE
` [PATCH 08/11] README: Point openSUSE links to Dario's OBS repository
` [PATCH 09/11] README: Fix indentation in "Try It" section
` [PATCH 10/11] README: Fix paragraph in Try It section of passt
` [PATCH 11/11] README: Add legend for Features section

[PATCH] test/passt.mbuto: Don't fail on missing guest public key
 2022-09-23 15:56 UTC 

[PATCH 0/7] Fixes and workarounds for tests, Coverity warnings
 2022-09-23  6:55 UTC  (19+ messages)
` [PATCH 1/7] test/perf: Always use /sbin/sysctl in tcp test
` [PATCH 2/7] test/perf: Switch performance test duration to 10 seconds instead of 30
` [PATCH 3/7] tap: Check return value of accept4() before calling getsockopt()
` [PATCH 4/7] conf, tcp, udp: Arrays for ports need 2^16 values, not 2^16-8
` [PATCH 5/7] test/lib: Restore IFS while executing directives in def blocks
` [PATCH 6/7] test/lib: Wait on iperf3 clients to be done, then send SIGINT to servers
` [PATCH 7/7] test/perf: Disable periodic throughput reports to avoid vhost hang

[PATCH 0/5] Some more hacks and workarounds to make tests pass again
 2022-09-23  2:17 UTC  (7+ messages)
` [PATCH 1/5] test/lib: Run also iperf3 clients in background, revert to time-based wait
` [PATCH 2/5] test/lib: Wait for kernel to free up ports used by iperf3 before reusing them
` [PATCH 3/5] test/perf: Wait for neper servers in guest to be ready before starting client
` [PATCH 4/5] test/lib: Wait for DHCPv4 before starting DHCPv6 client in two_guests test
` [PATCH 5/5] test/distro: Update workarounds for Ubuntu 22.04 on s390x

[PATCH] Makefile: Allow define overrides by prepending, not appending, CFLAGS
 2022-09-23  1:02 UTC  (4+ messages)

all pending patches pushed
 2022-09-23  1:00 UTC 

[PATCH 2/2] test/passt_in_ns: Consistent sleep commands before starting socat client
 2022-09-19  8:24 UTC  (8+ messages)

[PATCH 1/2] test/perf: Check for /sbin/sysctl with which(1), not simply sysctl
 2022-09-17  9:51 UTC  (3+ messages)

[PATCH 1/2] doc/demo: Drop /sbin from dhclient command, pass script file explicitly
 2022-09-17  9:50 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).