## ------------------------------ ## ## openvswitch 2.17.2 test suite. ## ## ------------------------------ ## testsuite: command line was: $ ./tests/testsuite -C tests AUTOTEST_PATH=utilities:vswitchd:ovsdb:vtep:tests:ipsec:: ## --------- ## ## Platform. ## ## --------- ## hostname = gf.packet.net uname -m = x86_64 uname -r = 5.10.133-gentoo uname -s = Linux uname -v = #1 SMP Fri Jul 29 16:44:01 CEST 2022 /usr/bin/uname -p = Intel(R) Xeon(R) CPU E5-2650 v4 @ 2.20GHz /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/utilities PATH: /var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/vswitchd PATH: /var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/ovsdb PATH: /var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/vtep PATH: /var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests PATH: /var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/ipsec PATH: /var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2 PATH: /var/tmp/portage/net-misc/openvswitch-2.17.2-r1/temp/python3.10/bin PATH: /usr/lib/portage/python3.10/ebuild-helpers/xattr PATH: /usr/lib/portage/python3.10/ebuild-helpers PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /usr/sbin PATH: /usr/bin PATH: /sbin PATH: /bin testsuite: atconfig: | # Configurable variable values for building test suites. | # Generated by ./config.status. | # Copyright (C) 2021 Free Software Foundation, Inc. | | # The test suite will define top_srcdir=/../.. etc. | at_testdir='tests' | abs_builddir='/var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests' | at_srcdir='.' | abs_srcdir='/var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests' | at_top_srcdir='..' | abs_top_srcdir='/var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2' | at_top_build_prefix='../' | abs_top_builddir='/var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2' | | # Backward compatibility with Autotest <= 2.59b: | at_top_builddir=$at_top_build_prefix | | | EXEEXT='' | AUTOTEST_PATH='tests' | | SHELL=${CONFIG_SHELL-'/bin/bash'} testsuite: atlocal: | # -*- shell-script -*- | HAVE_OPENSSL='yes' | OPENSSL_SUPPORTS_SNI='yes' | HAVE_UNBOUND='no' | EGREP='/bin/grep -E' | PYTHON3='/usr/bin/python3.10' | | # PYTHONCOERCECLOCALE=0 disables the Unicode compatibility warning on | # stderr that breaks almost any Python3 test (PEP 0538) | PYTHONCOERCECLOCALE=0 | export PYTHONCOERCECLOCALE | | PYTHONPATH=$abs_top_srcdir/python:$abs_top_builddir/tests:$PYTHONPATH | export PYTHONPATH | | PYTHONIOENCODING=utf_8 | export PYTHONIOENCODING | | # PYTHONDONTWRITEBYTECODE=yes keeps Python from creating .pyc and .pyo | # files. Creating .py[co] works OK for any given version of Open | # vSwitch, but it causes trouble if you switch from a version with | # foo/__init__.py into an (older) version with plain foo.py, since | # foo/__init__.pyc will cause Python to ignore foo.py. | PYTHONDONTWRITEBYTECODE=yes | export PYTHONDONTWRITEBYTECODE | | # Test whether the current working directory name is all ASCII | # characters. Some Python code doesn't tolerate non-ASCII characters | # in filenames very well, so if the current working directory is | # non-ASCII then we skip the tests that run those programs. | # | # This would be just papering over a real problem, except that the | # tests that we skip are launched from initscripts and thus normally | # run in system directories with ASCII names. (This problem only came | # up at all because the Debian autobuilders do build in a top-level | # directory named /«BUILDDIR».) | case `pwd | tr -d ' -~'` in | '') non_ascii_cwd=false ;; | *) non_ascii_cwd=true | esac | | # Enable malloc debugging features. | case `uname` in | Linux) | MALLOC_PERTURB_=165; export MALLOC_PERTURB_ | MALLOC_CHECK_=2; export MALLOC_CHECK_ | ;; | FreeBSD) | case `uname -r` in | [789].*) | MALLOC_CONF=AJ | ;; | 1[01].*) | MALLOC_CONF=abort:true,junk:true,redzone:true | ;; | *) | MALLOC_CONF=abort:true,junk:true | ;; | esac | export MALLOC_CONF | esac | | # The name of loopback interface | case `uname` in | Linux) | LOOPBACK_INTERFACE=lo | ;; | FreeBSD|NetBSD) | LOOPBACK_INTERFACE=lo0 | ;; | esac | | # Check for platform. | case `uname` in | MINGW*|MSYS*) | IS_WIN32="yes" | IS_BSD="no" | ;; | FreeBSD|NetBSD) | IS_WIN32="no" | IS_BSD="yes" | ;; | *) | IS_WIN32="no" | IS_BSD="no" | ;; | esac | | if test "$IS_WIN32" = yes; then | # enables legacy windows unicode printing needed for Python3 compatibility | # with the Python2 tests | PYTHONLEGACYWINDOWSFSENCODING=true | export PYTHONLEGACYWINDOWSFSENCODING | PYTHONLEGACYWINDOWSSTDIO=true | export PYTHONLEGACYWINDOWSSTDIO | fi | | # Check for CPU architecture | case `uname -m` in | aarch64) | IS_ARM64="yes" | ;; | *) | IS_ARM64="no" | ;; | esac | | # Check whether to run IPv6 tests. | $PYTHON3 -c ' | import errno | import socket | import sys | try: | socket.socket(family=socket.AF_INET6).bind(("::1", 0, 0, 0)) | except socket.error as e: | if e.errno == errno.EAFNOSUPPORT or errno.EADDRNOTAVAIL: | sys.exit(2) | raise | ' | case $? in | 0) HAVE_IPV6=yes ;; | 2) HAVE_IPV6=no ;; | *) echo "$0: unexpected error probing $PYTHON3 for IPv6 support" >&2 ;; | esac | | # Look for a python L7 library 'LIB' in the system. If it is found, defines | # HAVE_LIB="yes", otherwise HAVE_LIB="no" | find_l7_lib() | { | set +x | var=HAVE_`echo "$1" | tr '[a-z]' '[A-Z]'` | result=$($PYTHON3 $abs_top_srcdir/tests/test-l7.py --help | grep "$1") | if test "x${result}" != x; then | eval ${var}="yes" | else | eval ${var}="no" | fi | } | | # HAVE_FTP | find_l7_lib ftp | # HAVE_TFTP | find_l7_lib tftp | | # Look for a commnand in the system. If it is found, defines | # HAVE_COMMAND="yes", otherwise HAVE_COMMAND="no". | find_command() | { | which $1 > /dev/null 2>&1 | status=$? | var=HAVE_`echo "$1" | tr '[a-z]' '[A-Z]'` | if test "$status" = "0"; then | eval ${var}="yes" | else | eval ${var}="no" | fi | } | | # Set HAVE_NC | find_command nc | | # Determine correct netcat option to quit on stdin EOF | if nc --version 2>&1 | grep -q nmap.org; then | # Nmap netcat | NC_EOF_OPT="--send-only -w 5" | else | # BSD netcat | NC_EOF_OPT="-q 1 -w 5" | fi | | # Set HAVE_TC | find_command tc | | # When HAVE_TC=yes, check if the current tc supports adding pps filter | SUPPORT_TC_INGRESS_PPS="no" | if test $HAVE_TC="yes"; then | ip link add veth0 type veth peer name veth1 | tc qdisc add dev veth0 handle ffff: ingress | if tc filter add dev veth0 parent ffff: u32 match u32 0 0 police pkts_rate 100 pkts_burst 10; then | SUPPORT_TC_INGRESS_PPS="yes" | fi | ip link del veth0 | fi | | # Set HAVE_TCPDUMP | find_command tcpdump | | # Set HAVE_LFTP | find_command lftp | | CURL_OPT="-g -v --max-time 1 --retry 2 --retry-delay 1 --connect-timeout 1" | | # Determine whether "diff" supports "normal" diffs. (busybox diff does not.) | if echo xyzzy | diff /dev/null - | grep '^>' >/dev/null; then | DIFF_SUPPORTS_NORMAL_FORMAT=yes | else | DIFF_SUPPORTS_NORMAL_FORMAT=no | fi | | # Turn off proxies. | unset http_proxy | unset https_proxy | unset ftp_proxy | unset no_proxy | unset HTTP_PROXY | unset HTTPS_PROXY | unset FTP_PROXY | unset NO_PROXY | | # Prevent logging to syslog during tests. | OVS_SYSLOG_METHOD=null | export OVS_SYSLOG_METHOD | | # Set default timeout for control utils | OVS_CTL_TIMEOUT=30 | export OVS_CTL_TIMEOUT | | # Add some default flags to make the tests run better under Address | # Sanitizer, if it was used for the build. | # | # We disable leak detection because otherwise minor leaks that don't | # matter break everything. | ASAN_OPTIONS=detect_leaks=0:abort_on_error=true:log_path=asan:$ASAN_OPTIONS | export ASAN_OPTIONS ## ---------------- ## ## Tested programs. ## ## ---------------- ## ./testsuite.at:1: /var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/vswitchd/ovs-vswitchd --version ovs-vswitchd (Open vSwitch) 2.17.2 ./testsuite.at:1: /var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/utilities/ovs-vsctl --version ovs-vsctl (Open vSwitch) 2.17.2 DB Schema 8.3.0 ## ------------------ ## ## Running the tests. ## ## ------------------ ## testsuite: starting at: Fri Sep 23 10:08:25 UTC 2022 1. appctl-bashcomp - basic verification (completion.at:21): ok (0m1.001s 0m0.237s) 2. appctl-bashcomp - complex completion check 1 (completion.at:88): ok (0m0.671s 0m0.181s) 3. appctl-bashcomp - complex completion check 2 (completion.at:142): ok (0m0.359s 0m0.084s) 4. appctl-bashcomp - complex completion check 3 (completion.at:176): ok (0m1.337s 0m0.308s) 5. appctl-bashcomp - complex completion check 4 (completion.at:265): ok (0m0.370s 0m0.094s) 6. appctl-bashcomp - negative test (completion.at:291): ok (0m0.772s 0m0.211s) 7. vsctl-bashcomp - basic verification (completion.at:345): ok (0m3.431s 0m1.082s) 8. vsctl-bashcomp - argument completion (completion.at:427): ok (0m11.697s 0m3.581s) 9. vsctl-bashcomp - negative test (completion.at:754): ok (0m1.099s 0m0.355s) 10. checkpatch - sign-offs (checkpatch.at:34): ok (0m2.598s 0m0.394s) 11. checkpatch - parenthesized constructs (checkpatch.at:174): ok (0m6.080s 0m0.964s) 12. checkpatch - catastrophic backtracking (checkpatch.at:235): ok (0m0.184s 0m0.025s) 13. checkpatch - parenthesized constructs - for (checkpatch.at:251): ok (0m1.330s 0m0.227s) 14. checkpatch - comments (checkpatch.at:311): ok (0m0.434s 0m0.154s) 15. checkpatch - whitespace around operator (checkpatch.at:333): ok (0m0.308s 0m0.066s) 16. checkpatch - whitespace around cast (checkpatch.at:351): ok (0m0.326s 0m0.057s) 17. checkpatch - malformed tags (checkpatch.at:368): ok (0m1.256s 0m0.185s) 18. checkpatch - Unicode code (checkpatch.at:428): ok (0m0.187s 0m0.027s) 19. bfd - basic config on different bridges (bfd.at:52): ok (0m0.278s 0m0.133s) 20. bfd - Verify tunnel down detection (bfd.at:94): ok (0m0.392s 0m0.151s) 21. bfd - concatenated path down (bfd.at:175): ok (0m0.221s 0m0.066s) 22. bfd - Edit the Min Tx/Rx values (bfd.at:202): ok (0m0.246s 0m0.091s) 23. bfd - check_tnl_key (bfd.at:233): ok (0m0.150s 0m0.056s) 24. bfd - bfd decay (bfd.at:268): ok (0m4.458s 0m1.670s) 25. bfd - bfd forwarding_if_rx - bfd on one side (bfd.at:416): ok (0m0.622s 0m0.174s) 26. bfd - bfd forwarding_if_rx - bfd on both sides (bfd.at:461): ok (0m0.636s 0m0.215s) 27. bfd - bfd forwarding_if_rx - with bfd decay (bfd.at:527): ok (0m1.235s 0m0.467s) 28. bfd - bfd forwarding_if_rx - demand_rx_bfd (bfd.at:615): ok (0m3.817s 0m1.335s) 29. bfd - flap_count (bfd.at:686): ok (0m1.833s 0m0.619s) 30. bfd - check that BFD works together with RSTP (bfd.at:806): ok (0m0.201s 0m0.078s) 31. bfd - liveness propagation - OF1.3 (bfd.at:843): ok (0m0.405s 0m0.125s) 32. bfd - liveness propagation - OF1.4 (bfd.at:914): ok (0m0.394s 0m0.141s) 33. bfd - liveness propagation - OF1.5 (bfd.at:985): ok (0m0.392s 0m0.138s) 34. bfd - Edit the Detect Mult values (bfd.at:1055): ok (0m0.396s 0m0.139s) 35. bfd - overlay (bfd.at:1105): ok (0m0.129s 0m0.045s) 36. cfm - check update ovsdb 1 (cfm.at:49): ok (0m0.718s 0m0.371s) 37. cfm - check update ovsdb 2 (cfm.at:81): ok (0m0.510s 0m0.186s) 38. cfm - demand mode (cfm.at:115): ok (0m9.064s 0m3.156s) 39. cfm - demand_rx_ccm (cfm.at:157): ok (0m10.922s 0m3.572s) 40. cfm - flap_count (cfm.at:219): ok (0m0.221s 0m0.070s) 41. cfm - fault_override (cfm.at:252): ok (0m0.271s 0m0.081s) 42. cfm - check that CFM works together with RSTP (cfm.at:290): ok (0m0.178s 0m0.084s) 43. cfm - liveness propagation - OF1.3 (cfm.at:327): ok (0m0.256s 0m0.125s) 44. cfm - liveness propagation - OF1.4 (cfm.at:389): ok (0m0.264s 0m0.114s) 45. cfm - liveness propagation - OF1.5 (cfm.at:451): ok (0m0.275s 0m0.112s) 46. lacp - config (lacp.at:13): ok (0m0.113s 0m0.042s) 47. lacp - multi port config (lacp.at:53): ok (0m0.114s 0m0.056s) 48. lacp - negotiation (lacp.at:142): ok (0m0.493s 0m0.182s) 49. lacp - liveness propagation - OF1.3 (lacp.at:749): ok (0m0.412s 0m0.140s) 50. lacp - liveness propagation - OF1.4 (lacp.at:844): ok (0m0.418s 0m0.141s) 51. lacp - liveness propagation - OF1.5 (lacp.at:939): ok (0m0.413s 0m0.138s) 52. flow extractor (library.at:3): ok (0m0.100s 0m0.019s) 53. TCP/IP checksumming (library.at:9): ok (0m0.009s 0m0.006s) 54. hash functions (library.at:14): ok (0m0.354s 0m0.001s) 55. hash map (library.at:18): ok (0m0.386s 0m0.004s) 56. hash index (library.at:24): ok (0m0.655s 0m0.004s) 57. cuckoo hash (library.at:30): ok (0m13.816s 0m0.050s) 58. counting cuckoo hash (library.at:36): ok (0m1.149s 0m0.000s) 59. atomic operations (library.at:42): ok (0m2.152s 0m0.030s) 60. test linked lists (library.at:46): ok (0m0.017s 0m0.000s) 61. packet library (library.at:51): ok (0m0.006s 0m0.003s) 62. SHA-1 (library.at:55): ok (0m7.774s 0m0.000s) 63. test skiplist (library.at:61): ok (0m0.964s 0m0.070s) 64. type properties (library.at:72): ok (0m0.005s 0m0.001s) 65. strtok_r bug fix (library.at:76): ok (0m0.007s 0m0.004s) 66. byte order conversion (library.at:81): ok (0m0.004s 0m0.004s) 67. random number generator (library.at:86): ok (0m0.014s 0m0.000s) 68. ctz() function (library.at:138): ok (0m0.004s 0m0.004s) 69. clz() function (library.at:138): ok (0m0.005s 0m0.000s) 70. round_up_pow2() function (library.at:138): ok (0m0.006s 0m0.000s) 71. round_down_pow2() function (library.at:138): ok (0m0.003s 0m0.003s) 72. count_1bits() function (library.at:138): ok (0m0.008s 0m0.001s) 73. log_2_floor() function (library.at:138): ok (0m0.005s 0m0.000s) 74. bitwise_copy() function (library.at:138): ok (0m0.013s 0m0.000s) 75. bitwise_zero() function (library.at:138): ok (0m0.006s 0m0.000s) 76. bitwise_one() function (library.at:138): ok (0m0.003s 0m0.003s) 77. bitwise_is_all_zeros() function (library.at:138): ok (0m0.171s 0m0.011s) 78. bitwise_rscan() function (library.at:138): ok (0m0.553s 0m0.012s) 79. ovs_scan() function (library.at:138): ok (0m0.003s 0m0.003s) 80. unix socket, short pathname - C (library.at:157): ok (0m0.007s 0m0.000s) 81. unix socket, long pathname - C (library.at:167): ok (0m0.008s 0m0.002s) 82. unix socket, short pathname - Python3 (library.at:180): ok (0m0.109s 0m0.010s) 83. unix socket, long pathname - Python3 (library.at:191): ok (0m0.130s 0m0.002s) 84. ovs_assert (library.at:204): ok (0m0.015s 0m0.004s) 85. saturating arithmetic (library.at:227): ok (0m0.003s 0m0.003s) 86. snprintf (library.at:232): ok (0m0.006s 0m0.000s) 87. bitmap functions (library.at:236): ok (0m0.009s 0m0.000s) 88. use of public headers (library.at:241): ok (0m0.006s 0m0.000s) 89. ofpbuf module (library.at:245): ok (0m0.006s 0m0.000s) 90. barrier module (library.at:249): ok (0m0.009s 0m0.000s) 91. rcu (library.at:254): ok (0m0.003s 0m0.003s) 92. stopwatch module (library.at:258): ok (0m0.011s 0m0.000s) 93. netlink policy (library.at:263): ok (0m0.007s 0m0.000s) 94. mpsc-queue module (library.at:269): ok (0m0.008s 0m0.002s) 95. id-fpool module (library.at:274): ok (0m0.008s 0m0.000s) 96. heap library -- insert delete same order (heap.at:8): ok (0m0.082s 0m0.001s) 97. heap library -- insert delete reverse order (heap.at:9): ok (0m0.072s 0m0.010s) 98. heap library -- insert delete every order (heap.at:10): ok (0m0.081s 0m0.010s) 99. heap library -- insert delete same order with dups (heap.at:11): ok (0m0.708s 0m0.010s) 100. heap library -- raw insert (heap.at:12): ok (0m0.084s 0m0.000s) 101. heap library -- raw delete (heap.at:13): ok (0m0.014s 0m0.003s) 102. hrw bundle link selection (bundle.at:10): ok (0m0.482s 0m0.030s) 103. active_backup bundle link selection (bundle.at:81): ok (0m0.088s 0m0.030s) 104. hrw bundle single link selection (bundle.at:153): ok (0m0.054s 0m0.033s) 105. hrw bundle no link selection (bundle.at:162): ok (0m0.055s 0m0.032s) 106. bundle action missing argument (bundle.at:170): ok (0m0.007s 0m0.004s) 107. bundle action bad fields (bundle.at:177): ok (0m0.007s 0m0.005s) 108. bundle action bad algorithm (bundle.at:184): ok (0m0.010s 0m0.000s) 109. bundle action bad member type (bundle.at:191): ok (0m0.012s 0m0.000s) 110. bundle action bad member delimiter (bundle.at:198): ok (0m0.007s 0m0.004s) 111. bundle action with many ports (bundle.at:211): ok (0m0.101s 0m0.036s) 112. bundle action with ports up and down (bundle.at:221): ok (0m0.201s 0m0.058s) 113. bundle_load action with ports down (bundle.at:259): ok (0m0.128s 0m0.045s) 114. hrw bundle symmetric_l3 link selection (bundle.at:277): ok (0m0.400s 0m0.010s) 115. active_backup bundle symmetric_l3 link selection (bundle.at:348): ok (0m0.159s 0m0.021s) 116. hrw bundle symmetric_l3 single link selection (bundle.at:420): ok (0m0.064s 0m0.028s) 117. hrw bundle symmetric_l3 single link selection (bundle.at:429): ok (0m0.080s 0m0.010s) 118. hrw bundle symmetric_l3 no link selection (bundle.at:438): ok (0m0.066s 0m0.019s) 119. bundle symmetric_l3 action with many ports (bundle.at:446): ok (0m0.131s 0m0.015s) 120. flow classifier - empty (classifier.at:2): ok (0m0.007s 0m0.003s) 121. flow classifier - destroy null (classifier.at:2): ok (0m0.007s 0m0.000s) 122. flow classifier - single rule (classifier.at:2): ok (0m2.534s 0m0.030s) 123. flow classifier - rule replacement (classifier.at:2): ok (0m5.092s 0m0.050s) 124. flow classifier - many rules in one list (classifier.at:2): ok (0m0.488s 0m0.010s) 125. flow classifier - versioned many rules in one list (classifier.at:2): ok (0m0.525s 0m0.010s) 126. flow classifier - many rules in one table (classifier.at:2): ok (0m2.696s 0m0.010s) 127. flow classifier - versioned many rules in one table (classifier.at:2): ok (0m1.814s 0m0.000s) 128. flow classifier - many rules in two tables (classifier.at:2): ok (0m8.449s 0m0.000s) 129. flow classifier - versioned many rules in two tables (classifier.at:2): ok (0m11.049s 0m0.011s) 130. flow classifier - many rules in five tables (classifier.at:2): ok (0m5.879s 0m0.010s) 131. flow classifier - versioned many rules in five tables (classifier.at:2): ok (0m9.458s 0m0.003s) 132. miniflow - miniflow (classifier.at:21): ok (0m0.251s 0m0.010s) 133. miniflow - minimask_has_extra (classifier.at:21): ok (0m0.102s 0m0.000s) 134. miniflow - minimask_combine (classifier.at:21): ok (0m0.530s 0m0.010s) 135. flow classifier - lookup segmentation (classifier.at:31): ok (0m0.153s 0m0.057s) 136. flow classifier - prefix lookup (classifier.at:69): ok (0m0.255s 0m0.059s) 137. flow classifier - ipv6 ND dependency (classifier.at:132): ok (0m0.105s 0m0.064s) 138. single conjunctive match (classifier.at:159): ok (0m1.005s 0m0.272s) 139. multiple conjunctive match (classifier.at:196): ok (0m6.220s 0m1.538s) 140. conjunctive match priority fallback (classifier.at:272): ok (0m0.441s 0m0.108s) 141. conjunctive match and other actions (classifier.at:318): ok (0m0.116s 0m0.045s) 142. flow classifier - packet with extra padding (classifier.at:334): ok (0m0.169s 0m0.051s) 143. check struct tail padding (check-structs.at:10): ok (0m0.077s 0m0.006s) 144. check struct internal alignment (check-structs.at:20): ok (0m0.072s 0m0.010s) 145. check struct declared size (check-structs.at:31): ok (0m0.081s 0m0.001s) 146. check wrong struct's declared size (check-structs.at:43): ok (0m0.058s 0m0.025s) 147. daemon (daemon.at:48): ok (0m0.029s 0m0.004s) 148. daemon --monitor (daemon.at:78): ok (0m0.081s 0m0.024s) 149. daemon --detach (daemon.at:121): ok (0m0.017s 0m0.004s) 150. daemon --detach --monitor (daemon.at:146): ok (0m0.116s 0m0.031s) 151. daemon --detach startup errors (daemon.at:185): ok (0m0.014s 0m0.020s) 152. daemon --detach --monitor startup errors (daemon.at:193): ok (0m0.016s 0m0.018s) 153. daemon --service (daemon.at:202): skipped (daemon.at:204) 154. daemon - Python3 (daemon-py.at:3): ok (0m0.129s 0m0.036s) 155. daemon --monitor - Python3 (daemon-py.at:26): ok (0m0.179s 0m0.032s) 156. daemon --monitor restart exit code - Python3 (daemon-py.at:60): ok (0m0.153s 0m0.062s) 157. daemon --detach - Python3 (daemon-py.at:94): ok (0m0.253s 0m0.031s) 158. daemon --detach --monitor - Python3 (daemon-py.at:116): ok (0m0.302s 0m0.077s) 159. daemon --detach startup errors - Python3 (daemon-py.at:155): ok (0m0.261s 0m0.033s) 160. daemon --detach --monitor startup errors - Python3 (daemon-py.at:162): ok (0m0.251s 0m0.069s) 161. daemon --detach closes standard fds - Python3 (daemon-py.at:170): ok (0m0.209s 0m0.062s) 162. daemon --detach --monitor closes standard fds - Python3 (daemon-py.at:189): ok (0m0.211s 0m0.056s) 163. OpenFlow 1.0 action translation (ofp-actions.at:3): ok (0m0.021s 0m0.005s) 164. OpenFlow 1.0 "instruction" translations (ofp-actions.at:334): ok (0m0.021s 0m0.004s) 165. OpenFlow 1.1 action translation (ofp-actions.at:364): ok (0m0.023s 0m0.003s) 166. OpenFlow 1.1 instruction translation (ofp-actions.at:507): ok (0m0.025s 0m0.000s) 167. OpenFlow 1.2 action translation (ofp-actions.at:718): ok (0m0.015s 0m0.010s) 168. OpenFlow 1.3 action translation (ofp-actions.at:744): ok (0m0.020s 0m0.006s) 169. OpenFlow 1.5 action translation (ofp-actions.at:805): ok (0m0.021s 0m0.005s) 170. ofp-actions - inconsistent MPLS actions (ofp-actions.at:832): ok (0m0.129s 0m0.023s) 171. reg_load <-> set_field translation corner case (ofp-actions.at:844): ok (0m0.129s 0m0.056s) 172. enqueue action for OF1.1+ (ofp-actions.at:859): ok (0m0.144s 0m0.038s) 173. mod_nw_ttl action for OF1.0 (ofp-actions.at:876): ok (0m0.109s 0m0.072s) 174. mod_nw_ecn action translation (ofp-actions.at:893): ok (0m0.213s 0m0.060s) 175. action parsing errors (ofp-actions.at:938): ok (0m13.430s 0m5.578s) 176. empty (ofp-print.at:3): ok (0m0.010s 0m0.004s) 177. too short (ofp-print.at:9): ok (0m0.010s 0m0.004s) 178. wrong OpenFlow version (ofp-print.at:17): ok (0m0.015s 0m0.004s) 179. truncated message (ofp-print.at:27): ok (0m0.012s 0m0.003s) 180. message only uses part of buffer (ofp-print.at:35): ok (0m0.015s 0m0.000s) 181. OFPT_HELLO - ordinary (ofp-print.at:44): ok (0m0.006s 0m0.009s) 182. OFPT_HELLO with extra data (ofp-print.at:52): ok (0m0.015s 0m0.000s) 183. OFPT_HELLO with version bitmap (ofp-print.at:64): ok (0m0.014s 0m0.000s) 184. OFPT_HELLO with version bitmap and extra data (ofp-print.at:73): ok (0m0.013s 0m0.001s) 185. OFPT_HELLO with higher than supported version (ofp-print.at:87): ok (0m0.033s 0m0.003s) 186. OFPT_HELLO with contradictory version bitmaps (ofp-print.at:106): ok (0m0.054s 0m0.013s) 187. OFPT_ECHO_REQUEST, empty payload (ofp-print.at:148): ok (0m0.010s 0m0.004s) 188. OFPT_ECHO_REQUEST, 5-byte payload (ofp-print.at:155): ok (0m0.014s 0m0.000s) 189. OFPT_ECHO_REPLY, empty payload (ofp-print.at:163): ok (0m0.013s 0m0.003s) 190. OFPT_ECHO_REPLY, 5-byte payload (ofp-print.at:170): ok (0m0.014s 0m0.000s) 191. OFPT_FEATURES_REQUEST (ofp-print.at:178): ok (0m0.015s 0m0.000s) 192. OFPT_FEATURES_REPLY - OF1.0 (ofp-print.at:185): ok (0m0.014s 0m0.000s) 193. OFPT_FEATURES_REPLY cut off mid-port - OF1.0 (ofp-print.at:235): ok (0m0.023s 0m0.004s) 194. OFPT_FEATURES_REPLY - OF1.1 (ofp-print.at:274): ok (0m0.014s 0m0.000s) 195. OFPT_FEATURES_REPLY cut off mid-port - OF1.1 (ofp-print.at:305): ok (0m0.024s 0m0.002s) 196. OFPT_FEATURES_REPLY - OF1.2 (ofp-print.at:334): ok (0m0.010s 0m0.004s) 197. OFPT_FEATURES_REPLY cut off mid-port - OF1.2 (ofp-print.at:365): ok (0m0.019s 0m0.003s) 198. OFPT_FEATURES_REPLY - OF1.3 (ofp-print.at:394): ok (0m0.010s 0m0.004s) 199. OFPT_FEATURES_REPLY - OF1.4 (ofp-print.at:406): ok (0m0.011s 0m0.003s) 200. OFPT_FEATURES_REPLY - OF1.5 (ofp-print.at:418): ok (0m0.009s 0m0.005s) 201. OFPT_FEATURES_REPLY - with auxiliary_id - OF1.3 (ofp-print.at:430): ok (0m0.014s 0m0.000s) 202. OFPT_GET_CONFIG_REQUEST (ofp-print.at:442): ok (0m0.014s 0m0.000s) 203. OFPT_GET_CONFIG_REPLY, most common form (ofp-print.at:449): ok (0m0.011s 0m0.003s) 204. OFPT_GET_CONFIG_REPLY, frags and miss_send_len (ofp-print.at:457): ok (0m0.010s 0m0.004s) 205. OFPT_PACKET_IN - OF1.0 (ofp-print.at:464): ok (0m0.013s 0m0.001s) 206. OFPT_PACKET_IN - OF1.0, with hex output of packet data (ofp-print.at:478): ok (0m0.010s 0m0.005s) 207. OFPT_PACKET_IN - OF1.1 (ofp-print.at:496): ok (0m0.010s 0m0.004s) 208. OFPT_PACKET_IN - OF1.2 (ofp-print.at:511): ok (0m0.014s 0m0.000s) 209. OFPT_PACKET_IN - OF1.2, with hex output of packet data (ofp-print.at:525): ok (0m0.014s 0m0.000s) 210. OFPT_PACKET_IN - OF1.3 (ofp-print.at:542): ok (0m0.013s 0m0.001s) 211. OFPT_PACKET_IN - OF1.4 (ofp-print.at:557): ok (0m0.011s 0m0.003s) 212. OFPT_PACKET_IN - OF1.5 (ofp-print.at:572): ok (0m0.014s 0m0.000s) 213. OFPT_PACKET_IN - OF1.3, with hex output of packet data (ofp-print.at:587): ok (0m0.010s 0m0.005s) 214. OFPT_FLOW_REMOVED - OF1.0 (ofp-print.at:605): ok (0m0.010s 0m0.004s) 215. OFPT_FLOW_REMOVED - OF1.2 (ofp-print.at:619): ok (0m0.010s 0m0.004s) 216. OFPT_FLOW_REMOVED - OF1.3 (ofp-print.at:630): ok (0m0.011s 0m0.003s) 217. OFPT_FLOW_REMOVED - OF1.5 (ofp-print.at:641): ok (0m0.013s 0m0.001s) 218. OFPT_PORT_STATUS - OF1.0 (ofp-print.at:657): ok (0m0.013s 0m0.001s) 219. OFPT_PORT_STATUS - OF1.1 (ofp-print.at:675): ok (0m0.011s 0m0.003s) 220. OFPT_PORT_STATUS - OF1.4 (ofp-print.at:694): ok (0m0.014s 0m0.000s) 221. OFPT_PACKET_OUT - OF1.0 (ofp-print.at:714): ok (0m0.010s 0m0.004s) 222. OFPT_PACKET_OUT - OF1.0, with packet (ofp-print.at:728): ok (0m0.014s 0m0.000s) 223. OFPT_PACKET_OUT - OF1.0, with hex output of packet data (ofp-print.at:743): ok (0m0.007s 0m0.007s) 224. OFPT_PACKET_OUT - OF1.1 (ofp-print.at:762): ok (0m0.007s 0m0.007s) 225. OFPT_PACKET_OUT - OF1.1, with packet (ofp-print.at:773): ok (0m0.011s 0m0.004s) 226. OFPT_PACKET_OUT - OF1.5 (ofp-print.at:789): ok (0m0.042s 0m0.005s) 227. OFPT_PACKET_OUT - OF1.5, with packet (ofp-print.at:840): ok (0m0.014s 0m0.001s) 228. OFPT_FLOW_MOD - OF1.0 - low verbosity (ofp-print.at:858): ok (0m0.020s 0m0.000s) 229. OFPT_FLOW_MOD - OF1.1 - low verbosity (ofp-print.at:876): ok (0m0.015s 0m0.000s) 230. OFPT_FLOW_MOD - OF1.2 - low verbosity (ofp-print.at:896): ok (0m0.015s 0m0.000s) 231. OFPT_FLOW_MOD - OF1.0 - high verbosity (ofp-print.at:916): ok (0m0.020s 0m0.000s) 232. OFPT_FLOW_MOD - OF1.2 - low verbosity (ofp-print.at:934): ok (0m0.010s 0m0.005s) 233. OFPT_FLOW_MOD - OF1.3 - flags - low verbosity (ofp-print.at:953): ok (0m0.014s 0m0.001s) 234. OFPT_FLOW_MOD - OF1.2 - set-field ip_src (ofp-print.at:971): ok (0m0.010s 0m0.004s) 235. OFPT_FLOW_MOD - OF1.2 - set-field ip_dst (ofp-print.at:986): ok (0m0.011s 0m0.003s) 236. OFPT_FLOW_MOD - OF1.2 - set-field sctp_src (ofp-print.at:1001): ok (0m0.014s 0m0.000s) 237. OFPT_FLOW_MOD - OF1.2 - set-field sctp_dst (ofp-print.at:1016): ok (0m0.010s 0m0.005s) 238. OFPT_FLOW_MOD - OF1.2 - experimenter OXM (ofp-print.at:1031): ok (0m0.013s 0m0.001s) 239. OFPT_FLOW_MOD - OF1.2 - set-field nd_target, nd_sll (ofp-print.at:1045): ok (0m0.006s 0m0.009s) 240. OFPT_FLOW_MOD - OF1.3 - meter (ofp-print.at:1063): ok (0m0.010s 0m0.004s) 241. OFPT_FLOW reply - OF1.2 - set-field ip_src (ofp-print.at:1074): ok (0m0.013s 0m0.001s) 242. OFPT_FLOW reply - OF1.2 - set-field ip_dst (ofp-print.at:1091): ok (0m0.014s 0m0.000s) 243. OFPT_FLOW reply - OF1.2 - set-field sctp_src (ofp-print.at:1108): ok (0m0.011s 0m0.003s) 244. OFPT_FLOW reply - OF1.2 - set-field sctp_dst (ofp-print.at:1125): ok (0m0.009s 0m0.006s) 245. OFPT_PORT_MOD - OF1.0 (ofp-print.at:1142): ok (0m0.006s 0m0.009s) 246. OFPT_PORT_MOD - OF1.1 (ofp-print.at:1155): ok (0m0.007s 0m0.007s) 247. OFPT_PORT_MOD - OF1.2 (ofp-print.at:1169): ok (0m0.014s 0m0.000s) 248. OFPT_PORT_MOD - OF1.3 (ofp-print.at:1183): ok (0m0.014s 0m0.000s) 249. OFPT_PORT_MOD - OF1.4 (ofp-print.at:1197): ok (0m0.014s 0m0.000s) 250. OFPT_TABLE_MOD - OF1.1 (ofp-print.at:1211): ok (0m0.014s 0m0.000s) 251. OFPT_TABLE_MOD - OF1.2 (ofp-print.at:1220): ok (0m0.014s 0m0.000s) 252. OFPT_TABLE_MOD - OF1.3 (ofp-print.at:1229): ok (0m0.010s 0m0.004s) 253. OFPT_TABLE_MOD - OF1.4 (ofp-print.at:1238): ok (0m0.014s 0m0.000s) 254. OFPST_DESC request (ofp-print.at:1247): ok (0m0.007s 0m0.007s) 255. OFPST_DESC reply (ofp-print.at:1254): ok (0m0.014s 0m0.000s) 256. OFPST_FLOW request - OF1.0 (ofp-print.at:1334): ok (0m0.010s 0m0.004s) 257. OFPST_FLOW request - OF1.2 (ofp-print.at:1346): ok (0m0.014s 0m0.000s) 258. OFPST_FLOW request - OF1.3 (ofp-print.at:1358): ok (0m0.010s 0m0.004s) 259. OFPST_FLOW request - OF1.5 (ofp-print.at:1370): ok (0m0.007s 0m0.007s) 260. OFPST_FLOW reply - OF1.0 (ofp-print.at:1382): ok (0m0.007s 0m0.008s) 261. OFPST_FLOW reply - OF1.2 (ofp-print.at:1426): ok (0m0.010s 0m0.005s) 262. OFPST_FLOW reply - OF1.5 (ofp-print.at:1461): ok (0m0.009s 0m0.006s) 263. OFPST_AGGREGATE request - OF1.0 (ofp-print.at:1487): ok (0m0.014s 0m0.000s) 264. OFPST_AGGREGATE request - OF1.2 (ofp-print.at:1499): ok (0m0.011s 0m0.003s) 265. OFPST_AGGREGATE request - OF1.3 (ofp-print.at:1511): ok (0m0.014s 0m0.000s) 266. OFPST_AGGREGATE request - OF1.5 (ofp-print.at:1523): ok (0m0.009s 0m0.005s) 267. OFPST_AGGREGATE reply - OF1.0 (ofp-print.at:1537): ok (0m0.013s 0m0.001s) 268. OFPST_AGGREGATE reply - OF1.2 (ofp-print.at:1548): ok (0m0.014s 0m0.000s) 269. OFPST_AGGREGATE reply - OF1.3 (ofp-print.at:1559): ok (0m0.010s 0m0.005s) 270. OFPST_AGGREGATE reply - OF1.5 (ofp-print.at:1570): ok (0m0.010s 0m0.004s) 271. OFPST_TABLE request - OF1.0 (ofp-print.at:1582): ok (0m0.010s 0m0.004s) 272. OFPST_TABLE request - OF1.1 (ofp-print.at:1589): ok (0m0.014s 0m0.000s) 273. OFPST_TABLE request - OF1.2 (ofp-print.at:1596): ok (0m0.010s 0m0.004s) 274. OFPST_TABLE request - OF1.3 (ofp-print.at:1603): ok (0m0.010s 0m0.004s) 275. OFPST_TABLE reply - OF1.0 (ofp-print.at:1610): ok (0m0.010s 0m0.004s) 276. OFPST_TABLE reply - OF1.2 (ofp-print.at:1628): ok (0m3.410s 0m1.447s) 277. OFPST_TABLE reply - OF1.3 (ofp-print.at:1685): ok (0m0.014s 0m0.001s) 278. OFPST_PORT request - 1.0 (ofp-print.at:1702): ok (0m0.011s 0m0.003s) 279. OFPST_PORT request - 1.1 (ofp-print.at:1712): ok (0m0.013s 0m0.001s) 280. OFPST_PORT request - 1.2 (ofp-print.at:1722): ok (0m0.010s 0m0.004s) 281. OFPST_PORT request - 1.3 (ofp-print.at:1732): ok (0m0.010s 0m0.004s) 282. OFPST_PORT reply - OF1.0 (ofp-print.at:1742): ok (0m0.014s 0m0.001s) 283. OFPST_PORT reply - OF1.2 (ofp-print.at:1785): ok (0m0.011s 0m0.003s) 284. OFPST_PORT reply - OF1.3 (ofp-print.at:1820): ok (0m0.010s 0m0.004s) 285. OFPST_PORT reply - OF1.4 (ofp-print.at:1859): ok (0m0.010s 0m0.004s) 286. OFPST_QUEUE request - OF1.0 (ofp-print.at:1879): ok (0m0.009s 0m0.005s) 287. OFPST_QUEUE request - OF1.1 (ofp-print.at:1889): ok (0m0.014s 0m0.000s) 288. OFPST_QUEUE request - OF1.2 (ofp-print.at:1899): ok (0m0.014s 0m0.000s) 289. OFPST_QUEUE request - OF1.3 (ofp-print.at:1909): ok (0m0.008s 0m0.006s) 290. OFPST_QUEUE reply - OF1.0 (ofp-print.at:1919): ok (0m0.010s 0m0.004s) 291. OFPST_QUEUE reply - OF1.1 (ofp-print.at:1946): ok (0m0.011s 0m0.003s) 292. OFPST_QUEUE reply - OF1.2 (ofp-print.at:1973): ok (0m0.014s 0m0.000s) 293. OFPST_QUEUE reply - OF1.3 (ofp-print.at:2000): ok (0m0.014s 0m0.000s) 294. OFPST_QUEUE reply - OF1.4 (ofp-print.at:2033): ok (0m0.010s 0m0.004s) 295. NXST_GROUP request - OF1.0 (ofp-print.at:2067): ok (0m0.010s 0m0.004s) 296. OFPST_GROUP request - OF1.1 (ofp-print.at:2076): ok (0m0.009s 0m0.005s) 297. NXST_GROUP reply - OF1.0 (ofp-print.at:2085): ok (0m0.014s 0m0.000s) 298. OFPST_GROUP reply - OF1.1 (ofp-print.at:2107): ok (0m0.010s 0m0.004s) 299. OFPST_GROUP reply - OF1.3 (ofp-print.at:2127): ok (0m0.006s 0m0.009s) 300. NXST_GROUP_DESC request - OF1.0 (ofp-print.at:2149): ok (0m0.010s 0m0.004s) 301. OFPST_GROUP_DESC request - OF1.1 (ofp-print.at:2158): ok (0m0.015s 0m0.000s) 302. OFPST_GROUP_DESC request - OF1.5 (ofp-print.at:2166): ok (0m0.014s 0m0.000s) 303. NXST_GROUP_DESC reply - OF1.0 (ofp-print.at:2175): ok (0m0.009s 0m0.006s) 304. OFPST_GROUP_DESC reply - OF1.1 (ofp-print.at:2200): ok (0m0.006s 0m0.009s) 305. OFPST_GROUP_DESC reply - OF1.5 (ofp-print.at:2217): ok (0m0.014s 0m0.000s) 306. NXST_GROUP_FEATURES request (ofp-print.at:2242): ok (0m0.014s 0m0.000s) 307. OFPST_GROUP_FEATURES request (ofp-print.at:2250): ok (0m0.011s 0m0.003s) 308. NXST_GROUP_FEATURES reply (ofp-print.at:2258): ok (0m0.009s 0m0.006s) 309. OFPST_GROUP_FEATURES reply (ofp-print.at:2285): ok (0m0.011s 0m0.004s) 310. OFPST_PORT_DESC request - OF1.0 (ofp-print.at:2312): ok (0m0.009s 0m0.005s) 311. OFPST_PORT_DESC request - OF1.5 (ofp-print.at:2319): ok (0m0.011s 0m0.003s) 312. OFPST_PORT_DESC reply - OF1.0 (ofp-print.at:2328): ok (0m0.010s 0m0.004s) 313. OFPST_PORT_DESC reply - OF1.4 (ofp-print.at:2347): ok (0m0.006s 0m0.009s) 314. OFPT_METER_MOD request - OF1.3 (ofp-print.at:2368): ok (0m0.014s 0m0.000s) 315. OFPT_METER_MOD request - bad band - OF1.3 (ofp-print.at:2379): ok (0m0.014s 0m0.000s) 316. OFPT_METER_MOD request - bad command - OF1.3 (ofp-print.at:2391): ok (0m0.010s 0m0.004s) 317. OFPT_METER_MOD request - bad flags - OF1.3 (ofp-print.at:2401): ok (0m0.010s 0m0.005s) 318. OFPST_METER request - OF1.3 (ofp-print.at:2413): ok (0m0.010s 0m0.004s) 319. OFPST_METER_CONFIG request - OF1.3 (ofp-print.at:2420): ok (0m0.009s 0m0.005s) 320. OFPST_METER_FEATURES request - OF1.3 (ofp-print.at:2427): ok (0m0.014s 0m0.000s) 321. OFPST_METER_FEATURES reply - OF1.3 (ofp-print.at:2434): ok (0m0.010s 0m0.004s) 322. OFPST_METER_CONFIG reply - OF1.3 (ofp-print.at:2447): ok (0m0.010s 0m0.004s) 323. OFPST_METER reply - OF1.3 (ofp-print.at:2467): ok (0m0.007s 0m0.007s) 324. OFPST_TABLE_FEATURES request - OF1.3 (ofp-print.at:2491): ok (0m0.010s 0m0.005s) 325. OFPT_BARRIER_REQUEST - OF1.0 (ofp-print.at:2657): ok (0m0.006s 0m0.008s) 326. OFPT_BARRIER_REQUEST - OF1.1 (ofp-print.at:2664): ok (0m0.011s 0m0.003s) 327. OFPT_BARRIER_REQUEST - OF1.2 (ofp-print.at:2671): ok (0m0.013s 0m0.001s) 328. OFPT_BARRIER_REQUEST - OF1.3 (ofp-print.at:2678): ok (0m0.014s 0m0.000s) 329. OFPT_BARRIER_REPLY - OF1.0 (ofp-print.at:2685): ok (0m0.010s 0m0.004s) 330. OFPT_BARRIER_REPLY - OF1.1 (ofp-print.at:2692): ok (0m0.007s 0m0.007s) 331. OFPT_BARRIER_REPLY - OF1.2 (ofp-print.at:2699): ok (0m0.014s 0m0.000s) 332. OFPT_BARRIER_REPLY - OF1.3 (ofp-print.at:2706): ok (0m0.011s 0m0.003s) 333. OFPT_QUEUE_GET_CONFIG_REQUEST - OF1.0 (ofp-print.at:2713): ok (0m0.014s 0m0.001s) 334. OFPT_QUEUE_GET_CONFIG_REQUEST - OF1.2 (ofp-print.at:2720): ok (0m0.010s 0m0.004s) 335. OFPST_QUEUE_DESC request - OF1.4 (ofp-print.at:2728): ok (0m0.009s 0m0.005s) 336. OFPT_QUEUE_GET_CONFIG_REPLY - OF1.0 (ofp-print.at:2737): ok (0m0.011s 0m0.003s) 337. OFPT_QUEUE_GET_CONFIG_REPLY - OF1.1 (ofp-print.at:2752): ok (0m0.013s 0m0.001s) 338. OFPT_QUEUE_GET_CONFIG_REPLY - OF1.2 (ofp-print.at:2767): ok (0m0.011s 0m0.003s) 339. OFPT_QUEUE_GET_CONFIG_REPLY - OF1.3 (ofp-print.at:2782): ok (0m0.013s 0m0.001s) 340. OFPST_QUEUE_DESC reply - OF1.4 (ofp-print.at:2798): ok (0m0.011s 0m0.003s) 341. OFPT_SET_ASYNC - OF1.3 (ofp-print.at:2817): ok (0m0.014s 0m0.001s) 342. OFPT_ROLE_REQUEST - OF1.2 (ofp-print.at:2847): ok (0m0.011s 0m0.003s) 343. OFPT_ROLE_REQUEST - nochange - OF1.2 (ofp-print.at:2857): ok (0m0.009s 0m0.005s) 344. NXT_ROLE_REQUEST (ofp-print.at:2867): ok (0m0.011s 0m0.003s) 345. OFPT_ROLE_REPLY - OF1.2 (ofp-print.at:2877): ok (0m0.013s 0m0.001s) 346. NXT_ROLE_REPLY (ofp-print.at:2887): ok (0m0.010s 0m0.004s) 347. OFP_ROLE_STATUS - primary, experimenter - OF1.3 (ofp-print.at:2897): ok (0m0.009s 0m0.005s) 348. OFP_ROLE_STATUS - primary, config - OF1.3 (ofp-print.at:2907): ok (0m0.014s 0m0.000s) 349. OFP_ROLE_STATUS - primary, config,generation - OF1.3 (ofp-print.at:2917): ok (0m0.010s 0m0.005s) 350. OFP_ROLE_STATUS - primary, experimenter - OF1.4 (ofp-print.at:2927): ok (0m0.014s 0m0.000s) 351. OFP_ROLE_STATUS - primary, config - OF1.4 (ofp-print.at:2937): ok (0m0.014s 0m0.000s) 352. OFP_ROLE_STATUS - primary, config,generation - OF1.4 (ofp-print.at:2947): ok (0m0.014s 0m0.000s) 353. OFP_REQUESTFORWARD - OF1.4 (ofp-print.at:2957): ok (0m0.007s 0m0.007s) 354. OFP_REQUESTFORWARD - OF1.4 (ofp-print.at:2969): ok (0m0.010s 0m0.004s) 355. OFP_REQUESTFORWARD - OF1.4 (ofp-print.at:2981): ok (0m0.011s 0m0.003s) 356. OFP_REQUESTFORWARD - OF1.4 (ofp-print.at:2992): ok (0m0.014s 0m0.000s) 357. NXT_REQUESTFORWARD - inner NXT_GROUP_MOD (ofp-print.at:3003): ok (0m0.011s 0m0.004s) 358. NXT_REQUESTFORWARD - inner OFPT_GROUP_MOD - OF1.1 (ofp-print.at:3030): ok (0m0.013s 0m0.001s) 359. ONFT_REQUESTFORWARD - inner OFPT_METER_MOD - OF1.3 (ofp-print.at:3057): ok (0m0.014s 0m0.000s) 360. NXT_SET_PACKET_IN (ofp-print.at:3079): ok (0m0.006s 0m0.009s) 361. NXT_PACKET_IN (ofp-print.at:3089): ok (0m0.010s 0m0.004s) 362. NXT_PACKET_IN, with hex output of packet data (ofp-print.at:3110): ok (0m0.010s 0m0.005s) 363. NX_PACKET_IN2 (ofp-print.at:3135): ok (0m0.014s 0m0.000s) 364. NXT_SET_ASYNC_CONFIG (ofp-print.at:3158): ok (0m0.010s 0m0.004s) 365. OFPT_SET_ASYNC_CONFIG (ofp-print.at:3186): ok (0m0.014s 0m0.000s) 366. OFPT_SET_ASYNC_CONFIG - invalid mask - OF1.4 (ofp-print.at:3213): ok (0m0.018s 0m0.009s) 367. OFPT_SET_ASYNC_CONFIG - unsupported configuration - OF1.4 (ofp-print.at:3232): ok (0m0.023s 0m0.003s) 368. NXT_SET_CONTROLLER_ID (ofp-print.at:3251): ok (0m0.003s 0m0.011s) 369. NXT_FLOW_MONITOR_CANCEL (ofp-print.at:3261): ok (0m0.010s 0m0.004s) 370. NXT_FLOW_MONITOR_PAUSED (ofp-print.at:3271): ok (0m0.011s 0m0.003s) 371. NXT_FLOW_MONITOR_RESUMED (ofp-print.at:3280): ok (0m0.013s 0m0.001s) 372. NXT_SET_FLOW_FORMAT (ofp-print.at:3289): ok (0m0.011s 0m0.003s) 373. NXT_FLOW_MOD, low verbosity (ofp-print.at:3300): ok (0m0.013s 0m0.001s) 374. NXT_FLOW_MOD, high verbosity (ofp-print.at:3316): ok (0m0.014s 0m0.000s) 375. NXT_GROUP_MOD add - OF1.0 (ofp-print.at:3330): ok (0m0.011s 0m0.003s) 376. OFPT_GROUP_MOD - OF1.1 (ofp-print.at:3354): ok (0m0.013s 0m0.001s) 377. OFPT_GROUP_MOD add - OF1.5 (ofp-print.at:3370): ok (0m0.014s 0m0.000s) 378. OFPT_GROUP_MOD insert bucket - OF1.5 (ofp-print.at:3391): ok (0m0.006s 0m0.009s) 379. NXT_FLOW_REMOVED (ofp-print.at:3409): ok (0m0.014s 0m0.000s) 380. NXT_FLOW_MOD_TABLE_ID (ofp-print.at:3425): ok (0m0.011s 0m0.003s) 381. NXT_RESUME (ofp-print.at:3435): ok (0m0.014s 0m0.000s) 382. NXST_FLOW request (ofp-print.at:3447): ok (0m0.014s 0m0.000s) 383. NXST_FLOW reply (ofp-print.at:3457): ok (0m0.016s 0m0.000s) 384. NXST_AGGREGATE request (ofp-print.at:3611): ok (0m0.014s 0m0.000s) 385. NXST_AGGREGATE reply (ofp-print.at:3621): ok (0m0.013s 0m0.001s) 386. NXST_FLOW_MONITOR request (ofp-print.at:3632): ok (0m0.013s 0m0.001s) 387. NXST_FLOW_MONITOR reply (ofp-print.at:3645): ok (0m0.011s 0m0.003s) 388. OFPT_BUNDLE_CONTROL - atomic OPEN_REQUEST (ofp-print.at:3660): ok (0m0.014s 0m0.000s) 389. OFPT_BUNDLE_CONTROL - ordered OPEN_REQUEST (ofp-print.at:3671): ok (0m0.013s 0m0.001s) 390. OFPT_BUNDLE_CONTROL - atomic ordered OPEN_REQUEST (ofp-print.at:3682): ok (0m0.014s 0m0.000s) 391. OFPT_BUNDLE_CONTROL - OPEN_REPLY (ofp-print.at:3693): ok (0m0.014s 0m0.000s) 392. OFPT_BUNDLE_CONTROL - CLOSE_REQUEST (ofp-print.at:3704): ok (0m0.014s 0m0.000s) 393. OFPT_BUNDLE_CONTROL - CLOSE_REPLY (ofp-print.at:3715): ok (0m0.007s 0m0.007s) 394. OFPT_BUNDLE_CONTROL - COMMIT_REQUEST (ofp-print.at:3726): ok (0m0.013s 0m0.001s) 395. OFPT_BUNDLE_CONTROL - COMMIT_REPLY (ofp-print.at:3737): ok (0m0.014s 0m0.000s) 396. OFPT_BUNDLE_CONTROL - DISCARD_REQUEST (ofp-print.at:3748): ok (0m0.011s 0m0.004s) 397. OFPT_BUNDLE_CONTROL - DISCARD_REPLY (ofp-print.at:3759): ok (0m0.014s 0m0.000s) 398. OFPT_BUNDLE_ADD_MESSAGE - verify xid (ofp-print.at:3770): ok (0m0.010s 0m0.004s) 399. OFPT_BUNDLE_ADD_MESSAGE - reject OFPT_HELLO (ofp-print.at:3782): ok (0m0.012s 0m0.007s) 400. OFPT_BUNDLE_ADD_MESSAGE - FLOW_MOD (ofp-print.at:3796): ok (0m0.010s 0m0.005s) 401. OFPT_BUNDLE_ADD_MESSAGE - PORT_MOD (ofp-print.at:3816): ok (0m0.014s 0m0.000s) 402. OFPT_BUNDLE_ADD_MESSAGE - GROUP_MOD (ofp-print.at:3833): ok (0m0.014s 0m0.000s) 403. OFPT_BUNDLE_ADD_MESSAGE - PACKET_OUT (ofp-print.at:3857): ok (0m0.006s 0m0.009s) 404. NXST_IPFIX_BRIDGE - request (ofp-print.at:3876): ok (0m0.013s 0m0.001s) 405. NXST_IPFIX_BRIDGE - reply (ofp-print.at:3886): ok (0m0.010s 0m0.004s) 406. NXST_IPFIX_FLOW - request (ofp-print.at:3909): ok (0m0.011s 0m0.003s) 407. NXST_IPFIX_FLOW - reply (ofp-print.at:3919): ok (0m0.014s 0m0.000s) 408. NXT_CT_FLUSH_ZONE (ofp-print.at:3955): ok (0m0.010s 0m0.004s) 409. encoding hellos (ofp-util.at:3): ok (0m0.074s 0m0.028s) 410. parsing key-value pairs (ofp-util.at:54): ok (0m0.045s 0m0.013s) 411. OFPT_ERROR with type OFPET_HELLO_FAILED - OF1.0 (ofp-errors.at:3): ok (0m0.014s 0m0.000s) 412. OFPT_ERROR with type OFPET_HELLO_FAILED - OF1.1 (ofp-errors.at:11): ok (0m0.009s 0m0.006s) 413. OFPT_ERROR with type OFPET_BAD_REQUEST - OF1.0 (ofp-errors.at:19): ok (0m0.014s 0m0.000s) 414. OFPT_ERROR prints type of truncated inner messages (ofp-errors.at:29): ok (0m0.011s 0m0.003s) 415. OFPT_ERROR with code OFPBMC_BAD_PREREQ - OF1.0 (ofp-errors.at:46): ok (0m0.010s 0m0.005s) 416. OFPT_ERROR with code OFPBMC_BAD_PREREQ - OF1.1 (ofp-errors.at:54): ok (0m0.014s 0m0.000s) 417. OFPT_ERROR with type OFPFMFC_OVERLAP - OF1.0 (ofp-errors.at:64): ok (0m0.014s 0m0.001s) 418. OFPT_ERROR with type OFPBIC_UNSUP_INST - OF1.1 (ofp-errors.at:73): ok (0m0.009s 0m0.005s) 419. OFPT_ERROR with type OFPBIC_DUP_INST - OF1.4 (ofp-errors.at:83): ok (0m0.010s 0m0.004s) 420. encoding OFPBIC_* experimenter errors (ofp-errors.at:97): ok (0m0.018s 0m0.007s) 421. encoding errors extension that became official (ofp-errors.at:117): ok (0m0.023s 0m0.013s) 422. decoding OFPBIC_* experimenter errors (ofp-errors.at:136): ok (0m0.031s 0m0.005s) 423. decoding experimenter errors (ofp-errors.at:152): ok (0m0.058s 0m0.011s) 424. encoding experimenter errors (ofp-errors.at:184): ok (0m0.081s 0m0.014s) 425. ovs-ofctl parse-flows choice of protocol (ovs-ofctl.at:3): ok (0m1.889s 0m0.794s) 426. ovs-ofctl parse-flows (OpenFlow 1.0) (ovs-ofctl.at:182): ok (0m0.023s 0m0.003s) 427. ovs-ofctl parse-flows (OpenFlow 1.1) (ovs-ofctl.at:251): ok (0m0.022s 0m0.002s) 428. ovs-ofctl parse-flows (OpenFlow 1.2) (ovs-ofctl.at:292): ok (0m0.021s 0m0.003s) 429. ovs-ofctl parse-flow with invalid mask (ovs-ofctl.at:345): ok (0m0.203s 0m0.062s) 430. ovs-ofctl action inconsistency (OpenFlow 1.1) (ovs-ofctl.at:384): ok (0m0.111s 0m0.036s) 431. ovs-ofctl parse-flows (skb_priority) (ovs-ofctl.at:393): ok (0m0.013s 0m0.001s) 432. ovs-ofctl parse-flows (NXM) (ovs-ofctl.at:405): ok (0m0.025s 0m0.002s) 433. ovs-ofctl -F nxm parse-flows (ovs-ofctl.at:538): ok (0m0.015s 0m0.010s) 434. ovs-ofctl -F nxm -mmm parse-flows (ovs-ofctl.at:617): ok (0m0.019s 0m0.008s) 435. ovs-ofctl parse-nx-match (ovs-ofctl.at:698): ok (0m0.033s 0m0.007s) 436. ovs-ofctl parse-ofp10-match (ovs-ofctl.at:1312): ok (0m0.020s 0m0.005s) 437. ovs-ofctl parse-ofp11-match (ovs-ofctl.at:1529): ok (0m0.017s 0m0.009s) 438. ovs-ofctl parse-nx-match loose (ovs-ofctl.at:1855): ok (0m0.020s 0m0.006s) 439. ovs-ofctl parse-oxm (OpenFlow 1.2) (ovs-ofctl.at:1876): ok (0m0.035s 0m0.004s) 440. ovs-ofctl parse-oxm (OpenFlow 1.3) (ovs-ofctl.at:2370): ok (0m0.013s 0m0.002s) 441. ovs-ofctl parse-oxm (OpenFlow 1.5) (ovs-ofctl.at:2393): ok (0m0.014s 0m0.001s) 442. ovs-ofctl parse-oxm loose (ovs-ofctl.at:2458): ok (0m0.023s 0m0.002s) 443. experimenter OXM encoding (ovs-ofctl.at:2479): ok (0m0.017s 0m0.008s) 444. check TCP flags expression in OXM and NXM (ovs-ofctl.at:2527): ok (0m0.044s 0m0.022s) 445. ovs-ofctl check-vlan (ovs-ofctl.at:2559): ok (0m0.078s 0m0.028s) 446. ovs-ofctl -F option and NXM features (ovs-ofctl.at:2656): ok (0m0.115s 0m0.035s) 447. ovs-ofctl -F option with flow_mods (ovs-ofctl.at:2671): ok (0m0.142s 0m0.012s) 448. ovs-ofctl dump-flows honors -F option (ovs-ofctl.at:2683): ok (0m0.129s 0m0.022s) 449. ovs-ofctl dump-flows rejects bad -F option (ovs-ofctl.at:2695): ok (0m0.112s 0m0.025s) 450. ovs-ofctl add-flow reports non-normalized flows (ovs-ofctl.at:2704): ok (0m0.086s 0m0.054s) 451. ovs-ofctl dump-flows with sorting (ovs-ofctl.at:2718): ok (0m0.210s 0m0.057s) 452. ovs-ofctl dump-flows --names (ovs-ofctl.at:2821): ok (0m0.163s 0m0.051s) 453. ovs-ofctl diff-flows (ovs-ofctl.at:2858): ok (0m11.128s 0m4.164s) 454. ovs-ofctl diff-flows - tunnel metadata (ovs-ofctl.at:2882): ok (0m0.128s 0m0.027s) 455. ovs-ofctl diff-flows - suppress false differences (ovs-ofctl.at:2918): ok (0m0.125s 0m0.053s) 456. ovs-ofctl -F and -O interaction (ovs-ofctl.at:2935): ok (0m0.053s 0m0.012s) 457. ovs-ofctl ofp-parse (ovs-ofctl.at:2956): ok (0m0.028s 0m0.000s) 458. tcp flags - filtering (ovs-ofctl.at:2974): ok (0m0.215s 0m0.046s) 459. ovs-ofctl rule with importance (ovs-ofctl.at:3043): ok (0m0.180s 0m0.043s) 460. ovs-ofctl replace-flows with importance (ovs-ofctl.at:3070): ok (0m0.202s 0m0.040s) 461. ovs-ofctl replace-flows with --bundle (ovs-ofctl.at:3089): ok (0m0.196s 0m0.048s) 462. ovs-ofctl ct-flush-zone (ovs-ofctl.at:3217): ok (0m0.089s 0m0.049s) 463. ovs-ofctl snoop (ovs-ofctl.at:3230): ok (0m0.273s 0m0.067s) 464. ovs-ofctl show-flows - Oversized flow (ovs-ofctl.at:3257): ok (0m3.295s 0m1.370s) 465. fuzz regression - flow_extract_fuzzer-5112775280951296 (fuzz-regression-list.at:1): ok (0m0.008s 0m0.000s) 466. fuzz regression - flow_extract_fuzzer-5457710546944000 (fuzz-regression-list.at:2): ok (0m0.008s 0m0.000s) 467. fuzz regression - json_parser_fuzzer-4790908707930112 (fuzz-regression-list.at:3): ok (0m0.003s 0m0.005s) 468. fuzz regression - ofp_print_fuzzer-4584019764183040 (fuzz-regression-list.at:4): ok (0m0.009s 0m0.000s) 469. fuzz regression - ofp_print_fuzzer-4730143510626304 (fuzz-regression-list.at:5): ok (0m0.008s 0m0.000s) 470. fuzz regression - ofp_print_fuzzer-4854119633256448 (fuzz-regression-list.at:6): ok (0m0.003s 0m0.005s) 471. fuzz regression - ofp_print_fuzzer-5070973479944192 (fuzz-regression-list.at:7): ok (0m0.003s 0m0.005s) 472. fuzz regression - ofp_print_fuzzer-5072291707748352 (fuzz-regression-list.at:8): ok (0m0.003s 0m0.005s) 473. fuzz regression - ofp_print_fuzzer-5147430386401280 (fuzz-regression-list.at:9): ok (0m0.009s 0m0.000s) 474. fuzz regression - ofp_print_fuzzer-5168455220199424 (fuzz-regression-list.at:10): ok (0m0.008s 0m0.000s) 475. fuzz regression - ofp_print_fuzzer-5190507327127552 (fuzz-regression-list.at:11): ok (0m0.008s 0m0.000s) 476. fuzz regression - ofp_print_fuzzer-5204186701496320 (fuzz-regression-list.at:12): ok (0m0.008s 0m0.000s) 477. fuzz regression - ofp_print_fuzzer-5394482341085184 (fuzz-regression-list.at:13): ok (0m0.007s 0m0.001s) 478. fuzz regression - ofp_print_fuzzer-5395207246839808 (fuzz-regression-list.at:14): ok (0m0.007s 0m0.001s) 479. fuzz regression - ofp_print_fuzzer-5647458888581120 (fuzz-regression-list.at:15): ok (0m0.008s 0m0.000s) 480. fuzz regression - ofp_print_fuzzer-5674119268925440 (fuzz-regression-list.at:16): ok (0m0.003s 0m0.005s) 481. fuzz regression - ofp_print_fuzzer-5674419757252608 (fuzz-regression-list.at:17): ok (0m0.003s 0m0.005s) 482. fuzz regression - ofp_print_fuzzer-5677588436484096 (fuzz-regression-list.at:18): ok (0m0.008s 0m0.000s) 483. fuzz regression - ofp_print_fuzzer-5706562554298368 (fuzz-regression-list.at:19): ok (0m0.009s 0m0.000s) 484. fuzz regression - ofp_print_fuzzer-5722747668791296 (fuzz-regression-list.at:20): ok (0m0.009s 0m0.000s) 485. fuzz regression - ofp_print_fuzzer-6285128790704128 (fuzz-regression-list.at:21): ok (0m0.009s 0m0.000s) 486. fuzz regression - ofp_print_fuzzer-6470117922701312 (fuzz-regression-list.at:22): ok (0m0.003s 0m0.005s) 487. fuzz regression - ofp_print_fuzzer-6502620041576448 (fuzz-regression-list.at:23): ok (0m0.003s 0m0.005s) 488. fuzz regression - ofp_print_fuzzer-6540965472632832 (fuzz-regression-list.at:24): ok (0m0.008s 0m0.000s) 489. OVS datapath key parsing and formatting - valid forms (odp.at:3): ok (0m0.093s 0m0.033s) 490. OVS datapath wildcarded key parsing and formatting - valid forms (odp.at:112): ok (0m0.064s 0m0.023s) 491. OVS datapath wildcarded key filtering. (odp.at:199): ok (0m0.147s 0m0.040s) 492. OVS datapath actions parsing and formatting - valid forms (odp.at:264): ok (0m0.023s 0m0.000s) 493. OVS datapath actions parsing and formatting - invalid forms (odp.at:394): ok (0m0.011s 0m0.006s) 494. OVS datapath actions parsing and formatting - userdata overflow (odp.at:402): ok (0m0.141s 0m0.028s) 495. OVS datapath actions parsing and formatting - actions too long (odp.at:439): ok (0m23.556s 0m9.177s) 496. OVS datapath keys parsing and formatting - keys too long (odp.at:453): ok (0m47.218s 0m19.179s) 497. OVS datapath keys parsing and formatting - 33 nested encap (odp.at:467): ok (0m0.011s 0m0.005s) 498. MPLS xlate action (mpls-xlate.at:3): ok (0m0.702s 0m0.221s) 499. MPLS xlate action - patch-port (mpls-xlate.at:147): ok (0m0.199s 0m0.045s) 500. MPLS xlate action - group bucket (mpls-xlate.at:191): ok (0m0.191s 0m0.054s) 501. Encap Decap MPLS xlate action (mpls-xlate.at:211): ok (0m0.230s 0m0.091s) 502. Encap MPLS xlate action - max labels (mpls-xlate.at:268): ok (0m0.205s 0m0.039s) 503. Decap MPLS xlate action - max labels (mpls-xlate.at:299): ok (0m0.156s 0m0.087s) 504. modulo_n multipath link selection (multipath.at:10): ok (0m2.313s 0m0.003s) 505. hash_threshold multipath link selection (multipath.at:78): ok (0m2.392s 0m0.001s) 506. hrw multipath link selection (multipath.at:146): ok (0m3.223s 0m0.010s) 507. iter_hash multipath link selection (multipath.at:214): ok (0m1.676s 0m0.000s) 508. modulo_n multipath symmetric_l3 link selection (multipath.at:282): ok (0m1.611s 0m0.003s) 509. hash_threshold multipath symmetric_l3 link selection (multipath.at:350): ok (0m1.633s 0m0.000s) 510. hrw multipath symmetric_l3 link selection (multipath.at:418): ok (0m2.363s 0m0.013s) 511. iter_hash symmetric_l3 multipath link selection (multipath.at:486): ok (0m1.775s 0m0.003s) 512. learning action - parsing and formatting (learn.at:3): ok (0m0.011s 0m0.006s) 513. learning action - parsing and formatting - illegal in_port_oxm (learn.at:28): ok (0m0.015s 0m0.006s) 514. learning action - parsing and formatting - OXM (learn.at:37): ok (0m0.014s 0m0.003s) 515. learning action - examples (learn.at:50): ok (0m0.015s 0m0.000s) 516. learning action - satisfied prerequisites (learn.at:68): ok (0m0.015s 0m0.000s) 517. learning action - invalid prerequisites (learn.at:83): ok (0m0.038s 0m0.000s) 518. learning action - too-long immediate value (learn.at:98): ok (0m0.022s 0m0.006s) 519. learning action - standard VLAN+MAC learning (learn.at:112): ok (0m0.231s 0m0.059s) 520. learning action - learn refreshes hard_age (learn.at:178): ok (0m1.296s 0m0.377s) 521. learning action - TCPv4 port learning (learn.at:244): ok (0m0.139s 0m0.065s) 522. learning action - TCPv6 port learning (learn.at:269): ok (0m0.140s 0m0.063s) 523. learning action - self-modifying flow (learn.at:300): ok (0m0.224s 0m0.068s) 524. learning action - self-modifying flow with idle_timeout (learn.at:342): ok (0m0.374s 0m0.127s) 525. learning action - self-modifying flow with hard_timeout (learn.at:400): ok (0m0.410s 0m0.109s) 526. learning action - fin_timeout feature (learn.at:496): ok (0m0.101s 0m0.051s) 527. learning action - delete_learned feature (learn.at:510): ok (0m0.260s 0m0.081s) 528. learning action - delete_learned/limit with packet (learn.at:628): ok (0m0.173s 0m0.039s) 529. learning action - limit (learn.at:666): ok (0m0.216s 0m0.050s) 530. learning action - limit result_dst (learn.at:705): ok (0m0.168s 0m0.051s) 531. learning action - different limits (learn.at:738): ok (0m0.610s 0m0.196s) 532. unix vconn - refuse connection (vconn.at:20): ok (0m0.007s 0m0.007s) 533. unix vconn - accept then close (vconn.at:20): ok (0m0.006s 0m0.007s) 534. unix vconn - read hello (vconn.at:20): ok (0m0.007s 0m0.005s) 535. unix vconn - send plain hello (vconn.at:20): ok (0m0.013s 0m0.000s) 536. unix vconn - send long hello (vconn.at:20): ok (0m0.012s 0m0.001s) 537. unix vconn - send echo hello (vconn.at:20): ok (0m0.007s 0m0.005s) 538. unix vconn - send short hello (vconn.at:20): ok (0m0.013s 0m0.000s) 539. unix vconn - send invalid version hello (vconn.at:20): ok (0m0.007s 0m0.006s) 540. tcp vconn - refuse connection (vconn.at:21): ok (0m0.007s 0m0.005s) 541. tcp vconn - accept then close (vconn.at:21): ok (0m0.007s 0m0.005s) 542. tcp vconn - read hello (vconn.at:21): ok (0m0.011s 0m0.001s) 543. tcp vconn - send plain hello (vconn.at:21): ok (0m0.012s 0m0.000s) 544. tcp vconn - send long hello (vconn.at:21): ok (0m0.007s 0m0.005s) 545. tcp vconn - send echo hello (vconn.at:21): ok (0m0.011s 0m0.003s) 546. tcp vconn - send short hello (vconn.at:21): ok (0m0.008s 0m0.006s) 547. tcp vconn - send invalid version hello (vconn.at:21): ok (0m0.007s 0m0.005s) 548. ssl vconn - refuse connection (vconn.at:22): ok (0m0.015s 0m0.011s) 549. ssl vconn - accept then close (vconn.at:22): ok (0m0.029s 0m0.000s) 550. ssl vconn - read hello (vconn.at:22): ok (0m0.030s 0m0.008s) 551. ssl vconn - send plain hello (vconn.at:22): ok (0m0.035s 0m0.002s) 552. ssl vconn - send long hello (vconn.at:22): ok (0m0.022s 0m0.015s) 553. ssl vconn - send echo hello (vconn.at:22): ok (0m0.032s 0m0.005s) 554. ssl vconn - send short hello (vconn.at:22): ok (0m0.036s 0m0.000s) 555. ssl vconn - send invalid version hello (vconn.at:22): ok (0m0.019s 0m0.017s) 556. components of "/usr/lib" are "/usr", "lib" (file_name.at:13): ok (0m0.015s 0m0.000s) 557. components of "/usr/" are "/", "usr" (file_name.at:14): ok (0m0.011s 0m0.004s) 558. components of "usr" are ".", "usr" (file_name.at:15): ok (0m0.016s 0m0.000s) 559. components of "/" are "/", "/" (file_name.at:16): ok (0m0.011s 0m0.004s) 560. components of "." are ".", "." (file_name.at:17): ok (0m0.012s 0m0.003s) 561. components of ".." are ".", ".." (file_name.at:18): ok (0m0.011s 0m0.005s) 562. components of "//" are "//", "//" (file_name.at:19): ok (0m0.013s 0m0.001s) 563. components of "//foo" are "//", "foo" (file_name.at:20): ok (0m0.013s 0m0.001s) 564. components of "" are ".", "." (file_name.at:21): ok (0m0.014s 0m0.001s) 565. components of "dir/file" are "dir", "file" (file_name.at:24): ok (0m0.010s 0m0.004s) 566. components of "dir/file/" are "dir", "file" (file_name.at:25): ok (0m0.010s 0m0.004s) 567. components of "dir/file//" are "dir", "file" (file_name.at:26): ok (0m0.014s 0m0.000s) 568. components of "///foo" are "/", "foo" (file_name.at:27): ok (0m0.009s 0m0.005s) 569. follow_symlinks - relative symlinks (file_name.at:37): ok (0m0.041s 0m0.008s) 570. follow_symlinks - absolute symlinks (file_name.at:54): ok (0m0.053s 0m0.008s) 571. follow_symlinks - symlinks to directories (file_name.at:71): ok (0m0.031s 0m0.010s) 572. follow_symlinks - nonexistent targets (file_name.at:84): ok (0m0.036s 0m0.000s) 573. follow_symlinks - regular files (file_name.at:92): ok (0m0.013s 0m0.002s) 574. follow_symlinks - device targets (file_name.at:97): ok (0m0.020s 0m0.009s) 575. follow_symlinks - nonexistent files (file_name.at:106): ok (0m0.040s 0m0.005s) 576. follow_symlinks - symlink loop (file_name.at:114): ok (0m0.022s 0m0.008s) 577. wikipedia test vector 1 (aes128.at:10): ok (0m0.013s 0m0.000s) 578. wikipedia test vector 2 (aes128.at:16): ok (0m0.012s 0m0.001s) 579. NIST KAT ECBKeySbox128e vector 0 (aes128.at:22): ok (0m0.014s 0m0.000s) 580. NIST KAT ECBKeySbox128e vector 1 (aes128.at:28): ok (0m0.007s 0m0.007s) 581. NIST KAT ECBKeySbox128e vector 2 (aes128.at:34): ok (0m0.010s 0m0.004s) 582. NIST KAT ECBKeySbox128e vector 3 (aes128.at:40): ok (0m0.007s 0m0.007s) 583. NIST KAT ECBKeySbox128e vector 4 (aes128.at:46): ok (0m0.013s 0m0.000s) 584. NIST KAT ECBKeySbox128e vector 5 (aes128.at:52): ok (0m0.009s 0m0.004s) 585. NIST KAT ECBKeySbox128e vector 6 (aes128.at:58): ok (0m0.014s 0m0.000s) 586. NIST KAT ECBKeySbox128e vector 7 (aes128.at:64): ok (0m0.014s 0m0.000s) 587. NIST KAT ECBKeySbox128e vector 8 (aes128.at:70): ok (0m0.010s 0m0.004s) 588. NIST KAT ECBKeySbox128e vector 9 (aes128.at:76): ok (0m0.007s 0m0.007s) 589. NIST KAT ECBKeySbox128e vector 10 (aes128.at:82): ok (0m0.009s 0m0.004s) 590. NIST KAT ECBKeySbox128e vector 11 (aes128.at:88): ok (0m0.014s 0m0.000s) 591. NIST KAT ECBKeySbox128e vector 12 (aes128.at:94): ok (0m0.013s 0m0.001s) 592. NIST KAT ECBKeySbox128e vector 13 (aes128.at:100): ok (0m0.010s 0m0.005s) 593. NIST KAT ECBKeySbox128e vector 14 (aes128.at:106): ok (0m0.014s 0m0.000s) 594. NIST KAT ECBKeySbox128e vector 15 (aes128.at:112): ok (0m0.014s 0m0.000s) 595. NIST KAT ECBKeySbox128e vector 16 (aes128.at:118): ok (0m0.013s 0m0.001s) 596. NIST KAT ECBKeySbox128e vector 17 (aes128.at:124): ok (0m0.007s 0m0.007s) 597. NIST KAT ECBKeySbox128e vector 18 (aes128.at:130): ok (0m0.008s 0m0.005s) 598. NIST KAT ECBKeySbox128e vector 19 (aes128.at:136): ok (0m0.013s 0m0.001s) 599. NIST KAT ECBKeySbox128e vector 20 (aes128.at:142): ok (0m0.006s 0m0.008s) 600. unixctl ovs-vswitchd exit - Python3 (unixctl-py.at:6): ok (0m0.564s 0m0.115s) 601. unixctl ovs-vswitchd list-commands - Python3 (unixctl-py.at:17): ok (0m0.407s 0m0.063s) 602. unixctl ovs-vswitchd arguments - Python3 (unixctl-py.at:30): ok (0m1.212s 0m0.258s) 603. unixctl bad target - Python3 (unixctl-py.at:71): ok (0m0.495s 0m0.110s) 604. unixctl server - Python3 (unixctl-py.at:89): ok (0m2.167s 0m0.298s) 605. unixctl server errors - Python3 (unixctl-py.at:158): ok (0m0.239s 0m0.063s) 606. UUID generation, parsing, serialization (uuid.at:15): ok (0m0.949s 0m0.443s) 607. empty array - C (json.at:55): ok (0m0.014s 0m0.006s) 608. empty array - Python3 (json.at:55): ok (0m0.113s 0m0.001s) 609. single-element array - C (json.at:56): ok (0m0.017s 0m0.002s) 610. single-element array - Python3 (json.at:56): ok (0m0.098s 0m0.011s) 611. 2-element array - C (json.at:57): ok (0m0.012s 0m0.007s) 612. 2-element array - Python3 (json.at:57): ok (0m0.094s 0m0.017s) 613. many-element array - C (json.at:58): ok (0m0.012s 0m0.009s) 614. many-element array - Python3 (json.at:58): ok (0m0.103s 0m0.009s) 615. missing comma - C (json.at:61): ok (0m0.015s 0m0.007s) 616. missing comma - Python3 (json.at:61): ok (0m0.092s 0m0.022s) 617. trailing comma not allowed - C (json.at:63): ok (0m0.022s 0m0.000s) 618. trailing comma not allowed - Python3 (json.at:63): ok (0m0.082s 0m0.033s) 619. doubled comma not allowed - C (json.at:65): ok (0m0.017s 0m0.006s) 620. doubled comma not allowed - Python3 (json.at:65): ok (0m0.081s 0m0.033s) 621. empty string - C (json.at:70): ok (0m0.019s 0m0.002s) 622. empty string - Python3 (json.at:70): ok (0m0.091s 0m0.021s) 623. 1-character strings - C (json.at:71): ok (0m0.020s 0m0.002s) 624. 1-character strings - Python3 (json.at:71): ok (0m0.104s 0m0.012s) 625. escape sequences - C (json.at:74): ok (0m0.017s 0m0.005s) 626. escape sequences - Python3 (json.at:74): ok (0m0.107s 0m0.012s) 627. Unicode escape sequences - C (json.at:77): ok (0m0.023s 0m0.000s) 628. Unicode escape sequences - Python3 (json.at:77): ok (0m0.109s 0m0.011s) 629. surrogate pairs - C (json.at:80): ok (0m0.015s 0m0.007s) 630. a string by itself is not valid JSON - C (json.at:83): ok (0m0.019s 0m0.003s) 631. a string by itself is not valid JSON - Python3 (json.at:83): ok (0m0.108s 0m0.005s) 632. end of line in quoted string - C (json.at:85): ok (0m0.018s 0m0.004s) 633. end of line in quoted string - Python3 (json.at:85): ok (0m0.082s 0m0.033s) 634. formfeed in quoted string - C (json.at:89): ok (0m0.014s 0m0.009s) 635. formfeed in quoted string - Python3 (json.at:89): ok (0m0.066s 0m0.012s) 636. bad escape in quoted string - C (json.at:92): ok (0m0.019s 0m0.001s) 637. bad escape in quoted string - Python3 (json.at:92): ok (0m0.066s 0m0.014s) 638. \u must be followed by 4 hex digits (1) - C (json.at:95): ok (0m0.014s 0m0.010s) 639. \u must be followed by 4 hex digits (1) - Python3 (json.at:95): ok (0m0.110s 0m0.010s) 640. \u must be followed by 4 hex digits (2) - C (json.at:98): ok (0m0.015s 0m0.008s) 641. \u must be followed by 4 hex digits (2) - Python3 (json.at:98): ok (0m0.113s 0m0.009s) 642. isolated leading surrogate not allowed - C (json.at:101): ok (0m0.023s 0m0.001s) 643. isolated leading surrogate not allowed - Python3 (json.at:101): ok (0m0.108s 0m0.015s) 644. surrogatess must paired properly - C (json.at:104): ok (0m0.023s 0m0.000s) 645. surrogatess must paired properly - Python3 (json.at:104): ok (0m0.099s 0m0.021s) 646. null bytes not allowed - C (json.at:107): ok (0m0.017s 0m0.007s) 647. null bytes not allowed - Python3 (json.at:107): ok (0m0.094s 0m0.028s) 648. properly quoted backslash at end of string - C (json.at:111): ok (0m0.019s 0m0.005s) 649. properly quoted backslash at end of string - Python3 (json.at:111): ok (0m0.117s 0m0.003s) 650. stray backslash at end of string - C (json.at:114): ok (0m0.023s 0m0.000s) 651. stray backslash at end of string - Python3 (json.at:114): ok (0m0.074s 0m0.046s) 652. end of input in quoted string - C (json.at:118): ok (0m0.013s 0m0.004s) 653. empty object - C (json.at:127): ok (0m0.016s 0m0.007s) 654. empty object - Python3 (json.at:127): ok (0m0.101s 0m0.014s) 655. simple object - C (json.at:128): ok (0m0.015s 0m0.007s) 656. simple object - Python3 (json.at:128): ok (0m0.104s 0m0.010s) 657. bad value - C (json.at:131): ok (0m0.013s 0m0.009s) 658. bad value - Python3 (json.at:131): ok (0m0.086s 0m0.029s) 659. missing colon - C (json.at:133): ok (0m0.013s 0m0.009s) 660. missing colon - Python3 (json.at:133): ok (0m0.111s 0m0.003s) 661. missing comma - C (json.at:135): ok (0m0.022s 0m0.000s) 662. missing comma - Python3 (json.at:135): ok (0m0.114s 0m0.003s) 663. trailing comma not allowed - C (json.at:137): ok (0m0.021s 0m0.001s) 664. trailing comma not allowed - Python3 (json.at:137): ok (0m0.111s 0m0.003s) 665. doubled comma not allowed - C (json.at:140): ok (0m0.015s 0m0.007s) 666. doubled comma not allowed - Python3 (json.at:140): ok (0m0.104s 0m0.011s) 667. names must be strings - C (json.at:143): ok (0m0.019s 0m0.003s) 668. names must be strings - Python3 (json.at:143): ok (0m0.092s 0m0.022s) 669. null - C (json.at:149): ok (0m0.021s 0m0.000s) 670. null - Python3 (json.at:149): ok (0m0.075s 0m0.037s) 671. false - C (json.at:150): ok (0m0.014s 0m0.008s) 672. false - Python3 (json.at:150): ok (0m0.094s 0m0.019s) 673. true - C (json.at:151): ok (0m0.015s 0m0.006s) 674. true - Python3 (json.at:151): ok (0m0.090s 0m0.024s) 675. a literal by itself is not valid JSON - C (json.at:152): ok (0m0.020s 0m0.003s) 676. a literal by itself is not valid JSON - Python3 (json.at:152): ok (0m0.081s 0m0.037s) 677. nullify is invalid - C (json.at:154): ok (0m0.016s 0m0.006s) 678. nullify is invalid - Python3 (json.at:154): ok (0m0.094s 0m0.021s) 679. nubs is invalid - C (json.at:156): ok (0m0.013s 0m0.009s) 680. nubs is invalid - Python3 (json.at:156): ok (0m0.081s 0m0.032s) 681. xxx is invalid - C (json.at:158): ok (0m0.019s 0m0.003s) 682. xxx is invalid - Python3 (json.at:158): ok (0m0.091s 0m0.022s) 683. integers expressed as reals - C (json.at:163): ok (0m0.020s 0m0.003s) 684. integers expressed as reals - Python3 (json.at:163): ok (0m0.076s 0m0.039s) 685. large integers - C (json.at:173): ok (0m0.015s 0m0.005s) 686. large integers - Python3 (json.at:173): ok (0m0.095s 0m0.022s) 687. large integers expressed as reals - C (json.at:177): ok (0m0.020s 0m0.003s) 688. large integers expressed as reals - Python3 (json.at:177): ok (0m0.114s 0m0.007s) 689. C - large integers that overflow to reals (json.at:185): ok (0m0.019s 0m0.004s) 690. large integers that overflow to reals (json.at:189): ok (0m0.106s 0m0.014s) 691. negative zero - C (json.at:194): ok (0m0.015s 0m0.008s) 692. negative zero - Python3 (json.at:194): ok (0m0.109s 0m0.010s) 693. reals - C (json.at:199): ok (0m0.018s 0m0.005s) 694. reals - Python3 (json.at:199): ok (0m0.092s 0m0.028s) 695. scientific notation - C (json.at:203): ok (0m0.016s 0m0.007s) 696. scientific notation - Python3 (json.at:203): ok (0m0.090s 0m0.028s) 697. C - +/- DBL_MAX (json.at:210): ok (0m0.020s 0m0.002s) 698. +/- DBL_MAX (json.at:214): ok (0m0.108s 0m0.011s) 699. negative reals - C (json.at:219): ok (0m0.022s 0m0.000s) 700. negative reals - Python3 (json.at:219): ok (0m0.093s 0m0.025s) 701. negative scientific notation - C (json.at:223): ok (0m0.019s 0m0.003s) 702. negative scientific notation - Python3 (json.at:223): ok (0m0.063s 0m0.056s) 703. 1e-9999 underflows to 0 - C (json.at:227): ok (0m0.019s 0m0.003s) 704. 1e-9999 underflows to 0 - Python3 (json.at:227): ok (0m0.109s 0m0.011s) 705. a number by itself is not valid JSON - C (json.at:231): ok (0m0.019s 0m0.005s) 706. a number by itself is not valid JSON - Python3 (json.at:231): ok (0m0.108s 0m0.012s) 707. leading zeros not allowed - C (json.at:233): ok (0m0.018s 0m0.006s) 708. leading zeros not allowed - Python3 (json.at:233): ok (0m0.119s 0m0.001s) 709. 1e9999 is too big - C (json.at:237): ok (0m0.018s 0m0.005s) 710. 1e9999 is too big - Python3 (json.at:237): ok (0m0.095s 0m0.023s) 711. exponent bigger than INT_MAX (json.at:241): ok (0m0.023s 0m0.000s) 712. exponent smaller than INT_MIN (json.at:245): ok (0m0.020s 0m0.003s) 713. accumulated exponent bigger than INT_MAX (json.at:249): ok (0m0.016s 0m0.007s) 714. accumulated exponent smaller than INT_MIN (json.at:253): ok (0m0.017s 0m0.005s) 715. decimal point must be followed by digit - C (json.at:257): ok (0m0.022s 0m0.000s) 716. decimal point must be followed by digit - Python3 (json.at:257): ok (0m0.112s 0m0.007s) 717. exponent must contain at least one digit (1) - C (json.at:261): ok (0m0.018s 0m0.005s) 718. exponent must contain at least one digit (1) - Python3 (json.at:261): ok (0m0.095s 0m0.023s) 719. exponent must contain at least one digit (2) - C (json.at:265): ok (0m0.016s 0m0.007s) 720. exponent must contain at least one digit (2) - Python3 (json.at:265): ok (0m0.105s 0m0.014s) 721. exponent must contain at least one digit (3) - C (json.at:269): ok (0m0.018s 0m0.004s) 722. exponent must contain at least one digit (3) - Python3 (json.at:269): ok (0m0.110s 0m0.010s) 723. RFC 4267 object example - C (json.at:276): ok (0m0.016s 0m0.007s) 724. RFC 4267 object example - Python3 (json.at:276): ok (0m0.098s 0m0.021s) 725. RFC 4267 array example - C (json.at:292): ok (0m0.015s 0m0.007s) 726. RFC 4267 array example - Python3 (json.at:292): ok (0m0.099s 0m0.020s) 727. trailing garbage - C (json.at:319): ok (0m0.021s 0m0.001s) 728. trailing garbage - Python3 (json.at:319): ok (0m0.094s 0m0.025s) 729. formfeeds are not valid white space - C (json.at:321): ok (0m0.019s 0m0.004s) 730. formfeeds are not valid white space - Python3 (json.at:321): ok (0m0.116s 0m0.002s) 731. ';' is not a valid token - C (json.at:323): ok (0m0.016s 0m0.006s) 732. ';' is not a valid token - Python3 (json.at:323): ok (0m0.114s 0m0.004s) 733. arrays nesting too deep - C (json.at:325): ok (0m0.015s 0m0.009s) 734. arrays nesting too deep - Python3 (json.at:325): ok (0m0.111s 0m0.017s) 735. objects nesting too deep - C (json.at:329): ok (0m0.015s 0m0.010s) 736. objects nesting too deep - Python3 (json.at:329): ok (0m0.139s 0m0.004s) 737. input may not be empty (json.at:334): ok (0m0.003s 0m0.011s) 738. multiple adjacent objects - C (json.at:342): ok (0m0.016s 0m0.006s) 739. multiple adjacent objects - Python3 (json.at:342): ok (0m0.088s 0m0.030s) 740. multiple space-separated objects - C (json.at:347): ok (0m0.022s 0m0.000s) 741. multiple space-separated objects - Python3 (json.at:347): ok (0m0.094s 0m0.023s) 742. multiple objects on separate lines - C (json.at:352): ok (0m0.021s 0m0.001s) 743. multiple objects on separate lines - Python3 (json.at:352): ok (0m0.118s 0m0.001s) 744. multiple objects and arrays - C (json.at:359): ok (0m0.016s 0m0.006s) 745. multiple objects and arrays - Python3 (json.at:359): ok (0m0.113s 0m0.004s) 746. garbage between multiple objects - C (json.at:365): ok (0m0.016s 0m0.007s) 747. garbage between multiple objects - Python3 (json.at:365): ok (0m0.083s 0m0.034s) 748. garbage after multiple objects - C (json.at:369): ok (0m0.015s 0m0.008s) 749. garbage after multiple objects - Python3 (json.at:369): ok (0m0.106s 0m0.013s) 750. JSON-RPC request and successful reply (jsonrpc.at:3): ok (0m0.019s 0m0.010s) 751. JSON-RPC request and error reply (jsonrpc.at:12): ok (0m0.025s 0m0.004s) 752. JSON-RPC notification (jsonrpc.at:21): ok (0m0.024s 0m0.002s) 753. JSON-RPC request and successful reply - Python3 (jsonrpc-py.at:3): ok (0m0.414s 0m0.161s) 754. JSON-RPC request and error reply - Python3 (jsonrpc-py.at:13): ok (0m0.537s 0m0.094s) 755. JSON-RPC notification - Python3 (jsonrpc-py.at:23): ok (0m0.467s 0m0.150s) 756. tunnel - input (tunnel.at:3): ok (0m0.199s 0m0.064s) 757. tunnel - ECN decapsulation (tunnel.at:65): ok (0m0.182s 0m0.048s) 758. tunnel - input with matching tunnel mask (tunnel.at:113): ok (0m0.139s 0m0.032s) 759. tunnel - too long nested attributes (tunnel.at:135): ok (0m23.902s 0m9.591s) 760. tunnel - output (tunnel.at:164): ok (0m0.164s 0m0.033s) 761. tunnel - unencrypted tunnel and not setting skb_mark (tunnel.at:197): ok (0m0.123s 0m0.048s) 762. tunnel - unencrypted tunnel and setting skb_mark to 1 (tunnel.at:215): ok (0m0.106s 0m0.062s) 763. tunnel - unencrypted tunnel and setting skb_mark to 2 (tunnel.at:233): ok (0m0.144s 0m0.048s) 764. tunnel - ToS and TTL inheritance (tunnel.at:262): ok (0m0.186s 0m0.036s) 765. tunnel - set_tunnel (tunnel.at:301): ok (0m0.131s 0m0.059s) 766. tunnel - key (tunnel.at:336): ok (0m0.195s 0m0.044s) 767. tunnel - key match (tunnel.at:386): ok (0m0.171s 0m0.067s) 768. tunnel - Geneve (tunnel.at:436): ok (0m0.102s 0m0.049s) 769. tunnel - VXLAN (tunnel.at:448): ok (0m0.111s 0m0.036s) 770. tunnel - table version (tunnel.at:460): ok (0m0.305s 0m0.090s) 771. tunnel - LISP (tunnel.at:522): ok (0m0.101s 0m0.039s) 772. tunnel - ERSPAN (tunnel.at:534): ok (0m0.135s 0m0.050s) 773. tunnel - different VXLAN UDP port (tunnel.at:577): ok (0m0.150s 0m0.041s) 774. ofproto-dpif - set_field - tun_src/tun_dst/tun_id (tunnel.at:606): ok (0m0.142s 0m0.031s) 775. tunnel - ERSPAN v1/v2 metadata (tunnel.at:637): ok (0m0.288s 0m0.089s) 776. tunnel - Geneve metadata (tunnel.at:757): ok (0m0.432s 0m0.091s) 777. tunnel - Geneve option present (tunnel.at:905): ok (0m0.146s 0m0.059s) 778. tunnel - Delete Geneve option (tunnel.at:944): ok (0m0.148s 0m0.054s) 779. tunnel - concomitant IPv6 and IPv4 tunnels (tunnel.at:981): ok (0m0.134s 0m0.052s) 780. tunnel - concomitant incompatible tunnels on the same port (tunnel.at:1007): ok (0m0.134s 0m0.029s) 781. tunnel - concomitant incompatible tunnels on different ports (tunnel.at:1023): ok (0m0.087s 0m0.063s) 782. tunnel - Mix Geneve/GRE options (tunnel.at:1037): ok (0m0.155s 0m0.065s) 783. tunnel - neighbor entry add and deletion (tunnel.at:1086): ok (0m0.205s 0m0.078s) 784. tunnel - GTP-U basic (tunnel.at:1133): ok (0m0.125s 0m0.036s) 785. tunnel - GTP-U push and pop (tunnel.at:1151): ok (0m0.171s 0m0.052s) 786. tunnel_push_pop - erspan (tunnel-push-pop.at:3): ok (0m0.885s 0m0.210s) 787. tunnel_push_pop - action (tunnel-push-pop.at:201): ok (0m1.376s 0m0.438s) 788. tunnel_push_pop - packet_out (tunnel-push-pop.at:664): ok (0m0.364s 0m0.107s) 789. tunnel_push_pop - packet_out debug_slow (tunnel-push-pop.at:702): ok (0m0.461s 0m0.149s) 790. tunnel_push_pop - underlay bridge match (tunnel-push-pop.at:760): ok (0m0.217s 0m0.076s) 791. tunnel_push_pop - flow translation on unrelated bridges (tunnel-push-pop.at:811): ok (0m0.224s 0m0.058s) 792. tunnel_push_pop - VXLAN access port (tunnel-push-pop.at:868): ok (0m0.209s 0m0.026s) 793. tunnel_push_pop_ipv6 - ip6gre (tunnel-push-pop-ipv6.at:3): ok (0m0.314s 0m0.101s) 794. tunnel_push_pop_ipv6 - ip6erspan (tunnel-push-pop-ipv6.at:72): ok (0m0.419s 0m0.132s) 795. tunnel_push_pop_ipv6 - action (tunnel-push-pop-ipv6.at:191): ok (0m0.995s 0m0.427s) 796. appctl - route/add with gateway (ovs-router.at:3): ok (0m0.116s 0m0.037s) 797. appctl - route/lookup (ovs-router.at:15): ok (0m0.178s 0m0.059s) 798. appctl - route/lookup6 (ovs-router.at:51): ok (0m0.158s 0m0.074s) 799. lock and unlock (lockfile.at:15): ok (0m0.017s 0m0.005s) 800. lock and unlock twice (lockfile.at:17): ok (0m0.016s 0m0.006s) 801. lock blocks same process (lockfile.at:19): ok (0m0.022s 0m0.005s) 802. lock blocks same process twice (lockfile.at:23): ok (0m0.024s 0m0.003s) 803. lock blocks other process (lockfile.at:28): ok (0m0.029s 0m0.000s) 804. lock twice blocks other process (lockfile.at:33): ok (0m0.023s 0m0.006s) 805. lock and unlock allows other process (lockfile.at:39): ok (0m0.014s 0m0.009s) 806. lock multiple (lockfile.at:41): ok (0m0.019s 0m0.009s) 807. lock symlink (lockfile.at:45): ok (0m0.018s 0m0.011s) 808. lock symlink to dir (lockfile.at:52): ok (0m0.024s 0m0.006s) 809. nothing happens if not enabled - C (reconnect.at:23): ok (0m0.010s 0m0.006s) 810. nothing happens if not enabled - Python3 (reconnect.at:23): ok (0m0.104s 0m0.026s) 811. quick connect, idle disconnect - C (reconnect.at:34): ok (0m0.013s 0m0.002s) 812. quick connect, idle disconnect - Python3 (reconnect.at:34): ok (0m0.156s 0m0.024s) 813. slow connect, idle disconnect - C (reconnect.at:131): ok (0m0.017s 0m0.000s) 814. slow connect, idle disconnect - Python3 (reconnect.at:131): ok (0m0.152s 0m0.027s) 815. connect backs off - C (reconnect.at:242): ok (0m0.013s 0m0.004s) 816. connect backs off - Python3 (reconnect.at:242): ok (0m0.161s 0m0.020s) 817. connections with no data preserve backoff - C (reconnect.at:441): ok (0m0.012s 0m0.005s) 818. connections with no data preserve backoff - Python3 (reconnect.at:441): ok (0m0.121s 0m0.059s) 819. brief connection preserves backoff - C (reconnect.at:607): ok (0m0.013s 0m0.004s) 820. brief connection preserves backoff - Python3 (reconnect.at:607): ok (0m0.145s 0m0.034s) 821. brief connection with data preserves backoff - C (reconnect.at:738): ok (0m0.012s 0m0.005s) 822. brief connection with data preserves backoff - Python3 (reconnect.at:738): ok (0m0.154s 0m0.033s) 823. long connection resets backoff - C (reconnect.at:899): ok (0m0.013s 0m0.004s) 824. long connection resets backoff - Python3 (reconnect.at:899): ok (0m0.168s 0m0.011s) 825. connection attempt fails quickly - C (reconnect.at:1060): ok (0m0.016s 0m0.001s) 826. connection attempt fails quickly - Python3 (reconnect.at:1060): ok (0m0.166s 0m0.011s) 827. backoff-free tries work - C (reconnect.at:1115): ok (0m0.015s 0m0.002s) 828. backoff-free tries work - Python3 (reconnect.at:1115): ok (0m0.149s 0m0.031s) 829. max-tries of 1 honored - C (reconnect.at:1169): ok (0m0.012s 0m0.005s) 830. max-tries of 1 honored - Python3 (reconnect.at:1169): ok (0m0.146s 0m0.033s) 831. max-tries of 0 honored - C (reconnect.at:1231): ok (0m0.012s 0m0.004s) 832. max-tries of 0 honored - Python3 (reconnect.at:1231): ok (0m0.138s 0m0.039s) 833. passive mode - C (reconnect.at:1247): ok (0m0.017s 0m0.000s) 834. passive mode - Python3 (reconnect.at:1247): ok (0m0.117s 0m0.060s) 835. ovs-vswitchd detaches correctly with empty db (ovs-vswitchd.at:7): ok (0m0.057s 0m0.015s) 836. ovs-vswitchd -- stats-update-interval (ovs-vswitchd.at:36): ok (0m0.312s 0m0.072s) 837. ovs-vswitchd -- start additional ovs-vswitchd process (ovs-vswitchd.at:69): ok (0m0.178s 0m0.043s) 838. ovs-vswitchd -- switch over to another ovs-vswitchd process (ovs-vswitchd.at:94): ok (0m0.215s 0m0.234s) 839. ovs-vswitchd -- invalid database path (ovs-vswitchd.at:135): ok (0m0.026s 0m0.027s) 840. ovs-vswitchd -- set service controller (ovs-vswitchd.at:161): ok (0m0.117s 0m0.046s) 841. ovs-vswitchd -- Compatible with OVSDB server - w/o monitor_cond (ovs-vswitchd.at:178): ok (0m0.118s 0m0.050s) 842. ovs-vswitchd - do not create sockets with unsafe names (ovs-vswitchd.at:199): ok (0m0.102s 0m0.061s) 843. ovs-vswitchd - set datapath IDs (ovs-vswitchd.at:232): ok (0m0.231s 0m0.072s) 844. ofproto - echo request (ofproto.at:3): ok (0m0.101s 0m0.029s) 845. ofproto - handling messages with bad version (ofproto.at:9): ok (0m0.135s 0m0.033s) 846. ofproto - feature request, config request (ofproto.at:33): ok (0m0.131s 0m0.023s) 847. ofproto - set OpenFlow port number (ofproto.at:50): ok (0m0.115s 0m0.035s) 848. ofproto - port stats - (OpenFlow 1.0) (ofproto.at:83): ok (0m0.094s 0m0.048s) 849. ofproto - port stats - (OpenFlow 1.2) (ofproto.at:94): ok (0m0.076s 0m0.065s) 850. ofproto - port stats - (OpenFlow 1.4) (ofproto.at:105): ok (0m0.103s 0m0.048s) 851. ofproto - port-desc stats (OpenFlow 1.0) (ofproto.at:123): ok (0m0.119s 0m0.027s) 852. ofproto - port-desc stats (OpenFlow 1.2) (ofproto.at:138): ok (0m0.101s 0m0.044s) 853. ofproto - port-desc stats (OpenFlow 1.5) (ofproto.at:151): ok (0m0.141s 0m0.053s) 854. ofproto - queue stats - (OpenFlow 1.0) (ofproto.at:227): ok (0m0.214s 0m0.122s) 855. ofproto - queue stats - (OpenFlow 1.1) (ofproto.at:228): ok (0m0.186s 0m0.065s) 856. ofproto - queue stats - (OpenFlow 1.2) (ofproto.at:229): ok (0m0.164s 0m0.022s) 857. ofproto - queue stats - (OpenFlow 1.3) (ofproto.at:230): ok (0m0.137s 0m0.029s) 858. ofproto - queue stats - (OpenFlow 1.4) (ofproto.at:231): ok (0m0.169s 0m0.043s) 859. ofproto - queue configuration - (OpenFlow 1.0) (ofproto.at:235): ok (0m0.128s 0m0.044s) 860. ofproto - queue configuration - (OpenFlow 1.1) (ofproto.at:257): ok (0m0.136s 0m0.033s) 861. ofproto - queue configuration - (OpenFlow 1.2) (ofproto.at:272): ok (0m0.144s 0m0.042s) 862. ofproto - queue configuration - (OpenFlow 1.4) (ofproto.at:294): ok (0m0.138s 0m0.063s) 863. ofproto - del group (OpenFlow 1.0 extension) (ofproto.at:327): ok (0m0.180s 0m0.059s) 864. ofproto - del group (OpenFlow 1.1) (ofproto.at:368): ok (0m0.201s 0m0.042s) 865. ofproto - add indirect group (ofproto.at:409): ok (0m0.120s 0m0.034s) 866. ofproto - group mod with mod and add_or_mod command (ofproto.at:422): ok (0m0.242s 0m0.027s) 867. ofproto - del group (OpenFlow 1.5) (ofproto.at:451): ok (0m0.223s 0m0.031s) 868. ofproto - del group deletes flows (ofproto.at:491): ok (0m0.162s 0m0.063s) 869. ofproto - insert group buckets (ofproto.at:532): ok (0m0.767s 0m0.167s) 870. ofproto - remove group buckets (ofproto.at:668): ok (0m0.402s 0m0.145s) 871. ofproto - bundle del group (OpenFlow 1.3) (ofproto.at:722): ok (0m0.285s 0m0.092s) 872. ofproto - bundle add indirect group (ofproto.at:760): ok (0m0.203s 0m0.036s) 873. ofproto - bundle group mod with mod and add_or_mod command (ofproto.at:775): ok (0m0.174s 0m0.084s) 874. ofproto - bundle del group (OpenFlow 1.5) (ofproto.at:801): ok (0m0.241s 0m0.056s) 875. ofproto - bundle del group deletes flows (ofproto.at:836): ok (0m0.307s 0m0.065s) 876. ofproto - bundle insert group buckets (ofproto.at:877): ok (0m0.587s 0m0.103s) 877. ofproto - bundle remove group buckets (ofproto.at:974): ok (0m0.466s 0m0.116s) 878. ofproto - flow mod checks group availability (ofproto.at:1031): ok (0m0.133s 0m0.032s) 879. ofproto - bundle flow mod checks group availability (ofproto.at:1048): ok (0m0.135s 0m0.020s) 880. ofproto - group description (ofproto.at:1068): ok (0m0.110s 0m0.043s) 881. ofproto - group features (OpenFlow 1.0 extension) (ofproto.at:1081): ok (0m0.117s 0m0.026s) 882. ofproto - group features (OpenFlow 1.2) (ofproto.at:1107): ok (0m0.111s 0m0.034s) 883. ofproto - group stats (OpenFlow 1.0 extension) (ofproto.at:1133): ok (0m0.171s 0m0.061s) 884. ofproto - group stats (OpenFlow 1.1) (ofproto.at:1157): ok (0m0.128s 0m0.025s) 885. ofproto - group stats (OpenFlow 1.3) (ofproto.at:1181): ok (0m0.185s 0m0.079s) 886. ofproto - group stats (OpenFlow 1.5) (ofproto.at:1205): ok (0m0.264s 0m0.014s) 887. ofproto - group stats after insert a new bucket (OpenFlow 1.5) (ofproto.at:1228): ok (0m0.200s 0m0.032s) 888. ofproto - group add then bridge delete (OpenFlow 1.3) (ofproto.at:1245): ok (0m0.135s 0m0.033s) 889. ofproto - mod-port (OpenFlow 1.0) (ofproto.at:1260): ok (0m0.379s 0m0.081s) 890. ofproto - mod-port (OpenFlow 1.2) (ofproto.at:1295): ok (0m0.319s 0m0.079s) 891. ofproto - mod-port (OpenFlow 1.4) (ofproto.at:1327): ok (0m0.322s 0m0.080s) 892. ofproto - basic flow_mod commands (NXM) (ofproto.at:1360): ok (0m0.176s 0m0.060s) 893. ofproto - basic flow_mod commands (OpenFlow 1.0) (ofproto.at:1382): ok (0m0.178s 0m0.065s) 894. ofproto - add-flow and flags (ofproto.at:1407): ok (0m0.201s 0m0.068s) 895. ofproto - basic flow_mod commands (OpenFlow 1.1) (ofproto.at:1440): ok (0m0.178s 0m0.063s) 896. ofproto - flow_mod negative test (OpenFlow 1.1) (ofproto.at:1463): ok (0m0.111s 0m0.041s) 897. ofproto - set-field flow_mod commands (NXM) (ofproto.at:1477): ok (0m0.131s 0m0.050s) 898. ofproto - basic flow_mod commands (OpenFlow 1.2) (ofproto.at:1490): ok (0m0.189s 0m0.066s) 899. ofproto - set-field flow_mod commands (OF1.2) (ofproto.at:1509): ok (0m0.134s 0m0.062s) 900. ofproto - dump flows with cookie (ofproto.at:1522): ok (0m0.141s 0m0.095s) 901. ofproto - mod flow with cookie change (OpenFlow 1.0) (ofproto.at:1546): ok (0m0.164s 0m0.023s) 902. ofproto - mod flow with cookie change (NXM) (ofproto.at:1562): ok (0m0.127s 0m0.061s) 903. ofproto - no mod flow with cookie change (OpenFlow 1.1) (ofproto.at:1578): ok (0m0.145s 0m0.054s) 904. ofproto - no mod flow with cookie change (OpenFlow 1.2) (ofproto.at:1594): ok (0m0.134s 0m0.074s) 905. ofproto - mod flows based on cookie mask (OpenFlow 1.0) (ofproto.at:1610): ok (0m0.161s 0m0.045s) 906. ofproto - mod flows based on cookie mask (OpenFlow 1.1) (ofproto.at:1632): ok (0m0.162s 0m0.040s) 907. ofproto - mod flows based on cookie mask (OpenFlow 1.2) (ofproto.at:1654): ok (0m0.171s 0m0.053s) 908. ofproto - mod flows based on cookie mask with cookie change (ofproto.at:1677): ok (0m0.135s 0m0.071s) 909. ofproto - mod flow with cookie miss (mask==0) - NXM (ofproto.at:1699): ok (0m0.149s 0m0.015s) 910. ofproto - mod flow with cookie miss (mask==0) - OF1.1 (ofproto.at:1709): ok (0m0.126s 0m0.034s) 911. ofproto - mod flow with cookie miss (mask==0) - OF1.2 (ofproto.at:1719): ok (0m0.137s 0m0.025s) 912. ofproto - mod flow with cookie miss (mask!=0) - NXM (ofproto.at:1728): ok (0m0.112s 0m0.043s) 913. ofproto - mod flow with cookie miss (mask!=0) - OF1.1 (ofproto.at:1737): ok (0m0.129s 0m0.024s) 914. ofproto - mod flow with cookie miss (mask!=0) - OF1.2 (ofproto.at:1746): ok (0m0.096s 0m0.064s) 915. ofproto - del flows with cookies (ofproto.at:1755): ok (0m0.161s 0m0.038s) 916. ofproto - del flows based on cookie (ofproto.at:1774): ok (0m0.120s 0m0.079s) 917. ofproto - del flows based on cookie mask (ofproto.at:1795): ok (0m0.167s 0m0.039s) 918. ofproto - del flows based on table id (NXM) (ofproto.at:1814): ok (0m0.222s 0m0.068s) 919. ofproto - del flows based on table id (OpenFlow 1.1) (ofproto.at:1846): ok (0m0.258s 0m0.054s) 920. ofproto - del flows based on table id (OpenFlow 1.2) (ofproto.at:1879): ok (0m0.282s 0m0.069s) 921. ofproto - flow_mod with out_port matching (OpenFlow 1.0) (ofproto.at:1911): ok (0m0.242s 0m0.064s) 922. ofproto - flow_mod with out_port matching (OpenFlow 1.1) (ofproto.at:1947): ok (0m0.225s 0m0.083s) 923. ofproto - flow_mod with out_group matching (OpenFlow 1.1) (ofproto.at:1983): ok (0m0.233s 0m0.094s) 924. ofproto - bundle flow_mod with out group matching (OpenFlow 1.4) (ofproto.at:2025): ok (0m0.318s 0m0.112s) 925. ofproto - bundle packet-out (OpenFlow 1.4) (ofproto.at:2075): ok (0m0.166s 0m0.046s) 926. ofproto - bundle packet-out, failing bundle commit (OpenFlow 1.4) (ofproto.at:2117): ok (0m0.158s 0m0.054s) 927. ofproto - bundle packet-out makes bundle commit to fail(OpenFlow 1.4) (ofproto.at:2158): ok (0m0.173s 0m0.037s) 928. ofproto - flow table configuration (OpenFlow 1.0) (ofproto.at:2200): ok (0m0.164s 0m0.067s) 929. ofproto - hidden rules not in table stats (ofproto.at:2243): ok (0m0.153s 0m0.064s) 930. ofproto - flow table configuration (OpenFlow 1.2) (ofproto.at:2278): ok (0m0.216s 0m0.027s) 931. ofproto - table features (OpenFlow 1.3) (ofproto.at:2343): ok (0m0.231s 0m0.056s) 932. ofproto - flow table names (ofproto.at:2406): ok (0m0.951s 0m0.298s) 933. ofproto - table description (OpenFlow 1.4) (ofproto.at:2529): ok (0m0.958s 0m0.453s) 934. ofproto - hard limits on flow table size (OpenFlow 1.0) (ofproto.at:2559): ok (0m0.282s 0m0.075s) 935. ofproto - hard limits on flow table size (OpenFlow 1.2) (ofproto.at:2605): ok (0m0.320s 0m0.066s) 936. ofproto - eviction upon table overflow (OpenFlow 1.0) (ofproto.at:2645): ok (0m0.259s 0m0.150s) 937. ofproto - eviction upon table overflow (OpenFlow 1.2) (ofproto.at:2704): ok (0m0.412s 0m0.078s) 938. ofproto - eviction using importance upon table overflow (OpenFlow 1.4) (ofproto.at:2764): ok (0m0.529s 0m0.143s) 939. ofproto - eviction upon table overflow, with fairness (OpenFlow 1.0) (ofproto.at:2830): ok (0m0.310s 0m0.091s) 940. ofproto - eviction upon table overflow, with fairness (OpenFlow 1.2) (ofproto.at:2912): ok (0m0.311s 0m0.119s) 941. ofproto - eviction upon table overflow, with modified hard timeout (ofproto.at:2994): ok (0m0.281s 0m0.056s) 942. ofproto - eviction upon table overflow, with modified idle timeout (ofproto.at:3038): ok (0m0.260s 0m0.075s) 943. ofproto - asynchronous message control (OpenFlow 1.0) (ofproto.at:3082): ok (0m0.578s 0m0.266s) 944. ofproto - asynchronous message control (OpenFlow 1.2) (ofproto.at:3184): ok (0m0.856s 0m0.292s) 945. ofproto - asynchronous message control (OpenFlow 1.3) (ofproto.at:3291): ok (0m2.100s 0m0.419s) 946. ofproto - asynchronous message control (OpenFlow 1.4) (ofproto.at:3410): ok (0m1.096s 0m0.362s) 947. ofproto - asynchronous message control (OpenFlow 1.5) (ofproto.at:3642): ok (0m0.207s 0m0.076s) 948. ofproto - controller role (OpenFlow 1.2) (ofproto.at:3720): ok (0m0.206s 0m0.061s) 949. ofproto - controller role (OpenFlow 1.4) (ofproto.at:3785): ok (0m0.211s 0m0.056s) 950. ofproto - controller role (OpenFlow 1.3) (ofproto.at:3851): ok (0m0.205s 0m0.066s) 951. ofproto - requestforward (OpenFlow 1.4) (ofproto.at:3916): ok (0m0.180s 0m0.058s) 952. ofproto - NXT requestforward (OpenFlow 1.0) (ofproto.at:4008): ok (0m0.178s 0m0.063s) 953. ofproto - ONF requestforward (OpenFlow 1.3) (ofproto.at:4106): ok (0m0.211s 0m0.036s) 954. ofproto - packet-out from controller (OpenFlow 1.0) (ofproto.at:4207): ok (0m0.154s 0m0.048s) 955. ofproto - packet-out from controller (OpenFlow 1.2) (ofproto.at:4243): ok (0m0.145s 0m0.049s) 956. ofproto - packet-out from controller (OpenFlow 1.1) (ofproto.at:4276): ok (0m0.140s 0m0.043s) 957. ofproto - packet-out from controller (OpenFlow 1.5) (ofproto.at:4306): ok (0m0.184s 0m0.054s) 958. ofproto - packet-out with metadata and userdata (NXT_PACKET_IN2) (ofproto.at:4336): ok (0m0.131s 0m0.048s) 959. ofproto - packet-out with set_field metadata (OpenFlow 1.5) (ofproto.at:4364): ok (0m0.165s 0m0.037s) 960. ofproto - packet-out with set_field metadata with packet_type PT_ETH (OpenFlow 1.5) (ofproto.at:4391): ok (0m0.140s 0m0.056s) 961. ofproto - packet-out with set_field metadata with packet_type PT_IPV4 on PTAP bridge (OpenFlow 1.5) (ofproto.at:4418): ok (0m0.152s 0m0.057s) 962. ofproto - packet-out with metadata (NXM) (ofproto.at:4446): ok (0m0.141s 0m0.045s) 963. ofproto - packet-out with metadata (OpenFlow 1.2) (ofproto.at:4474): ok (0m0.139s 0m0.056s) 964. ofproto - packet-out with metadata and dual set_field (OpenFlow 1.3) (ofproto.at:4502): ok (0m0.156s 0m0.058s) 965. ofproto - packet-out with tunnel metadata (OpenFlow 1.2) (ofproto.at:4529): ok (0m0.147s 0m0.044s) 966. ofproto - flow monitoring (ofproto.at:4580): ok (0m0.327s 0m0.152s) 967. ofproto - flow monitoring with !own (ofproto.at:4717): ok (0m0.159s 0m0.071s) 968. ofproto - flow monitoring with out_port (ofproto.at:4758): ok (0m0.191s 0m0.050s) 969. ofproto - flow monitoring pause and resume (ofproto.at:4810): ok (0m0.573s 0m0.191s) 970. ofproto - flow monitoring usable protocols (ofproto.at:4915): ok (0m0.167s 0m0.047s) 971. ofproto - event filtering (OpenFlow 1.3) (ofproto.at:4936): ok (0m0.130s 0m0.028s) 972. ofproto - ofport_request (ofproto.at:4976): ok (0m4.219s 0m1.753s) 973. ofproto - bundle open (OpenFlow 1.4) (ofproto.at:5032): ok (0m0.119s 0m0.050s) 974. ofproto - bundle double open (OpenFlow 1.4) (ofproto.at:5056): ok (0m0.148s 0m0.024s) 975. ofproto - bundle close without open (OpenFlow 1.4) (ofproto.at:5088): ok (0m0.128s 0m0.039s) 976. ofproto - bundle double close (OpenFlow 1.4) (ofproto.at:5112): ok (0m0.137s 0m0.048s) 977. ofproto - bundle close, different flags (OpenFlow 1.4) (ofproto.at:5151): ok (0m0.128s 0m0.049s) 978. ofproto - bundle commit without open (OpenFlow 1.4) (ofproto.at:5183): ok (0m0.110s 0m0.058s) 979. ofproto - bundle commit, different flags (OpenFlow 1.4) (ofproto.at:5208): ok (0m0.133s 0m0.046s) 980. ofproto - bundle discard without open (OpenFlow 1.4) (ofproto.at:5240): ok (0m0.140s 0m0.027s) 981. ofproto - bundle with multiple flow mods (OpenFlow 1.4) (ofproto.at:5266): ok (0m0.262s 0m0.072s) 982. ofproto - failing bundle commit (OpenFlow 1.4) (ofproto.at:5469): ok (0m0.179s 0m0.073s) 983. ofproto - bundle timeout (OpenFlow 1.4) (ofproto.at:5516): ok (0m0.142s 0m0.064s) 984. ofproto - bundle custom timeout (OpenFlow 1.4) (ofproto.at:5578): ok (0m0.150s 0m0.067s) 985. ofproto - bundle reset timeout to default (OpenFlow 1.4) (ofproto.at:5643): ok (0m0.133s 0m0.079s) 986. ofproto - bundle open (OpenFlow 1.3) (ofproto.at:5708): ok (0m0.127s 0m0.035s) 987. ofproto - bundle double open (OpenFlow 1.3) (ofproto.at:5735): ok (0m0.126s 0m0.046s) 988. ofproto - bundle close without open (OpenFlow 1.3) (ofproto.at:5770): ok (0m0.135s 0m0.031s) 989. ofproto - bundle double close (OpenFlow 1.3) (ofproto.at:5794): ok (0m0.146s 0m0.035s) 990. ofproto - bundle close, different flags (OpenFlow 1.3) (ofproto.at:5833): ok (0m0.130s 0m0.042s) 991. ofproto - bundle commit without open (OpenFlow 1.3) (ofproto.at:5865): ok (0m0.123s 0m0.039s) 992. ofproto - bundle commit, different flags (OpenFlow 1.3) (ofproto.at:5890): ok (0m0.146s 0m0.027s) 993. ofproto - bundle discard without open (OpenFlow 1.3) (ofproto.at:5922): ok (0m0.122s 0m0.038s) 994. ofproto - bundle with multiple flow mods (OpenFlow 1.3) (ofproto.at:5948): ok (0m0.241s 0m0.052s) 995. ofproto - failing bundle add message (OpenFlow 1.3) (ofproto.at:6144): ok (0m0.197s 0m0.046s) 996. ofproto - failing bundle commit (OpenFlow 1.3) (ofproto.at:6191): ok (0m0.151s 0m0.060s) 997. ofproto - monitor flows with tun_md (ofproto.at:6217): ok (0m0.214s 0m0.053s) 998. ofproto - flow mod with tunnel metadata (ofproto.at:6262): ok (0m0.535s 0m0.170s) 999. ofproto - flush flows, groups, and meters for controller change (ofproto.at:6394): ok (0m0.256s 0m0.095s) 1000. dpif-netdev - netdev-dummy/receive (dpif-netdev.at:64): ok (0m0.166s 0m0.032s) 1001. dpif-netdev - dummy interface (dpif-netdev.at:123): ok (0m0.179s 0m0.042s) 1002. dpif-netdev - dummy-pmd interface (dpif-netdev.at:124): ok (0m0.169s 0m0.046s) 1003. dpif-netdev - miss upcall key matches flow_install - dummy (dpif-netdev.at:165): ok (0m0.217s 0m0.051s) 1004. dpif-netdev - miss upcall key matches flow_install - dummy-pmd (dpif-netdev.at:166): ok (0m0.188s 0m0.096s) 1005. dpif-netdev - datapath flow modification - dummy (dpif-netdev.at:218): ok (0m0.191s 0m0.063s) 1006. dpif-netdev - datapath flow modification - dummy-pmd (dpif-netdev.at:219): ok (0m0.187s 0m0.072s) 1007. dpif-netdev - miss upcall key matches flow_dump - dummy (dpif-netdev.at:266): ok (0m0.211s 0m0.120s) 1008. dpif-netdev - miss upcall key matches flow_dump - dummy-pmd (dpif-netdev.at:267): ok (0m0.244s 0m0.071s) 1009. dpif-netdev - meters (dpif-netdev.at:269): ok (0m0.485s 0m0.153s) 1010. dpif-netdev - partial hw offload - dummy (dpif-netdev.at:464): ok (0m0.302s 0m0.078s) 1011. dpif-netdev - partial hw offload - dummy-pmd (dpif-netdev.at:465): ok (0m0.318s 0m0.075s) 1012. dpif-netdev - partial hw offload with packet modifications - dummy (dpif-netdev.at:542): ok (0m0.349s 0m0.064s) 1013. dpif-netdev - partial hw offload with packet modifications - dummy-pmd (dpif-netdev.at:543): ok (0m0.302s 0m0.085s) 1014. dpif-netdev - partial hw offload with arp vlan id packet modifications - dummy (dpif-netdev.at:619): ok (0m0.296s 0m0.098s) 1015. dpif-netdev - partial hw offload with arp vlan id packet modifications - dummy-pmd (dpif-netdev.at:620): ok (0m0.315s 0m0.078s) 1016. dpif-netdev - check dpctl/add-flow in_port exact match (dpif-netdev.at:622): ok (0m0.097s 0m0.049s) 1017. dpif-netdev - tx packet steering (dpif-netdev.at:651): ok (0m3.133s 0m1.239s) 1018. PMD - creating a thread/add-port (pmd.at:66): ok (0m0.164s 0m0.036s) 1019. PMD - multiqueue support (pmd.at:89): ok (0m0.193s 0m0.025s) 1020. PMD - pmd-cpu-mask/distribution of rx queues (pmd.at:122): ok (0m0.484s 0m0.103s) 1021. PMD - pmd-cpu-mask - dual NUMA (pmd.at:202): ok (0m0.776s 0m0.173s) 1022. PMD - pmd-cpu-mask - multi NUMA (pmd.at:362): ok (0m0.247s 0m0.172s) 1023. PMD - stats (pmd.at:400): ok (0m0.453s 0m0.132s) 1024. PMD - reconfigure n_rxq (pmd.at:476): ok (0m0.242s 0m0.078s) 1025. PMD - same flow multiple threads (pmd.at:539): ok (0m0.206s 0m0.052s) 1026. PMD - change numa node (pmd.at:582): ok (0m0.379s 0m0.128s) 1027. PMD - non pmd device (pmd.at:694): ok (0m0.446s 0m0.151s) 1028. PMD - add remove ports (pmd.at:744): ok (0m0.207s 0m0.089s) 1029. PMD - rxq affinity (pmd.at:788): ok (0m0.246s 0m0.121s) 1030. PMD - rxq affinity - non-isolate (pmd.at:855): ok (0m0.380s 0m0.156s) 1031. PMD - rxq affinity - NUMA (pmd.at:949): ok (0m0.327s 0m0.092s) 1032. PMD - monitor threads (pmd.at:1022): ok (0m0.159s 0m0.108s) 1033. PMD - dpctl (pmd.at:1059): ok (0m0.190s 0m0.053s) 1034. PMD - dpif configuration (pmd.at:1112): ok (0m0.141s 0m0.034s) 1035. PMD - dpcls configuration (pmd.at:1128): ok (0m0.262s 0m0.093s) 1036. ALB - default state (alb.at:30): ok (0m0.102s 0m0.032s) 1037. ALB - enable/disable (alb.at:37): ok (0m0.156s 0m0.069s) 1038. ALB - min num PMD/RxQ (alb.at:56): ok (0m0.307s 0m0.082s) 1039. ALB - cross-numa (alb.at:99): ok (0m0.327s 0m0.070s) 1040. ALB - PMD/RxQ assignment type (alb.at:145): ok (0m0.558s 0m0.205s) 1041. ALB - interval param (alb.at:219): ok (0m0.493s 0m0.165s) 1042. ALB - improvement param (alb.at:269): ok (0m0.348s 0m0.147s) 1043. ALB - load param (alb.at:304): ok (0m0.370s 0m0.128s) 1044. dpctl - add-dp del-dp (dpctl.at:3): ok (0m0.135s 0m0.039s) 1045. dpctl - add-if set-if del-if (dpctl.at:19): ok (0m0.226s 0m0.085s) 1046. dpctl - add/mod/del-flows (dpctl.at:89): ok (0m0.192s 0m0.064s) 1047. ofproto-dpif - revalidator/wait (ofproto-dpif.at:26): ok (0m0.102s 0m0.038s) 1048. ofproto-dpif - active-backup bonding (with primary) (ofproto-dpif.at:32): ok (0m0.243s 0m0.086s) 1049. ofproto-dpif - active-backup bonding (primary validation) (ofproto-dpif.at:108): ok (0m0.267s 0m0.097s) 1050. ofproto-dpif - active-backup bonding (without primary) (ofproto-dpif.at:255): ok (0m0.234s 0m0.064s) 1052. ofproto-dpif - balance-tcp bonding (ofproto-dpif.at:361): ok (0m3.545s 0m1.506s) 1053. ofproto-dpif - balance-tcp bonding rebalance after link state changes (ofproto-dpif.at:431): ok (0m3.507s 0m1.595s) 1054. ofproto-dpif - balance-tcp bonding, different recirc flow (ofproto-dpif.at:503): ok (0m0.185s 0m0.065s) 1055. ofproto-dpif - resubmit (ofproto-dpif.at:561): ok (0m0.116s 0m0.049s) 1056. ofproto-dpif - goto table (ofproto-dpif.at:580): ok (0m0.325s 0m0.124s) 1057. ofproto-dpif - write actions (ofproto-dpif.at:594): ok (0m0.125s 0m0.047s) 1058. ofproto-dpif - modify IPv6 Neighbor Solitication (ND) (ofproto-dpif.at:611): ok (0m0.120s 0m0.047s) 1059. ofproto-dpif - clear actions (ofproto-dpif.at:630): ok (0m0.135s 0m0.042s) 1060. ofproto-dpif - group chaining (ofproto-dpif.at:646): ok (0m0.142s 0m0.050s) 1061. ofproto-dpif - all group in action list (ofproto-dpif.at:659): ok (0m0.130s 0m0.048s) 1062. ofproto-dpif - indirect group in action list (ofproto-dpif.at:674): ok (0m0.137s 0m0.042s) 1063. ofproto-dpif - group actions have no effect afterwards (ofproto-dpif.at:686): ok (0m0.168s 0m0.054s) 1064. ofproto-dpif - all group in action set (ofproto-dpif.at:706): ok (0m0.149s 0m0.031s) 1065. ofproto-dpif - indirect group in action set (ofproto-dpif.at:721): ok (0m0.152s 0m0.026s) 1066. ofproto-dpif - patch port with action set (ofproto-dpif.at:733): ok (0m0.149s 0m0.057s) 1067. ofproto-dpif - select group (ofproto-dpif.at:758): ok (0m0.269s 0m0.085s) 1068. ofproto-dpif - select group with watch port (ofproto-dpif.at:793): ok (0m0.166s 0m0.054s) 1069. ofproto-dpif - select group with weights (ofproto-dpif.at:814): ok (0m4.952s 0m1.366s) 1070. ofproto-dpif - select group with explicit dp_hash selection method (ofproto-dpif.at:888): ok (0m0.214s 0m0.086s) 1071. ofproto-dpif - select group with legacy hash selection method (ofproto-dpif.at:927): ok (0m0.286s 0m0.130s) 1072. ofproto-dpif - select group with custom hash selection method (ofproto-dpif.at:959): ok (0m0.452s 0m0.133s) 1073. ofproto-dpif - fast failover group (ofproto-dpif.at:1009): ok (0m0.139s 0m0.037s) 1074. ofproto-dpif - group stats single bucket (ofproto-dpif.at:1021): ok (0m0.181s 0m0.054s) 1075. ofproto-dpif - group stats all buckets (ofproto-dpif.at:1042): ok (0m0.168s 0m0.067s) 1076. ofproto-dpif - registers (ofproto-dpif.at:1063): ok (0m0.136s 0m0.030s) 1077. ofproto-dpif - extended registers (ofproto-dpif.at:1100): ok (0m0.109s 0m0.055s) 1078. ofproto-dpif - extended-extended registers (ofproto-dpif.at:1121): ok (0m0.131s 0m0.030s) 1079. ofproto-dpif - load and move order (ofproto-dpif.at:1140): ok (0m0.123s 0m0.054s) 1080. ofproto-dpif - copy-field into extended registers (ofproto-dpif.at:1154): ok (0m0.151s 0m0.035s) 1081. ofproto-dpif - masked set-field into metadata (ofproto-dpif.at:1174): ok (0m0.146s 0m0.042s) 1082. ofproto-dpif - actset_output (ofproto-dpif.at:1196): ok (0m0.183s 0m0.042s) 1083. ofproto-dpif - push-pop (ofproto-dpif.at:1241): ok (0m0.120s 0m0.042s) 1084. ofproto-dpif - output (ofproto-dpif.at:1260): ok (0m0.130s 0m0.032s) 1085. ofproto-dpif - dec_ttl (ofproto-dpif.at:1281): ok (0m0.160s 0m0.073s) 1086. ofproto-dpif - dec_ttl without arguments at offset 32 in ofpacts (ofproto-dpif.at:1326): ok (0m0.900s 0m0.355s) 1087. ofproto-dpif - dec_ttl with arguments at offset 32 in ofpacts (ofproto-dpif.at:1343): ok (0m0.860s 0m0.453s) 1088. ofproto-dpif - note at offset 24 in ofpacts (ofproto-dpif.at:1360): ok (0m0.907s 0m0.352s) 1089. ofproto-dpif - note action deep inside ofpacts (ofproto-dpif.at:1374): ok (0m0.090s 0m0.044s) 1090. ofproto-dpif - output, OFPP_NONE ingress port (ofproto-dpif.at:1380): ok (0m0.130s 0m0.046s) 1091. ofproto-dpif - DSCP (ofproto-dpif.at:1398): ok (0m0.116s 0m0.060s) 1092. ofproto-dpif - output/flood flags (ofproto-dpif.at:1425): ok (0m0.229s 0m0.061s) 1093. ofproto-dpif - Default Table Miss - OF1.0 (OFPTC_TABLE_MISS_CONTROLLER) (ofproto-dpif.at:1483): ok (0m0.186s 0m0.031s) 1094. ofproto-dpif - Default Table Miss - OF1.3 (OFPTC_TABLE_MISS_DROP) (ofproto-dpif.at:1517): ok (0m0.161s 0m0.043s) 1095. ofproto-dpif - Table Miss - goto table and OFPTC_TABLE_MISS_CONTROLLER (ofproto-dpif.at:1545): ok (0m0.194s 0m0.039s) 1096. ofproto-dpif - Table Miss - resubmit and OFPTC_TABLE_MISS_CONTROLLER (ofproto-dpif.at:1581): ok (0m0.165s 0m0.046s) 1097. ofproto-dpif - Table Miss - OFPTC_TABLE_MISS_CONTINUE (ofproto-dpif.at:1609): ok (0m0.229s 0m0.058s) 1098. ofproto-dpif - Table Miss - goto table and OFPTC_TABLE_MISS_CONTINUE (ofproto-dpif.at:1668): ok (0m0.257s 0m0.058s) 1099. ofproto-dpif - Table Miss - resubmit and OFPTC_TABLE_MISS_CONTINUE (ofproto-dpif.at:1732): ok (0m0.208s 0m0.061s) 1100. ofproto-dpif - Table Miss - OFPTC_TABLE_MISS_DROP (ofproto-dpif.at:1778): ok (0m0.148s 0m0.071s) 1101. ofproto-dpif - Table Miss - goto table and OFPTC_TABLE_MISS_DROP (ofproto-dpif.at:1806): ok (0m0.189s 0m0.048s) 1102. ofproto-dpif - Table Miss - resubmit and OFPTC_TABLE_MISS_DROP (ofproto-dpif.at:1837): ok (0m0.156s 0m0.081s) 1103. ofproto-dpif - controller (ofproto-dpif.at:1868): ok (0m0.489s 0m0.146s) 1104. ofproto-dpif - controller with slow-path action (ofproto-dpif.at:2137): ok (0m0.157s 0m0.051s) 1105. ofproto-dpif - controller action without megaflows (ofproto-dpif.at:2167): ok (0m0.320s 0m0.093s) 1106. ofproto-dpif - MPLS handling (ofproto-dpif.at:2238): ok (0m2.068s 0m0.508s) 1107. ofproto-dpif - MPLS handling with goto_table (ofproto-dpif.at:3288): ok (0m0.193s 0m0.046s) 1108. ofproto-dpif - MPLS handling with write_actions (ofproto-dpif.at:3336): ok (0m0.178s 0m0.071s) 1109. ofproto-dpif - table-miss flow (OpenFlow 1.0) (ofproto-dpif.at:3384): ok (0m0.174s 0m0.069s) 1110. ofproto-dpif - table-miss flow (OpenFlow 1.3) (ofproto-dpif.at:3424): ok (0m0.197s 0m0.080s) 1111. ofproto-dpif - table-miss flow with async config (OpenFlow 1.3) (ofproto-dpif.at:3465): ok (0m0.239s 0m0.059s) 1112. ofproto-dpif - table-miss flow (OpenFlow 1.4) (ofproto-dpif.at:3539): ok (0m0.205s 0m0.074s) 1113. ofproto-dpif - packet-in reasons (Openflow 1.3) (ofproto-dpif.at:3581): ok (0m0.235s 0m0.090s) 1114. ofproto-dpif - packet-in reasons (Openflow 1.4) (ofproto-dpif.at:3653): ok (0m0.250s 0m0.081s) 1115. ofproto-dpif - packet-in reasons (Openflow 1.3) (ofproto-dpif.at:3724): ok (0m0.414s 0m0.080s) 1116. ofproto-dpif - ARP modification slow-path (ofproto-dpif.at:3763): ok (0m0.148s 0m0.039s) 1117. ofproto-dpif - VLAN handling (ofproto-dpif.at:3792): ok (0m2.771s 0m0.851s) 1118. ofproto-dpif - VLAN depth limit (ofproto-dpif.at:3944): ok (0m0.170s 0m0.050s) 1119. ofproto-dpif - Multi-VLAN actions (ofproto-dpif.at:3973): ok (0m0.233s 0m0.089s) 1120. ofproto-dpif - MPLS handling (ofproto-dpif.at:4030): ok (0m0.249s 0m0.082s) 1121. ofproto-dpif - VLAN+MPLS handling (ofproto-dpif.at:4145): ok (0m0.648s 0m0.156s) 1122. ofproto-dpif - fragment handling - trace (ofproto-dpif.at:4636): ok (0m0.263s 0m0.088s) 1123. ofproto-dpif - fragment handling - upcall (ofproto-dpif.at:4685): ok (0m0.235s 0m0.071s) 1124. ofproto-dpif - fragment handling - actions (ofproto-dpif.at:4760): ok (0m0.422s 0m0.109s) 1125. ofproto-dpif - handling of malformed TCP packets (ofproto-dpif.at:4865): ok (0m0.190s 0m0.048s) 1126. ofproto-dpif - exit (ofproto-dpif.at:4913): ok (0m0.167s 0m0.042s) 1127. ofproto-dpif - mirroring, select_all (ofproto-dpif.at:4938): ok (0m0.120s 0m0.082s) 1128. ofproto-dpif - mirroring, select_src (ofproto-dpif.at:4969): ok (0m0.154s 0m0.046s) 1129. ofproto-dpif - mirroring, OFPP_NONE ingress port (ofproto-dpif.at:4998): ok (0m0.140s 0m0.039s) 1130. ofproto-dpif - mirroring, select_dst (ofproto-dpif.at:5020): ok (0m0.157s 0m0.042s) 1131. ofproto-dpif - mirroring, select_vlan (ofproto-dpif.at:5051): ok (0m0.180s 0m0.033s) 1132. ofproto-dpif - mirroring, output_port (ofproto-dpif.at:5087): ok (0m0.159s 0m0.037s) 1133. ofproto-dpif - mirroring, output_vlan (ofproto-dpif.at:5117): ok (0m0.199s 0m0.045s) 1134. ofproto-dpif - multiple VLAN output mirrors (ofproto-dpif.at:5154): ok (0m0.157s 0m0.029s) 1135. ofproto-dpif - mirroring with recirculation (ofproto-dpif.at:5183): ok (0m0.152s 0m0.048s) 1136. ofproto-dpif - mirroring, select_all with snaplen (ofproto-dpif.at:5209): ok (0m0.140s 0m0.047s) 1137. ofproto-dpif - mirroring, select_all with snaplen and reset snaplen (ofproto-dpif.at:5239): ok (0m0.179s 0m0.053s) 1138. ofproto-dpif - mirroring, select_src with snaplen (ofproto-dpif.at:5279): ok (0m0.159s 0m0.044s) 1139. ofproto-dpif - mirroring, OFPP_NONE ingress port with snaplen (ofproto-dpif.at:5308): ok (0m0.141s 0m0.039s) 1140. ofproto-dpif - mirroring, select_dst with snaplen (ofproto-dpif.at:5329): ok (0m0.159s 0m0.036s) 1141. ofproto-dpif - mirroring, select_vlan with snaplen (ofproto-dpif.at:5359): ok (0m0.154s 0m0.058s) 1142. ofproto-dpif - mirroring, output_port with snaplen (ofproto-dpif.at:5394): ok (0m0.152s 0m0.051s) 1143. ofproto-dpif - mirroring, output_vlan with snaplen (ofproto-dpif.at:5424): ok (0m0.144s 0m0.080s) 1145. ofproto-dpif - resubmit with recirculation (ofproto-dpif.at:5475): ok (0m0.150s 0m0.037s) 1146. ofproto-dpif - resubmit with tun_id (ofproto-dpif.at:5502): ok (0m0.130s 0m0.061s) 1147. ofproto-dpif - recirculation after resubmit (ofproto-dpif.at:5529): ok (0m0.142s 0m0.052s) 1148. ofproto-dpif - packet-out recirculation (ofproto-dpif.at:5553): ok (0m0.118s 0m0.059s) 1149. ofproto-dpif - packet-out recirculation with OFPP_NONE and OFPP_CONTROLLER (ofproto-dpif.at:5584): ok (0m0.126s 0m0.053s) 1150. ofproto-dpif - debug_slow action (ofproto-dpif.at:5610): ok (0m0.101s 0m0.059s) 1151. ofproto-dpif - continuation - pause at end of pipeline - OpenFlow10 (ofproto-dpif.at:5749): ok (0m0.373s 0m0.092s) 1152. ofproto-dpif - continuation - pause at end of pipeline - OpenFlow13 (ofproto-dpif.at:5749): ok (0m0.338s 0m0.102s) 1153. ofproto-dpif - continuation - actions - OpenFlow10 (ofproto-dpif.at:5752): ok (0m1.696s 0m0.546s) 1154. ofproto-dpif - continuation - actions - OpenFlow13 (ofproto-dpif.at:5752): ok (0m1.642s 0m0.582s) 1155. ofproto-dpif - continuation - resubmit - OpenFlow10 (ofproto-dpif.at:5760): ok (0m4.374s 0m1.483s) 1156. ofproto-dpif - continuation - resubmit - OpenFlow13 (ofproto-dpif.at:5760): ok (0m4.512s 0m1.398s) 1157. ofproto-dpif - continuation - action set - OpenFlow10 (ofproto-dpif.at:5768): ok (0m0.537s 0m0.185s) 1158. ofproto-dpif - continuation - action set - OpenFlow13 (ofproto-dpif.at:5768): ok (0m0.512s 0m0.208s) 1159. ofproto-dpif - continuation - goto_table - OpenFlow10 (ofproto-dpif.at:5773): ok (0m1.960s 0m0.582s) 1160. ofproto-dpif - continuation - goto_table - OpenFlow13 (ofproto-dpif.at:5773): ok (0m1.928s 0m0.681s) 1161. ofproto-dpif - continuation - write_metadata - OpenFlow10 (ofproto-dpif.at:5781): ok (0m1.968s 0m0.631s) 1162. ofproto-dpif - continuation - write_metadata - OpenFlow13 (ofproto-dpif.at:5781): ok (0m1.902s 0m0.563s) 1163. ofproto-dpif - continuation - data stack - OpenFlow10 (ofproto-dpif.at:5790): ok (0m1.203s 0m0.274s) 1164. ofproto-dpif - continuation - data stack - OpenFlow13 (ofproto-dpif.at:5790): ok (0m0.986s 0m0.456s) 1165. ofproto-dpif - continuation - mirroring - OpenFlow10 (ofproto-dpif.at:5808): ok (0m1.050s 0m0.298s) 1166. ofproto-dpif - continuation - mirroring - OpenFlow13 (ofproto-dpif.at:5808): ok (0m1.007s 0m0.365s) 1167. ofproto-dpif - continuation - patch ports - OpenFlow10 (ofproto-dpif.at:5819): ok (0m1.590s 0m0.438s) 1168. ofproto-dpif - continuation - patch ports - OpenFlow13 (ofproto-dpif.at:5819): ok (0m1.506s 0m0.430s) 1169. ofproto-dpif - continuation flow stats (ofproto-dpif.at:5831): ok (0m0.307s 0m0.035s) 1170. ofproto-dpif - continuation with conntrack (ofproto-dpif.at:5865): ok (0m0.254s 0m0.086s) 1171. ofproto-dpif - continuation with patch port (ofproto-dpif.at:5900): ok (0m0.265s 0m0.079s) 1172. ofproto-dpif - continuation after clone (ofproto-dpif.at:5942): ok (0m0.370s 0m0.067s) 1173. ofproto-dpif - ofproto/trace command 1 (ofproto-dpif.at:5985): ok (0m0.393s 0m0.083s) 1174. ofproto-dpif - ofproto/trace command 2 (ofproto-dpif.at:6129): ok (0m0.397s 0m0.118s) 1175. ofproto-dpif - ofproto/trace from dpctl output (ofproto-dpif.at:6238): ok (0m0.188s 0m0.041s) 1176. ofproto-dpif - ofproto/trace-packet-out (ofproto-dpif.at:6285): ok (0m0.136s 0m0.038s) 1177. ofproto-dpif - MAC learning (ofproto-dpif.at:6315): ok (0m0.359s 0m0.126s) 1178. ofproto-dpif - MAC table overflow (ofproto-dpif.at:6404): ok (0m0.520s 0m0.164s) 1179. ofproto-dpif - MAC table overflow fairness (ofproto-dpif.at:6464): ok (0m0.366s 0m0.099s) 1180. ofproto-dpif - static-mac add/del/flush (ofproto-dpif.at:6937): ok (0m0.357s 0m0.169s) 1181. ofproto-dpif - static-mac mac moves (ofproto-dpif.at:6987): ok (0m0.275s 0m0.106s) 1182. ofproto-dpif - basic truncate action (ofproto-dpif.at:7036): ok (0m0.293s 0m0.107s) 1183. ofproto-dpif - truncate and output to patch port (ofproto-dpif.at:7112): ok (0m0.141s 0m0.043s) 1184. ofproto-dpif - truncate and output to gre tunnel (ofproto-dpif.at:7133): ok (0m0.143s 0m0.040s) 1185. ofproto-dpif - sFlow packet sampling - IPv4 collector (ofproto-dpif.at:7160): ok (0m0.220s 0m0.064s) 1186. ofproto-dpif - sFlow packet sampling - IPv6 collector (ofproto-dpif.at:7164): skipped (ofproto-dpif.at:7165) 1187. ofproto-dpif - sFlow packet sampling - LACP structures (ofproto-dpif.at:7170): ok (0m0.170s 0m0.063s) 1188. ofproto-dpif - sFlow packet sampling - tunnel set (ofproto-dpif.at:7227): ok (0m0.349s 0m0.167s) 1189. ofproto-dpif - sFlow packet sampling - tunnel push (ofproto-dpif.at:7296): ok (0m0.426s 0m0.134s) 1190. ofproto-dpif - sFlow packet sampling - MPLS (ofproto-dpif.at:7398): ok (0m0.350s 0m0.140s) 1191. ofproto-dpif - NetFlow flow expiration - IPv4 collector (ofproto-dpif.at:7534): ok (0m0.250s 0m0.085s) 1192. ofproto-dpif - NetFlow flow expiration - IPv6 collector (ofproto-dpif.at:7538): skipped (ofproto-dpif.at:7539) 1193. ofproto-dpif - NetFlow active expiration - IPv4 collector (ofproto-dpif.at:7618): ok (0m1.193s 0m0.397s) 1194. ofproto-dpif - NetFlow active expiration - IPv6 collector (ofproto-dpif.at:7622): skipped (ofproto-dpif.at:7623) 1195. ofproto-dpif - Bridge IPFIX sanity check (ofproto-dpif.at:7630): ok (0m0.297s 0m0.162s) 1196. ofproto-dpif - Bridge IPFIX statistics check (ofproto-dpif.at:7701): ok (0m0.328s 0m0.131s) 1197. ofproto-dpif - Flow IPFIX sanity check (ofproto-dpif.at:7745): ok (0m0.253s 0m0.059s) 1198. ofproto-dpif - Flow IPFIX sanity check - tunnel set (ofproto-dpif.at:7795): ok (0m0.281s 0m0.065s) 1199. ofproto-dpif - clone action (ofproto-dpif.at:7867): ok (0m0.248s 0m0.086s) 1200. ofproto-dpif - Flow IPFIX statistics check (ofproto-dpif.at:7937): ok (0m0.358s 0m0.143s) 1201. ofproto-dpif - flow stats (ofproto-dpif.at:7987): ok (0m0.208s 0m0.081s) 1202. ofproto-dpif - flow stats reset_counts (ofproto-dpif.at:8008): ok (0m3.044s 0m0.682s) 1203. ofproto-dpif - flow stats reset_counts OpenFlow1.5 (ofproto-dpif.at:8181): ok (0m0.858s 0m0.192s) 1204. ofproto-dpif - flow stats, set-n-threads (ofproto-dpif.at:8267): ok (0m0.214s 0m0.084s) 1205. ofproto-dpif - idle_age and hard_age increase over time (ofproto-dpif.at:8290): ok (0m0.282s 0m0.079s) 1206. ofproto-dpif - fin_timeout (ofproto-dpif.at:8380): ok (0m0.188s 0m0.074s) 1207. ofproto-dpif - ovs-appctl dpif/dump-dps (ofproto-dpif.at:8414): ok (0m0.121s 0m0.046s) 1208. ofproto-dpif - ovs-appctl dpif/show (ofproto-dpif.at:8426): ok (0m0.119s 0m0.043s) 1209. ofproto-dpif - ovs-appctl dpif/dump-flows (ofproto-dpif.at:8445): ok (0m0.213s 0m0.079s) 1210. ofproto-dpif - ovs-appctl dpif/get-flow (ofproto-dpif.at:8503): ok (0m0.116s 0m0.053s) 1211. ofproto-dpif - ovs-appctl dpif/get-flow - pmd (ofproto-dpif.at:8504): ok (0m0.164s 0m0.025s) 1212. ofproto-dpif - MPLS actions that result in a userspace action (ofproto-dpif.at:8506): ok (0m0.159s 0m0.057s) 1213. ofproto-dpif - MPLS actions that result in a drop (ofproto-dpif.at:8542): ok (0m0.161s 0m0.063s) 1214. ofproto-dpif - patch ports (ofproto-dpif.at:8580): ok (0m0.380s 0m0.118s) 1215. ofproto-dpif - patch ports - stack (ofproto-dpif.at:8655): ok (0m0.218s 0m0.063s) 1216. ofproto-dpif - port duration (ofproto-dpif.at:8704): ok (0m0.133s 0m0.044s) 1217. ofproto-dpif - patch ports - meter (clone) (ofproto-dpif.at:8722): ok (0m0.197s 0m0.043s) 1218. ofproto-dpif megaflow - port classification (ofproto-dpif.at:8752): ok (0m0.175s 0m0.043s) 1219. ofproto-dpif megaflow - L2 classification (ofproto-dpif.at:8770): ok (0m0.143s 0m0.066s) 1220. ofproto-dpif megaflow - L3 classification (ofproto-dpif.at:8788): ok (0m0.158s 0m0.068s) 1221. ofproto-dpif megaflow - IPv6 classification (ofproto-dpif.at:8807): ok (0m0.170s 0m0.052s) 1222. ofproto-dpif megaflow - L4 classification (ofproto-dpif.at:8826): ok (0m0.148s 0m0.065s) 1223. ofproto-dpif megaflow - normal (ofproto-dpif.at:8861): ok (0m0.171s 0m0.050s) 1224. ofproto-dpif megaflow - normal - pmd (ofproto-dpif.at:8862): ok (0m0.177s 0m0.039s) 1225. ofproto-dpif megaflow - mpls (ofproto-dpif.at:8864): ok (0m0.151s 0m0.057s) 1226. ofproto-dpif megaflow - netflow - IPv4 collector (ofproto-dpif.at:8910): ok (0m0.191s 0m0.071s) 1227. ofproto-dpif megaflow - netflow - IPv6 collector (ofproto-dpif.at:8914): skipped (ofproto-dpif.at:8915) 1228. ofproto-dpif megaflow - normal, active-backup bonding - dummy (ofproto-dpif.at:8942): ok (0m0.155s 0m0.067s) 1229. ofproto-dpif megaflow - normal, active-backup bonding - dummy-pmd (ofproto-dpif.at:8943): ok (0m0.169s 0m0.043s) 1230. ofproto-dpif megaflow - normal, balance-slb bonding (ofproto-dpif.at:8945): ok (0m0.174s 0m0.047s) 1231. ofproto-dpif megaflow - normal, balance-tcp bonding (ofproto-dpif.at:8966): ok (0m0.174s 0m0.073s) 1232. ofproto-dpif megaflow - resubmit port action (ofproto-dpif.at:9004): ok (0m0.173s 0m0.045s) 1233. ofproto-dpif megaflow - resubmit table action (ofproto-dpif.at:9023): ok (0m0.168s 0m0.050s) 1234. ofproto-dpif megaflow - goto_table action (ofproto-dpif.at:9043): ok (0m0.129s 0m0.092s) 1235. ofproto-dpif megaflow - mirroring, select_all (ofproto-dpif.at:9062): ok (0m0.174s 0m0.058s) 1236. ofproto-dpif megaflow - mirroring, select_vlan (ofproto-dpif.at:9086): ok (0m0.177s 0m0.044s) 1237. ofproto-dpif megaflow - move action (ofproto-dpif.at:9109): ok (0m0.144s 0m0.064s) 1238. ofproto-dpif megaflow - push action (ofproto-dpif.at:9129): ok (0m0.153s 0m0.056s) 1239. ofproto-dpif megaflow - learning (ofproto-dpif.at:9147): ok (0m0.196s 0m0.058s) 1240. ofproto-dpif megaflow - tunnels (ofproto-dpif.at:9174): ok (0m0.189s 0m0.077s) 1241. ofproto-dpif megaflow - dec_ttl (ofproto-dpif.at:9207): ok (0m0.155s 0m0.073s) 1242. ofproto-dpif megaflow - set dl_dst (ofproto-dpif.at:9226): ok (0m0.151s 0m0.064s) 1243. ofproto-dpif megaflow - set dl_dst with match on dl_src (ofproto-dpif.at:9247): ok (0m0.157s 0m0.070s) 1244. ofproto-dpif megaflow - disabled (ofproto-dpif.at:9305): ok (0m0.251s 0m0.084s) 1245. ofproto-dpif megaflow - disabled - pmd (ofproto-dpif.at:9306): ok (0m0.230s 0m0.090s) 1246. ofproto-dpif - datapath port number change (ofproto-dpif.at:9308): ok (0m0.126s 0m0.048s) 1247. ofproto - bundle with variable bfd/cfm config (ofproto-dpif.at:9330): ok (0m0.285s 0m0.052s) 1248. ofproto-dpif - ofproto-dpif-monitor 1 (ofproto-dpif.at:9408): ok (0m0.237s 0m0.067s) 1249. ofproto-dpif - ofproto-dpif-monitor 2 (ofproto-dpif.at:9455): ok (0m3.689s 0m1.187s) 1250. ofproto-dpif - forward resubmit (ofproto-dpif.at:9470): ok (0m0.733s 0m0.312s) 1251. ofproto-dpif - backward resubmit (ofproto-dpif.at:9487): ok (0m0.522s 0m0.248s) 1252. ofproto-dpif - infinite resubmit (ofproto-dpif.at:9507): ok (0m0.132s 0m0.042s) 1253. ofproto-dpif - backward resubmit without trace (ofproto-dpif.at:9523): ok (0m0.527s 0m0.197s) 1254. ofproto-dpif - exponential resubmit chain (ofproto-dpif.at:9546): ok (0m0.613s 0m0.190s) 1255. ofproto-dpif - too many output actions (ofproto-dpif.at:9564): ok (0m0.300s 0m0.067s) 1256. ofproto-dpif - stack too deep (ofproto-dpif.at:9582): ok (0m0.316s 0m0.137s) 1257. ofproto-dpif packet-out controller (ofproto-dpif.at:9602): ok (0m0.240s 0m0.089s) 1258. ofproto-dpif packet-out controller (patch port) (ofproto-dpif.at:9646): ok (0m0.243s 0m0.050s) 1259. ofproto-dpif packet-out pipeline match field (OpenFlow 1.5) (ofproto-dpif.at:9699): ok (0m0.348s 0m0.089s) 1260. ofproto-dpif packet-out goto_table (ofproto-dpif.at:9749): ok (0m0.224s 0m0.050s) 1261. ofproto-dpif packet-out table-miss (continue) (ofproto-dpif.at:9803): ok (0m0.216s 0m0.033s) 1262. ofproto-dpif packet-out table meter drop (ofproto-dpif.at:9853): ok (0m0.208s 0m0.050s) 1263. ofproto-dpif - ICMPv6 (ofproto-dpif.at:9873): ok (0m0.131s 0m0.044s) 1264. ofproto-dpif - ICMPv6 type match (ofproto-dpif.at:9893): ok (0m0.171s 0m0.097s) 1265. ofproto-dpif - Neighbor Discovery set-field with checksum update (ofproto-dpif.at:9923): ok (0m0.135s 0m0.054s) 1266. ofproto-dpif - vlan matching (ofproto-dpif.at:9945): ok (0m0.153s 0m0.063s) 1267. ofproto-dpif - in place modification (ofproto-dpif.at:9963): ok (0m0.226s 0m0.059s) 1268. ofproto-dpif - in place modification (vlan) (ofproto-dpif.at:10008): ok (0m0.299s 0m0.101s) 1269. ofproto-dpif - trace (unchanged) (ofproto-dpif.at:10090): ok (0m0.140s 0m0.034s) 1270. ofproto-dpif - conntrack - controller (ofproto-dpif.at:10102): ok (0m0.201s 0m0.058s) 1271. ofproto-dpif - conntrack - force commit (ofproto-dpif.at:10228): ok (0m0.208s 0m0.061s) 1272. ofproto-dpif - conntrack - ipv6 (ofproto-dpif.at:10310): ok (0m0.151s 0m0.055s) 1273. ofproto-dpif - conntrack - output action (ofproto-dpif.at:10360): ok (0m0.182s 0m0.043s) 1274. ofproto-dpif - conntrack - expiration (ofproto-dpif.at:10419): ok (0m0.171s 0m0.060s) 1275. ofproto-dpif - conntrack - untrackable traffic (ofproto-dpif.at:10473): ok (0m0.142s 0m0.070s) 1276. ofproto-dpif - conntrack - zones (ofproto-dpif.at:10505): ok (0m0.175s 0m0.064s) 1277. ofproto-dpif - conntrack - recirc,commit (ofproto-dpif.at:10570): ok (0m0.154s 0m0.068s) 1278. ofproto-dpif - conntrack - ICMP related (ofproto-dpif.at:10620): ok (0m0.222s 0m0.080s) 1279. ofproto-dpif - conntrack - ct_mark (ofproto-dpif.at:10670): ok (0m0.191s 0m0.040s) 1280. ofproto-dpif - conntrack - ct_label (ofproto-dpif.at:10731): ok (0m0.137s 0m0.078s) 1281. ofproto-dpif - conntrack - ct_label datapath flow (ofproto-dpif.at:10779): ok (0m0.163s 0m0.041s) 1282. ofproto-dpif - conntrack - no output (ofproto-dpif.at:10827): ok (0m0.138s 0m0.056s) 1283. ofproto-dpif - conntrack - tcp port reuse (ofproto-dpif.at:10851): ok (0m0.256s 0m0.067s) 1284. ofproto-dpif - conntrack - tcp pick up (ofproto-dpif.at:10915): ok (0m0.190s 0m0.121s) 1285. ofproto-dpif - conntrack - disable tcp sequence checking (ofproto-dpif.at:11000): ok (0m0.483s 0m0.190s) 1286. ofproto-dpif - conntrack - ct_clear (ofproto-dpif.at:11141): ok (0m0.252s 0m0.049s) 1287. ofproto-dpif - conntrack - match masked ct fields (ofproto-dpif.at:11223): ok (0m0.145s 0m0.094s) 1288. ofproto-dpif - conntrack - ofproto/trace (ofproto-dpif.at:11279): ok (0m0.198s 0m0.036s) 1289. ofproto-dpif - nat - ofproto/trace (ofproto-dpif.at:11337): ok (0m0.144s 0m0.076s) 1290. ofproto - set mtu (ofproto-dpif.at:11373): ok (0m0.210s 0m0.101s) 1291. ofproto - fragment prerequisites (ofproto-dpif.at:11423): ok (0m0.185s 0m0.044s) 1292. ofproto-dpif - check_pkt_larger action (ofproto-dpif.at:11458): ok (0m0.335s 0m0.109s) 1293. ofproto-dpif - check_pkt_larger with continuation and ct (ofproto-dpif.at:11602): ok (0m0.232s 0m0.060s) 1294. bridge - ports that disappear get added back (bridge.at:7): ok (0m0.150s 0m0.029s) 1295. bridge - multiple bridges share a controller (bridge.at:44): ok (0m0.307s 0m0.127s) 1296. bridge - add port after stopping controller (bridge.at:83): ok (0m0.147s 0m0.044s) 1297. bridge - change ofproto versions (bridge.at:107): ok (0m0.133s 0m0.043s) 1298. bridge - set MAC address of internal port (netdev-type.at:4): ok (0m0.101s 0m0.075s) 1299. create empty, reread (ovsdb-log.at:3): ok (0m0.023s 0m0.010s) 1300. write one, reread (ovsdb-log.at:18): ok (0m0.028s 0m0.004s) 1301. check that create fails if file exists (ovsdb-log.at:35): ok (0m0.038s 0m0.015s) 1302. write one, reread (ovsdb-log.at:60): ok (0m0.028s 0m0.004s) 1303. write one, replace, commit (ovsdb-log.at:81): ok (0m0.041s 0m0.018s) 1304. write one, replace, abort (ovsdb-log.at:118): ok (0m0.033s 0m0.026s) 1305. write one, reread - alternative magic (ovsdb-log.at:155): ok (0m0.025s 0m0.021s) 1306. write one, reread, append (ovsdb-log.at:182): ok (0m0.029s 0m0.018s) 1307. write, reread one, overwrite (ovsdb-log.at:212): ok (0m0.037s 0m0.008s) 1308. write, add corrupted data, read (ovsdb-log.at:238): ok (0m0.026s 0m0.007s) 1309. write, add corrupted data, read, overwrite (ovsdb-log.at:260): ok (0m0.035s 0m0.013s) 1310. write, corrupt some data, read, overwrite (ovsdb-log.at:292): ok (0m0.052s 0m0.011s) 1311. write, truncate file, read, overwrite (ovsdb-log.at:325): ok (0m0.049s 0m0.015s) 1312. write bad JSON, read, overwrite (ovsdb-log.at:358): ok (0m0.036s 0m0.006s) 1313. integer - C (ovsdb-types.at:3): ok (0m0.014s 0m0.000s) 1314. integer - Python3 (ovsdb-types.at:3): ok (0m0.324s 0m0.049s) 1315. real - C (ovsdb-types.at:5): ok (0m0.011s 0m0.004s) 1316. real - Python3 (ovsdb-types.at:5): ok (0m0.385s 0m0.040s) 1317. boolean - C (ovsdb-types.at:7): ok (0m0.014s 0m0.001s) 1318. boolean - Python3 (ovsdb-types.at:7): ok (0m0.345s 0m0.062s) 1319. string - C (ovsdb-types.at:9): ok (0m0.010s 0m0.006s) 1320. string - Python3 (ovsdb-types.at:9): ok (0m0.388s 0m0.064s) 1321. uuid - C (ovsdb-types.at:11): ok (0m0.010s 0m0.005s) 1322. uuid - Python3 (ovsdb-types.at:11): ok (0m0.379s 0m0.054s) 1323. void is not a valid atomic-type - C (ovsdb-types.at:13): ok (0m0.015s 0m0.007s) 1324. void is not a valid atomic-type - Python3 (ovsdb-types.at:13): ok (0m0.393s 0m0.044s) 1325. integer enum - C (ovsdb-types.at:18): ok (0m0.010s 0m0.005s) 1326. integer enum - Python3 (ovsdb-types.at:18): ok (0m0.393s 0m0.034s) 1327. integer >= 5 - C (ovsdb-types.at:21): ok (0m0.014s 0m0.001s) 1328. integer >= 5 - Python3 (ovsdb-types.at:21): ok (0m0.353s 0m0.064s) 1329. integer <= 7 - C (ovsdb-types.at:24): ok (0m0.010s 0m0.004s) 1330. integer <= 7 - Python3 (ovsdb-types.at:24): ok (0m0.379s 0m0.045s) 1331. integer between -5 and 10 - C (ovsdb-types.at:27): ok (0m0.010s 0m0.005s) 1332. integer between -5 and 10 - Python3 (ovsdb-types.at:27): ok (0m0.355s 0m0.075s) 1333. integer max may not be less than min - C (ovsdb-types.at:30): ok (0m0.019s 0m0.003s) 1334. integer max may not be less than min - Python3 (ovsdb-types.at:30): ok (0m0.381s 0m0.052s) 1335. real enum - C (ovsdb-types.at:34): ok (0m0.006s 0m0.009s) 1336. real enum - Python3 (ovsdb-types.at:34): ok (0m0.398s 0m0.031s) 1337. real >= -1.5 - C (ovsdb-types.at:37): ok (0m0.014s 0m0.000s) 1338. real >= -1.5 - Python3 (ovsdb-types.at:37): ok (0m0.399s 0m0.020s) 1339. real <= 1e5 - C (ovsdb-types.at:40): ok (0m0.009s 0m0.006s) 1340. real <= 1e5 - Python3 (ovsdb-types.at:40): ok (0m0.328s 0m0.083s) 1341. real between -2.5 and 3.75 - C (ovsdb-types.at:43): ok (0m0.010s 0m0.004s) 1342. real between -2.5 and 3.75 - Python3 (ovsdb-types.at:43): ok (0m0.375s 0m0.050s) 1343. real max may not be less than min - C (ovsdb-types.at:46): ok (0m0.016s 0m0.005s) 1344. real max may not be less than min - Python3 (ovsdb-types.at:46): ok (0m0.404s 0m0.031s) 1345. boolean - C (ovsdb-types.at:50): ok (0m0.011s 0m0.003s) 1346. boolean - Python3 (ovsdb-types.at:50): ok (0m0.402s 0m0.010s) 1347. boolean enum - C (ovsdb-types.at:52): ok (0m0.015s 0m0.000s) 1348. boolean enum - Python3 (ovsdb-types.at:52): ok (0m0.333s 0m0.085s) 1349. string enum - C (ovsdb-types.at:56): ok (0m0.013s 0m0.000s) 1350. string enum - Python3 (ovsdb-types.at:56): ok (0m0.291s 0m0.080s) 1351. string minLength - C (ovsdb-types.at:59): ok (0m0.015s 0m0.000s) 1352. string minLength - Python3 (ovsdb-types.at:59): ok (0m0.311s 0m0.110s) 1353. string maxLength - C (ovsdb-types.at:62): ok (0m0.011s 0m0.004s) 1354. string maxLength - Python3 (ovsdb-types.at:62): ok (0m0.386s 0m0.030s) 1355. string minLength and maxLength - C (ovsdb-types.at:65): ok (0m0.014s 0m0.001s) 1356. string minLength and maxLength - Python3 (ovsdb-types.at:65): ok (0m0.315s 0m0.081s) 1357. maxLength must not be less than minLength - C (ovsdb-types.at:68): ok (0m0.015s 0m0.007s) 1358. maxLength must not be less than minLength - Python3 (ovsdb-types.at:68): ok (0m0.343s 0m0.088s) 1359. maxLength must not be negative - C (ovsdb-types.at:71): ok (0m0.015s 0m0.007s) 1360. maxLength must not be negative - Python3 (ovsdb-types.at:71): ok (0m0.374s 0m0.059s) 1361. uuid enum - C (ovsdb-types.at:75): ok (0m0.015s 0m0.000s) 1362. uuid enum - Python3 (ovsdb-types.at:75): ok (0m0.403s 0m0.020s) 1363. uuid refTable - C (ovsdb-types.at:78): ok (0m0.015s 0m0.000s) 1364. uuid refTable - Python3 (ovsdb-types.at:78): ok (0m0.371s 0m0.050s) 1365. uuid refTable must be valid id - C (ovsdb-types.at:81): ok (0m0.022s 0m0.000s) 1366. uuid refTable must be valid id - Python3 (ovsdb-types.at:81): ok (0m0.376s 0m0.052s) 1367. void is not a valid base-type - C (ovsdb-types.at:85): ok (0m0.015s 0m0.007s) 1368. void is not a valid base-type - Python3 (ovsdb-types.at:85): ok (0m0.330s 0m0.100s) 1369. "type" member must be present - C (ovsdb-types.at:87): ok (0m0.014s 0m0.006s) 1370. "type" member must be present - Python3 (ovsdb-types.at:87): ok (0m0.363s 0m0.062s) 1371. simple integer - C (ovsdb-types.at:92): ok (0m0.010s 0m0.004s) 1372. simple integer - Python3 (ovsdb-types.at:92): ok (0m0.371s 0m0.040s) 1373. simple real - C (ovsdb-types.at:94): ok (0m0.010s 0m0.005s) 1374. simple real - Python3 (ovsdb-types.at:94): ok (0m0.335s 0m0.062s) 1375. simple boolean - C (ovsdb-types.at:96): ok (0m0.006s 0m0.008s) 1376. simple boolean - Python3 (ovsdb-types.at:96): ok (0m0.275s 0m0.038s) 1377. simple string - C (ovsdb-types.at:98): ok (0m0.010s 0m0.004s) 1378. simple string - Python3 (ovsdb-types.at:98): ok (0m0.345s 0m0.044s) 1379. simple uuid - C (ovsdb-types.at:100): ok (0m0.012s 0m0.003s) 1380. simple uuid - Python3 (ovsdb-types.at:100): ok (0m0.373s 0m0.044s) 1381. integer in object - C (ovsdb-types.at:102): ok (0m0.015s 0m0.000s) 1382. integer in object - Python3 (ovsdb-types.at:102): ok (0m0.364s 0m0.054s) 1383. real in object with explicit min and max - C (ovsdb-types.at:104): ok (0m0.010s 0m0.004s) 1384. real in object with explicit min and max - Python3 (ovsdb-types.at:104): ok (0m0.365s 0m0.075s) 1385. key type is required - C (ovsdb-types.at:107): ok (0m0.019s 0m0.005s) 1386. key type is required - Python3 (ovsdb-types.at:107): ok (0m0.376s 0m0.046s) 1387. void is not a valid type - C (ovsdb-types.at:109): ok (0m0.019s 0m0.002s) 1388. void is not a valid type - Python3 (ovsdb-types.at:109): ok (0m0.320s 0m0.071s) 1389. optional boolean - C (ovsdb-types.at:114): ok (0m0.011s 0m0.003s) 1390. optional boolean - Python3 (ovsdb-types.at:114): ok (0m0.381s 0m0.050s) 1391. set of 1 to 3 uuids - C (ovsdb-types.at:118): ok (0m0.015s 0m0.000s) 1392. set of 1 to 3 uuids - Python3 (ovsdb-types.at:118): ok (0m0.263s 0m0.041s) 1393. set of 0 to 3 strings - C (ovsdb-types.at:121): ok (0m0.013s 0m0.001s) 1394. set of 0 to 3 strings - Python3 (ovsdb-types.at:121): ok (0m0.387s 0m0.034s) 1395. set of 0 or more integers - C (ovsdb-types.at:124): ok (0m0.015s 0m0.000s) 1396. set of 0 or more integers - Python3 (ovsdb-types.at:124): ok (0m0.383s 0m0.044s) 1397. set of 1 or more reals - C (ovsdb-types.at:127): ok (0m0.010s 0m0.004s) 1398. set of 1 or more reals - Python3 (ovsdb-types.at:127): ok (0m0.333s 0m0.085s) 1399. set max cannot be less than min - C (ovsdb-types.at:131): ok (0m0.018s 0m0.004s) 1400. set max cannot be less than min - Python3 (ovsdb-types.at:131): ok (0m0.392s 0m0.039s) 1401. set max cannot be negative - C (ovsdb-types.at:134): ok (0m0.017s 0m0.005s) 1402. set max cannot be negative - Python3 (ovsdb-types.at:134): ok (0m0.342s 0m0.092s) 1403. set min cannot be negative - C (ovsdb-types.at:137): ok (0m0.017s 0m0.003s) 1404. set min cannot be negative - Python3 (ovsdb-types.at:137): ok (0m0.404s 0m0.026s) 1405. set min cannot be greater than one - C (ovsdb-types.at:140): ok (0m0.018s 0m0.004s) 1406. set min cannot be greater than one - Python3 (ovsdb-types.at:140): ok (0m0.372s 0m0.072s) 1407. map of 1 integer to boolean - C (ovsdb-types.at:146): ok (0m0.014s 0m0.000s) 1408. map of 1 integer to boolean - Python3 (ovsdb-types.at:146): ok (0m0.369s 0m0.050s) 1409. map of 1 boolean to integer, explicit min and max - C (ovsdb-types.at:149): ok (0m0.010s 0m0.004s) 1410. map of 1 boolean to integer, explicit min and max - Python3 (ovsdb-types.at:149): ok (0m0.381s 0m0.040s) 1411. map of 1 to 5 uuid to real - C (ovsdb-types.at:152): ok (0m0.011s 0m0.004s) 1412. map of 1 to 5 uuid to real - Python3 (ovsdb-types.at:152): ok (0m0.358s 0m0.069s) 1413. map of 0 to 10 string to uuid - C (ovsdb-types.at:155): ok (0m0.015s 0m0.000s) 1414. map of 0 to 10 string to uuid - Python3 (ovsdb-types.at:155): ok (0m0.359s 0m0.072s) 1415. map of 1 to 20 real to string - C (ovsdb-types.at:158): ok (0m0.010s 0m0.005s) 1416. map of 1 to 20 real to string - Python3 (ovsdb-types.at:158): ok (0m0.385s 0m0.051s) 1417. map of 0 or more string to real - C (ovsdb-types.at:161): ok (0m0.010s 0m0.004s) 1418. map of 0 or more string to real - Python3 (ovsdb-types.at:161): ok (0m0.386s 0m0.037s) 1419. map key type is required - C (ovsdb-types.at:165): ok (0m0.018s 0m0.005s) 1420. map key type is required - Python3 (ovsdb-types.at:165): ok (0m0.354s 0m0.082s) 1421. default atoms - C (ovsdb-data.at:3): ok (0m0.015s 0m0.000s) 1422. default atoms - Python3 (ovsdb-data.at:3): ok (0m0.359s 0m0.070s) 1423. default data - C (ovsdb-data.at:11): ok (0m0.012s 0m0.003s) 1424. default data - Python3 (ovsdb-data.at:11): ok (0m0.297s 0m0.069s) 1425. integer atom from JSON - C (ovsdb-data.at:76): ok (0m0.011s 0m0.004s) 1426. integer atom from JSON - Python3 (ovsdb-data.at:76): ok (0m0.375s 0m0.060s) 1427. integer atom from string (ovsdb-data.at:89): ok (0m0.011s 0m0.005s) 1428. real atom from JSON - C (ovsdb-data.at:116): ok (0m0.010s 0m0.005s) 1429. real atom from JSON - Python3 (ovsdb-data.at:116): ok (0m0.346s 0m0.079s) 1430. real atom from string (ovsdb-data.at:133): ok (0m0.010s 0m0.004s) 1431. boolean atom from JSON - C (ovsdb-data.at:150): ok (0m0.012s 0m0.003s) 1432. boolean atom from JSON - Python3 (ovsdb-data.at:150): ok (0m0.379s 0m0.035s) 1433. boolean atom from string (ovsdb-data.at:155): ok (0m0.014s 0m0.000s) 1434. string atom from JSON - C (ovsdb-data.at:160): ok (0m0.014s 0m0.000s) 1435. string atom from JSON - Python3 (ovsdb-data.at:160): ok (0m0.324s 0m0.081s) 1436. string atom from string (ovsdb-data.at:166): ok (0m0.014s 0m0.001s) 1437. uuid atom from JSON - C (ovsdb-data.at:181): ok (0m0.010s 0m0.005s) 1438. uuid atom from JSON - Python3 (ovsdb-data.at:181): ok (0m0.380s 0m0.024s) 1439. uuid atom from string (ovsdb-data.at:185): ok (0m0.007s 0m0.007s) 1440. integer atom sorting - C (ovsdb-data.at:189): ok (0m0.008s 0m0.004s) 1441. integer atom sorting - Python3 (ovsdb-data.at:189): ok (0m0.240s 0m0.080s) 1442. real atom sorting - C (ovsdb-data.at:193): ok (0m0.009s 0m0.004s) 1443. real atom sorting - Python3 (ovsdb-data.at:193): ok (0m0.347s 0m0.070s) 1444. boolean atom sorting - C (ovsdb-data.at:197): ok (0m0.007s 0m0.007s) 1445. boolean atom sorting - Python3 (ovsdb-data.at:197): ok (0m0.288s 0m0.135s) 1446. string atom sorting - C (ovsdb-data.at:201): ok (0m0.015s 0m0.000s) 1447. string atom sorting - Python3 (ovsdb-data.at:201): ok (0m0.345s 0m0.069s) 1448. uuid atom sorting - C (ovsdb-data.at:205): ok (0m0.011s 0m0.003s) 1449. uuid atom sorting - Python3 (ovsdb-data.at:205): ok (0m0.365s 0m0.069s) 1450. real not acceptable integer JSON atom - C (ovsdb-data.at:242): ok (0m0.010s 0m0.004s) 1451. real not acceptable integer JSON atom - Python3 (ovsdb-data.at:242): ok (0m0.387s 0m0.030s) 1452. no invalid UTF-8 sequences in strings (ovsdb-data.at:248): ok (0m0.007s 0m0.007s) 1453. real not acceptable integer string atom (ovsdb-data.at:271): ok (0m0.019s 0m0.003s) 1454. inverted range is not acceptable integer string atom positive and negative (ovsdb-data.at:275): ok (0m0.019s 0m0.002s) 1455. inverted range is not acceptable integer string atom negative (ovsdb-data.at:279): ok (0m0.018s 0m0.003s) 1456. inverted range is not acceptable integer string atom positive (ovsdb-data.at:283): ok (0m0.017s 0m0.004s) 1457. too big range is not acceptable integer string atom positive and negative (ovsdb-data.at:287): ok (0m0.022s 0m0.000s) 1458. too big range is not acceptable integer string atom negative (ovsdb-data.at:291): ok (0m0.013s 0m0.008s) 1459. too big range is not acceptable integer string atom positive (ovsdb-data.at:295): ok (0m0.019s 0m0.002s) 1460. string "true" not acceptable boolean JSON atom - C (ovsdb-data.at:299): ok (0m0.014s 0m0.000s) 1461. string "true" not acceptable boolean JSON atom - Python3 (ovsdb-data.at:299): ok (0m0.376s 0m0.041s) 1462. string "true" not acceptable boolean string atom (ovsdb-data.at:303): ok (0m0.019s 0m0.003s) 1463. integer not acceptable string JSON atom - C (ovsdb-data.at:307): ok (0m0.014s 0m0.001s) 1464. integer not acceptable string JSON atom - Python3 (ovsdb-data.at:307): ok (0m0.293s 0m0.123s) 1465. uuid atom must be expressed as JSON array - C (ovsdb-data.at:311): ok (0m0.014s 0m0.000s) 1466. uuid atom must be expressed as JSON array - Python3 (ovsdb-data.at:311): ok (0m0.393s 0m0.020s) 1467. named-uuid requires symbol table - C (ovsdb-data.at:315): ok (0m0.013s 0m0.000s) 1468. named-uuid requires symbol table - Python3 (ovsdb-data.at:315): ok (0m0.315s 0m0.064s) 1469. empty string atom must be quoted (ovsdb-data.at:319): ok (0m0.017s 0m0.005s) 1470. quotes must be balanced (ovsdb-data.at:323): ok (0m0.019s 0m0.003s) 1471. quoted string must not contain unescaped quote (ovsdb-data.at:327): ok (0m0.018s 0m0.004s) 1472. quoted string must not end with backslash (ovsdb-data.at:331): ok (0m0.022s 0m0.000s) 1473. uuids must be valid (ovsdb-data.at:335): ok (0m0.017s 0m0.005s) 1474. integer atom enum - C (ovsdb-data.at:341): ok (0m0.015s 0m0.000s) 1475. integer atom enum - Python3 (ovsdb-data.at:341): ok (0m0.374s 0m0.050s) 1476. integer atom enum from string (ovsdb-data.at:364): ok (0m0.008s 0m0.008s) 1477. integer not in enum set from string (ovsdb-data.at:377): ok (0m0.020s 0m0.002s) 1478. integer range not in enum set from string (ovsdb-data.at:381): ok (0m0.022s 0m0.000s) 1479. real atom enum - C (ovsdb-data.at:385): ok (0m0.006s 0m0.009s) 1480. real atom enum - Python3 (ovsdb-data.at:385): ok (0m0.372s 0m0.054s) 1481. boolean atom enum - C (ovsdb-data.at:402): ok (0m0.011s 0m0.004s) 1482. boolean atom enum - Python3 (ovsdb-data.at:402): ok (0m0.304s 0m0.128s) 1483. string atom enum - C (ovsdb-data.at:409): ok (0m0.011s 0m0.005s) 1484. string atom enum - Python3 (ovsdb-data.at:409): ok (0m0.268s 0m0.067s) 1485. uuid atom enum - C (ovsdb-data.at:424): ok (0m0.012s 0m0.003s) 1486. uuid atom enum - Python3 (ovsdb-data.at:424): ok (0m0.352s 0m0.084s) 1487. integers >= 5 - C (ovsdb-data.at:435): ok (0m0.014s 0m0.001s) 1488. integers >= 5 - Python3 (ovsdb-data.at:435): ok (0m0.370s 0m0.050s) 1489. integers <= -1 - C (ovsdb-data.at:448): ok (0m0.007s 0m0.009s) 1490. integers <= -1 - Python3 (ovsdb-data.at:448): ok (0m0.400s 0m0.022s) 1491. integers in range -10 to 10 - C (ovsdb-data.at:459): ok (0m0.014s 0m0.001s) 1492. integers in range -10 to 10 - Python3 (ovsdb-data.at:459): ok (0m0.387s 0m0.045s) 1493. reals >= 5 - C (ovsdb-data.at:480): ok (0m0.009s 0m0.005s) 1494. reals >= 5 - Python3 (ovsdb-data.at:480): ok (0m0.345s 0m0.084s) 1495. reals <= -1 - C (ovsdb-data.at:493): ok (0m0.015s 0m0.000s) 1496. reals <= -1 - Python3 (ovsdb-data.at:493): ok (0m0.325s 0m0.104s) 1497. reals in range -10 to 10 - C (ovsdb-data.at:504): ok (0m0.015s 0m0.001s) 1498. reals in range -10 to 10 - Python3 (ovsdb-data.at:504): ok (0m0.316s 0m0.104s) 1499. strings at least 2 characters long - C (ovsdb-data.at:525): ok (0m0.015s 0m0.000s) 1500. strings at least 2 characters long - Python3 (ovsdb-data.at:525): ok (0m0.385s 0m0.042s) 1501. strings no more than 2 characters long - C (ovsdb-data.at:538): ok (0m0.012s 0m0.003s) 1502. strings no more than 2 characters long - Python3 (ovsdb-data.at:538): ok (0m0.376s 0m0.049s) 1503. integer JSON datum - C (ovsdb-data.at:553): ok (0m0.015s 0m0.000s) 1504. integer JSON datum - Python3 (ovsdb-data.at:553): ok (0m0.364s 0m0.064s) 1505. integer string datum (ovsdb-data.at:559): ok (0m0.015s 0m0.000s) 1506. real JSON datum - C (ovsdb-data.at:566): ok (0m0.015s 0m0.000s) 1507. real JSON datum - Python3 (ovsdb-data.at:566): ok (0m0.397s 0m0.024s) 1508. real string datum (ovsdb-data.at:572): ok (0m0.016s 0m0.000s) 1509. boolean JSON datum - C (ovsdb-data.at:578): ok (0m0.007s 0m0.007s) 1510. boolean JSON datum - Python3 (ovsdb-data.at:578): ok (0m0.369s 0m0.055s) 1511. boolean string datum (ovsdb-data.at:583): ok (0m0.015s 0m0.000s) 1512. string JSON datum - C (ovsdb-data.at:588): ok (0m0.013s 0m0.001s) 1513. string JSON datum - Python3 (ovsdb-data.at:588): ok (0m0.393s 0m0.010s) 1514. string string datum (ovsdb-data.at:594): ok (0m0.010s 0m0.004s) 1515. JSON optional boolean - C (ovsdb-data.at:603): ok (0m0.013s 0m0.001s) 1516. JSON optional boolean - Python3 (ovsdb-data.at:603): ok (0m0.382s 0m0.044s) 1517. string optional boolean (ovsdb-data.at:613): ok (0m0.013s 0m0.000s) 1518. JSON set of 0 or more integers - C (ovsdb-data.at:623): ok (0m0.012s 0m0.000s) 1519. JSON set of 0 or more integers - Python3 (ovsdb-data.at:623): ok (0m0.351s 0m0.031s) 1520. string set of 0 or more integers (ovsdb-data.at:640): ok (0m0.014s 0m0.001s) 1521. JSON set of 1 to 3 uuids - C (ovsdb-data.at:659): ok (0m0.006s 0m0.008s) 1522. JSON set of 1 to 3 uuids - Python3 (ovsdb-data.at:659): ok (0m0.356s 0m0.061s) 1523. string set of 1 to 3 uuids (ovsdb-data.at:670): ok (0m0.010s 0m0.004s) 1524. JSON set of 0 to 3 strings - C (ovsdb-data.at:679): ok (0m0.010s 0m0.004s) 1525. JSON set of 0 to 3 strings - Python3 (ovsdb-data.at:679): ok (0m0.372s 0m0.055s) 1526. string set of 0 to 3 strings (ovsdb-data.at:692): ok (0m0.015s 0m0.000s) 1527. duplicate boolean not allowed in JSON set - C (ovsdb-data.at:703): ok (0m0.022s 0m0.000s) 1528. duplicate boolean not allowed in JSON set - Python3 (ovsdb-data.at:703): ok (0m0.374s 0m0.056s) 1529. duplicate boolean not allowed in string set (ovsdb-data.at:707): ok (0m0.018s 0m0.005s) 1530. duplicate integer not allowed in JSON set - C (ovsdb-data.at:711): ok (0m0.019s 0m0.003s) 1531. duplicate integer not allowed in JSON set - Python3 (ovsdb-data.at:711): ok (0m0.375s 0m0.052s) 1532. duplicate integer not allowed in string set (ovsdb-data.at:715): ok (0m0.019s 0m0.003s) 1533. duplicate real not allowed in JSON set - C (ovsdb-data.at:719): ok (0m0.019s 0m0.002s) 1534. duplicate real not allowed in JSON set - Python3 (ovsdb-data.at:719): ok (0m0.368s 0m0.063s) 1535. duplicate real not allowed in string set (ovsdb-data.at:723): ok (0m0.012s 0m0.007s) 1536. duplicate string not allowed in JSON set - C (ovsdb-data.at:727): ok (0m0.013s 0m0.006s) 1537. duplicate string not allowed in JSON set - Python3 (ovsdb-data.at:727): ok (0m0.356s 0m0.052s) 1538. duplicate string not allowed in string set (ovsdb-data.at:731): ok (0m0.017s 0m0.005s) 1539. duplicate uuid not allowed in JSON set - C (ovsdb-data.at:735): ok (0m0.018s 0m0.002s) 1540. duplicate uuid not allowed in JSON set - Python3 (ovsdb-data.at:735): ok (0m0.313s 0m0.081s) 1541. duplicate uuid not allowed in string set (ovsdb-data.at:742): ok (0m0.016s 0m0.006s) 1542. JSON map of 1 integer to boolean - C (ovsdb-data.at:751): ok (0m0.013s 0m0.001s) 1543. JSON map of 1 integer to boolean - Python3 (ovsdb-data.at:751): ok (0m0.352s 0m0.070s) 1544. string map of 1 integer to boolean (ovsdb-data.at:756): ok (0m0.013s 0m0.000s) 1545. JSON map of at least 1 integer to boolean - C (ovsdb-data.at:761): ok (0m0.010s 0m0.003s) 1546. JSON map of at least 1 integer to boolean - Python3 (ovsdb-data.at:761): ok (0m0.355s 0m0.049s) 1547. string map of at least 1 integer to boolean (ovsdb-data.at:770): ok (0m0.010s 0m0.004s) 1548. JSON map of 1 boolean to integer - C (ovsdb-data.at:779): ok (0m0.014s 0m0.000s) 1549. JSON map of 1 boolean to integer - Python3 (ovsdb-data.at:779): ok (0m0.342s 0m0.061s) 1550. string map of 1 boolean to integer (ovsdb-data.at:784): ok (0m0.015s 0m0.000s) 1551. JSON map of 1 uuid to real - C (ovsdb-data.at:789): ok (0m0.010s 0m0.004s) 1552. JSON map of 1 uuid to real - Python3 (ovsdb-data.at:789): ok (0m0.388s 0m0.045s) 1553. string map of 1 uuid to real (ovsdb-data.at:798): ok (0m0.010s 0m0.005s) 1554. JSON map of 10 string to string - C (ovsdb-data.at:807): ok (0m0.014s 0m0.001s) 1555. JSON map of 10 string to string - Python3 (ovsdb-data.at:807): ok (0m0.383s 0m0.044s) 1556. string map of 10 string to string (ovsdb-data.at:821): ok (0m0.011s 0m0.005s) 1557. duplicate integer key not allowed in JSON map - C (ovsdb-data.at:835): ok (0m0.019s 0m0.002s) 1558. duplicate integer key not allowed in JSON map - Python3 (ovsdb-data.at:835): ok (0m0.379s 0m0.034s) 1559. duplicate integer key not allowed in string map (ovsdb-data.at:840): ok (0m0.014s 0m0.009s) 1560. generate and apply diff -- integer (ovsdb-data.at:845): ok (0m0.011s 0m0.004s) 1561. generate and apply diff -- boolean (ovsdb-data.at:852): ok (0m0.011s 0m0.005s) 1562. generate and apply diff -- string (ovsdb-data.at:859): ok (0m0.011s 0m0.004s) 1563. generate and apply diff -- set (ovsdb-data.at:867): ok (0m0.011s 0m0.005s) 1564. generate and apply diff -- set -- size error (ovsdb-data.at:892): ok (0m0.016s 0m0.006s) 1565. generate and apply diff -- map (ovsdb-data.at:898): ok (0m0.010s 0m0.006s) 1566. generate and apply diff with map -- size error (ovsdb-data.at:927): ok (0m0.019s 0m0.002s) 1567. ordinary column - C (ovsdb-column.at:3): ok (0m0.010s 0m0.006s) 1568. ordinary column - Python3 (ovsdb-column.at:3): ok (0m0.349s 0m0.071s) 1569. immutable column - C (ovsdb-column.at:7): ok (0m0.014s 0m0.001s) 1570. immutable column - Python3 (ovsdb-column.at:7): ok (0m0.358s 0m0.069s) 1571. ephemeral column - C (ovsdb-column.at:11): ok (0m0.009s 0m0.006s) 1572. ephemeral column - Python3 (ovsdb-column.at:11): ok (0m0.331s 0m0.110s) 1573. non-root table with one column - C (ovsdb-table.at:3): ok (0m0.015s 0m0.000s) 1574. non-root table with one column - Python3 (ovsdb-table.at:3): ok (0m0.341s 0m0.083s) 1575. immutable table with one column - C (ovsdb-table.at:7): ok (0m0.014s 0m0.001s) 1576. immutable table with one column - Python3 (ovsdb-table.at:7): ok (0m0.364s 0m0.054s) 1577. root table with one column - C (ovsdb-table.at:13): ok (0m0.013s 0m0.001s) 1578. root table with one column - Python3 (ovsdb-table.at:13): ok (0m0.374s 0m0.034s) 1579. non-root table with default_is_root=true - C (ovsdb-table.at:19): ok (0m0.013s 0m0.000s) 1580. non-root table with default_is_root=true - Python3 (ovsdb-table.at:19): ok (0m0.385s 0m0.020s) 1581. root table with default_is_root=true - C (ovsdb-table.at:23): ok (0m0.014s 0m0.000s) 1582. root table with default_is_root=true - Python3 (ovsdb-table.at:23): ok (0m0.307s 0m0.099s) 1583. table with maxRows of 2 - C (ovsdb-table.at:29): ok (0m0.009s 0m0.004s) 1584. table with maxRows of 2 - Python3 (ovsdb-table.at:29): ok (0m0.303s 0m0.028s) 1585. table with index - C (ovsdb-table.at:34): ok (0m0.009s 0m0.004s) 1586. table with index - Python3 (ovsdb-table.at:34): ok (0m0.285s 0m0.041s) 1587. table with syntax error in index - C (ovsdb-table.at:40): ok (0m0.019s 0m0.003s) 1588. table with syntax error in index - Python3 (ovsdb-table.at:40): ok (0m0.377s 0m0.053s) 1589. table with empty index - C (ovsdb-table.at:46): ok (0m0.019s 0m0.002s) 1590. table with empty index - Python3 (ovsdb-table.at:46): ok (0m0.344s 0m0.075s) 1591. table with index of ephemeral column - C (ovsdb-table.at:52): ok (0m0.018s 0m0.000s) 1592. table with index of ephemeral column - Python3 (ovsdb-table.at:52): ok (0m0.228s 0m0.042s) 1593. column names may not begin with _ - C (ovsdb-table.at:59): ok (0m0.018s 0m0.004s) 1594. column names may not begin with _ - Python3 (ovsdb-table.at:59): ok (0m0.255s 0m0.047s) 1595. table must have at least one column (1) - C (ovsdb-table.at:65): ok (0m0.020s 0m0.000s) 1596. table must have at least one column (1) - Python3 (ovsdb-table.at:65): ok (0m0.323s 0m0.072s) 1597. table must have at least one column (2) - C (ovsdb-table.at:69): ok (0m0.021s 0m0.002s) 1598. table must have at least one column (2) - Python3 (ovsdb-table.at:69): ok (0m0.361s 0m0.071s) 1599. table maxRows must be positive - C (ovsdb-table.at:73): ok (0m0.019s 0m0.003s) 1600. table maxRows must be positive - Python3 (ovsdb-table.at:73): ok (0m0.385s 0m0.048s) 1601. row with one string column (ovsdb-row.at:3): ok (0m0.011s 0m0.004s) 1602. row with one integer column (ovsdb-row.at:19): ok (0m0.010s 0m0.005s) 1603. row with one real column (ovsdb-row.at:35): ok (0m0.014s 0m0.000s) 1604. row with one boolean column (ovsdb-row.at:51): ok (0m0.012s 0m0.003s) 1605. row with one uuid column (ovsdb-row.at:64): ok (0m0.011s 0m0.005s) 1606. row with set of 1 to 2 elements (ovsdb-row.at:77): ok (0m0.006s 0m0.009s) 1607. row with map of 1 to 2 elements (ovsdb-row.at:84): ok (0m0.014s 0m0.000s) 1608. row with several columns (ovsdb-row.at:91): ok (0m0.011s 0m0.005s) 1609. row hashing (scalars) (ovsdb-row.at:113): ok (0m0.011s 0m0.006s) 1610. row hashing (sets) (ovsdb-row.at:182): ok (0m0.015s 0m0.001s) 1611. row hashing (maps) (ovsdb-row.at:235): ok (0m0.016s 0m0.000s) 1612. schema with valid refTables - C (ovsdb-schema.at:3): ok (0m0.006s 0m0.009s) 1613. schema with valid refTables - Python3 (ovsdb-schema.at:3): ok (0m0.419s 0m0.010s) 1614. schema with ephemeral strong references - C (ovsdb-schema.at:30): ok (0m0.011s 0m0.005s) 1615. schema with ephemeral strong references - Python3 (ovsdb-schema.at:30): ok (0m0.368s 0m0.065s) 1616. schema with immutable weak references - C (ovsdb-schema.at:60): ok (0m0.006s 0m0.009s) 1617. schema with immutable weak references - Python3 (ovsdb-schema.at:60): ok (0m0.359s 0m0.065s) 1618. schema without version number - C (ovsdb-schema.at:78): ok (0m0.011s 0m0.005s) 1619. schema without version number - Python3 (ovsdb-schema.at:78): ok (0m0.376s 0m0.039s) 1620. schema with invalid refTables - C (ovsdb-schema.at:88): ok (0m0.014s 0m0.009s) 1621. schema with invalid refTables - Python3 (ovsdb-schema.at:88): ok (0m0.381s 0m0.014s) 1622. schema with invalid version number - C (ovsdb-schema.at:111): ok (0m0.018s 0m0.005s) 1623. schema with invalid version number - Python3 (ovsdb-schema.at:111): ok (0m0.343s 0m0.092s) 1624. null condition (ovsdb-condition.at:3): ok (0m0.013s 0m0.000s) 1625. conditions on scalars (ovsdb-condition.at:9): ok (0m0.015s 0m0.000s) 1626. disallowed conditions on scalars (ovsdb-condition.at:75): ok (0m0.009s 0m0.007s) 1627. conditions on optional scalars (ovsdb-condition.at:213): ok (0m0.010s 0m0.005s) 1628. disallowed conditions on optional scalars (ovsdb-condition.at:279): ok (0m0.016s 0m0.000s) 1629. conditions on sets (ovsdb-condition.at:366): ok (0m0.015s 0m0.000s) 1630. condition sorting (ovsdb-condition.at:427): ok (0m0.014s 0m0.000s) 1631. boolean condition (ovsdb-condition.at:441): ok (0m0.014s 0m0.000s) 1632. boolean condition (ovsdb-condition.at:447): ok (0m0.014s 0m0.000s) 1633. evaluating null condition (ovsdb-condition.at:453): ok (0m0.010s 0m0.004s) 1634. evaluating conditions on integers (ovsdb-condition.at:462): ok (0m0.006s 0m0.008s) 1635. evaluating conditions on reals (ovsdb-condition.at:487): ok (0m0.015s 0m0.000s) 1636. evaluating conditions on booleans (ovsdb-condition.at:512): ok (0m0.010s 0m0.004s) 1637. evaluating conditions on strings (ovsdb-condition.at:536): ok (0m0.015s 0m0.000s) 1638. evaluating conditions on UUIDs (ovsdb-condition.at:561): ok (0m0.011s 0m0.003s) 1639. evaluating conditions on sets (ovsdb-condition.at:587): ok (0m0.006s 0m0.009s) 1640. evaluating conditions on maps (1) (ovsdb-condition.at:669): ok (0m0.010s 0m0.005s) 1641. evaluating conditions on maps (2) (ovsdb-condition.at:754): ok (0m0.011s 0m0.005s) 1642. evaluating conditions on optional integers (ovsdb-condition.at:846): ok (0m0.013s 0m0.001s) 1643. evaluating conditions on optional strings (ovsdb-condition.at:881): ok (0m0.014s 0m0.001s) 1644. evaluating conditions on optional reals (ovsdb-condition.at:908): ok (0m0.014s 0m0.000s) 1645. evaluating false boolean condition (ovsdb-condition.at:943): ok (0m0.012s 0m0.003s) 1646. evaluating true boolean condition (ovsdb-condition.at:952): ok (0m0.013s 0m0.003s) 1647. compare condition (ovsdb-condition.at:961): ok (0m0.011s 0m0.005s) 1648. null mutation (ovsdb-mutation.at:3): ok (0m0.014s 0m0.001s) 1649. mutations on scalars (ovsdb-mutation.at:9): ok (0m0.013s 0m0.004s) 1650. disallowed mutations on scalars (ovsdb-mutation.at:37): ok (0m0.016s 0m0.000s) 1651. disallowed mutations on immutable columns (ovsdb-mutation.at:102): ok (0m0.015s 0m0.000s) 1652. mutations on sets (ovsdb-mutation.at:114): ok (0m0.008s 0m0.008s) 1653. executing null mutation (ovsdb-mutation.at:166): ok (0m0.010s 0m0.005s) 1654. executing mutations on integers (ovsdb-mutation.at:179): ok (0m0.015s 0m0.000s) 1655. integer overflow detection (ovsdb-mutation.at:216): ok (0m0.015s 0m0.000s) 1656. executing mutations on integers with constraints (ovsdb-mutation.at:297): ok (0m0.015s 0m0.000s) 1657. executing mutations on reals (ovsdb-mutation.at:336): ok (0m0.011s 0m0.004s) 1658. real overflow detection (ovsdb-mutation.at:367): ok (0m0.016s 0m0.000s) 1659. executing mutations on reals with constraints (ovsdb-mutation.at:410): ok (0m0.016s 0m0.000s) 1660. executing mutations on integer sets (ovsdb-mutation.at:443): ok (0m0.016s 0m0.000s) 1661. executing mutations on integer sets with constraints (ovsdb-mutation.at:517): ok (0m0.015s 0m0.000s) 1662. executing mutations on real sets (ovsdb-mutation.at:556): ok (0m0.007s 0m0.009s) 1663. executing mutations on boolean sets (ovsdb-mutation.at:629): ok (0m0.015s 0m0.000s) 1664. executing mutations on string sets (ovsdb-mutation.at:679): ok (0m0.014s 0m0.001s) 1665. executing mutations on uuid sets (ovsdb-mutation.at:729): ok (0m0.015s 0m0.000s) 1666. executing mutations on integer maps (ovsdb-mutation.at:779): ok (0m0.015s 0m0.000s) 1667. queries on scalars (ovsdb-query.at:3): ok (0m0.011s 0m0.005s) 1668. queries on sets (ovsdb-query.at:95): ok (0m0.014s 0m0.001s) 1669. queries on maps (1) (ovsdb-query.at:176): ok (0m0.010s 0m0.005s) 1670. queries on maps (2) (ovsdb-query.at:260): ok (0m0.012s 0m0.004s) 1671. UUID-distinct queries on scalars (ovsdb-query.at:351): ok (0m0.007s 0m0.010s) 1672. Boolean-distinct queries on scalars (ovsdb-query.at:444): ok (0m0.011s 0m0.005s) 1673. parse colunn set containing bad name (ovsdb-query.at:537): ok (0m0.016s 0m0.007s) 1674. empty table, empty transaction (ovsdb-transaction.at:3): ok (0m0.015s 0m0.000s) 1675. nonempty table, empty transaction (ovsdb-transaction.at:17): ok (0m0.012s 0m0.003s) 1676. insert, commit (ovsdb-transaction.at:41): ok (0m0.014s 0m0.000s) 1677. insert, abort (ovsdb-transaction.at:70): ok (0m0.011s 0m0.005s) 1678. modify, commit (ovsdb-transaction.at:98): ok (0m0.011s 0m0.004s) 1679. modify, abort (ovsdb-transaction.at:127): ok (0m0.009s 0m0.006s) 1680. delete, commit (ovsdb-transaction.at:156): ok (0m0.010s 0m0.005s) 1681. delete, abort (ovsdb-transaction.at:181): ok (0m0.011s 0m0.004s) 1682. modify, delete, commit (ovsdb-transaction.at:207): ok (0m0.016s 0m0.000s) 1683. modify, delete, abort (ovsdb-transaction.at:234): ok (0m0.010s 0m0.006s) 1684. insert, delete, commit (ovsdb-transaction.at:262): ok (0m0.010s 0m0.006s) 1685. insert, delete, abort (ovsdb-transaction.at:291): ok (0m0.016s 0m0.000s) 1686. insert, modify, delete, commit (ovsdb-transaction.at:322): ok (0m0.016s 0m0.000s) 1687. insert, modify, delete, abort (ovsdb-transaction.at:353): ok (0m0.010s 0m0.006s) 1688. deletes are aborted cleanly (ovsdb-transaction.at:385): ok (0m0.014s 0m0.001s) 1689. block insert on read only DB (ovsdb-execution.at:147): ok (0m0.071s 0m0.025s) 1690. allow select on read only DB (ovsdb-execution.at:156): ok (0m0.090s 0m0.008s) 1691. uuid-name must be (ovsdb-execution.at:185): ok (0m0.089s 0m0.008s) 1692. named-uuid must be (ovsdb-execution.at:195): ok (0m0.084s 0m0.012s) 1693. duplicate uuid-name not allowed (ovsdb-execution.at:204): ok (0m0.055s 0m0.040s) 1694. insert default row, query table (ovsdb-execution.at:1164): ok (0m0.064s 0m0.033s) 1695. insert row, query table (ovsdb-execution.at:1164): ok (0m0.085s 0m0.010s) 1696. insert row with uuid, query table (ovsdb-execution.at:1164): ok (0m0.088s 0m0.007s) 1697. insert rows, query by value (ovsdb-execution.at:1164): ok (0m0.092s 0m0.003s) 1698. insert rows, query by named-uuid (ovsdb-execution.at:1164): ok (0m0.091s 0m0.006s) 1699. insert rows, update rows by value (ovsdb-execution.at:1164): ok (0m0.081s 0m0.016s) 1700. insert rows, mutate rows (ovsdb-execution.at:1164): ok (0m0.093s 0m0.005s) 1701. insert rows, delete by named-uuid (ovsdb-execution.at:1164): ok (0m0.086s 0m0.013s) 1702. insert rows, delete rows by value (ovsdb-execution.at:1164): ok (0m0.075s 0m0.022s) 1703. insert rows, delete by (non-matching) value (ovsdb-execution.at:1164): ok (0m0.064s 0m0.033s) 1704. insert rows, delete all (ovsdb-execution.at:1164): ok (0m0.064s 0m0.031s) 1705. insert row, query table, commit (ovsdb-execution.at:1164): ok (0m0.080s 0m0.018s) 1706. insert row, query table, commit durably (ovsdb-execution.at:1164): ok (0m0.078s 0m0.019s) 1707. equality wait with correct rows (ovsdb-execution.at:1164): ok (0m0.089s 0m0.007s) 1708. equality wait with extra row (ovsdb-execution.at:1164): ok (0m0.055s 0m0.042s) 1709. equality wait with missing row (ovsdb-execution.at:1164): ok (0m0.077s 0m0.021s) 1710. inequality wait with correct rows (ovsdb-execution.at:1164): ok (0m0.097s 0m0.000s) 1711. inequality wait with extra row (ovsdb-execution.at:1164): ok (0m0.081s 0m0.016s) 1712. inequality wait with missing row (ovsdb-execution.at:1164): ok (0m0.081s 0m0.014s) 1713. insert and update constraints (ovsdb-execution.at:1164): ok (0m0.082s 0m0.014s) 1714. index uniqueness checking (ovsdb-execution.at:1164): ok (0m0.042s 0m0.056s) 1715. referential integrity -- simple (ovsdb-execution.at:1164): ok (0m0.090s 0m0.008s) 1716. referential integrity -- mutual references (ovsdb-execution.at:1164): ok (0m0.074s 0m0.023s) 1717. weak references (ovsdb-execution.at:1164): ok (0m0.096s 0m0.003s) 1718. immutable columns (ovsdb-execution.at:1164): ok (0m0.065s 0m0.030s) 1719. garbage collection (ovsdb-execution.at:1164): ok (0m0.078s 0m0.014s) 1720. trigger fires immediately (ovsdb-trigger.at:15): ok (0m0.065s 0m0.026s) 1721. trigger times out (ovsdb-trigger.at:38): ok (0m0.070s 0m0.023s) 1722. trigger fires after delay (ovsdb-trigger.at:61): ok (0m0.078s 0m0.010s) 1723. delayed trigger modifies database (ovsdb-trigger.at:92): ok (0m0.074s 0m0.017s) 1724. one delayed trigger wakes up another (ovsdb-trigger.at:132): ok (0m0.084s 0m0.008s) 1725. insert default row, query table (ovsdb-tool.at:29): ok (0m0.107s 0m0.012s) 1726. insert row, query table (ovsdb-tool.at:29): ok (0m0.097s 0m0.023s) 1727. insert row with uuid, query table (ovsdb-tool.at:29): ok (0m0.098s 0m0.040s) 1728. insert rows, query by value (ovsdb-tool.at:29): ok (0m0.138s 0m0.012s) 1729. insert rows, query by named-uuid (ovsdb-tool.at:29): ok (0m0.089s 0m0.024s) 1730. insert rows, update rows by value (ovsdb-tool.at:29): ok (0m0.113s 0m0.046s) 1731. insert rows, mutate rows (ovsdb-tool.at:29): ok (0m0.109s 0m0.043s) 1732. insert rows, delete by named-uuid (ovsdb-tool.at:29): ok (0m0.067s 0m0.043s) 1733. insert rows, delete rows by value (ovsdb-tool.at:29): ok (0m0.098s 0m0.051s) 1734. insert rows, delete by (non-matching) value (ovsdb-tool.at:29): ok (0m0.125s 0m0.023s) 1735. insert rows, delete all (ovsdb-tool.at:29): ok (0m0.083s 0m0.030s) 1736. insert row, query table, commit (ovsdb-tool.at:29): ok (0m0.087s 0m0.024s) 1737. insert row, query table, commit durably (ovsdb-tool.at:29): ok (0m0.112s 0m0.000s) 1738. equality wait with correct rows (ovsdb-tool.at:29): ok (0m0.093s 0m0.018s) 1739. equality wait with extra row (ovsdb-tool.at:29): ok (0m0.098s 0m0.014s) 1740. equality wait with missing row (ovsdb-tool.at:29): ok (0m0.079s 0m0.034s) 1741. inequality wait with correct rows (ovsdb-tool.at:29): ok (0m0.086s 0m0.027s) 1742. inequality wait with extra row (ovsdb-tool.at:29): ok (0m0.096s 0m0.018s) 1743. inequality wait with missing row (ovsdb-tool.at:29): ok (0m0.096s 0m0.018s) 1744. insert and update constraints (ovsdb-tool.at:29): ok (0m0.152s 0m0.017s) 1745. index uniqueness checking (ovsdb-tool.at:29): ok (0m0.164s 0m0.036s) 1746. referential integrity -- simple (ovsdb-tool.at:29): ok (0m0.190s 0m0.041s) 1747. referential integrity -- mutual references (ovsdb-tool.at:29): ok (0m0.176s 0m0.025s) 1748. weak references (ovsdb-tool.at:29): ok (0m0.266s 0m0.058s) 1749. immutable columns (ovsdb-tool.at:29): ok (0m0.119s 0m0.050s) 1750. garbage collection (ovsdb-tool.at:29): ok (0m0.284s 0m0.046s) 1751. transaction comments (ovsdb-tool.at:31): ok (0m0.101s 0m0.014s) 1752. ovsdb-tool compact (ovsdb-tool.at:49): ok (0m0.379s 0m0.131s) 1753. ovsdb-tool convert -- removing a column (ovsdb-tool.at:173): ok (0m0.250s 0m0.056s) 1754. ovsdb-tool convert -- adding a column (ovsdb-tool.at:240): ok (0m0.275s 0m0.037s) 1755. ovsdb-tool unsupported cluster operations (ovsdb-tool.at:306): ok (0m0.055s 0m0.012s) 1756. ovsdb-tool schema-version, schema-cksum, schema-name (ovsdb-tool.at:322): ok (0m0.033s 0m0.004s) 1757. ovsdb-tool database inspection commands - standalone (ovsdb-tool.at:333): ok (0m0.069s 0m0.007s) 1758. ovsdb-tool database inspection commands - clustered (ovsdb-tool.at:352): ok (0m0.120s 0m0.033s) 1759. ovsdb-tool database inspection commands - joining a cluster (ovsdb-tool.at:370): ok (0m0.262s 0m0.052s) 1760. ovsdb-tool needs-conversion (no conversion needed) (ovsdb-tool.at:401): ok (0m0.020s 0m0.007s) 1761. ovsdb-tool needs-conversion (conversion needed) (ovsdb-tool.at:410): ok (0m0.030s 0m0.006s) 1762. ovsdb-tool create-cluster with initial data (ovsdb-tool.at:421): ok (0m0.170s 0m0.035s) 1763. ovsdb-tool convert-to-standalone (ovsdb-tool.at:464): ok (0m0.081s 0m0.033s) 1764. insert default row, query table (ovsdb-server.at:43): ok (0m0.130s 0m0.032s) 1765. insert row, query table (ovsdb-server.at:43): ok (0m0.148s 0m0.013s) 1766. insert row with uuid, query table (ovsdb-server.at:43): ok (0m0.138s 0m0.031s) 1767. insert rows, query by value (ovsdb-server.at:43): ok (0m0.152s 0m0.034s) 1768. insert rows, query by named-uuid (ovsdb-server.at:43): ok (0m0.123s 0m0.023s) 1769. insert rows, update rows by value (ovsdb-server.at:43): ok (0m0.163s 0m0.023s) 1770. insert rows, mutate rows (ovsdb-server.at:43): ok (0m0.141s 0m0.045s) 1771. insert rows, delete by named-uuid (ovsdb-server.at:43): ok (0m0.126s 0m0.022s) 1772. insert rows, delete rows by value (ovsdb-server.at:43): ok (0m0.158s 0m0.027s) 1773. insert rows, delete by (non-matching) value (ovsdb-server.at:43): ok (0m0.165s 0m0.021s) 1774. insert rows, delete all (ovsdb-server.at:43): ok (0m0.116s 0m0.032s) 1775. insert row, query table, commit (ovsdb-server.at:43): ok (0m0.107s 0m0.040s) 1776. insert row, query table, commit durably (ovsdb-server.at:43): ok (0m0.133s 0m0.012s) 1777. equality wait with correct rows (ovsdb-server.at:43): ok (0m0.107s 0m0.039s) 1778. equality wait with extra row (ovsdb-server.at:43): ok (0m0.128s 0m0.018s) 1779. equality wait with missing row (ovsdb-server.at:43): ok (0m0.124s 0m0.021s) 1780. inequality wait with correct rows (ovsdb-server.at:43): ok (0m0.127s 0m0.019s) 1781. inequality wait with extra row (ovsdb-server.at:43): ok (0m0.101s 0m0.043s) 1782. inequality wait with missing row (ovsdb-server.at:43): ok (0m0.129s 0m0.033s) 1783. insert and update constraints (ovsdb-server.at:43): ok (0m0.176s 0m0.027s) 1784. index uniqueness checking (ovsdb-server.at:43): ok (0m0.206s 0m0.035s) 1785. referential integrity -- simple (ovsdb-server.at:43): ok (0m0.191s 0m0.074s) 1786. referential integrity -- mutual references (ovsdb-server.at:43): ok (0m0.174s 0m0.052s) 1787. weak references (ovsdb-server.at:43): ok (0m0.261s 0m0.077s) 1788. immutable columns (ovsdb-server.at:43): ok (0m0.139s 0m0.060s) 1789. garbage collection (ovsdb-server.at:43): ok (0m0.277s 0m0.076s) 1790. truncating corrupted database log (ovsdb-server.at:47): ok (0m0.148s 0m0.096s) 1791. truncating database log with bad transaction (ovsdb-server.at:93): ok (0m0.165s 0m0.085s) 1792. database multiplexing implementation (ovsdb-server.at:153): ok (0m0.079s 0m0.023s) 1793. ovsdb-server/add-db and remove-db (ovsdb-server.at:171): ok (0m0.434s 0m0.146s) 1794. ovsdb-server/add-db with --monitor (ovsdb-server.at:286): ok (0m0.145s 0m0.009s) 1795. ovsdb-server/add-db and remove-db with --monitor (ovsdb-server.at:321): ok (0m0.123s 0m0.027s) 1796. --remote=db: implementation (ovsdb-server.at:354): ok (0m0.121s 0m0.031s) 1797. ovsdb-server/add-remote and remove-remote (ovsdb-server.at:418): ok (0m0.096s 0m0.035s) 1798. ovsdb-server/add-remote with --monitor (ovsdb-server.at:471): ok (0m0.083s 0m0.018s) 1799. ovsdb-server/add-remote and remove-remote with --monitor (ovsdb-server.at:506): ok (0m0.095s 0m0.012s) 1800. SSL db: implementation (ovsdb-server.at:545): ok (0m0.146s 0m0.030s) 1801. compacting online - standalone (ovsdb-server.at:839): ok (0m0.460s 0m0.101s) 1802. compacting online - cluster (ovsdb-server.at:844): ok (0m0.430s 0m0.091s) 1803. schema conversion online - standalone (ovsdb-server.at:1125): ok (0m0.922s 0m0.193s) 1804. schema conversion online - clustered (ovsdb-server.at:1130): ok (0m0.969s 0m0.177s) 1805. ovsdb-server combines updates on backlogged connections (ovsdb-server.at:1135): ok (0m0.924s 0m0.337s) 1806. ovsdb-server transaction history size (ovsdb-server.at:1233): ok (0m22.402s 0m7.625s) 1807. insert default row, query table (ovsdb-server.at:1332): ok (0m0.158s 0m0.033s) 1808. insert row, query table (ovsdb-server.at:1332): ok (0m0.148s 0m0.041s) 1809. insert row with uuid, query table (ovsdb-server.at:1332): ok (0m0.153s 0m0.067s) 1810. insert rows, query by value (ovsdb-server.at:1332): ok (0m0.208s 0m0.031s) 1811. insert rows, query by named-uuid (ovsdb-server.at:1332): ok (0m0.133s 0m0.032s) 1812. insert rows, update rows by value (ovsdb-server.at:1332): ok (0m0.209s 0m0.029s) 1813. insert rows, mutate rows (ovsdb-server.at:1332): ok (0m0.195s 0m0.041s) 1814. insert rows, delete by named-uuid (ovsdb-server.at:1332): ok (0m0.141s 0m0.023s) 1815. insert rows, delete rows by value (ovsdb-server.at:1332): ok (0m0.208s 0m0.027s) 1816. insert rows, delete by (non-matching) value (ovsdb-server.at:1332): ok (0m0.185s 0m0.051s) 1817. insert rows, delete all (ovsdb-server.at:1332): ok (0m0.144s 0m0.020s) 1818. insert row, query table, commit (ovsdb-server.at:1332): ok (0m0.128s 0m0.036s) 1819. insert row, query table, commit durably (ovsdb-server.at:1332): ok (0m0.127s 0m0.037s) 1820. equality wait with correct rows (ovsdb-server.at:1332): ok (0m0.144s 0m0.019s) 1821. equality wait with extra row (ovsdb-server.at:1332): ok (0m0.121s 0m0.043s) 1822. equality wait with missing row (ovsdb-server.at:1332): ok (0m0.123s 0m0.046s) 1823. inequality wait with correct rows (ovsdb-server.at:1332): ok (0m0.136s 0m0.029s) 1824. inequality wait with extra row (ovsdb-server.at:1332): ok (0m0.139s 0m0.026s) 1825. inequality wait with missing row (ovsdb-server.at:1332): ok (0m0.119s 0m0.045s) 1826. insert and update constraints (ovsdb-server.at:1332): ok (0m0.182s 0m0.078s) 1827. index uniqueness checking (ovsdb-server.at:1332): ok (0m0.312s 0m0.020s) 1828. referential integrity -- simple (ovsdb-server.at:1332): ok (0m0.288s 0m0.056s) 1829. referential integrity -- mutual references (ovsdb-server.at:1332): ok (0m0.258s 0m0.050s) 1830. weak references (ovsdb-server.at:1332): ok (0m0.348s 0m0.158s) 1831. immutable columns (ovsdb-server.at:1332): ok (0m0.226s 0m0.035s) 1832. garbage collection (ovsdb-server.at:1332): ok (0m0.457s 0m0.070s) 1833. insert default row, query table (ovsdb-server.at:1369): skipped (ovsdb-server.at:1369) 1834. insert default row, query table (ovsdb-server.at:1404): ok (0m0.133s 0m0.035s) 1835. insert row, query table (ovsdb-server.at:1404): ok (0m0.147s 0m0.018s) 1836. insert row with uuid, query table (ovsdb-server.at:1404): ok (0m0.128s 0m0.049s) 1837. insert rows, query by value (ovsdb-server.at:1404): ok (0m0.139s 0m0.053s) 1838. insert rows, query by named-uuid (ovsdb-server.at:1404): ok (0m0.135s 0m0.017s) 1839. insert rows, update rows by value (ovsdb-server.at:1404): ok (0m0.155s 0m0.038s) 1840. insert rows, mutate rows (ovsdb-server.at:1404): ok (0m0.159s 0m0.033s) 1841. insert rows, delete by named-uuid (ovsdb-server.at:1404): ok (0m0.136s 0m0.015s) 1842. insert rows, delete rows by value (ovsdb-server.at:1404): ok (0m0.149s 0m0.043s) 1843. insert rows, delete by (non-matching) value (ovsdb-server.at:1404): ok (0m0.152s 0m0.039s) 1844. insert rows, delete all (ovsdb-server.at:1404): ok (0m0.123s 0m0.027s) 1845. insert row, query table, commit (ovsdb-server.at:1404): ok (0m0.129s 0m0.025s) 1846. insert row, query table, commit durably (ovsdb-server.at:1404): ok (0m0.140s 0m0.013s) 1847. equality wait with correct rows (ovsdb-server.at:1404): ok (0m0.123s 0m0.030s) 1848. equality wait with extra row (ovsdb-server.at:1404): ok (0m0.122s 0m0.031s) 1849. equality wait with missing row (ovsdb-server.at:1404): ok (0m0.114s 0m0.040s) 1850. inequality wait with correct rows (ovsdb-server.at:1404): ok (0m0.122s 0m0.031s) 1851. inequality wait with extra row (ovsdb-server.at:1404): ok (0m0.114s 0m0.038s) 1852. inequality wait with missing row (ovsdb-server.at:1404): ok (0m0.109s 0m0.044s) 1853. insert and update constraints (ovsdb-server.at:1404): ok (0m0.149s 0m0.059s) 1854. index uniqueness checking (ovsdb-server.at:1404): ok (0m0.227s 0m0.024s) 1855. referential integrity -- simple (ovsdb-server.at:1404): ok (0m0.192s 0m0.071s) 1856. referential integrity -- mutual references (ovsdb-server.at:1404): ok (0m0.210s 0m0.025s) 1857. weak references (ovsdb-server.at:1404): ok (0m0.276s 0m0.070s) 1858. immutable columns (ovsdb-server.at:1404): ok (0m0.158s 0m0.053s) 1859. garbage collection (ovsdb-server.at:1404): ok (0m0.304s 0m0.054s) 1860. insert default row, query table (ovsdb-server.at:1440): skipped (ovsdb-server.at:1440) 1861. insert default row, query table (ovsdb-server.at:1476): ok (0m0.130s 0m0.066s) 1862. insert row, query table (ovsdb-server.at:1476): ok (0m0.129s 0m0.062s) 1863. insert row with uuid, query table (ovsdb-server.at:1476): ok (0m0.160s 0m0.077s) 1864. insert rows, query by value (ovsdb-server.at:1476): ok (0m0.169s 0m0.115s) 1865. insert rows, query by named-uuid (ovsdb-server.at:1476): ok (0m0.121s 0m0.027s) 1866. insert rows, update rows by value (ovsdb-server.at:1476): ok (0m0.139s 0m0.145s) 1867. insert rows, mutate rows (ovsdb-server.at:1476): ok (0m0.186s 0m0.098s) 1868. insert rows, delete by named-uuid (ovsdb-server.at:1476): ok (0m0.107s 0m0.040s) 1869. insert rows, delete rows by value (ovsdb-server.at:1476): ok (0m0.176s 0m0.102s) 1870. insert rows, delete by (non-matching) value (ovsdb-server.at:1476): ok (0m0.193s 0m0.095s) 1871. insert rows, delete all (ovsdb-server.at:1476): ok (0m0.099s 0m0.046s) 1872. insert row, query table, commit (ovsdb-server.at:1476): ok (0m0.107s 0m0.042s) 1873. insert row, query table, commit durably (ovsdb-server.at:1476): ok (0m0.118s 0m0.030s) 1874. equality wait with correct rows (ovsdb-server.at:1476): ok (0m0.113s 0m0.033s) 1875. equality wait with extra row (ovsdb-server.at:1476): ok (0m0.101s 0m0.048s) 1876. equality wait with missing row (ovsdb-server.at:1476): ok (0m0.101s 0m0.047s) 1877. inequality wait with correct rows (ovsdb-server.at:1476): ok (0m0.089s 0m0.060s) 1878. inequality wait with extra row (ovsdb-server.at:1476): ok (0m0.102s 0m0.047s) 1879. inequality wait with missing row (ovsdb-server.at:1476): ok (0m0.123s 0m0.023s) 1880. insert and update constraints (ovsdb-server.at:1476): ok (0m0.187s 0m0.144s) 1881. index uniqueness checking (ovsdb-server.at:1476): ok (0m0.250s 0m0.225s) 1882. referential integrity -- simple (ovsdb-server.at:1476): ok (0m0.320s 0m0.186s) 1883. referential integrity -- mutual references (ovsdb-server.at:1476): ok (0m0.272s 0m0.155s) 1884. weak references (ovsdb-server.at:1476): ok (0m0.461s 0m0.328s) 1885. immutable columns (ovsdb-server.at:1476): ok (0m0.196s 0m0.137s) 1886. garbage collection (ovsdb-server.at:1476): ok (0m0.454s 0m0.384s) 1887. insert default row, query table (ovsdb-server.at:1552): ok (0m0.397s 0m0.091s) 1888. insert row, query table (ovsdb-server.at:1552): ok (0m0.399s 0m0.093s) 1889. insert row with uuid, query table (ovsdb-server.at:1552): ok (0m0.415s 0m0.089s) 1890. insert rows, query by value (ovsdb-server.at:1552): ok (0m0.409s 0m0.110s) 1891. insert rows, query by named-uuid (ovsdb-server.at:1552): ok (0m0.374s 0m0.106s) 1892. insert rows, update rows by value (ovsdb-server.at:1552): ok (0m0.415s 0m0.104s) 1893. insert rows, mutate rows (ovsdb-server.at:1552): ok (0m0.413s 0m0.104s) 1894. insert rows, delete by named-uuid (ovsdb-server.at:1552): ok (0m0.370s 0m0.107s) 1895. insert rows, delete rows by value (ovsdb-server.at:1552): ok (0m0.443s 0m0.076s) 1896. insert rows, delete by (non-matching) value (ovsdb-server.at:1552): ok (0m0.373s 0m0.138s) 1897. insert rows, delete all (ovsdb-server.at:1552): ok (0m0.373s 0m0.108s) 1898. insert row, query table, commit (ovsdb-server.at:1552): ok (0m0.388s 0m0.089s) 1899. insert row, query table, commit durably (ovsdb-server.at:1552): ok (0m0.349s 0m0.131s) 1900. equality wait with correct rows (ovsdb-server.at:1552): ok (0m0.378s 0m0.102s) 1901. equality wait with extra row (ovsdb-server.at:1552): ok (0m0.371s 0m0.109s) 1902. equality wait with missing row (ovsdb-server.at:1552): ok (0m0.387s 0m0.093s) 1903. inequality wait with correct rows (ovsdb-server.at:1552): ok (0m0.412s 0m0.070s) 1904. inequality wait with extra row (ovsdb-server.at:1552): ok (0m0.385s 0m0.100s) 1905. inequality wait with missing row (ovsdb-server.at:1552): ok (0m0.381s 0m0.092s) 1906. insert and update constraints (ovsdb-server.at:1552): ok (0m0.406s 0m0.131s) 1907. index uniqueness checking (ovsdb-server.at:1552): ok (0m0.442s 0m0.132s) 1908. referential integrity -- simple (ovsdb-server.at:1552): ok (0m0.456s 0m0.130s) 1909. referential integrity -- mutual references (ovsdb-server.at:1552): ok (0m0.463s 0m0.107s) 1910. weak references (ovsdb-server.at:1552): ok (0m0.519s 0m0.158s) 1911. immutable columns (ovsdb-server.at:1552): ok (0m0.430s 0m0.104s) 1912. garbage collection (ovsdb-server.at:1552): ok (0m0.525s 0m0.162s) 1913. insert default row, query table (ovsdb-server.at:1591): ok (0m0.115s 0m0.028s) 1914. insert row, query table (ovsdb-server.at:1591): ok (0m0.113s 0m0.031s) 1915. insert row with uuid, query table (ovsdb-server.at:1591): ok (0m0.108s 0m0.046s) 1916. insert rows, query by value (ovsdb-server.at:1591): ok (0m0.147s 0m0.018s) 1917. insert rows, query by named-uuid (ovsdb-server.at:1591): ok (0m0.101s 0m0.031s) 1918. insert rows, update rows by value (ovsdb-server.at:1591): ok (0m0.138s 0m0.027s) 1919. insert rows, mutate rows (ovsdb-server.at:1591): ok (0m0.134s 0m0.030s) 1920. insert rows, delete by named-uuid (ovsdb-server.at:1591): ok (0m0.103s 0m0.029s) 1921. insert rows, delete rows by value (ovsdb-server.at:1591): ok (0m0.127s 0m0.037s) 1922. insert rows, delete by (non-matching) value (ovsdb-server.at:1591): ok (0m0.140s 0m0.025s) 1923. insert rows, delete all (ovsdb-server.at:1591): ok (0m0.101s 0m0.031s) 1924. insert row, query table, commit (ovsdb-server.at:1591): ok (0m0.107s 0m0.026s) 1925. insert row, query table, commit durably (ovsdb-server.at:1591): ok (0m0.101s 0m0.030s) 1926. equality wait with correct rows (ovsdb-server.at:1591): ok (0m0.101s 0m0.031s) 1927. equality wait with extra row (ovsdb-server.at:1591): ok (0m0.107s 0m0.027s) 1928. equality wait with missing row (ovsdb-server.at:1591): ok (0m0.099s 0m0.033s) 1929. inequality wait with correct rows (ovsdb-server.at:1591): ok (0m0.100s 0m0.032s) 1930. inequality wait with extra row (ovsdb-server.at:1591): ok (0m0.113s 0m0.019s) 1931. inequality wait with missing row (ovsdb-server.at:1591): ok (0m0.109s 0m0.025s) 1932. insert and update constraints (ovsdb-server.at:1591): ok (0m0.141s 0m0.028s) 1933. index uniqueness checking (ovsdb-server.at:1591): ok (0m0.169s 0m0.030s) 1934. referential integrity -- simple (ovsdb-server.at:1591): ok (0m0.175s 0m0.036s) 1935. referential integrity -- mutual references (ovsdb-server.at:1591): ok (0m0.159s 0m0.030s) 1936. weak references (ovsdb-server.at:1591): ok (0m0.229s 0m0.044s) 1937. immutable columns (ovsdb-server.at:1591): ok (0m0.133s 0m0.034s) 1938. garbage collection (ovsdb-server.at:1591): ok (0m0.221s 0m0.061s) 1939. insert monitored table, insert excluded table (ovsdb-server.at:1644): ok (0m0.190s 0m0.078s) 1940. insert monitored table, update excluded table (ovsdb-server.at:1644): ok (0m0.215s 0m0.050s) 1941. update monitored table, insert excluded table (ovsdb-server.at:1644): ok (0m0.239s 0m0.036s) 1942. update monitored table, update excluded table (ovsdb-server.at:1644): ok (0m0.203s 0m0.079s) 1943. delete monitored table, insert excluded table (ovsdb-server.at:1644): ok (0m0.192s 0m0.078s) 1944. delete monitored table, update excluded table (ovsdb-server.at:1644): ok (0m0.242s 0m0.050s) 1945. ovsdb-server/get-active-ovsdb-server (ovsdb-server.at:1649): ok (0m0.029s 0m0.013s) 1946. ovsdb-server/set-active-ovsdb-server (ovsdb-server.at:1662): ok (0m0.035s 0m0.013s) 1947. ovsdb-server/get-sync-exclude-tables (ovsdb-server.at:1676): ok (0m0.038s 0m0.004s) 1948. ovsdb-server/set-sync-exclude-tables (ovsdb-server.at:1689): ok (0m0.211s 0m0.047s) 1949. ovsdb-server/connect-active-server (ovsdb-server.at:1736): ok (0m0.165s 0m0.036s) 1950. ovsdb-server/disconnect-active-server (ovsdb-server.at:1774): ok (0m0.310s 0m0.078s) 1951. ovsdb-server/active-backup-role-switching (ovsdb-server.at:1859): ok (0m0.308s 0m0.092s) 1952. ovsdb-server prevent self replicating (ovsdb-server.at:1942): ok (0m0.083s 0m0.008s) 1953. ovsdb-server/read-only db:ptcp connection (ovsdb-server.at:1973): ok (0m0.147s 0m0.032s) 1954. ovsdb-server replication with schema mismatch (ovsdb-server.at:2041): ok (0m0.276s 0m0.099s) 1955. ovsdb-server record/replay (ovsdb-server.at:2150): ok (0m0.429s 0m0.116s) 1956. ovsdb-client get-schema-version and get-schema-cksum (ovsdb-client.at:3): ok (0m0.048s 0m0.024s) 1957. ovsdb-client needs-conversion (no conversion needed) (ovsdb-client.at:16): ok (0m0.040s 0m0.024s) 1958. ovsdb-client needs-conversion (conversion needed) (ovsdb-client.at:28): ok (0m0.054s 0m0.021s) 1959. ovsdb-client backup and restore (ovsdb-client.at:42): ok (0m0.401s 0m0.104s) 1960. ovsdb-client query (ovsdb-client.at:149): ok (0m0.231s 0m0.021s) 1961. ovsdb-client record/replay (ovsdb-client.at:202): ok (0m0.249s 0m0.064s) 1962. monitor insert into empty table (ovsdb-monitor.at:111): ok (0m0.214s 0m0.036s) 1963. monitor insert into populated table (ovsdb-monitor.at:123): ok (0m0.243s 0m0.018s) 1964. monitor delete (ovsdb-monitor.at:141): ok (0m0.201s 0m0.045s) 1965. monitor row update (ovsdb-monitor.at:159): ok (0m0.187s 0m0.056s) 1966. monitor no-op row updates (ovsdb-monitor.at:179): ok (0m0.205s 0m0.048s) 1967. monitor insert-and-update transaction (ovsdb-monitor.at:202): ok (0m0.178s 0m0.064s) 1968. monitor insert-update-and-delete transaction (ovsdb-monitor.at:225): ok (0m0.202s 0m0.042s) 1969. monitor weak reference change (ovsdb-monitor.at:254): ok (0m0.201s 0m0.039s) 1970. monitor insert-update-and-delete transaction (ovsdb-monitor.at:289): ok (0m0.167s 0m0.085s) 1971. monitor all operations (ovsdb-monitor.at:340): ok (0m0.200s 0m0.064s) 1972. monitor initial only (ovsdb-monitor.at:360): ok (0m0.225s 0m0.038s) 1973. monitor insert only (ovsdb-monitor.at:367): ok (0m0.219s 0m0.053s) 1974. monitor delete only (ovsdb-monitor.at:374): ok (0m0.233s 0m0.026s) 1975. monitor modify only (ovsdb-monitor.at:382): ok (0m0.201s 0m0.079s) 1976. monitor-cond empty condition (ovsdb-monitor.at:392): ok (0m0.211s 0m0.042s) 1977. monitor-cond multiple conditions (ovsdb-monitor.at:423): ok (0m0.206s 0m0.050s) 1978. monitor-cond delete from populated table (ovsdb-monitor.at:451): ok (0m0.225s 0m0.031s) 1979. monitor-cond insert due to modify (ovsdb-monitor.at:476): ok (0m0.224s 0m0.031s) 1980. monitor-cond delete due to modify (ovsdb-monitor.at:500): ok (0m0.217s 0m0.038s) 1981. monitor-cond condition non-monitored columns (ovsdb-monitor.at:524): ok (0m0.208s 0m0.047s) 1982. monitor-cond-change (ovsdb-monitor.at:553): ok (0m0.247s 0m0.038s) 1983. monitor-cond-change with many sessions pending (ovsdb-monitor.at:594): ok (0m13.108s 0m3.957s) 1984. monitor-cond-since not found (ovsdb-monitor.at:665): ok (0m0.231s 0m0.023s) 1985. monitor-cond-since db restart (ovsdb-monitor.at:719): ok (0m0.257s 0m0.041s) 1986. monitor-cond-since found but no new rows (ovsdb-monitor.at:783): ok (0m0.201s 0m0.075s) 1987. monitor-cond-since empty db (ovsdb-monitor.at:824): ok (0m0.214s 0m0.026s) 1988. monitor-cond-since condition change (ovsdb-monitor.at:847): ok (0m0.242s 0m0.052s) 1989. monitor-cond-since non-cluster (ovsdb-monitor.at:908): ok (0m0.211s 0m0.044s) 1990. monitor-cond-since non-cluster non-zero last_id (ovsdb-monitor.at:961): ok (0m0.192s 0m0.063s) 1991. simple passive idl, initially empty, select empty - Python3 - ptcp (ovsdb-idl.at:290): ok (0m0.519s 0m0.124s) 1992. simple idl, initially empty, no ops - C (ovsdb-idl.at:298): ok (0m0.125s 0m0.020s) 1993. simple idl, initially empty, no ops - C - tcp (ovsdb-idl.at:298): ok (0m0.107s 0m0.035s) 1994. simple idl, initially empty, no ops - C - tcp6 (ovsdb-idl.at:298): skipped (ovsdb-idl.at:298) 1995. simple idl, initially empty, no ops - Python3 (ovsdb-idl.at:298): ok (0m0.541s 0m0.073s) 1996. simple idl, initially empty, no ops - Python3 - register_columns (ovsdb-idl.at:298): ok (0m0.438s 0m0.156s) 1997. simple idl, initially empty, no ops - Python3 - tcp (ovsdb-idl.at:298): ok (0m0.387s 0m0.108s) 1998. simple idl, initially empty, no ops - Python3 (multiple remotes) - tcp (ovsdb-idl.at:298): ok (0m0.504s 0m0.113s) 1999. simple idl, initially empty, no ops - Python3 - tcp6 (ovsdb-idl.at:298): skipped (ovsdb-idl.at:298) 2000. simple idl, initially empty, no ops - Python3 - tcp6 (ovsdb-idl.at:298): skipped (ovsdb-idl.at:298) 2001. simple idl, initially empty, no ops - Python3 - SSL (ovsdb-idl.at:298): ok (0m0.594s 0m0.140s) 2002. simple idl, initially empty, various ops - C (ovsdb-idl.at:305): ok (0m0.126s 0m0.013s) 2003. simple idl, initially empty, various ops - C - tcp (ovsdb-idl.at:305): ok (0m0.140s 0m0.015s) 2004. simple idl, initially empty, various ops - C - tcp6 (ovsdb-idl.at:305): skipped (ovsdb-idl.at:305) 2005. simple idl, initially empty, various ops - Python3 (ovsdb-idl.at:305): ok (0m0.601s 0m0.080s) 2006. simple idl, initially empty, various ops - Python3 - register_columns (ovsdb-idl.at:305): ok (0m0.613s 0m0.075s) 2007. simple idl, initially empty, various ops - Python3 - tcp (ovsdb-idl.at:305): ok (0m0.646s 0m0.046s) 2008. simple idl, initially empty, various ops - Python3 (multiple remotes) - tcp (ovsdb-idl.at:305): ok (0m0.662s 0m0.060s) 2009. simple idl, initially empty, various ops - Python3 - tcp6 (ovsdb-idl.at:305): skipped (ovsdb-idl.at:305) 2010. simple idl, initially empty, various ops - Python3 - tcp6 (ovsdb-idl.at:305): skipped (ovsdb-idl.at:305) 2011. simple idl, initially empty, various ops - Python3 - SSL (ovsdb-idl.at:305): ok (0m0.714s 0m0.114s) 2012. simple idl, initially populated - C (ovsdb-idl.at:383): ok (0m0.105s 0m0.047s) 2013. simple idl, initially populated - C - tcp (ovsdb-idl.at:383): ok (0m0.119s 0m0.039s) 2014. simple idl, initially populated - C - tcp6 (ovsdb-idl.at:383): skipped (ovsdb-idl.at:383) 2015. simple idl, initially populated - Python3 (ovsdb-idl.at:383): ok (0m0.552s 0m0.080s) 2016. simple idl, initially populated - Python3 - register_columns (ovsdb-idl.at:383): ok (0m0.530s 0m0.099s) 2017. simple idl, initially populated - Python3 - tcp (ovsdb-idl.at:383): ok (0m0.575s 0m0.065s) 2018. simple idl, initially populated - Python3 (multiple remotes) - tcp (ovsdb-idl.at:383): ok (0m0.543s 0m0.072s) 2019. simple idl, initially populated - Python3 - tcp6 (ovsdb-idl.at:383): skipped (ovsdb-idl.at:383) 2020. simple idl, initially populated - Python3 - tcp6 (ovsdb-idl.at:383): skipped (ovsdb-idl.at:383) 2021. simple idl, initially populated - Python3 - SSL (ovsdb-idl.at:383): ok (0m0.687s 0m0.090s) 2022. simple idl, writing via IDL - C (ovsdb-idl.at:414): ok (0m0.136s 0m0.018s) 2023. simple idl, writing via IDL - C - tcp (ovsdb-idl.at:414): ok (0m0.151s 0m0.008s) 2024. simple idl, writing via IDL - C - tcp6 (ovsdb-idl.at:414): skipped (ovsdb-idl.at:414) 2025. simple idl, writing via IDL - Python3 (ovsdb-idl.at:414): ok (0m0.501s 0m0.129s) 2026. simple idl, writing via IDL - Python3 - register_columns (ovsdb-idl.at:414): ok (0m0.482s 0m0.159s) 2027. simple idl, writing via IDL - Python3 - tcp (ovsdb-idl.at:414): ok (0m0.607s 0m0.067s) 2028. simple idl, writing via IDL - Python3 (multiple remotes) - tcp (ovsdb-idl.at:414): ok (0m0.537s 0m0.092s) 2029. simple idl, writing via IDL - Python3 - tcp6 (ovsdb-idl.at:414): skipped (ovsdb-idl.at:414) 2030. simple idl, writing via IDL - Python3 - tcp6 (ovsdb-idl.at:414): skipped (ovsdb-idl.at:414) 2031. simple idl, writing via IDL - Python3 - SSL (ovsdb-idl.at:414): ok (0m0.596s 0m0.130s) 2032. simple idl, writing via IDL with unicode - C (ovsdb-idl.at:445): ok (0m0.113s 0m0.031s) 2033. simple idl, writing via IDL with unicode - C - tcp (ovsdb-idl.at:445): ok (0m0.130s 0m0.019s) 2034. simple idl, writing via IDL with unicode - C - tcp6 (ovsdb-idl.at:445): skipped (ovsdb-idl.at:445) 2035. simple idl, writing via IDL with unicode - Python3 (ovsdb-idl.at:445): ok (0m0.513s 0m0.089s) 2036. simple idl, writing via IDL with unicode - Python3 - register_columns (ovsdb-idl.at:445): ok (0m0.454s 0m0.130s) 2037. simple idl, writing via IDL with unicode - Python3 - tcp (ovsdb-idl.at:445): ok (0m0.544s 0m0.088s) 2038. simple idl, writing via IDL with unicode - Python3 (multiple remotes) - tcp (ovsdb-idl.at:445): ok (0m0.506s 0m0.137s) 2039. simple idl, writing via IDL with unicode - Python3 - tcp6 (ovsdb-idl.at:445): skipped (ovsdb-idl.at:445) 2040. simple idl, writing via IDL with unicode - Python3 - tcp6 (ovsdb-idl.at:445): skipped (ovsdb-idl.at:445) 2041. simple idl, writing via IDL with unicode - Python3 - SSL (ovsdb-idl.at:445): ok (0m0.714s 0m0.069s) 2042. simple idl, writing large data via IDL with unicode - Python3 (ovsdb-idl.at:472): ok (0m0.628s 0m0.118s) 2043. simple idl, handling verification failure - C (ovsdb-idl.at:484): ok (0m0.121s 0m0.034s) 2044. simple idl, handling verification failure - C - tcp (ovsdb-idl.at:484): ok (0m0.127s 0m0.035s) 2045. simple idl, handling verification failure - C - tcp6 (ovsdb-idl.at:484): skipped (ovsdb-idl.at:484) 2046. simple idl, handling verification failure - Python3 (ovsdb-idl.at:484): ok (0m0.593s 0m0.058s) 2047. simple idl, handling verification failure - Python3 - register_columns (ovsdb-idl.at:484): ok (0m0.546s 0m0.095s) 2048. simple idl, handling verification failure - Python3 - tcp (ovsdb-idl.at:484): ok (0m0.582s 0m0.065s) 2049. simple idl, handling verification failure - Python3 (multiple remotes) - tcp (ovsdb-idl.at:484): ok (0m0.543s 0m0.108s) 2050. simple idl, handling verification failure - Python3 - tcp6 (ovsdb-idl.at:484): skipped (ovsdb-idl.at:484) 2051. simple idl, handling verification failure - Python3 - tcp6 (ovsdb-idl.at:484): skipped (ovsdb-idl.at:484) 2052. simple idl, handling verification failure - Python3 - SSL (ovsdb-idl.at:484): ok (0m0.627s 0m0.108s) 2053. simple idl, increment operation - C (ovsdb-idl.at:515): ok (0m0.122s 0m0.028s) 2054. simple idl, increment operation - C - tcp (ovsdb-idl.at:515): ok (0m0.124s 0m0.027s) 2055. simple idl, increment operation - C - tcp6 (ovsdb-idl.at:515): skipped (ovsdb-idl.at:515) 2056. simple idl, increment operation - Python3 (ovsdb-idl.at:515): ok (0m0.524s 0m0.043s) 2057. simple idl, increment operation - Python3 - register_columns (ovsdb-idl.at:515): ok (0m0.491s 0m0.102s) 2058. simple idl, increment operation - Python3 - tcp (ovsdb-idl.at:515): ok (0m0.543s 0m0.049s) 2059. simple idl, increment operation - Python3 (multiple remotes) - tcp (ovsdb-idl.at:515): ok (0m0.519s 0m0.073s) 2060. simple idl, increment operation - Python3 - tcp6 (ovsdb-idl.at:515): skipped (ovsdb-idl.at:515) 2061. simple idl, increment operation - Python3 - tcp6 (ovsdb-idl.at:515): skipped (ovsdb-idl.at:515) 2062. simple idl, increment operation - Python3 - SSL (ovsdb-idl.at:515): ok (0m0.639s 0m0.069s) 2063. simple idl, aborting - C (ovsdb-idl.at:527): ok (0m0.121s 0m0.019s) 2064. simple idl, aborting - C - tcp (ovsdb-idl.at:527): ok (0m0.118s 0m0.030s) 2065. simple idl, aborting - C - tcp6 (ovsdb-idl.at:527): skipped (ovsdb-idl.at:527) 2066. simple idl, aborting - Python3 (ovsdb-idl.at:527): ok (0m0.527s 0m0.069s) 2067. simple idl, aborting - Python3 - register_columns (ovsdb-idl.at:527): ok (0m0.531s 0m0.086s) 2068. simple idl, aborting - Python3 - tcp (ovsdb-idl.at:527): ok (0m0.606s 0m0.075s) 2069. simple idl, aborting - Python3 (multiple remotes) - tcp (ovsdb-idl.at:527): ok (0m0.494s 0m0.139s) 2070. simple idl, aborting - Python3 - tcp6 (ovsdb-idl.at:527): skipped (ovsdb-idl.at:527) 2071. simple idl, aborting - Python3 - tcp6 (ovsdb-idl.at:527): skipped (ovsdb-idl.at:527) 2072. simple idl, aborting - Python3 - SSL (ovsdb-idl.at:527): ok (0m0.644s 0m0.133s) 2073. simple idl, destroy without commit or abort - C (ovsdb-idl.at:541): ok (0m0.096s 0m0.058s) 2074. simple idl, destroy without commit or abort - C - tcp (ovsdb-idl.at:541): ok (0m0.138s 0m0.026s) 2075. simple idl, destroy without commit or abort - C - tcp6 (ovsdb-idl.at:541): skipped (ovsdb-idl.at:541) 2076. simple idl, destroy without commit or abort - Python3 (ovsdb-idl.at:541): ok (0m0.573s 0m0.046s) 2077. simple idl, destroy without commit or abort - Python3 - register_columns (ovsdb-idl.at:541): ok (0m0.534s 0m0.080s) 2078. simple idl, destroy without commit or abort - Python3 - tcp (ovsdb-idl.at:541): ok (0m0.523s 0m0.074s) 2079. simple idl, destroy without commit or abort - Python3 (multiple remotes) - tcp (ovsdb-idl.at:541): ok (0m0.474s 0m0.093s) 2080. simple idl, destroy without commit or abort - Python3 - tcp6 (ovsdb-idl.at:541): skipped (ovsdb-idl.at:541) 2081. simple idl, destroy without commit or abort - Python3 - tcp6 (ovsdb-idl.at:541): skipped (ovsdb-idl.at:541) 2082. simple idl, destroy without commit or abort - Python3 - SSL (ovsdb-idl.at:541): ok (0m0.618s 0m0.118s) 2083. simple idl, conditional, false condition - C (ovsdb-idl.at:555): ok (0m0.111s 0m0.029s) 2084. simple idl, conditional, false condition - C - tcp (ovsdb-idl.at:555): ok (0m0.122s 0m0.026s) 2085. simple idl, conditional, false condition - C - tcp6 (ovsdb-idl.at:555): skipped (ovsdb-idl.at:555) 2086. simple idl, conditional, false condition - Python3 (ovsdb-idl.at:555): ok (0m0.523s 0m0.071s) 2087. simple idl, conditional, false condition - Python3 - register_columns (ovsdb-idl.at:555): ok (0m0.392s 0m0.106s) 2088. simple idl, conditional, false condition - Python3 - tcp (ovsdb-idl.at:555): ok (0m0.514s 0m0.074s) 2089. simple idl, conditional, false condition - Python3 (multiple remotes) - tcp (ovsdb-idl.at:555): ok (0m0.476s 0m0.121s) 2090. simple idl, conditional, false condition - Python3 - tcp6 (ovsdb-idl.at:555): skipped (ovsdb-idl.at:555) 2091. simple idl, conditional, false condition - Python3 - tcp6 (ovsdb-idl.at:555): skipped (ovsdb-idl.at:555) 2092. simple idl, conditional, false condition - Python3 - SSL (ovsdb-idl.at:555): ok (0m0.648s 0m0.077s) 2093. simple idl, conditional, true condition - C (ovsdb-idl.at:571): ok (0m0.105s 0m0.035s) 2094. simple idl, conditional, true condition - C - tcp (ovsdb-idl.at:571): ok (0m0.137s 0m0.017s) 2095. simple idl, conditional, true condition - C - tcp6 (ovsdb-idl.at:571): skipped (ovsdb-idl.at:571) 2096. simple idl, conditional, true condition - Python3 (ovsdb-idl.at:571): ok (0m0.530s 0m0.077s) 2097. simple idl, conditional, true condition - Python3 - register_columns (ovsdb-idl.at:571): ok (0m0.485s 0m0.114s) 2098. simple idl, conditional, true condition - Python3 - tcp (ovsdb-idl.at:571): ok (0m0.515s 0m0.087s) 2099. simple idl, conditional, true condition - Python3 (multiple remotes) - tcp (ovsdb-idl.at:571): ok (0m0.505s 0m0.121s) 2100. simple idl, conditional, true condition - Python3 - tcp6 (ovsdb-idl.at:571): skipped (ovsdb-idl.at:571) 2101. simple idl, conditional, true condition - Python3 - tcp6 (ovsdb-idl.at:571): skipped (ovsdb-idl.at:571) 2102. simple idl, conditional, true condition - Python3 - SSL (ovsdb-idl.at:571): ok (0m0.645s 0m0.118s) 2103. simple idl, conditional, multiple clauses in condition - C (ovsdb-idl.at:587): ok (0m0.115s 0m0.033s) 2104. simple idl, conditional, multiple clauses in condition - C - tcp (ovsdb-idl.at:587): ok (0m0.132s 0m0.026s) 2105. simple idl, conditional, multiple clauses in condition - C - tcp6 (ovsdb-idl.at:587): skipped (ovsdb-idl.at:587) 2106. simple idl, conditional, multiple clauses in condition - Python3 (ovsdb-idl.at:587): ok (0m0.525s 0m0.094s) 2107. simple idl, conditional, multiple clauses in condition - Python3 - register_columns (ovsdb-idl.at:587): ok (0m0.542s 0m0.084s) 2108. simple idl, conditional, multiple clauses in condition - Python3 - tcp (ovsdb-idl.at:587): ok (0m0.512s 0m0.113s) 2109. simple idl, conditional, multiple clauses in condition - Python3 (multiple remotes) - tcp (ovsdb-idl.at:587): ok (0m0.576s 0m0.063s) 2110. simple idl, conditional, multiple clauses in condition - Python3 - tcp6 (ovsdb-idl.at:587): skipped (ovsdb-idl.at:587) 2111. simple idl, conditional, multiple clauses in condition - Python3 - tcp6 (ovsdb-idl.at:587): skipped (ovsdb-idl.at:587) 2112. simple idl, conditional, multiple clauses in condition - Python3 - SSL (ovsdb-idl.at:587): ok (0m0.612s 0m0.140s) 2113. simple idl, conditional, modify as insert due to condition - C (ovsdb-idl.at:609): ok (0m0.111s 0m0.038s) 2114. simple idl, conditional, modify as insert due to condition - C - tcp (ovsdb-idl.at:609): ok (0m0.117s 0m0.040s) 2115. simple idl, conditional, modify as insert due to condition - C - tcp6 (ovsdb-idl.at:609): skipped (ovsdb-idl.at:609) 2116. simple idl, conditional, modify as insert due to condition - Python3 (ovsdb-idl.at:609): ok (0m0.565s 0m0.063s) 2117. simple idl, conditional, modify as insert due to condition - Python3 - register_columns (ovsdb-idl.at:609): ok (0m0.549s 0m0.080s) 2118. simple idl, conditional, modify as insert due to condition - Python3 - tcp (ovsdb-idl.at:609): ok (0m0.533s 0m0.081s) 2119. simple idl, conditional, modify as insert due to condition - Python3 (multiple remotes) - tcp (ovsdb-idl.at:609): ok (0m0.591s 0m0.034s) 2120. simple idl, conditional, modify as insert due to condition - Python3 - tcp6 (ovsdb-idl.at:609): skipped (ovsdb-idl.at:609) 2121. simple idl, conditional, modify as insert due to condition - Python3 - tcp6 (ovsdb-idl.at:609): skipped (ovsdb-idl.at:609) 2122. simple idl, conditional, modify as insert due to condition - Python3 - SSL (ovsdb-idl.at:609): ok (0m0.647s 0m0.121s) 2123. simple idl, conditional, modify as delete due to condition - C (ovsdb-idl.at:625): ok (0m0.099s 0m0.054s) 2124. simple idl, conditional, modify as delete due to condition - C - tcp (ovsdb-idl.at:625): ok (0m0.156s 0m0.003s) 2125. simple idl, conditional, modify as delete due to condition - C - tcp6 (ovsdb-idl.at:625): skipped (ovsdb-idl.at:625) 2126. simple idl, conditional, modify as delete due to condition - Python3 (ovsdb-idl.at:625): ok (0m0.505s 0m0.104s) 2127. simple idl, conditional, modify as delete due to condition - Python3 - register_columns (ovsdb-idl.at:625): ok (0m0.492s 0m0.122s) 2128. simple idl, conditional, modify as delete due to condition - Python3 - tcp (ovsdb-idl.at:625): ok (0m0.477s 0m0.137s) 2129. simple idl, conditional, modify as delete due to condition - Python3 (multiple remotes) - tcp (ovsdb-idl.at:625): ok (0m0.558s 0m0.075s) 2130. simple idl, conditional, modify as delete due to condition - Python3 - tcp6 (ovsdb-idl.at:625): skipped (ovsdb-idl.at:625) 2131. simple idl, conditional, modify as delete due to condition - Python3 - tcp6 (ovsdb-idl.at:625): skipped (ovsdb-idl.at:625) 2132. simple idl, conditional, modify as delete due to condition - Python3 - SSL (ovsdb-idl.at:625): ok (0m0.702s 0m0.068s) 2133. simple idl, conditional, multiple tables - C (ovsdb-idl.at:652): ok (0m0.128s 0m0.025s) 2134. simple idl, conditional, multiple tables - C - tcp (ovsdb-idl.at:652): ok (0m0.101s 0m0.057s) 2135. simple idl, conditional, multiple tables - C - tcp6 (ovsdb-idl.at:652): skipped (ovsdb-idl.at:652) 2136. simple idl, conditional, multiple tables - Python3 (ovsdb-idl.at:652): ok (0m0.538s 0m0.100s) 2137. simple idl, conditional, multiple tables - Python3 - register_columns (ovsdb-idl.at:652): ok (0m0.551s 0m0.080s) 2138. simple idl, conditional, multiple tables - Python3 - tcp (ovsdb-idl.at:652): ok (0m0.562s 0m0.082s) 2139. simple idl, conditional, multiple tables - Python3 (multiple remotes) - tcp (ovsdb-idl.at:652): ok (0m0.486s 0m0.094s) 2140. simple idl, conditional, multiple tables - Python3 - tcp6 (ovsdb-idl.at:652): skipped (ovsdb-idl.at:652) 2141. simple idl, conditional, multiple tables - Python3 - tcp6 (ovsdb-idl.at:652): skipped (ovsdb-idl.at:652) 2142. simple idl, conditional, multiple tables - Python3 - SSL (ovsdb-idl.at:652): ok (0m0.651s 0m0.100s) 2143. self-linking idl, consistent ops - C (ovsdb-idl.at:691): ok (0m0.123s 0m0.019s) 2144. self-linking idl, consistent ops - C - tcp (ovsdb-idl.at:691): ok (0m0.139s 0m0.012s) 2145. self-linking idl, consistent ops - C - tcp6 (ovsdb-idl.at:691): skipped (ovsdb-idl.at:691) 2146. self-linking idl, consistent ops - Python3 (ovsdb-idl.at:691): ok (0m0.518s 0m0.084s) 2147. self-linking idl, consistent ops - Python3 - register_columns (ovsdb-idl.at:691): ok (0m0.528s 0m0.099s) 2148. self-linking idl, consistent ops - Python3 - tcp (ovsdb-idl.at:691): ok (0m0.538s 0m0.095s) 2149. self-linking idl, consistent ops - Python3 (multiple remotes) - tcp (ovsdb-idl.at:691): ok (0m0.569s 0m0.061s) 2150. self-linking idl, consistent ops - Python3 - tcp6 (ovsdb-idl.at:691): skipped (ovsdb-idl.at:691) 2151. self-linking idl, consistent ops - Python3 - tcp6 (ovsdb-idl.at:691): skipped (ovsdb-idl.at:691) 2152. self-linking idl, consistent ops - Python3 - SSL (ovsdb-idl.at:691): ok (0m0.671s 0m0.087s) 2153. self-linking idl, inconsistent ops - C (ovsdb-idl.at:735): ok (0m0.111s 0m0.038s) 2154. self-linking idl, inconsistent ops - C - tcp (ovsdb-idl.at:735): ok (0m0.102s 0m0.052s) 2155. self-linking idl, inconsistent ops - C - tcp6 (ovsdb-idl.at:735): skipped (ovsdb-idl.at:735) 2156. self-linking idl, inconsistent ops - Python3 (ovsdb-idl.at:735): ok (0m0.526s 0m0.110s) 2157. self-linking idl, inconsistent ops - Python3 - register_columns (ovsdb-idl.at:735): ok (0m0.523s 0m0.105s) 2158. self-linking idl, inconsistent ops - Python3 - tcp (ovsdb-idl.at:735): ok (0m0.563s 0m0.062s) 2159. self-linking idl, inconsistent ops - Python3 (multiple remotes) - tcp (ovsdb-idl.at:735): ok (0m0.559s 0m0.060s) 2160. self-linking idl, inconsistent ops - Python3 - tcp6 (ovsdb-idl.at:735): skipped (ovsdb-idl.at:735) 2161. self-linking idl, inconsistent ops - Python3 - tcp6 (ovsdb-idl.at:735): skipped (ovsdb-idl.at:735) 2162. self-linking idl, inconsistent ops - Python3 - SSL (ovsdb-idl.at:735): ok (0m0.585s 0m0.169s) 2163. self-linking idl, sets - C (ovsdb-idl.at:783): ok (0m0.111s 0m0.006s) 2164. self-linking idl, sets - C - tcp (ovsdb-idl.at:783): ok (0m0.119s 0m0.031s) 2165. self-linking idl, sets - C - tcp6 (ovsdb-idl.at:783): skipped (ovsdb-idl.at:783) 2166. self-linking idl, sets - Python3 (ovsdb-idl.at:783): ok (0m0.564s 0m0.053s) 2167. self-linking idl, sets - Python3 - register_columns (ovsdb-idl.at:783): ok (0m0.513s 0m0.081s) 2168. self-linking idl, sets - Python3 - tcp (ovsdb-idl.at:783): ok (0m0.537s 0m0.104s) 2169. self-linking idl, sets - Python3 (multiple remotes) - tcp (ovsdb-idl.at:783): ok (0m0.522s 0m0.121s) 2170. self-linking idl, sets - Python3 - tcp6 (ovsdb-idl.at:783): skipped (ovsdb-idl.at:783) 2171. self-linking idl, sets - Python3 - tcp6 (ovsdb-idl.at:783): skipped (ovsdb-idl.at:783) 2172. self-linking idl, sets - Python3 - SSL (ovsdb-idl.at:783): ok (0m0.681s 0m0.090s) 2173. external-linking idl, consistent ops - C (ovsdb-idl.at:833): ok (0m0.099s 0m0.042s) 2174. external-linking idl, consistent ops - C - tcp (ovsdb-idl.at:833): ok (0m0.114s 0m0.034s) 2175. external-linking idl, consistent ops - C - tcp6 (ovsdb-idl.at:833): skipped (ovsdb-idl.at:833) 2176. external-linking idl, consistent ops - Python3 (ovsdb-idl.at:833): ok (0m0.519s 0m0.097s) 2177. external-linking idl, consistent ops - Python3 - register_columns (ovsdb-idl.at:833): ok (0m0.501s 0m0.074s) 2178. external-linking idl, consistent ops - Python3 - tcp (ovsdb-idl.at:833): ok (0m0.504s 0m0.110s) 2179. external-linking idl, consistent ops - Python3 (multiple remotes) - tcp (ovsdb-idl.at:833): ok (0m0.536s 0m0.085s) 2180. external-linking idl, consistent ops - Python3 - tcp6 (ovsdb-idl.at:833): skipped (ovsdb-idl.at:833) 2181. external-linking idl, consistent ops - Python3 - tcp6 (ovsdb-idl.at:833): skipped (ovsdb-idl.at:833) 2182. external-linking idl, consistent ops - Python3 - SSL (ovsdb-idl.at:833): ok (0m0.645s 0m0.103s) 2183. singleton idl, constraints - C (ovsdb-idl.at:851): ok (0m0.104s 0m0.032s) 2184. singleton idl, constraints - C - tcp (ovsdb-idl.at:851): ok (0m0.114s 0m0.034s) 2185. singleton idl, constraints - C - tcp6 (ovsdb-idl.at:851): skipped (ovsdb-idl.at:851) 2186. singleton idl, constraints - Python3 (ovsdb-idl.at:851): ok (0m0.502s 0m0.115s) 2187. singleton idl, constraints - Python3 - register_columns (ovsdb-idl.at:851): ok (0m0.557s 0m0.062s) 2188. singleton idl, constraints - Python3 - tcp (ovsdb-idl.at:851): ok (0m0.517s 0m0.106s) 2189. singleton idl, constraints - Python3 (multiple remotes) - tcp (ovsdb-idl.at:851): ok (0m0.485s 0m0.122s) 2190. singleton idl, constraints - Python3 - tcp6 (ovsdb-idl.at:851): skipped (ovsdb-idl.at:851) 2191. singleton idl, constraints - Python3 - tcp6 (ovsdb-idl.at:851): skipped (ovsdb-idl.at:851) 2192. singleton idl, constraints - Python3 - SSL (ovsdb-idl.at:851): ok (0m0.644s 0m0.111s) 2193. simple idl, references, multiple deletes - C (ovsdb-idl.at:880): ok (0m0.127s 0m0.023s) 2194. simple idl, references, multiple deletes - C - tcp (ovsdb-idl.at:880): ok (0m0.134s 0m0.026s) 2195. simple idl, references, multiple deletes - C - tcp6 (ovsdb-idl.at:880): skipped (ovsdb-idl.at:880) 2196. simple idl, references, multiple deletes - Python3 (ovsdb-idl.at:880): ok (0m0.543s 0m0.079s) 2197. simple idl, references, multiple deletes - Python3 - register_columns (ovsdb-idl.at:880): ok (0m0.546s 0m0.081s) 2198. simple idl, references, multiple deletes - Python3 - tcp (ovsdb-idl.at:880): ok (0m0.525s 0m0.108s) 2199. simple idl, references, multiple deletes - Python3 (multiple remotes) - tcp (ovsdb-idl.at:880): ok (0m0.566s 0m0.063s) 2200. simple idl, references, multiple deletes - Python3 - tcp6 (ovsdb-idl.at:880): skipped (ovsdb-idl.at:880) 2201. simple idl, references, multiple deletes - Python3 - tcp6 (ovsdb-idl.at:880): skipped (ovsdb-idl.at:880) 2202. simple idl, references, multiple deletes - Python3 - SSL (ovsdb-idl.at:880): ok (0m0.696s 0m0.079s) 2203. external-linking idl, insert ops - Python3 (ovsdb-idl.at:906): ok (0m0.503s 0m0.117s) 2204. getattr idl, insert ops - Python3 (ovsdb-idl.at:916): ok (0m0.498s 0m0.115s) 2205. row-from-json idl, whats this - Python3 (ovsdb-idl.at:925): ok (0m0.535s 0m0.076s) 2206. idl handling of missing tables and columns - C (ovsdb-idl.at:942): ok (0m0.162s 0m0.058s) 2207. simple idl, initially populated - Python3 - fetch (ovsdb-idl.at:1035): ok (0m0.524s 0m0.077s) 2208. simple idl disable monitor-cond - Python3 (ovsdb-idl.at:1079): ok (0m0.646s 0m0.069s) 2209. track, simple idl, initially populated - C (ovsdb-idl.at:1172): ok (0m0.113s 0m0.042s) 2210. track, simple idl, initially populated, orphan weak references - C (ovsdb-idl.at:1207): ok (0m0.117s 0m0.038s) 2211. track, simple idl, initially populated, orphan rows, conditional - C (ovsdb-idl.at:1258): ok (0m0.097s 0m0.058s) 2212. track, simple idl, initially populated, references, conditional delete - C (ovsdb-idl.at:1307): ok (0m0.127s 0m0.029s) 2213. track, simple idl, initially populated, references, single delete - C (ovsdb-idl.at:1358): ok (0m0.121s 0m0.034s) 2214. track, simple idl, initially populated, weak references, multiple deletes - C (ovsdb-idl.at:1397): ok (0m0.110s 0m0.045s) 2215. track, simple idl, initially populated, strong references, multiple deletes - C (ovsdb-idl.at:1437): ok (0m0.122s 0m0.032s) 2216. track, simple idl, initially populated, strong references, conditional - C (ovsdb-idl.at:1478): ok (0m0.117s 0m0.037s) 2217. simple idl, initially populated, strong references, conditional - C (ovsdb-idl.at:1514): ok (0m0.136s 0m0.017s) 2218. simple idl, initially populated, strong references, conditional - C - tcp (ovsdb-idl.at:1514): ok (0m0.143s 0m0.016s) 2219. simple idl, initially populated, strong references, conditional - C - tcp6 (ovsdb-idl.at:1514): skipped (ovsdb-idl.at:1514) 2220. simple idl, initially populated, strong references, conditional - Python3 (ovsdb-idl.at:1514): ok (0m0.580s 0m0.058s) 2221. simple idl, initially populated, strong references, conditional - Python3 - register_columns (ovsdb-idl.at:1514): ok (0m0.540s 0m0.086s) 2222. simple idl, initially populated, strong references, conditional - Python3 - tcp (ovsdb-idl.at:1514): ok (0m0.522s 0m0.114s) 2223. simple idl, initially populated, strong references, conditional - Python3 (multiple remotes) - tcp (ovsdb-idl.at:1514): ok (0m0.558s 0m0.059s) 2224. simple idl, initially populated, strong references, conditional - Python3 - tcp6 (ovsdb-idl.at:1514): skipped (ovsdb-idl.at:1514) 2225. simple idl, initially populated, strong references, conditional - Python3 - tcp6 (ovsdb-idl.at:1514): skipped (ovsdb-idl.at:1514) 2226. simple idl, initially populated, strong references, conditional - Python3 - SSL (ovsdb-idl.at:1514): ok (0m0.637s 0m0.115s) 2227. track, simple idl, initially empty, strong references, insert and delete - C (ovsdb-idl.at:1545): ok (0m0.108s 0m0.033s) 2228. track, simple idl, initially empty, various ops - C (ovsdb-idl.at:1569): ok (0m0.131s 0m0.016s) 2229. map, simple2 idl-partial-update-map-column, initially populated - C (ovsdb-idl.at:1663): ok (0m0.138s 0m0.015s) 2230. partial-map idl - Python3 (ovsdb-idl.at:1681): ok (0m0.520s 0m0.114s) 2231. partial-map update set refmap idl - Python3 (ovsdb-idl.at:1699): ok (0m0.533s 0m0.090s) 2232. set, simple3 idl-partial-update-set-column, initially populated - C (ovsdb-idl.at:1724): ok (0m0.136s 0m0.012s) 2233. partial-set idl - Python3 (ovsdb-idl.at:1744): ok (0m0.595s 0m0.056s) 2234. simple link idl verify notify - Python3 (ovsdb-idl.at:1779): ok (0m0.486s 0m0.120s) 2235. simple link idl verify notify - Python3 - SSL (ovsdb-idl.at:1779): ok (0m0.600s 0m0.115s) 2236. simple idl verify notify - Python3 (ovsdb-idl.at:1801): ok (0m0.562s 0m0.108s) 2237. simple idl verify notify - Python3 - SSL (ovsdb-idl.at:1801): ok (0m0.654s 0m0.156s) 2238. Compound_index, single column test - C (ovsdb-idl.at:1928): ok (0m0.126s 0m0.022s) 2239. Compound_index, double column test - C (ovsdb-idl.at:2075): ok (0m0.115s 0m0.033s) 2240. set, simple3 idl-compound-index-with-ref, initially populated - C (ovsdb-idl.at:2199): ok (0m0.105s 0m0.031s) 2241. Check stream open block - C - tcp (ovsdb-idl.at:2226): ok (0m0.053s 0m0.024s) 2242. Check stream open block - C - tcp6 (ovsdb-idl.at:2227): skipped (ovsdb-idl.at:2227) 2243. Check stream open block - Python3 - tcp (ovsdb-idl.at:2228): ok (0m0.654s 0m0.064s) 2244. Check stream open block - Python3 - tcp6 (ovsdb-idl.at:2230): skipped (ovsdb-idl.at:2230) 2245. Check Python IDL connects to leader - Python3 (leader only) (ovsdb-idl.at:2254): ok (0m0.645s 0m0.135s) 2246. Check Python IDL reconnects to leader - Python3 (leader only) (ovsdb-idl.at:2255): ok (0m0.732s 0m0.132s) 2247. simple idl, monitor_cond_since, cluster disconnect - C - tcp (ovsdb-idl.at:2322): ok (0m0.187s 0m0.061s) 2248. simple idl, monitor_cond_since, cluster disconnect - Python3 - tcp (ovsdb-idl.at:2322): ok (0m0.718s 0m0.078s) 2249. simple idl, initially empty, set remotes - C (ovsdb-idl.at:2358): ok (0m0.101s 0m0.037s) 2250. simple idl, initially empty, force reconnect - C - tcp (ovsdb-idl.at:2382): ok (0m0.218s 0m0.044s) 2251. simple idl, initially empty, force reconnect - Python3 - tcp (ovsdb-idl.at:2382): ok (0m0.720s 0m0.091s) 2252. idl table and column presence check (ovsdb-idl.at:2403): ok (0m0.057s 0m0.015s) 2253. ovsdb lock -- lock (ovsdb-lock.at:21): ok (0m0.062s 0m0.008s) 2254. ovsdb lock -- unlock (ovsdb-lock.at:37): ok (0m0.067s 0m0.011s) 2255. ovsdb lock -- steal (ovsdb-lock.at:57): ok (0m0.063s 0m0.016s) 2256. ovsdb-server/rbac 2 (ovsdb-rbac.at:3): ok (0m2.605s 0m0.406s) 2257. ovs-vsctl connection retry (ovs-vsctl.at:131): ok (0m0.057s 0m0.023s) 2258. add-br a (ovs-vsctl.at:175): ok (0m0.189s 0m0.057s) 2259. add-br a, add-br a (ovs-vsctl.at:185): ok (0m0.095s 0m0.014s) 2260. add-br a, add-br b (ovs-vsctl.at:198): ok (0m0.256s 0m0.120s) 2261. add-br a, add-br b, del-br a (ovs-vsctl.at:213): ok (0m0.155s 0m0.117s) 2262. add-br a, del-br a, add-br a (ovs-vsctl.at:223): ok (0m0.163s 0m0.101s) 2263. add-br a, add-port a a1, add-port a a2 (ovs-vsctl.at:243): ok (0m0.215s 0m0.098s) 2264. add-br a, add-port a a1, add-port a a1 (ovs-vsctl.at:257): ok (0m0.096s 0m0.008s) 2265. add-br a b, add-port a a1, add-port b b1, del-br a (ovs-vsctl.at:272): ok (0m0.195s 0m0.060s) 2266. add-br a, add-bond a bond0 a1 a2 a3 (ovs-vsctl.at:294): ok (0m0.261s 0m0.072s) 2267. add-bond-iface and del-bond-iface (ovs-vsctl.at:316): ok (0m0.870s 0m0.349s) 2268. add-br a b, add-port a a1, add-port b b1, del-port a a1 (ovs-vsctl.at:376): ok (0m0.307s 0m0.144s) 2269. add-br a, add-bond a bond0 a1 a2 a3, del-port bond0 (ovs-vsctl.at:403): ok (0m0.160s 0m0.037s) 2270. external IDs (ovs-vsctl.at:420): ok (0m0.305s 0m0.113s) 2271. controllers (ovs-vsctl.at:476): ok (0m0.041s 0m0.019s) 2272. fail-mode (ovs-vsctl.at:508): ok (0m0.057s 0m0.002s) 2273. emer-reset (ovs-vsctl.at:538): ok (0m0.133s 0m0.042s) 2274. simple fake bridge (VLAN 9) (ovs-vsctl.at:773): ok (0m0.301s 0m0.078s) 2275. list bridges -- real and fake (VLAN 9) (ovs-vsctl.at:773): ok (0m0.092s 0m0.016s) 2276. simple fake bridge + del-br fake bridge (VLAN 9) (ovs-vsctl.at:773): ok (0m0.183s 0m0.062s) 2277. simple fake bridge + del-br real bridge (VLAN 9) (ovs-vsctl.at:773): ok (0m0.089s 0m0.022s) 2278. simple fake bridge + external IDs (VLAN 9) (ovs-vsctl.at:773): ok (0m0.399s 0m0.283s) 2279. simple fake bridge + del-port from parent (VLAN 9) (ovs-vsctl.at:773): ok (0m0.376s 0m0.067s) 2280. simple fake bridge (VLAN 0) (ovs-vsctl.at:774): ok (0m0.382s 0m0.127s) 2281. list bridges -- real and fake (VLAN 0) (ovs-vsctl.at:774): ok (0m0.121s 0m0.029s) 2282. simple fake bridge + del-br fake bridge (VLAN 0) (ovs-vsctl.at:774): ok (0m0.250s 0m0.059s) 2283. simple fake bridge + del-br real bridge (VLAN 0) (ovs-vsctl.at:774): ok (0m0.113s 0m0.048s) 2284. simple fake bridge + external IDs (VLAN 0) (ovs-vsctl.at:774): ok (0m0.314s 0m0.098s) 2285. simple fake bridge + del-port from parent (VLAN 0) (ovs-vsctl.at:774): ok (0m0.328s 0m0.063s) 2286. fake bridge on bond (ovs-vsctl.at:785): ok (0m0.249s 0m0.078s) 2287. fake bridge on bond + del-br fake bridge (ovs-vsctl.at:797): ok (0m0.186s 0m0.063s) 2288. fake bridge on bond + del-br real bridge (ovs-vsctl.at:809): ok (0m0.095s 0m0.029s) 2289. managers (ovs-vsctl.at:821): ok (0m0.064s 0m0.008s) 2290. database commands -- positive checks (ovs-vsctl.at:851): ok (0m0.296s 0m0.084s) 2291. database commands -- negative checks (ovs-vsctl.at:983): ok (0m0.412s 0m0.099s) 2292. database commands -- conditions (ovs-vsctl.at:1132): ok (0m1.228s 0m0.315s) 2293. database commands -- wait-until immediately true (ovs-vsctl.at:1286): ok (0m0.065s 0m0.030s) 2294. database commands -- wait-until must wait (ovs-vsctl.at:1300): ok (0m0.113s 0m0.037s) 2295. --id option on create, get commands (ovs-vsctl.at:1333): ok (0m0.241s 0m0.058s) 2296. unreferenced record warnings (ovs-vsctl.at:1380): ok (0m0.265s 0m0.048s) 2297. created row UUID is wrong in same execution (ovs-vsctl.at:1414): ok (0m0.125s 0m0.011s) 2298. --all option on destroy command (ovs-vsctl.at:1451): ok (0m0.258s 0m0.152s) 2299. add-port -- reserved names 1 (ovs-vsctl.at:1505): ok (0m0.377s 0m0.106s) 2300. add-port -- reserved names 2 (ovs-vsctl.at:1537): ok (0m0.299s 0m0.070s) 2301. naming in db commands (ovs-vsctl.at:1575): ok (0m0.111s 0m0.012s) 2302. bootstrap ca cert (ovs-vsctl.at:1594): ok (0m1.270s 0m0.100s) 2303. peer ca cert (ovs-vsctl.at:1621): ok (0m0.819s 0m0.097s) 2304. TLS server name indication (SNI) (ovs-vsctl.at:1648): skipped (ovs-vsctl.at:1652) 2305. set ingress_policing_rate and ingress_policing_burst (ovs-vsctl.at:1671): ok (0m0.059s 0m0.021s) 2306. set ingress_policing_kpkts_rate and ingress_policing_kpkts_burst (ovs-vsctl.at:1694): ok (0m0.042s 0m0.042s) 2307. ovs-xapi-sync (ovs-xapi-sync.at:3): ok (0m0.278s 0m0.095s) 2308. non-VLAN, non-bond (interface-reconfigure.at:695): ok (0m0.554s 0m0.130s) 2309. VLAN, non-bond (interface-reconfigure.at:771): ok (0m0.522s 0m0.108s) 2310. Bond, non-VLAN (interface-reconfigure.at:845): ok (0m0.568s 0m0.103s) 2311. VLAN on bond (interface-reconfigure.at:933): ok (0m0.537s 0m0.131s) 2312. Re-create port with different types (interface-reconfigure.at:1032): ok (0m0.112s 0m0.038s) 2313. STP example from IEEE 802.1D-1998 (stp.at:3): ok (0m0.015s 0m0.004s) 2314. STP example from IEEE 802.1D-2004 figures 17.4 and 17.5 (stp.at:27): ok (0m0.019s 0m0.011s) 2315. STP example from IEEE 802.1D-2004 figure 17.6 (stp.at:70): ok (0m0.020s 0m0.000s) 2316. STP example from IEEE 802.1D-2004 figure 17.7 (stp.at:96): ok (0m0.007s 0m0.014s) 2317. STP.io.1.1: Link Failure (stp.at:125): ok (0m0.017s 0m0.004s) 2318. STP.io.1.2: Repeated Network (stp.at:164): ok (0m0.018s 0m0.000s) 2319. STP.io.1.4: Network Initialization (stp.at:188): ok (0m0.007s 0m0.012s) 2320. STP.io.1.5: Topology Change (stp.at:214): ok (0m0.031s 0m0.000s) 2321. STP.op.1.1 and STP.op.1.2 (stp.at:267): ok (0m0.007s 0m0.004s) 2322. STP.op.1.4: All Ports Initialized to Designated Ports (stp.at:281): ok (0m0.015s 0m0.001s) 2323. STP.op.3.1: Root Bridge Selection: Root ID Values (stp.at:302): ok (0m0.011s 0m0.006s) 2324. STP.op.3.3: Root Bridge Selection: Bridge ID Values (stp.at:322): ok (0m0.016s 0m0.001s) 2325. STP.op.3.3: Root Bridge Selection: Bridge ID Values (stp.at:345): ok (0m0.007s 0m0.010s) 2326. STP - dummy interface (stp.at:390): ok (0m0.220s 0m0.064s) 2327. STP - flush the fdb and mdb when topology changed (stp.at:467): ok (0m0.332s 0m0.082s) 2328. STP - check link-state when stp is running (stp.at:597): ok (0m0.258s 0m0.057s) 2329. RSTP Single bridge (rstp.at:3): ok (0m0.012s 0m0.000s) 2330. RSTP Link failure (rstp.at:13): ok (0m0.012s 0m0.002s) 2331. RSTP Double link Failure (rstp.at:32): ok (0m0.028s 0m0.002s) 2332. RSTP example from IEEE 802.1D-2004 figures 17.4 and 17.5 (rstp.at:74): ok (0m0.024s 0m0.012s) 2333. RSTP example from IEEE 802.1D-2004 figure 17.6 (rstp.at:111): ok (0m0.016s 0m0.000s) 2334. RSTP example from IEEE 802.1D-2004 figure 17.7 (rstp.at:131): ok (0m0.022s 0m0.000s) 2335. RSTP - dummy interface (rstp.at:156): ok (0m0.328s 0m0.149s) 2336. vlog - Python3 (vlog.at:3): ok (0m0.190s 0m0.010s) 2337. vlog - vlog/reopen - C (vlog.at:110): ok (0m0.075s 0m0.009s) 2338. vlog - vlog/reopen - Python3 (vlog.at:144): ok (0m0.315s 0m0.045s) 2339. vlog - vlog/reopen without log file - C (vlog.at:171): ok (0m0.026s 0m0.013s) 2340. vlog - vlog/reopen without log file - Python3 (vlog.at:183): ok (0m0.288s 0m0.036s) 2341. vlog - vlog/reopen can't reopen log file - C (vlog.at:195): ok (0m0.073s 0m0.020s) 2342. vlog - vlog/reopen can't reopen log file - Python3 (vlog.at:231): ok (0m0.292s 0m0.082s) 2343. vlog - vlog/close - C (vlog.at:258): ok (0m0.070s 0m0.031s) 2344. vlog - vlog/close - Python3 (vlog.at:298): ok (0m0.304s 0m0.078s) 2345. vlog - vlog/set and vlog/list - C (vlog.at:332): ok (0m0.095s 0m0.041s) 2346. vlog - vlog/set and vlog/list - Python3 (vlog.at:378): ok (0m0.333s 0m0.058s) 2347. vlog - RFC5424 facility (vlog.at:428): ok (0m0.114s 0m0.029s) 2348. vlog - RFC5424 facility - Python3 (vlog.at:465): ok (0m0.529s 0m0.092s) 2349. add-ps a (vtep-ctl.at:168): ok (0m0.062s 0m0.040s) 2350. add-ps a, add-ps a (vtep-ctl.at:176): ok (0m0.068s 0m0.007s) 2351. add-ps a, add-ps b (vtep-ctl.at:186): ok (0m0.101s 0m0.014s) 2352. add-ps a, add-ps b, del-ps a (vtep-ctl.at:195): ok (0m0.086s 0m0.029s) 2353. add-ps a, del-ps a, add-ps a (vtep-ctl.at:204): ok (0m0.068s 0m0.039s) 2354. add-ps a, add-port a a1, add-port a a2 (vtep-ctl.at:218): ok (0m0.096s 0m0.053s) 2355. add-ps a, add-port a a1, add-port a a1 (vtep-ctl.at:231): ok (0m0.075s 0m0.007s) 2356. add-ps a b, add-port a a1, add-port b b1, del-ps a (vtep-ctl.at:243): ok (0m0.098s 0m0.033s) 2357. add-ps a b, add-port a a1, add-port b b1, del-port a a1 (vtep-ctl.at:264): ok (0m0.173s 0m0.017s) 2358. add-ps a b, add-port a p1, add-port b p1, del-port a p1 (vtep-ctl.at:281): ok (0m0.207s 0m0.072s) 2359. add-ls a (vtep-ctl.at:304): ok (0m0.069s 0m0.032s) 2360. add-ls a, add-ls a (vtep-ctl.at:312): ok (0m0.056s 0m0.018s) 2361. add-ls a, add-ls b (vtep-ctl.at:322): ok (0m0.076s 0m0.040s) 2362. add-ls a, add-ls b, del-ls a (vtep-ctl.at:331): ok (0m0.102s 0m0.013s) 2363. add-ls a, del-ls a, add-ls a (vtep-ctl.at:340): ok (0m0.083s 0m0.023s) 2364. add-ls a, get-replication-mode a (vtep-ctl.at:354): ok (0m0.064s 0m0.009s) 2365. add-ls a, set-replication-mode a source_node (vtep-ctl.at:365): ok (0m0.052s 0m0.028s) 2366. add-ls a, set-replication-mode a service_node (vtep-ctl.at:376): ok (0m0.061s 0m0.019s) 2367. add-lr a (vtep-ctl.at:391): ok (0m0.095s 0m0.034s) 2368. add-lr a, add-lr a (vtep-ctl.at:399): ok (0m0.043s 0m0.010s) 2369. add-lr a, add-lr b (vtep-ctl.at:409): ok (0m0.076s 0m0.025s) 2370. add-lr a, add-lr b, del-lr a (vtep-ctl.at:418): ok (0m0.096s 0m0.020s) 2371. add-lr a, del-lr a, add-lr a (vtep-ctl.at:427): ok (0m0.093s 0m0.020s) 2372. bind-ls ps1 pp1 300 ls1 (vtep-ctl.at:444): ok (0m0.146s 0m0.058s) 2373. bind-ls ps1 pp1 300 ls1, bind-ls ps1 pp1 400 ls2 (vtep-ctl.at:462): ok (0m0.167s 0m0.062s) 2374. bind-ls ps1 pp1 300, bind-ls ps2 pp2 300 ls2 (vtep-ctl.at:484): ok (0m0.202s 0m0.075s) 2375. add-ucast-local ls1 (vtep-ctl.at:515): ok (0m0.073s 0m0.040s) 2376. add-ucast-local ls1, overwrite (vtep-ctl.at:542): ok (0m0.070s 0m0.009s) 2377. add-ucast-local ls1, del-ucast-local ls1 (vtep-ctl.at:562): ok (0m0.092s 0m0.017s) 2378. add-ucast-remote ls1 (vtep-ctl.at:593): ok (0m0.083s 0m0.010s) 2379. add-ucast-remote ls1, overwrite (vtep-ctl.at:620): ok (0m0.086s 0m0.020s) 2380. add-ucast-remote ls1, del-ucast-remote ls1 (vtep-ctl.at:640): ok (0m0.122s 0m0.024s) 2381. add-ucast-local ls1, add-ucast-remote ls1 (vtep-ctl.at:671): ok (0m0.141s 0m0.005s) 2382. add-mcast-local ls1 (vtep-ctl.at:702): ok (0m0.119s 0m0.018s) 2383. add-mcast-local ls1, del-mcast-local ls1 (vtep-ctl.at:731): ok (0m0.115s 0m0.030s) 2384. add-mcast-remote ls1 (vtep-ctl.at:768): ok (0m0.104s 0m0.030s) 2385. add-mcast-remote ls1, del-mcast-remote ls1 (vtep-ctl.at:797): ok (0m0.101s 0m0.044s) 2386. add-mcast-local ls1, add-mcast-remote ls1 (vtep-ctl.at:834): ok (0m0.133s 0m0.021s) 2387. add local and remote macs, clear-local-macs (vtep-ctl.at:869): ok (0m0.128s 0m0.065s) 2388. add local and remote macs, clear-remote-macs (vtep-ctl.at:926): ok (0m0.143s 0m0.053s) 2389. managers (vtep-ctl.at:986): ok (0m0.048s 0m0.013s) 2390. show command (vtep-ctl.at:1013): ok (0m0.081s 0m0.021s) 2391. auto-attach - packets (auto-attach.at:3): ok (0m0.008s 0m0.004s) 2392. mcast - check multicasts to trunk ports are not duplicated (mcast-snooping.at:3): ok (0m0.226s 0m0.053s) 2393. mcast - delete the port mdb when vlan configuration changed (mcast-snooping.at:108): ok (0m0.102s 0m0.049s) 2394. mcast - delete the port mdb when port destroyed (mcast-snooping.at:165): ok (0m0.081s 0m0.027s) 2395. mcast - igmp flood for non-snoop enabled (mcast-snooping.at:221): ok (0m0.151s 0m0.051s) 2396. ptap - legal flow entries in ptap bridge (packet-type-aware.at:3): ok (0m0.386s 0m0.094s) 2397. ptap - triangle bridge setup with L2 and L3 GRE tunnels (packet-type-aware.at:34): ok (0m1.085s 0m0.256s) 2398. ptap - check decap() prerequisits (packet-type-aware.at:515): ok (0m0.161s 0m0.027s) 2399. ptap - check encap/decap VLAN tagged Ethernet frame (packet-type-aware.at:544): ok (0m0.331s 0m0.053s) 2400. ptap - L3 over patch port (packet-type-aware.at:619): ok (0m0.972s 0m0.303s) 2401. ptap - recirculate after packet_type change (packet-type-aware.at:920): ok (0m0.339s 0m0.073s) 2402. nsh - matching (nsh.at:7): ok (0m0.141s 0m0.049s) 2403. nsh - md1 encap over a veth link (nsh.at:53): ok (0m0.318s 0m0.077s) 2404. nsh - md2 encap over a veth link (nsh.at:187): ok (0m0.224s 0m0.041s) 2405. nsh - double encap over veth link using groups (nsh.at:282): ok (0m0.253s 0m0.071s) 2406. nsh - triangle PTAP bridge setup with NSH over vxlan-gpe (nsh.at:462): ok (0m0.817s 0m0.272s) 2407. drop-stats - cli tests (drop-stats.at:3): ok (0m0.202s 0m0.047s) 2408. drop-stats - pipeline and recursion drops (drop-stats.at:43): ok (0m0.228s 0m0.078s) 2409. drop-stats - too many resubmit (drop-stats.at:102): ok (0m0.530s 0m0.198s) 2410. drop-stats - stack too deep (drop-stats.at:129): ok (0m0.191s 0m0.066s) 2411. drop-stats - too many mpls labels (drop-stats.at:155): ok (0m0.137s 0m0.058s) testsuite: ending at: Fri Sep 23 10:39:57 UTC 2022 testsuite: test suite duration: 0h 31m 32s ## ------------- ## ## Test results. ## ## ------------- ## ERROR: 2335 tests were run, 2 failed unexpectedly. 76 tests were skipped. ## ------------------------ ## ## Summary of the failures. ## ## ------------------------ ## Failed tests: openvswitch 2.17.2 test suite test groups: NUM: FILE-NAME:LINE TEST-GROUP-NAME KEYWORDS 1051: ofproto-dpif.at:302 ofproto-dpif - balance-slb bonding 1144: ofproto-dpif.at:5452 ofproto-dpif - multiple VLAN output mirrors with snaplen mirror mirrors mirroring Skipped tests: openvswitch 2.17.2 test suite test groups: NUM: FILE-NAME:LINE TEST-GROUP-NAME KEYWORDS 153: daemon.at:202 daemon --service windows-service 1186: ofproto-dpif.at:7164 ofproto-dpif - sFlow packet sampling - IPv6 collector 1192: ofproto-dpif.at:7538 ofproto-dpif - NetFlow flow expiration - IPv6 collector 1194: ofproto-dpif.at:7622 ofproto-dpif - NetFlow active expiration - IPv6 collector 1227: ofproto-dpif.at:8914 ofproto-dpif megaflow - netflow - IPv6 collector 1833: ovsdb-server.at:1369 insert default row, query table ovsdb server positive ssl6 1860: ovsdb-server.at:1440 insert default row, query table ovsdb server positive tcp6 1994: ovsdb-idl.at:298 simple idl, initially empty, no ops - C - tcp6 ovsdb server idl positive tcp6 socket 1999: ovsdb-idl.at:298 simple idl, initially empty, no ops - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2000: ovsdb-idl.at:298 simple idl, initially empty, no ops - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2004: ovsdb-idl.at:305 simple idl, initially empty, various ops - C - tcp6 ovsdb server idl positive tcp6 socket 2009: ovsdb-idl.at:305 simple idl, initially empty, various ops - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2010: ovsdb-idl.at:305 simple idl, initially empty, various ops - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2014: ovsdb-idl.at:383 simple idl, initially populated - C - tcp6 ovsdb server idl positive tcp6 socket 2019: ovsdb-idl.at:383 simple idl, initially populated - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2020: ovsdb-idl.at:383 simple idl, initially populated - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2024: ovsdb-idl.at:414 simple idl, writing via IDL - C - tcp6 ovsdb server idl positive tcp6 socket 2029: ovsdb-idl.at:414 simple idl, writing via IDL - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2030: ovsdb-idl.at:414 simple idl, writing via IDL - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2034: ovsdb-idl.at:445 simple idl, writing via IDL with unicode - C - tcp6 ovsdb server idl positive tcp6 socket 2039: ovsdb-idl.at:445 simple idl, writing via IDL with unicode - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2040: ovsdb-idl.at:445 simple idl, writing via IDL with unicode - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2045: ovsdb-idl.at:484 simple idl, handling verification failure - C - tcp6 ovsdb server idl positive tcp6 socket 2050: ovsdb-idl.at:484 simple idl, handling verification failure - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2051: ovsdb-idl.at:484 simple idl, handling verification failure - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2055: ovsdb-idl.at:515 simple idl, increment operation - C - tcp6 ovsdb server idl positive tcp6 socket 2060: ovsdb-idl.at:515 simple idl, increment operation - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2061: ovsdb-idl.at:515 simple idl, increment operation - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2065: ovsdb-idl.at:527 simple idl, aborting - C - tcp6 ovsdb server idl positive tcp6 socket 2070: ovsdb-idl.at:527 simple idl, aborting - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2071: ovsdb-idl.at:527 simple idl, aborting - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2075: ovsdb-idl.at:541 simple idl, destroy without commit or abort - C - tcp6 ovsdb server idl positive tcp6 socket 2080: ovsdb-idl.at:541 simple idl, destroy without commit or abort - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2081: ovsdb-idl.at:541 simple idl, destroy without commit or abort - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2085: ovsdb-idl.at:555 simple idl, conditional, false condition - C - tcp6 ovsdb server idl positive tcp6 socket 2090: ovsdb-idl.at:555 simple idl, conditional, false condition - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2091: ovsdb-idl.at:555 simple idl, conditional, false condition - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2095: ovsdb-idl.at:571 simple idl, conditional, true condition - C - tcp6 ovsdb server idl positive tcp6 socket 2100: ovsdb-idl.at:571 simple idl, conditional, true condition - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2101: ovsdb-idl.at:571 simple idl, conditional, true condition - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2105: ovsdb-idl.at:587 simple idl, conditional, multiple clauses in condition - C - tcp6 ovsdb server idl positive tcp6 socket 2110: ovsdb-idl.at:587 simple idl, conditional, multiple clauses in condition - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2111: ovsdb-idl.at:587 simple idl, conditional, multiple clauses in condition - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2115: ovsdb-idl.at:609 simple idl, conditional, modify as insert due to condition - C - tcp6 ovsdb server idl positive tcp6 socket 2120: ovsdb-idl.at:609 simple idl, conditional, modify as insert due to condition - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2121: ovsdb-idl.at:609 simple idl, conditional, modify as insert due to condition - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2125: ovsdb-idl.at:625 simple idl, conditional, modify as delete due to condition - C - tcp6 ovsdb server idl positive tcp6 socket 2130: ovsdb-idl.at:625 simple idl, conditional, modify as delete due to condition - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2131: ovsdb-idl.at:625 simple idl, conditional, modify as delete due to condition - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2135: ovsdb-idl.at:652 simple idl, conditional, multiple tables - C - tcp6 ovsdb server idl positive tcp6 socket 2140: ovsdb-idl.at:652 simple idl, conditional, multiple tables - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2141: ovsdb-idl.at:652 simple idl, conditional, multiple tables - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2145: ovsdb-idl.at:691 self-linking idl, consistent ops - C - tcp6 ovsdb server idl positive tcp6 socket 2150: ovsdb-idl.at:691 self-linking idl, consistent ops - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2151: ovsdb-idl.at:691 self-linking idl, consistent ops - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2155: ovsdb-idl.at:735 self-linking idl, inconsistent ops - C - tcp6 ovsdb server idl positive tcp6 socket 2160: ovsdb-idl.at:735 self-linking idl, inconsistent ops - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2161: ovsdb-idl.at:735 self-linking idl, inconsistent ops - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2165: ovsdb-idl.at:783 self-linking idl, sets - C - tcp6 ovsdb server idl positive tcp6 socket 2170: ovsdb-idl.at:783 self-linking idl, sets - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2171: ovsdb-idl.at:783 self-linking idl, sets - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2175: ovsdb-idl.at:833 external-linking idl, consistent ops - C - tcp6 ovsdb server idl positive tcp6 socket 2180: ovsdb-idl.at:833 external-linking idl, consistent ops - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2181: ovsdb-idl.at:833 external-linking idl, consistent ops - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2185: ovsdb-idl.at:851 singleton idl, constraints - C - tcp6 ovsdb server idl positive tcp6 socket 2190: ovsdb-idl.at:851 singleton idl, constraints - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2191: ovsdb-idl.at:851 singleton idl, constraints - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2195: ovsdb-idl.at:880 simple idl, references, multiple deletes - C - tcp6 ovsdb server idl positive tcp6 socket 2200: ovsdb-idl.at:880 simple idl, references, multiple deletes - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2201: ovsdb-idl.at:880 simple idl, references, multiple deletes - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2219: ovsdb-idl.at:1514 simple idl, initially populated, strong references, conditional - C - tcp6 ovsdb server idl positive tcp6 socket 2224: ovsdb-idl.at:1514 simple idl, initially populated, strong references, conditional - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2225: ovsdb-idl.at:1514 simple idl, initially populated, strong references, conditional - Python3 - tcp6 ovsdb server idl positive python with tcp6 socket 2242: ovsdb-idl.at:2227 Check stream open block - C - tcp6 ovsdb server stream open_block tcp6 2244: ovsdb-idl.at:2230 Check stream open block - Python3 - tcp6 ovsdb server stream open_block tcp6 2304: ovs-vsctl.at:1648 TLS server name indication (SNI) ovsdb server positive ssl tls sni ## ---------------------- ## ## Detailed failed tests. ## ## ---------------------- ## # -*- compilation -*- 1051. ofproto-dpif.at:302: testing ofproto-dpif - balance-slb bonding ... ./ofproto-dpif.at:307: ovsdb-tool create conf.db $abs_top_srcdir/vswitchd/vswitch.ovsschema ./ofproto-dpif.at:307: ovsdb-server --detach --no-chdir --pidfile --log-file --remote=punix:$OVS_RUNDIR/db.sock stderr: 2022-09-23T10:23:26Z|00001|vlog|INFO|opened log file /var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests/testsuite.dir/1051/ovsdb-server.log ./ofproto-dpif.at:307: sed < stderr ' /vlog|INFO|opened log file/d /ovsdb_server|INFO|ovsdb-server (Open vSwitch)/d' ./ofproto-dpif.at:307: ovs-vsctl --no-wait init ./ofproto-dpif.at:307: ovs-vswitchd --enable-dummy --disable-system --disable-system-route --detach --no-chdir --pidfile --log-file -vvconn -vofproto_dpif -vunixctl stderr: 2022-09-23T10:23:26Z|00001|vlog|INFO|opened log file /var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests/testsuite.dir/1051/ovs-vswitchd.log 2022-09-23T10:23:26Z|00002|ovs_numa|INFO|Discovered 24 CPU cores on NUMA node 0 2022-09-23T10:23:26Z|00003|ovs_numa|INFO|Discovered 24 CPU cores on NUMA node 1 2022-09-23T10:23:26Z|00004|ovs_numa|INFO|Discovered 2 NUMA nodes and 48 CPU cores 2022-09-23T10:23:26Z|00005|reconnect|INFO|unix:/var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests/testsuite.dir/1051/db.sock: connecting... 2022-09-23T10:23:26Z|00006|netlink_socket|INFO|netlink: could not enable listening to all nsid (Operation not permitted) 2022-09-23T10:23:26Z|00007|reconnect|INFO|unix:/var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests/testsuite.dir/1051/db.sock: connected ./ofproto-dpif.at:307: sed < stderr ' /ovs_numa|INFO|Discovered /d /vlog|INFO|opened log file/d /vswitchd|INFO|ovs-vswitchd (Open vSwitch)/d /reconnect|INFO|/d /dpif_netlink|INFO|Generic Netlink family .ovs_datapath. does not exist/d /ofproto|INFO|using datapath ID/d /netdev_linux|INFO|.*device has unknown hardware address family/d /ofproto|INFO|datapath ID changed to fedcba9876543210/d /dpdk|INFO|DPDK Disabled - Use other_config:dpdk-init to enable/d /netlink_socket|INFO|netlink: could not enable listening to all nsid/d /probe tc:/d /setting extended ack support failed/d /tc: Using policy/d' ./ofproto-dpif.at:307: add_of_br 0 add-bond br0 bond0 p1 p2 p3 bond_mode=balance-slb --\ set interface p1 type=dummy options:pstream=punix:$OVS_RUNDIR/p1.sock ofport_request=1 -- \ set interface p2 type=dummy options:pstream=punix:$OVS_RUNDIR/p2.sock ofport_request=2 -- \ set interface p3 type=dummy options:pstream=punix:$OVS_RUNDIR/p3.sock ofport_request=3 -- \ add-port br0 p7 -- set interface p7 ofport_request=7 type=dummy -- \ add-br br1 -- \ set bridge br1 other-config:hwaddr=aa:66:aa:66:00:00 -- \ set bridge br1 datapath-type=dummy other-config:datapath-id=1234 \ fail-mode=secure -- \ add-port br1 p4 -- set interface p4 type=dummy options:stream=unix:$OVS_RUNDIR/p1.sock ofport_request=4 -- \ add-port br1 p5 -- set interface p5 type=dummy options:stream=unix:$OVS_RUNDIR/p2.sock ofport_request=5 -- \ add-port br1 p6 -- set interface p6 type=dummy options:stream=unix:$OVS_RUNDIR/p3.sock ofport_request=6 -- \ add-port br1 p8 -- set interface p8 ofport_request=8 type=dummy -- ofproto-dpif.at:321: waiting while ovs-appctl netdev-dummy/conn-state p4 \ | grep 'unknown\|disconnected'... ofproto-dpif.at:321: wait succeeded immediately ofproto-dpif.at:321: waiting while ovs-appctl netdev-dummy/conn-state p5 \ | grep 'unknown\|disconnected'... ofproto-dpif.at:321: wait succeeded immediately ofproto-dpif.at:321: waiting while ovs-appctl netdev-dummy/conn-state p6 \ | grep 'unknown\|disconnected'... ofproto-dpif.at:321: wait succeeded immediately ./ofproto-dpif.at:322: ovs-ofctl add-flow br0 action=normal ./ofproto-dpif.at:323: ovs-ofctl add-flow br1 action=normal ./ofproto-dpif.at:324: ovs-appctl netdev-dummy/set-admin-state up warped ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt ./ofproto-dpif.at:332: ovs-appctl netdev-dummy/receive p7 $pkt warped ./ofproto-dpif.at:336: ovs-appctl dpif/dump-flows br1 > br1_flows.txt ./ofproto-dpif.at:339: test `egrep 'in_port\(4\)' br1_flows.txt |wc -l` -gt 3 --- /dev/null 2022-08-27 17:08:22.181452537 +0000 +++ /var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests/testsuite.dir/at-groups/1051/stderr 2022-09-23 10:23:28.009023981 +0000 @@ -0,0 +1 @@ +egrep: warning: egrep is obsolescent; using /bin/grep -E ovsdb-server.log: > 2022-09-23T10:23:26.380Z|00001|vlog|INFO|opened log file /var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests/testsuite.dir/1051/ovsdb-server.log > 2022-09-23T10:23:26.392Z|00002|ovsdb_server|INFO|ovsdb-server (Open vSwitch) 2.17.2 ovs-vswitchd.log: > 2022-09-23T10:23:26.435Z|00001|vlog|INFO|opened log file /var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests/testsuite.dir/1051/ovs-vswitchd.log > 2022-09-23T10:23:26.450Z|00002|ovs_numa|INFO|Discovered 24 CPU cores on NUMA node 0 > 2022-09-23T10:23:26.451Z|00003|ovs_numa|INFO|Discovered 24 CPU cores on NUMA node 1 > 2022-09-23T10:23:26.451Z|00004|ovs_numa|INFO|Discovered 2 NUMA nodes and 48 CPU cores > 2022-09-23T10:23:26.451Z|00005|reconnect|INFO|unix:/var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests/testsuite.dir/1051/db.sock: connecting... > 2022-09-23T10:23:26.451Z|00006|netlink_socket|INFO|netlink: could not enable listening to all nsid (Operation not permitted) > 2022-09-23T10:23:26.451Z|00007|reconnect|INFO|unix:/var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests/testsuite.dir/1051/db.sock: connected > 2022-09-23T10:23:26.456Z|00008|bridge|INFO|ovs-vswitchd (Open vSwitch) 2.17.2 > 2022-09-23T10:23:26.502Z|00009|dpif_netdev_extract|INFO|Default MFEX Extract implementation is scalar. > 2022-09-23T10:23:26.502Z|00010|dpif_netdev_impl|INFO|Default DPIF implementation is dpif_scalar. > 2022-09-23T10:23:26.509Z|00011|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports recirculation > 2022-09-23T10:23:26.509Z|00012|ofproto_dpif|INFO|dummy@ovs-dummy: VLAN header stack length probed as 1 > 2022-09-23T10:23:26.510Z|00013|ofproto_dpif|INFO|dummy@ovs-dummy: MPLS label stack length probed as 3 > 2022-09-23T10:23:26.510Z|00014|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports truncate action > 2022-09-23T10:23:26.510Z|00015|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports unique flow ids > 2022-09-23T10:23:26.510Z|00016|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports clone action > 2022-09-23T10:23:26.510Z|00017|ofproto_dpif|INFO|dummy@ovs-dummy: Max sample nesting level probed as 10 > 2022-09-23T10:23:26.510Z|00018|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports eventmask in conntrack action > 2022-09-23T10:23:26.510Z|00019|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports ct_clear action > 2022-09-23T10:23:26.510Z|00020|ofproto_dpif|INFO|dummy@ovs-dummy: Max dp_hash algorithm probed to be 1 > 2022-09-23T10:23:26.510Z|00021|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports check_pkt_len action > 2022-09-23T10:23:26.510Z|00022|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports timeout policy in conntrack action > 2022-09-23T10:23:26.510Z|00023|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports ct_zero_snat > 2022-09-23T10:23:26.511Z|00024|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports add_mpls action > 2022-09-23T10:23:26.511Z|00025|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports ct_state > 2022-09-23T10:23:26.511Z|00026|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports ct_zone > 2022-09-23T10:23:26.511Z|00027|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports ct_mark > 2022-09-23T10:23:26.511Z|00028|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports ct_label > 2022-09-23T10:23:26.511Z|00029|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports ct_state_nat > 2022-09-23T10:23:26.511Z|00030|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports ct_orig_tuple > 2022-09-23T10:23:26.511Z|00031|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports ct_orig_tuple6 > 2022-09-23T10:23:26.511Z|00032|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports IPv6 ND Extensions > 2022-09-23T10:23:26.511Z|00033|ofproto_dpif_upcall|INFO|Setting n-handler-threads to 35, setting n-revalidator-threads to 13 > 2022-09-23T10:23:26.511Z|00034|ofproto_dpif_upcall|INFO|Starting 48 threads > 2022-09-23T10:23:26.687Z|00035|dpif_netdev|INFO|pmd-rxq-affinity isolates PMD core > 2022-09-23T10:23:26.688Z|00036|dpif_netdev|INFO|PMD auto load balance interval set to 1 mins > 2022-09-23T10:23:26.688Z|00037|dpif_netdev|INFO|PMD auto load balance improvement threshold set to 25% > 2022-09-23T10:23:26.688Z|00038|dpif_netdev|INFO|PMD auto load balance load threshold set to 95% > 2022-09-23T10:23:26.688Z|00039|dpif_netdev|INFO|PMD auto load balance is disabled. > 2022-09-23T10:23:26.688Z|00040|bridge|INFO|bridge br0: added interface p2 on port 2 > 2022-09-23T10:23:26.689Z|00041|bridge|INFO|bridge br0: added interface p1 on port 1 > 2022-09-23T10:23:26.689Z|00042|bridge|INFO|bridge br0: added interface p3 on port 3 > 2022-09-23T10:23:26.689Z|00043|bridge|INFO|bridge br0: added interface p7 on port 7 > 2022-09-23T10:23:26.689Z|00044|bridge|INFO|bridge br0: added interface br0 on port 65534 > 2022-09-23T10:23:26.689Z|00045|bridge|INFO|bridge br1: added interface p8 on port 8 > 2022-09-23T10:23:26.689Z|00046|reconnect|INFO|unix:/var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests/testsuite.dir/1051/p3.sock: connecting... > 2022-09-23T10:23:26.690Z|00047|reconnect|INFO|unix:/var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests/testsuite.dir/1051/p3.sock: connected > 2022-09-23T10:23:26.690Z|00048|bridge|INFO|bridge br1: added interface p6 on port 6 > 2022-09-23T10:23:26.690Z|00049|reconnect|INFO|unix:/var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests/testsuite.dir/1051/p2.sock: connecting... > 2022-09-23T10:23:26.690Z|00050|reconnect|INFO|unix:/var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests/testsuite.dir/1051/p2.sock: connected > 2022-09-23T10:23:26.690Z|00051|bridge|INFO|bridge br1: added interface p5 on port 5 > 2022-09-23T10:23:26.690Z|00052|reconnect|INFO|unix:/var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests/testsuite.dir/1051/p1.sock: connecting... > 2022-09-23T10:23:26.690Z|00053|reconnect|INFO|unix:/var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests/testsuite.dir/1051/p1.sock: connected > 2022-09-23T10:23:26.690Z|00054|bridge|INFO|bridge br1: added interface p4 on port 4 > 2022-09-23T10:23:26.690Z|00055|bridge|INFO|bridge br1: added interface br1 on port 65534 > 2022-09-23T10:23:26.690Z|00056|bridge|INFO|bridge br0: using datapath ID fedcba9876543210 > 2022-09-23T10:23:26.691Z|00057|bond|INFO|member p2: enabled > 2022-09-23T10:23:26.691Z|00058|bond|INFO|member p1: enabled > 2022-09-23T10:23:26.691Z|00059|bond|INFO|member p3: enabled > 2022-09-23T10:23:26.691Z|00060|connmgr|INFO|br0: added service controller "punix:/var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests/testsuite.dir/1051/br0.mgmt" > 2022-09-23T10:23:26.691Z|00061|bridge|INFO|bridge br1: using datapath ID 0000aa66aa660000 > 2022-09-23T10:23:26.691Z|00062|connmgr|INFO|br1: added service controller "punix:/var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests/testsuite.dir/1051/br1.mgmt" > 2022-09-23T10:23:26.692Z|00063|bond|INFO|bond bond0: active member is now p1 > 2022-09-23T10:23:26.693Z|00064|ofproto_dpif|DBG|bond bond0: sent 0 gratuitous learning packets > 2022-09-23T10:23:26.708Z|00065|unixctl|DBG|received request netdev-dummy/conn-state["p4"], id=0 > 2022-09-23T10:23:26.708Z|00066|unixctl|DBG|replying with success, id=0: "p4: connected > " > 2022-09-23T10:23:26.718Z|00067|unixctl|DBG|received request netdev-dummy/conn-state["p5"], id=0 > 2022-09-23T10:23:26.718Z|00068|unixctl|DBG|replying with success, id=0: "p5: connected > " > 2022-09-23T10:23:26.728Z|00069|unixctl|DBG|received request netdev-dummy/conn-state["p6"], id=0 > 2022-09-23T10:23:26.728Z|00070|unixctl|DBG|replying with success, id=0: "p6: connected > " > 2022-09-23T10:23:26.735Z|00071|vconn|DBG|unix#6: sent (Success): OFPT_HELLO (OF1.5) (xid=0x1): > version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06 > 2022-09-23T10:23:26.736Z|00072|vconn|DBG|unix#6: received: OFPT_HELLO (xid=0x1): > version bitmap: 0x01 > 2022-09-23T10:23:26.736Z|00073|vconn|DBG|unix#6: negotiated OpenFlow version 0x01 (we support version 0x06 and earlier, peer supports version 0x01) > 2022-09-23T10:23:26.736Z|00074|vconn|DBG|unix#6: received: OFPST_TABLE request (xid=0x2): > 2022-09-23T10:23:26.737Z|00075|vconn|DBG|unix#6: sent (Success): OFPST_TABLE reply (xid=0x2): > table 0: > active=0, lookup=0, matched=0 > max_entries=1000000 > matching: > exact match or wildcard: in_port eth_{src,dst,type} vlan_{vid,pcp} ip_{src,dst} nw_{proto,tos} tcp_{src,dst} > > tables 1...253: ditto > 2022-09-23T10:23:26.737Z|00076|vconn|DBG|unix#7: sent (Success): OFPT_HELLO (OF1.5) (xid=0x2): > version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06 > 2022-09-23T10:23:26.738Z|00077|vconn|DBG|unix#7: received: OFPT_HELLO (xid=0x3): > version bitmap: 0x01 > 2022-09-23T10:23:26.738Z|00078|vconn|DBG|unix#7: negotiated OpenFlow version 0x01 (we support version 0x06 and earlier, peer supports version 0x01) > 2022-09-23T10:23:26.738Z|00079|vconn|DBG|unix#7: received: OFPT_FEATURES_REQUEST (xid=0x4): > 2022-09-23T10:23:26.738Z|00080|vconn|DBG|unix#7: sent (Success): OFPT_FEATURES_REPLY (xid=0x4): dpid:fedcba9876543210 > n_tables:254, n_buffers:0 > capabilities: FLOW_STATS TABLE_STATS PORT_STATS QUEUE_STATS ARP_MATCH_IP > actions: output enqueue set_vlan_vid set_vlan_pcp strip_vlan mod_dl_src mod_dl_dst mod_nw_src mod_nw_dst mod_nw_tos mod_tp_src mod_tp_dst > 1(p1): addr:aa:55:aa:55:00:02 > config: 0 > state: 0 > speed: 0 Mbps now, 0 Mbps max > 2(p2): addr:aa:55:aa:55:00:01 > config: 0 > state: 0 > speed: 0 Mbps now, 0 Mbps max > 3(p3): addr:aa:55:aa:55:00:03 > config: 0 > state: 0 > speed: 0 Mbps now, 0 Mbps max > 7(p7): addr:aa:55:aa:55:00:04 > config: 0 > state: 0 > speed: 0 Mbps now, 0 Mbps max > LOCAL(br0): addr:aa:55:aa:55:00:00 > config: 0 > state: 0 > speed: 0 Mbps now, 0 Mbps max > 2022-09-23T10:23:26.739Z|00081|vconn|DBG|unix#8: sent (Success): OFPT_HELLO (OF1.5) (xid=0x3): > version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06 > 2022-09-23T10:23:26.739Z|00082|vconn|DBG|unix#8: received: OFPT_HELLO (xid=0x5): > version bitmap: 0x01 > 2022-09-23T10:23:26.739Z|00083|vconn|DBG|unix#8: negotiated OpenFlow version 0x01 (we support version 0x06 and earlier, peer supports version 0x01) > 2022-09-23T10:23:26.739Z|00084|vconn|DBG|unix#8: received: OFPT_FLOW_MOD (xid=0x6): ADD actions=NORMAL > 2022-09-23T10:23:26.739Z|00085|vconn|DBG|unix#8: received: OFPT_BARRIER_REQUEST (xid=0x7): > 2022-09-23T10:23:26.740Z|00086|vconn|DBG|unix#8: sent (Success): OFPT_BARRIER_REPLY (xid=0x7): > 2022-09-23T10:23:26.740Z|00087|connmgr|INFO|br0<->unix#8: 1 flow_mods in the last 0 s (1 adds) > 2022-09-23T10:23:26.748Z|00088|vconn|DBG|unix#9: sent (Success): OFPT_HELLO (OF1.5) (xid=0x4): > version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06 > 2022-09-23T10:23:26.748Z|00089|vconn|DBG|unix#9: received: OFPT_HELLO (xid=0x1): > version bitmap: 0x01 > 2022-09-23T10:23:26.749Z|00090|vconn|DBG|unix#9: negotiated OpenFlow version 0x01 (we support version 0x06 and earlier, peer supports version 0x01) > 2022-09-23T10:23:26.749Z|00091|vconn|DBG|unix#9: received: OFPST_TABLE request (xid=0x2): > 2022-09-23T10:23:26.750Z|00092|vconn|DBG|unix#9: sent (Success): OFPST_TABLE reply (xid=0x2): > table 0: > active=0, lookup=0, matched=0 > max_entries=1000000 > matching: > exact match or wildcard: in_port eth_{src,dst,type} vlan_{vid,pcp} ip_{src,dst} nw_{proto,tos} tcp_{src,dst} > > tables 1...253: ditto > 2022-09-23T10:23:26.750Z|00093|vconn|DBG|unix#10: sent (Success): OFPT_HELLO (OF1.5) (xid=0x5): > version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06 > 2022-09-23T10:23:26.750Z|00094|vconn|DBG|unix#10: received: OFPT_HELLO (xid=0x3): > version bitmap: 0x01 > 2022-09-23T10:23:26.750Z|00095|vconn|DBG|unix#10: negotiated OpenFlow version 0x01 (we support version 0x06 and earlier, peer supports version 0x01) > 2022-09-23T10:23:26.750Z|00096|vconn|DBG|unix#10: received: OFPT_FEATURES_REQUEST (xid=0x4): > 2022-09-23T10:23:26.751Z|00097|vconn|DBG|unix#10: sent (Success): OFPT_FEATURES_REPLY (xid=0x4): dpid:0000aa66aa660000 > n_tables:254, n_buffers:0 > capabilities: FLOW_STATS TABLE_STATS PORT_STATS QUEUE_STATS ARP_MATCH_IP > actions: output enqueue set_vlan_vid set_vlan_pcp strip_vlan mod_dl_src mod_dl_dst mod_nw_src mod_nw_dst mod_nw_tos mod_tp_src mod_tp_dst > 4(p4): addr:aa:55:aa:55:00:09 > config: 0 > state: 0 > speed: 0 Mbps now, 0 Mbps max > 5(p5): addr:aa:55:aa:55:00:08 > config: 0 > state: 0 > speed: 0 Mbps now, 0 Mbps max > 6(p6): addr:aa:55:aa:55:00:07 > config: 0 > state: 0 > speed: 0 Mbps now, 0 Mbps max > 8(p8): addr:aa:55:aa:55:00:06 > config: 0 > state: 0 > speed: 0 Mbps now, 0 Mbps max > LOCAL(br1): addr:aa:66:aa:66:00:00 > config: 0 > state: 0 > speed: 0 Mbps now, 0 Mbps max > 2022-09-23T10:23:26.751Z|00098|vconn|DBG|unix#11: sent (Success): OFPT_HELLO (OF1.5) (xid=0x6): > version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06 > 2022-09-23T10:23:26.751Z|00099|vconn|DBG|unix#11: received: OFPT_HELLO (xid=0x5): > version bitmap: 0x01 > 2022-09-23T10:23:26.751Z|00100|vconn|DBG|unix#11: negotiated OpenFlow version 0x01 (we support version 0x06 and earlier, peer supports version 0x01) > 2022-09-23T10:23:26.752Z|00101|vconn|DBG|unix#11: received: OFPT_FLOW_MOD (xid=0x6): ADD actions=NORMAL > 2022-09-23T10:23:26.752Z|00102|vconn|DBG|unix#11: received: OFPT_BARRIER_REQUEST (xid=0x7): > 2022-09-23T10:23:26.752Z|00103|vconn|DBG|unix#11: sent (Success): OFPT_BARRIER_REPLY (xid=0x7): > 2022-09-23T10:23:26.752Z|00104|connmgr|INFO|br1<->unix#11: 1 flow_mods in the last 0 s (1 adds) > 2022-09-23T10:23:26.759Z|00105|unixctl|DBG|received request netdev-dummy/set-admin-state["up"], id=0 > 2022-09-23T10:23:26.760Z|00106|unixctl|DBG|replying with success, id=0: "OK" > 2022-09-23T10:23:26.771Z|00107|unixctl|DBG|received request time/stop[], id=0 > 2022-09-23T10:23:26.771Z|00108|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:26.776Z|00109|unixctl|DBG|received request time/warp["100"], id=0 > 2022-09-23T10:23:26.776Z|00110|unixctl|DBG|replying with success, id=0: "warped" > 2022-09-23T10:23:27.233Z|00111|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:00,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.233Z|00112|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.241Z|00113|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:01,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.241Z|00114|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.248Z|00115|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:02,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.248Z|00116|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.256Z|00117|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:03,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.256Z|00118|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.263Z|00119|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:04,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.263Z|00120|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.271Z|00121|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:05,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.271Z|00122|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.278Z|00123|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:06,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.278Z|00124|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.285Z|00125|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:07,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.286Z|00126|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.293Z|00127|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:08,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.293Z|00128|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.300Z|00129|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:09,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.300Z|00130|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.307Z|00131|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:0a,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.307Z|00132|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.314Z|00133|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:0b,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.315Z|00134|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.322Z|00135|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:0c,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.322Z|00136|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.329Z|00137|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:0d,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.329Z|00138|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.337Z|00139|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:0e,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.337Z|00140|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.344Z|00141|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:0f,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.345Z|00142|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.352Z|00143|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:10,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.352Z|00144|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.359Z|00145|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:11,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.359Z|00146|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.367Z|00147|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:12,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.367Z|00148|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.374Z|00149|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:13,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.374Z|00150|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.381Z|00151|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:14,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.382Z|00152|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.389Z|00153|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:15,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.389Z|00154|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.396Z|00155|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:16,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.396Z|00156|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.403Z|00157|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:17,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.403Z|00158|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.410Z|00159|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:18,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.411Z|00160|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.418Z|00161|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:19,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.418Z|00162|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.425Z|00163|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:1a,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.425Z|00164|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.432Z|00165|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:1b,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.432Z|00166|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.440Z|00167|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:1c,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.440Z|00168|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.447Z|00169|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:1d,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.447Z|00170|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.454Z|00171|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:1e,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.455Z|00172|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.462Z|00173|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:1f,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.462Z|00174|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.469Z|00175|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:20,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.470Z|00176|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.477Z|00177|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:21,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.477Z|00178|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.484Z|00179|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:22,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.484Z|00180|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.491Z|00181|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:23,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.492Z|00182|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.499Z|00183|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:24,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.499Z|00184|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.506Z|00185|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:25,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.506Z|00186|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.514Z|00187|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:26,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.514Z|00188|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.522Z|00189|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:27,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.522Z|00190|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.529Z|00191|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:28,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.529Z|00192|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.537Z|00193|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:29,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.537Z|00194|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.544Z|00195|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:2a,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.544Z|00196|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.552Z|00197|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:2b,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.552Z|00198|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.559Z|00199|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:2c,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.559Z|00200|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.567Z|00201|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:2d,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.567Z|00202|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.574Z|00203|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:2e,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.574Z|00204|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.581Z|00205|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:2f,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.581Z|00206|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.588Z|00207|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:30,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.589Z|00208|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.595Z|00209|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:31,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.595Z|00210|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.602Z|00211|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:32,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.602Z|00212|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.609Z|00213|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:33,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.609Z|00214|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.616Z|00215|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:34,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.616Z|00216|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.623Z|00217|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:35,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.623Z|00218|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.631Z|00219|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:36,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.631Z|00220|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.639Z|00221|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:37,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.639Z|00222|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.647Z|00223|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:38,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.647Z|00224|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.655Z|00225|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:39,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.655Z|00226|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.663Z|00227|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:3a,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.664Z|00228|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.671Z|00229|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:3b,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.672Z|00230|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.679Z|00231|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:3c,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.679Z|00232|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.687Z|00233|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:3d,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.687Z|00234|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.695Z|00235|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:3e,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.695Z|00236|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.703Z|00237|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:3f,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.703Z|00238|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.710Z|00239|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:40,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.711Z|00240|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.718Z|00241|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:41,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.719Z|00242|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.726Z|00243|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:42,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.726Z|00244|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.734Z|00245|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:43,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.734Z|00246|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.742Z|00247|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:44,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.742Z|00248|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.749Z|00249|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:45,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.750Z|00250|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.757Z|00251|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:46,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.757Z|00252|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.765Z|00253|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:47,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.765Z|00254|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.773Z|00255|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:48,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.773Z|00256|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.781Z|00257|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:49,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.781Z|00258|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.789Z|00259|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:4a,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.789Z|00260|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.796Z|00261|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:4b,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.797Z|00262|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.804Z|00263|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:4c,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.804Z|00264|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.812Z|00265|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:4d,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.812Z|00266|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.820Z|00267|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:4e,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.820Z|00268|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.827Z|00269|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:4f,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.828Z|00270|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.836Z|00271|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:50,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.836Z|00272|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.844Z|00273|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:51,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.844Z|00274|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.852Z|00275|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:52,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.852Z|00276|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.860Z|00277|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:53,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.860Z|00278|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.867Z|00279|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:54,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.868Z|00280|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.875Z|00281|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:55,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.875Z|00282|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.883Z|00283|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:56,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.883Z|00284|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.891Z|00285|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:57,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.891Z|00286|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.899Z|00287|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:58,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.899Z|00288|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.906Z|00289|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:59,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.907Z|00290|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.914Z|00291|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:5a,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.914Z|00292|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.922Z|00293|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:5b,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.922Z|00294|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.930Z|00295|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:5c,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.930Z|00296|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.937Z|00297|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:5d,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.938Z|00298|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.945Z|00299|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:5e,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.945Z|00300|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.953Z|00301|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:5f,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.953Z|00302|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.961Z|00303|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:60,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.961Z|00304|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.969Z|00305|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:61,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.969Z|00306|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.976Z|00307|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:62,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.977Z|00308|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.984Z|00309|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:63,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.985Z|00310|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.992Z|00311|unixctl|DBG|received request netdev-dummy/receive["p7","in_port(7),eth(src=50:54:00:00:00:64,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)"], id=0 > 2022-09-23T10:23:27.992Z|00312|unixctl|DBG|replying with success, id=0: "" > 2022-09-23T10:23:27.999Z|00313|unixctl|DBG|received request time/warp["100"], id=0 > 2022-09-23T10:23:27.999Z|00314|unixctl|DBG|replying with success, id=0: "warped" > 2022-09-23T10:23:28.010Z|00315|unixctl|DBG|received request dpif/dump-flows["br1"], id=0 > 2022-09-23T10:23:28.013Z|00316|unixctl|DBG|replying with success, id=0: "recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:06,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:58,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:4b,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:3d,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:0b,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:46,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:54,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:09,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:22,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:2b,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:55,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:0f,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:45,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:15,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:50,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:5c,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:00,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:3b,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:4d,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:34,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:1f,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:47,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:39,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:10,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:59,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:1b,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:5f,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:56,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:11,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:1d,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:03,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:05,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:4f,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:2f,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:12,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:41,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:3c,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:30,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:35,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:48,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:37,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:16,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:49,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:4c,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:14,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:1e,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:40,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:25,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:53,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:2a,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:36,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:26,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:18,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:1c,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:5d,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:43,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:29,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:33,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:3a,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:13,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:0d,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:08,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:64,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:2c,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:07,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:62,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:63,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:42,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:4a,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:32,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:1a,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:61,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:3e,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:24,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:17,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:02,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:31,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:27,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:04,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:0e,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:0a,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:5e,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:0c,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:28,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:23,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:44,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:60,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:57,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:20,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:21,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:01,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:5a,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:51,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:4e,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:52,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(6),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:5b,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,5 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:2d,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:3f,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:38,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(5),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:19,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,4,101,6 > recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth(src=50:54:00:00:00:2e,dst=50:54:00:00:01:00),eth_type(0x0800),ipv4(frag=no), packets:0, bytes:0, used:never, actions:8,101,5,6 > " 1051. ofproto-dpif.at:302: 1051. ofproto-dpif - balance-slb bonding (ofproto-dpif.at:302): FAILED (ofproto-dpif.at:339) # -*- compilation -*- 1144. ofproto-dpif.at:5452: testing ofproto-dpif - multiple VLAN output mirrors with snaplen ... ./ofproto-dpif.at:5454: ovsdb-tool create conf.db $abs_top_srcdir/vswitchd/vswitch.ovsschema ./ofproto-dpif.at:5454: ovsdb-server --detach --no-chdir --pidfile --log-file --remote=punix:$OVS_RUNDIR/db.sock stderr: 2022-09-23T10:25:15Z|00001|vlog|INFO|opened log file /var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests/testsuite.dir/1144/ovsdb-server.log ./ofproto-dpif.at:5454: sed < stderr ' /vlog|INFO|opened log file/d /ovsdb_server|INFO|ovsdb-server (Open vSwitch)/d' ./ofproto-dpif.at:5454: ovs-vsctl --no-wait init ./ofproto-dpif.at:5454: ovs-vswitchd --enable-dummy --disable-system --disable-system-route --detach --no-chdir --pidfile --log-file -vvconn -vofproto_dpif -vunixctl stderr: 2022-09-23T10:25:15Z|00001|vlog|INFO|opened log file /var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests/testsuite.dir/1144/ovs-vswitchd.log 2022-09-23T10:25:15Z|00002|ovs_numa|INFO|Discovered 24 CPU cores on NUMA node 0 2022-09-23T10:25:15Z|00003|ovs_numa|INFO|Discovered 24 CPU cores on NUMA node 1 2022-09-23T10:25:15Z|00004|ovs_numa|INFO|Discovered 2 NUMA nodes and 48 CPU cores 2022-09-23T10:25:15Z|00005|reconnect|INFO|unix:/var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests/testsuite.dir/1144/db.sock: connecting... 2022-09-23T10:25:15Z|00006|netlink_socket|INFO|netlink: could not enable listening to all nsid (Operation not permitted) 2022-09-23T10:25:15Z|00007|reconnect|INFO|unix:/var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests/testsuite.dir/1144/db.sock: connected ./ofproto-dpif.at:5454: sed < stderr ' /ovs_numa|INFO|Discovered /d /vlog|INFO|opened log file/d /vswitchd|INFO|ovs-vswitchd (Open vSwitch)/d /reconnect|INFO|/d /dpif_netlink|INFO|Generic Netlink family .ovs_datapath. does not exist/d /ofproto|INFO|using datapath ID/d /netdev_linux|INFO|.*device has unknown hardware address family/d /ofproto|INFO|datapath ID changed to fedcba9876543210/d /dpdk|INFO|DPDK Disabled - Use other_config:dpdk-init to enable/d /netlink_socket|INFO|netlink: could not enable listening to all nsid/d /probe tc:/d /setting extended ack support failed/d /tc: Using policy/d' ./ofproto-dpif.at:5454: add_of_br 0 ovs-vsctl -- add-port br0 p1 -- set Interface p1 type=dummy ofport_request=1 -- add-port br0 p2 -- set Interface p2 type=dummy ofport_request=2 -- add-port br0 p3 -- set Interface p3 type=dummy ofport_request=3 c8dfa850-7375-40e8-b38f-59ef460f9534 f91109c7-8914-47b3-a0f6-64011ab86739 ./ofproto-dpif.at:5466: ovs-appctl ofproto/trace br0 "$flow" stdout: Flow: in_port=1,vlan_tci=0x0000,dl_src=00:00:00:00:00:00,dl_dst=00:00:00:00:00:00,dl_type=0x0000 bridge("br0") ------------- 0. priority 0 NORMAL -> no learned MAC for destination, flooding Final flow: unchanged Megaflow: recirc_id=0,eth,in_port=1,dl_src=00:00:00:00:00:00,dl_dst=00:00:00:00:00:00,dl_type=0x0000 Datapath actions: trunc(200),2,trunc(300),3,100 ./ofproto-dpif.at:5467: tail -1 stdout | egrep "trunc\(200\),2,trunc\(300\),3,100|trunc\(300\),3,trunc\(200\),2,100" --- /dev/null 2022-08-27 17:08:22.181452537 +0000 +++ /var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests/testsuite.dir/at-groups/1144/stderr 2022-09-23 10:25:15.889723877 +0000 @@ -0,0 +1 @@ +egrep: warning: egrep is obsolescent; using /bin/grep -E stdout: Datapath actions: trunc(200),2,trunc(300),3,100 ovsdb-server.log: > 2022-09-23T10:25:15.434Z|00001|vlog|INFO|opened log file /var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests/testsuite.dir/1144/ovsdb-server.log > 2022-09-23T10:25:15.563Z|00002|ovsdb_server|INFO|ovsdb-server (Open vSwitch) 2.17.2 ovs-vswitchd.log: > 2022-09-23T10:25:15.607Z|00001|vlog|INFO|opened log file /var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests/testsuite.dir/1144/ovs-vswitchd.log > 2022-09-23T10:25:15.623Z|00002|ovs_numa|INFO|Discovered 24 CPU cores on NUMA node 0 > 2022-09-23T10:25:15.623Z|00003|ovs_numa|INFO|Discovered 24 CPU cores on NUMA node 1 > 2022-09-23T10:25:15.623Z|00004|ovs_numa|INFO|Discovered 2 NUMA nodes and 48 CPU cores > 2022-09-23T10:25:15.623Z|00005|reconnect|INFO|unix:/var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests/testsuite.dir/1144/db.sock: connecting... > 2022-09-23T10:25:15.623Z|00006|netlink_socket|INFO|netlink: could not enable listening to all nsid (Operation not permitted) > 2022-09-23T10:25:15.623Z|00007|reconnect|INFO|unix:/var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests/testsuite.dir/1144/db.sock: connected > 2022-09-23T10:25:15.628Z|00008|bridge|INFO|ovs-vswitchd (Open vSwitch) 2.17.2 > 2022-09-23T10:25:15.669Z|00009|dpif_netdev_extract|INFO|Default MFEX Extract implementation is scalar. > 2022-09-23T10:25:15.669Z|00010|dpif_netdev_impl|INFO|Default DPIF implementation is dpif_scalar. > 2022-09-23T10:25:15.676Z|00011|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports recirculation > 2022-09-23T10:25:15.676Z|00012|ofproto_dpif|INFO|dummy@ovs-dummy: VLAN header stack length probed as 1 > 2022-09-23T10:25:15.676Z|00013|ofproto_dpif|INFO|dummy@ovs-dummy: MPLS label stack length probed as 3 > 2022-09-23T10:25:15.676Z|00014|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports truncate action > 2022-09-23T10:25:15.676Z|00015|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports unique flow ids > 2022-09-23T10:25:15.676Z|00016|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports clone action > 2022-09-23T10:25:15.677Z|00017|ofproto_dpif|INFO|dummy@ovs-dummy: Max sample nesting level probed as 10 > 2022-09-23T10:25:15.677Z|00018|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports eventmask in conntrack action > 2022-09-23T10:25:15.677Z|00019|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports ct_clear action > 2022-09-23T10:25:15.677Z|00020|ofproto_dpif|INFO|dummy@ovs-dummy: Max dp_hash algorithm probed to be 1 > 2022-09-23T10:25:15.677Z|00021|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports check_pkt_len action > 2022-09-23T10:25:15.677Z|00022|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports timeout policy in conntrack action > 2022-09-23T10:25:15.677Z|00023|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports ct_zero_snat > 2022-09-23T10:25:15.677Z|00024|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports add_mpls action > 2022-09-23T10:25:15.677Z|00025|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports ct_state > 2022-09-23T10:25:15.677Z|00026|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports ct_zone > 2022-09-23T10:25:15.678Z|00027|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports ct_mark > 2022-09-23T10:25:15.678Z|00028|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports ct_label > 2022-09-23T10:25:15.678Z|00029|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports ct_state_nat > 2022-09-23T10:25:15.678Z|00030|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports ct_orig_tuple > 2022-09-23T10:25:15.678Z|00031|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports ct_orig_tuple6 > 2022-09-23T10:25:15.678Z|00032|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports IPv6 ND Extensions > 2022-09-23T10:25:15.678Z|00033|ofproto_dpif_upcall|INFO|Setting n-handler-threads to 35, setting n-revalidator-threads to 13 > 2022-09-23T10:25:15.678Z|00034|ofproto_dpif_upcall|INFO|Starting 48 threads > 2022-09-23T10:25:15.847Z|00035|dpif_netdev|INFO|pmd-rxq-affinity isolates PMD core > 2022-09-23T10:25:15.847Z|00036|dpif_netdev|INFO|PMD auto load balance interval set to 1 mins > 2022-09-23T10:25:15.848Z|00037|dpif_netdev|INFO|PMD auto load balance improvement threshold set to 25% > 2022-09-23T10:25:15.848Z|00038|dpif_netdev|INFO|PMD auto load balance load threshold set to 95% > 2022-09-23T10:25:15.848Z|00039|dpif_netdev|INFO|PMD auto load balance is disabled. > 2022-09-23T10:25:15.848Z|00040|bridge|INFO|bridge br0: added interface br0 on port 65534 > 2022-09-23T10:25:15.848Z|00041|bridge|INFO|bridge br0: using datapath ID fedcba9876543210 > 2022-09-23T10:25:15.849Z|00042|connmgr|INFO|br0: added service controller "punix:/var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/tests/testsuite.dir/1144/br0.mgmt" > 2022-09-23T10:25:15.866Z|00043|bridge|INFO|bridge br0: added interface p2 on port 2 > 2022-09-23T10:25:15.866Z|00044|bridge|INFO|bridge br0: added interface p3 on port 3 > 2022-09-23T10:25:15.866Z|00045|bridge|INFO|bridge br0: added interface p1 on port 1 > 2022-09-23T10:25:15.888Z|00046|unixctl|DBG|received request ofproto/trace["br0","in_port=1"], id=0 > 2022-09-23T10:25:15.889Z|00047|unixctl|DBG|replying with success, id=0: "Flow: in_port=1,vlan_tci=0x0000,dl_src=00:00:00:00:00:00,dl_dst=00:00:00:00:00:00,dl_type=0x0000 > > bridge("br0") > ------------- > 0. priority 0 > NORMAL > -> no learned MAC for destination, flooding > > Final flow: unchanged > Megaflow: recirc_id=0,eth,in_port=1,dl_src=00:00:00:00:00:00,dl_dst=00:00:00:00:00:00,dl_type=0x0000 > Datapath actions: trunc(200),2,trunc(300),3,100" 1144. ofproto-dpif.at:5452: 1144. ofproto-dpif - multiple VLAN output mirrors with snaplen (ofproto-dpif.at:5452): FAILED (ofproto-dpif.at:5467) ## ------------- ## ## ../config.log ## ## ------------- ## | This file contains any messages produced by compilers while | running configure, to aid debugging if configure makes a mistake. | | It was created by openvswitch configure 2.17.2, which was | generated by GNU Autoconf 2.71. Invocation command line was | | $ ./configure --prefix=/usr --build=x86_64-gentoo-linux-musl --host=x86_64-gentoo-linux-musl --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --datarootdir=/usr/share --disable-dependency-tracking --disable-silent-rules --disable-static --docdir=/usr/share/doc/openvswitch-2.17.2-r1 --htmldir=/usr/share/doc/openvswitch-2.17.2-r1/html --with-sysroot=/ --libdir=/usr/lib --with-rundir=/var/run/openvswitch --with-logdir=/var/log/openvswitch --with-pkidir=/etc/ssl/openvswitch --with-dbdir=/var/lib/openvswitch --enable-ssl --enable-ndebug | | ## --------- ## | ## Platform. ## | ## --------- ## | | hostname = gf.packet.net | uname -m = x86_64 | uname -r = 5.10.133-gentoo | uname -s = Linux | uname -v = #1 SMP Fri Jul 29 16:44:01 CEST 2022 | | /usr/bin/uname -p = Intel(R) Xeon(R) CPU E5-2650 v4 @ 2.20GHz | /bin/uname -X = unknown | | /bin/arch = unknown | /usr/bin/arch -k = unknown | /usr/convex/getsysinfo = unknown | /usr/bin/hostinfo = unknown | /bin/machine = unknown | /usr/bin/oslevel = unknown | /bin/universe = unknown | | PATH: /var/tmp/portage/net-misc/openvswitch-2.17.2-r1/temp/python3.10/bin/ | PATH: /usr/lib/portage/python3.10/ebuild-helpers/xattr/ | PATH: /usr/lib/portage/python3.10/ebuild-helpers/ | PATH: /usr/local/sbin/ | PATH: /usr/local/bin/ | PATH: /usr/sbin/ | PATH: /usr/bin/ | PATH: /sbin/ | PATH: /bin/ | PATH: /opt/bin/ | | | ## ----------- ## | ## Core tests. ## | ## ----------- ## | | configure:3383: looking for aux files: config.guess config.sub ltmain.sh compile missing install-sh | configure:3396: trying ./build-aux/ | configure:3425: ./build-aux/config.guess found | configure:3425: ./build-aux/config.sub found | configure:3425: ./build-aux/ltmain.sh found | configure:3425: ./build-aux/compile found | configure:3425: ./build-aux/missing found | configure:3407: ./build-aux/install-sh found | configure:3561: checking for a BSD-compatible install | configure:3634: result: /usr/lib/portage/python3.10/ebuild-helpers/xattr/install -c | configure:3645: checking whether build environment is sane | configure:3700: result: yes | configure:3859: checking for a race-free mkdir -p | configure:3903: result: /bin/mkdir -p | configure:3910: checking for gawk | configure:3931: found /usr/bin/gawk | configure:3942: result: gawk | configure:3953: checking whether make sets $(MAKE) | configure:3976: result: yes | configure:4006: checking whether make supports nested variables | configure:4024: result: yes | configure:4099: checking how to create a pax tar archive | configure:4110: tar --version | tar (GNU tar) 1.34 | Copyright (C) 2021 Free Software Foundation, Inc. | License GPLv3+: GNU GPL version 3 or later . | This is free software: you are free to change and redistribute it. | There is NO WARRANTY, to the extent permitted by law. | | Written by John Gilmore and Jay Fenlason. | configure:4113: $? = 0 | configure:4153: tardir=conftest.dir && eval tar --format=posix -chf - "$tardir" >conftest.tar | configure:4156: $? = 0 | configure:4160: tar -xf - &5 | x86_64-gentoo-linux-musl-gcc (Gentoo Hardened 12.2.0 p9) 12.2.0 | Copyright (C) 2022 Free Software Foundation, Inc. | This is free software; see the source for copying conditions. There is NO | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | | configure:4778: $? = 0 | configure:4767: x86_64-gentoo-linux-musl-gcc -v >&5 | Using built-in specs. | COLLECT_GCC=x86_64-gentoo-linux-musl-gcc | COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-gentoo-linux-musl/12.2.0/lto-wrapper | Target: x86_64-gentoo-linux-musl | Configured with: /var/tmp/portage/sys-devel/gcc-12.2.0/work/gcc-12.2.0/configure --host=x86_64-gentoo-linux-musl --build=x86_64-gentoo-linux-musl --prefix=/usr --bindir=/usr/x86_64-gentoo-linux-musl/gcc-bin/12.2.0 --includedir=/usr/lib/gcc/x86_64-gentoo-linux-musl/12.2.0/include --datadir=/usr/share/gcc-data/x86_64-gentoo-linux-musl/12.2.0 --mandir=/usr/share/gcc-data/x86_64-gentoo-linux-musl/12.2.0/man --infodir=/usr/share/gcc-data/x86_64-gentoo-linux-musl/12.2.0/info --with-gxx-include-dir=/usr/lib/gcc/x86_64-gentoo-linux-musl/12.2.0/include/g++-v12 --with-python-dir=/share/gcc-data/x86_64-gentoo-linux-musl/12.2.0/python --enable-languages=c,c++,fortran --enable-obsolete --enable-secureplt --disable-werror --with-system-zlib --disable-nls --disable-libunwind-exceptions --enable-checking=release --with-bugurl=https://bugs.gentoo.org/ --with-pkgversion='Gentoo Hardened 12.2.0 p9' --enable-esp --enable-libstdcxx-time --disable-libstdcxx-pch --enable-shared --enable-threads=posix --enable-__cxa_atexit --disable-multilib --with-multilib-list=m64 --disable-fixed-point --enable-targets=all --enable-libgomp --disable-libssp --disable-libada --disable-cet --disable-systemtap --disable-valgrind-annotations --disable-vtable-verify --disable-libvtv --without-zstd --enable-lto --with-isl --disable-isl-version-check --disable-libsanitizer --enable-default-pie --enable-default-ssp --with-build-config=bootstrap-lto | Thread model: posix | Supported LTO compression algorithms: zlib | gcc version 12.2.0 (Gentoo Hardened 12.2.0 p9) | configure:4778: $? = 0 | configure:4767: x86_64-gentoo-linux-musl-gcc -V >&5 | x86_64-gentoo-linux-musl-gcc: error: unrecognized command-line option '-V' | x86_64-gentoo-linux-musl-gcc: fatal error: no input files | compilation terminated. | configure:4778: $? = 1 | configure:4767: x86_64-gentoo-linux-musl-gcc -qversion >&5 | x86_64-gentoo-linux-musl-gcc: error: unrecognized command-line option '-qversion'; did you mean '--version'? | x86_64-gentoo-linux-musl-gcc: fatal error: no input files | compilation terminated. | configure:4778: $? = 1 | configure:4767: x86_64-gentoo-linux-musl-gcc -version >&5 | x86_64-gentoo-linux-musl-gcc: error: unrecognized command-line option '-version' | x86_64-gentoo-linux-musl-gcc: fatal error: no input files | compilation terminated. | configure:4778: $? = 1 | configure:4798: checking whether the C compiler works | configure:4820: x86_64-gentoo-linux-musl-gcc -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:4824: $? = 0 | configure:4874: result: yes | configure:4877: checking for C compiler default output file name | configure:4879: result: a.out | configure:4885: checking for suffix of executables | configure:4892: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:4896: $? = 0 | configure:4919: result: | configure:4941: checking whether we are cross compiling | configure:4949: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:4953: $? = 0 | configure:4960: ./conftest | configure:4964: $? = 0 | configure:4979: result: no | configure:4984: checking for suffix of object files | configure:5007: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:5011: $? = 0 | configure:5033: result: o | configure:5037: checking whether the compiler supports GNU C | configure:5057: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:5057: $? = 0 | configure:5067: result: yes | configure:5078: checking whether x86_64-gentoo-linux-musl-gcc accepts -g | configure:5099: x86_64-gentoo-linux-musl-gcc -c -g conftest.c >&5 | configure:5099: $? = 0 | configure:5143: result: yes | configure:5163: checking for x86_64-gentoo-linux-musl-gcc option to enable C11 features | configure:5178: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:5178: $? = 0 | configure:5196: result: none needed | configure:5312: checking whether x86_64-gentoo-linux-musl-gcc understands -c and -o together | configure:5335: x86_64-gentoo-linux-musl-gcc -c conftest.c -o conftest2.o | configure:5338: $? = 0 | configure:5335: x86_64-gentoo-linux-musl-gcc -c conftest.c -o conftest2.o | configure:5338: $? = 0 | configure:5350: result: yes | configure:5369: checking dependency style of x86_64-gentoo-linux-musl-gcc | configure:5481: result: none | configure:5518: checking for x86_64-gentoo-linux-musl-g++ | configure:5539: found /usr/bin/x86_64-gentoo-linux-musl-g++ | configure:5550: result: x86_64-gentoo-linux-musl-g++ | configure:5626: checking for C++ compiler version | configure:5635: x86_64-gentoo-linux-musl-g++ --version >&5 | x86_64-gentoo-linux-musl-g++ (Gentoo Hardened 12.2.0 p9) 12.2.0 | Copyright (C) 2022 Free Software Foundation, Inc. | This is free software; see the source for copying conditions. There is NO | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | | configure:5646: $? = 0 | configure:5635: x86_64-gentoo-linux-musl-g++ -v >&5 | Using built-in specs. | COLLECT_GCC=x86_64-gentoo-linux-musl-g++ | COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-gentoo-linux-musl/12.2.0/lto-wrapper | Target: x86_64-gentoo-linux-musl | Configured with: /var/tmp/portage/sys-devel/gcc-12.2.0/work/gcc-12.2.0/configure --host=x86_64-gentoo-linux-musl --build=x86_64-gentoo-linux-musl --prefix=/usr --bindir=/usr/x86_64-gentoo-linux-musl/gcc-bin/12.2.0 --includedir=/usr/lib/gcc/x86_64-gentoo-linux-musl/12.2.0/include --datadir=/usr/share/gcc-data/x86_64-gentoo-linux-musl/12.2.0 --mandir=/usr/share/gcc-data/x86_64-gentoo-linux-musl/12.2.0/man --infodir=/usr/share/gcc-data/x86_64-gentoo-linux-musl/12.2.0/info --with-gxx-include-dir=/usr/lib/gcc/x86_64-gentoo-linux-musl/12.2.0/include/g++-v12 --with-python-dir=/share/gcc-data/x86_64-gentoo-linux-musl/12.2.0/python --enable-languages=c,c++,fortran --enable-obsolete --enable-secureplt --disable-werror --with-system-zlib --disable-nls --disable-libunwind-exceptions --enable-checking=release --with-bugurl=https://bugs.gentoo.org/ --with-pkgversion='Gentoo Hardened 12.2.0 p9' --enable-esp --enable-libstdcxx-time --disable-libstdcxx-pch --enable-shared --enable-threads=posix --enable-__cxa_atexit --disable-multilib --with-multilib-list=m64 --disable-fixed-point --enable-targets=all --enable-libgomp --disable-libssp --disable-libada --disable-cet --disable-systemtap --disable-valgrind-annotations --disable-vtable-verify --disable-libvtv --without-zstd --enable-lto --with-isl --disable-isl-version-check --disable-libsanitizer --enable-default-pie --enable-default-ssp --with-build-config=bootstrap-lto | Thread model: posix | Supported LTO compression algorithms: zlib | gcc version 12.2.0 (Gentoo Hardened 12.2.0 p9) | configure:5646: $? = 0 | configure:5635: x86_64-gentoo-linux-musl-g++ -V >&5 | x86_64-gentoo-linux-musl-g++: error: unrecognized command-line option '-V' | x86_64-gentoo-linux-musl-g++: fatal error: no input files | compilation terminated. | configure:5646: $? = 1 | configure:5635: x86_64-gentoo-linux-musl-g++ -qversion >&5 | x86_64-gentoo-linux-musl-g++: error: unrecognized command-line option '-qversion'; did you mean '--version'? | x86_64-gentoo-linux-musl-g++: fatal error: no input files | compilation terminated. | configure:5646: $? = 1 | configure:5650: checking whether the compiler supports GNU C++ | configure:5670: x86_64-gentoo-linux-musl-g++ -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.cpp >&5 | configure:5670: $? = 0 | configure:5680: result: yes | configure:5691: checking whether x86_64-gentoo-linux-musl-g++ accepts -g | configure:5712: x86_64-gentoo-linux-musl-g++ -c -g conftest.cpp >&5 | configure:5712: $? = 0 | configure:5756: result: yes | configure:5776: checking for x86_64-gentoo-linux-musl-g++ option to enable C++11 features | configure:5791: x86_64-gentoo-linux-musl-g++ -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.cpp >&5 | conftest.cpp: In function 'int main(int, char**)': | conftest.cpp:177:25: warning: empty parentheses were disambiguated as a function declaration [-Wvexing-parse] | 177 | cxx11test::delegate d2(); | | ^~ | conftest.cpp:177:25: note: remove parentheses to default-initialize a variable | 177 | cxx11test::delegate d2(); | | ^~ | | -- | conftest.cpp:177:25: note: or replace parentheses with braces to value-initialize a variable | configure:5791: $? = 0 | configure:5809: result: none needed | configure:5875: checking dependency style of x86_64-gentoo-linux-musl-g++ | configure:5987: result: none | configure:6007: checking how to run the C preprocessor | configure:6033: x86_64-gentoo-linux-musl-gcc -E conftest.c | configure:6033: $? = 0 | configure:6048: x86_64-gentoo-linux-musl-gcc -E conftest.c | conftest.c:11:10: fatal error: ac_nonexistent.h: No such file or directory | 11 | #include | | ^~~~~~~~~~~~~~~~~~ | compilation terminated. | configure:6048: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | /* end confdefs.h. */ | | #include | configure:6075: result: x86_64-gentoo-linux-musl-gcc -E | configure:6089: x86_64-gentoo-linux-musl-gcc -E conftest.c | configure:6089: $? = 0 | configure:6104: x86_64-gentoo-linux-musl-gcc -E conftest.c | conftest.c:11:10: fatal error: ac_nonexistent.h: No such file or directory | 11 | #include | | ^~~~~~~~~~~~~~~~~~ | compilation terminated. | configure:6104: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | /* end confdefs.h. */ | | #include | configure:6135: checking for grep that handles long lines and -e | configure:6199: result: /bin/grep | configure:6204: checking for fgrep | configure:6272: result: /bin/grep -F | configure:6277: checking for egrep | configure:6345: result: /bin/grep -E | configure:6361: checking for x86_64-gentoo-linux-musl-pkg-config | configure:6384: found /usr/bin/x86_64-gentoo-linux-musl-pkg-config | configure:6396: result: /usr/bin/x86_64-gentoo-linux-musl-pkg-config | configure:6469: checking pkg-config is at least version 0.9.0 | configure:6472: result: yes | configure:6490: checking for stdio.h | configure:6490: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:6490: $? = 0 | configure:6490: result: yes | configure:6490: checking for stdlib.h | configure:6490: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:6490: $? = 0 | configure:6490: result: yes | configure:6490: checking for string.h | configure:6490: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:6490: $? = 0 | configure:6490: result: yes | configure:6490: checking for inttypes.h | configure:6490: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:6490: $? = 0 | configure:6490: result: yes | configure:6490: checking for stdint.h | configure:6490: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:6490: $? = 0 | configure:6490: result: yes | configure:6490: checking for strings.h | configure:6490: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:6490: $? = 0 | configure:6490: result: yes | configure:6490: checking for sys/stat.h | configure:6490: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:6490: $? = 0 | configure:6490: result: yes | configure:6490: checking for sys/types.h | configure:6490: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:6490: $? = 0 | configure:6490: result: yes | configure:6490: checking for unistd.h | configure:6490: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:6490: $? = 0 | configure:6490: result: yes | configure:6490: checking for wchar.h | configure:6490: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:6490: $? = 0 | configure:6490: result: yes | configure:6490: checking for minix/config.h | configure:6490: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | conftest.c:49:10: fatal error: minix/config.h: No such file or directory | 49 | #include | | ^~~~~~~~~~~~~~~~ | compilation terminated. | configure:6490: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_STDIO_H | | # include | | #endif | | #ifdef HAVE_STDLIB_H | | # include | | #endif | | #ifdef HAVE_STRING_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | #include | configure:6490: result: no | configure:6521: checking whether it is safe to define __EXTENSIONS__ | configure:6540: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:6540: $? = 0 | configure:6548: result: yes | configure:6551: checking whether _XOPEN_SOURCE should be defined | configure:6573: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:6573: $? = 0 | configure:6600: result: no | configure:6656: checking whether byte ordering is bigendian | configure:6672: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | conftest.c:39:16: error: unknown type name 'not' | 39 | not a universal capable compiler | | ^~~ | conftest.c:39:22: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal' | 39 | not a universal capable compiler | | ^~~~~~~~~ | conftest.c:39:22: error: unknown type name 'universal' | configure:6672: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | /* end confdefs.h. */ | | #ifndef __APPLE_CC__ | | not a universal capable compiler | | #endif | | typedef int dummy; | | | configure:6718: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:6718: $? = 0 | configure:6737: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:45:18: error: unknown type name 'not'; did you mean 'ino_t'? | 45 | not big endian | | ^~~ | | ino_t | conftest.c:45:26: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian' | 45 | not big endian | | ^~~~~~ | configure:6737: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | /* end confdefs.h. */ | | #include | | #include | | | | int | | main (void) | | { | | #if BYTE_ORDER != BIG_ENDIAN | | not big endian | | #endif | | | | ; | | return 0; | | } | configure:6873: result: no | configure:6899: checking for special C compiler options needed for large files | configure:6947: result: no | configure:6953: checking for _FILE_OFFSET_BITS value needed for large files | configure:6979: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:6979: $? = 0 | configure:7013: result: no | configure:7128: checking build system type | configure:7143: result: x86_64-gentoo-linux-musl | configure:7163: checking host system type | configure:7177: result: x86_64-gentoo-linux-musl | configure:7218: checking how to print strings | configure:7245: result: printf | configure:7266: checking for a sed that does not truncate output | configure:7336: result: /bin/sed | configure:7385: checking for ld used by x86_64-gentoo-linux-musl-gcc | configure:7453: result: /usr/x86_64-gentoo-linux-musl/bin/ld | configure:7460: checking if the linker (/usr/x86_64-gentoo-linux-musl/bin/ld) is GNU ld | configure:7476: result: yes | configure:7488: checking for BSD- or MS-compatible name lister (nm) | configure:7543: result: /usr/bin/x86_64-gentoo-linux-musl-nm -B | configure:7683: checking the name lister (/usr/bin/x86_64-gentoo-linux-musl-nm -B) interface | configure:7691: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:7694: /usr/bin/x86_64-gentoo-linux-musl-nm -B "conftest.o" | configure:7697: output | 0000000000000000 B some_variable | configure:7704: result: BSD nm | configure:7707: checking whether ln -s works | configure:7711: result: yes | configure:7719: checking the maximum length of command line arguments | configure:7856: result: 98304 | configure:7904: checking how to convert x86_64-gentoo-linux-musl file names to x86_64-gentoo-linux-musl format | configure:7945: result: func_convert_file_noop | configure:7952: checking how to convert x86_64-gentoo-linux-musl file names to toolchain format | configure:7973: result: func_convert_file_noop | configure:7980: checking for /usr/x86_64-gentoo-linux-musl/bin/ld option to reload object files | configure:7988: result: -r | configure:8022: checking for x86_64-gentoo-linux-musl-file | configure:8057: result: no | configure:8067: checking for file | configure:8088: found /usr/bin/file | configure:8099: result: file | configure:8130: checking for x86_64-gentoo-linux-musl-objdump | configure:8151: found /usr/bin/x86_64-gentoo-linux-musl-objdump | configure:8162: result: x86_64-gentoo-linux-musl-objdump | configure:8239: checking how to recognize dependent libraries | configure:8440: result: pass_all | configure:8485: checking for x86_64-gentoo-linux-musl-dlltool | configure:8520: result: no | configure:8530: checking for dlltool | configure:8565: result: no | configure:8595: checking how to associate runtime and link libraries | configure:8623: result: printf %s\n | configure:8639: checking for x86_64-gentoo-linux-musl-ar | configure:8660: found /usr/bin/x86_64-gentoo-linux-musl-ar | configure:8671: result: x86_64-gentoo-linux-musl-ar | configure:8773: checking for archiver @FILE support | configure:8791: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:8791: $? = 0 | configure:8795: x86_64-gentoo-linux-musl-ar cr libconftest.a @conftest.lst >&5 | configure:8798: $? = 0 | configure:8803: x86_64-gentoo-linux-musl-ar cr libconftest.a @conftest.lst >&5 | x86_64-gentoo-linux-musl-ar: conftest.o: No such file or directory | configure:8806: $? = 1 | configure:8818: result: @ | configure:8836: checking for x86_64-gentoo-linux-musl-strip | configure:8857: found /usr/bin/x86_64-gentoo-linux-musl-strip | configure:8868: result: x86_64-gentoo-linux-musl-strip | configure:8945: checking for x86_64-gentoo-linux-musl-ranlib | configure:8966: found /usr/bin/x86_64-gentoo-linux-musl-ranlib | configure:8977: result: x86_64-gentoo-linux-musl-ranlib | configure:9124: checking command to parse /usr/bin/x86_64-gentoo-linux-musl-nm -B output from x86_64-gentoo-linux-musl-gcc object | configure:9278: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:9281: $? = 0 | configure:9285: /usr/bin/x86_64-gentoo-linux-musl-nm -B conftest.o \| /bin/sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | /bin/sed '/ __gnu_lto/d' \> conftest.nm | configure:9288: $? = 0 | configure:9354: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c conftstm.o >&5 | configure:9357: $? = 0 | configure:9395: result: ok | configure:9442: checking for sysroot | configure:9473: result: / | configure:9480: checking for a working dd | configure:9524: result: /bin/dd | configure:9528: checking how to truncate binary pipes | configure:9544: result: /bin/dd bs=4096 count=1 | configure:9681: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:9684: $? = 0 | configure:9836: checking for x86_64-gentoo-linux-musl-mt | configure:9871: result: no | configure:9881: checking for mt | configure:9916: result: no | configure:9936: checking if : is a manifest tool | configure:9943: : '-?' | configure:9951: result: no | configure:10672: checking for dlfcn.h | configure:10672: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:10672: $? = 0 | configure:10672: result: yes | configure:10941: checking for objdir | configure:10957: result: .libs | configure:11221: checking if x86_64-gentoo-linux-musl-gcc supports -fno-rtti -fno-exceptions | configure:11240: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -fno-rtti -fno-exceptions conftest.c >&5 | cc1: warning: command-line option '-fno-rtti' is valid for C++/D/ObjC++ but not for C | configure:11244: $? = 0 | configure:11257: result: no | configure:11615: checking for x86_64-gentoo-linux-musl-gcc option to produce PIC | configure:11623: result: -fPIC -DPIC | configure:11631: checking if x86_64-gentoo-linux-musl-gcc PIC flag -fPIC -DPIC works | configure:11650: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -fPIC -DPIC -DPIC conftest.c >&5 | configure:11654: $? = 0 | configure:11667: result: yes | configure:11696: checking if x86_64-gentoo-linux-musl-gcc static flag -static works | configure:11725: result: yes | configure:11740: checking if x86_64-gentoo-linux-musl-gcc supports -c -o file.o | configure:11762: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -o out/conftest2.o conftest.c >&5 | configure:11766: $? = 0 | configure:11788: result: yes | configure:11796: checking if x86_64-gentoo-linux-musl-gcc supports -c -o file.o | configure:11844: result: yes | configure:11877: checking whether the x86_64-gentoo-linux-musl-gcc linker (/usr/x86_64-gentoo-linux-musl/bin/ld -m elf_x86_64) supports shared libraries | configure:13145: result: yes | configure:13386: checking dynamic linker characteristics | configure:13981: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 -Wl,-rpath -Wl,/foo conftest.c >&5 | configure:13981: $? = 0 | configure:14220: result: GNU/Linux ld.so | configure:14342: checking how to hardcode library paths into programs | configure:14367: result: immediate | configure:14949: checking whether stripping libraries is possible | configure:14958: result: yes | configure:15000: checking if libtool supports shared libraries | configure:15002: result: yes | configure:15005: checking whether to build shared libraries | configure:15030: result: no | configure:15033: checking whether to build static libraries | configure:15037: result: yes | configure:15060: checking how to run the C++ preprocessor | configure:15082: x86_64-gentoo-linux-musl-g++ -E conftest.cpp | configure:15082: $? = 0 | configure:15097: x86_64-gentoo-linux-musl-g++ -E conftest.cpp | conftest.cpp:40:10: fatal error: ac_nonexistent.h: No such file or directory | 40 | #include | | ^~~~~~~~~~~~~~~~~~ | compilation terminated. | configure:15097: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | /* end confdefs.h. */ | | #include | configure:15124: result: x86_64-gentoo-linux-musl-g++ -E | configure:15138: x86_64-gentoo-linux-musl-g++ -E conftest.cpp | configure:15138: $? = 0 | configure:15153: x86_64-gentoo-linux-musl-g++ -E conftest.cpp | conftest.cpp:40:10: fatal error: ac_nonexistent.h: No such file or directory | 40 | #include | | ^~~~~~~~~~~~~~~~~~ | compilation terminated. | configure:15153: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | /* end confdefs.h. */ | | #include | configure:15318: checking for ld used by x86_64-gentoo-linux-musl-g++ | configure:15386: result: /usr/x86_64-gentoo-linux-musl/bin/ld -m elf_x86_64 | configure:15393: checking if the linker (/usr/x86_64-gentoo-linux-musl/bin/ld -m elf_x86_64) is GNU ld | configure:15409: result: yes | configure:15464: checking whether the x86_64-gentoo-linux-musl-g++ linker (/usr/x86_64-gentoo-linux-musl/bin/ld -m elf_x86_64) supports shared libraries | configure:16542: result: yes | configure:16578: x86_64-gentoo-linux-musl-g++ -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.cpp >&5 | configure:16581: $? = 0 | configure:17062: checking for x86_64-gentoo-linux-musl-g++ option to produce PIC | configure:17070: result: -fPIC -DPIC | configure:17078: checking if x86_64-gentoo-linux-musl-g++ PIC flag -fPIC -DPIC works | configure:17097: x86_64-gentoo-linux-musl-g++ -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -fPIC -DPIC -DPIC conftest.cpp >&5 | configure:17101: $? = 0 | configure:17114: result: yes | configure:17137: checking if x86_64-gentoo-linux-musl-g++ static flag -static works | configure:17166: result: yes | configure:17178: checking if x86_64-gentoo-linux-musl-g++ supports -c -o file.o | configure:17200: x86_64-gentoo-linux-musl-g++ -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -o out/conftest2.o conftest.cpp >&5 | configure:17204: $? = 0 | configure:17226: result: yes | configure:17231: checking if x86_64-gentoo-linux-musl-g++ supports -c -o file.o | configure:17279: result: yes | configure:17309: checking whether the x86_64-gentoo-linux-musl-g++ linker (/usr/x86_64-gentoo-linux-musl/bin/ld -m elf_x86_64) supports shared libraries | configure:17349: result: yes | configure:17491: checking dynamic linker characteristics | configure:18252: result: GNU/Linux ld.so | configure:18317: checking how to hardcode library paths into programs | configure:18342: result: immediate | configure:18439: checking for library containing pow | configure:18475: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | conftest.c:50:6: warning: conflicting types for built-in function 'pow'; expected 'double(double, double)' [-Wbuiltin-declaration-mismatch] | 50 | char pow (void); | | ^~~ | conftest.c:1:1: note: 'pow' is declared in header '' | 1 | /* confdefs.h */ | configure:18475: $? = 0 | configure:18495: result: none required | configure:18504: checking for library containing clock_gettime | configure:18540: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:18540: $? = 0 | configure:18560: result: none required | configure:18569: checking for library containing timer_create | configure:18605: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:18605: $? = 0 | configure:18625: result: none required | configure:18634: checking for library containing pthread_rwlock_tryrdlock | configure:18670: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:18670: $? = 0 | configure:18690: result: none required | configure:18699: checking for library containing pthread_rwlockattr_destroy | configure:18735: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:18735: $? = 0 | configure:18755: result: none required | configure:18764: checking for library containing pthread_spin_lock | configure:18800: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:18800: $? = 0 | configure:18820: result: none required | configure:18829: checking for pthread_spin_lock | configure:18829: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:18829: $? = 0 | configure:18829: result: yes | configure:18836: checking for x86_64-gentoo-linux-musl-gcc options needed to detect all undeclared functions | configure:18858: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:45:8: error: 'strchr' undeclared (first use in this function) | 45 | (void) strchr; | | ^~~~~~ | conftest.c:1:1: note: 'strchr' is defined in header ''; did you forget to '#include '? | 1 | /* confdefs.h */ | conftest.c:45:8: note: each undeclared identifier is reported only once for each function it appears in | 45 | (void) strchr; | | ^~~~~~ | configure:18858: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_PTHREAD_SPIN_LOCK 1 | | /* end confdefs.h. */ | | | | int | | main (void) | | { | | (void) strchr; | | ; | | return 0; | | } | configure:18885: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:18885: $? = 0 | configure:18902: result: none needed | configure:18916: checking whether strerror_r is declared | configure:18916: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:18916: $? = 0 | configure:18916: result: yes | configure:18935: checking whether strerror_r returns char * | configure:18960: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:49:20: error: invalid type argument of unary '*' (have 'int') | 49 | char x = *strerror_r (0, buf, sizeof buf); | | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | conftest.c:50:21: warning: initialization of 'char *' from 'int' makes pointer from integer without a cast [-Wint-conversion] | 50 | char *p = strerror_r (0, buf, sizeof buf); | | ^~~~~~~~~~ | configure:18960: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_PTHREAD_SPIN_LOCK 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | /* end confdefs.h. */ | | #include | | int | | main (void) | | { | | | | char buf[100]; | | char x = *strerror_r (0, buf, sizeof buf); | | char *p = strerror_r (0, buf, sizeof buf); | | return !p || x; | | | | ; | | return 0; | | } | configure:18969: result: no | configure:18978: checking for MSVC x64 compiler | configure:18994: result: no | configure:18999: checking for windows.h | configure:18999: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | conftest.c:71:10: fatal error: windows.h: No such file or directory | 71 | #include | | ^~~~~~~~~~~ | compilation terminated. | configure:18999: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_PTHREAD_SPIN_LOCK 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_STDIO_H | | # include | | #endif | | #ifdef HAVE_STDLIB_H | | # include | | #endif | | #ifdef HAVE_STRING_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | #include | configure:18999: result: no | configure:19229: checking whether USDT probes are enabled | configure:19232: result: no | configure:19260: checking for linux/netlink.h | configure:19260: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:19260: $? = 0 | configure:19260: result: yes | configure:19318: checking for pkg-config | configure:19353: result: /usr/bin/x86_64-gentoo-linux-musl-pkg-config | configure:19415: checking whether compiling and linking against OpenSSL works | Trying link with SSL_LDFLAGS=; SSL_LIBS=-lssl -lcrypto ; SSL_INCLUDES= | configure:19437: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -lssl -lcrypto >&5 | configure:19437: $? = 0 | configure:19440: result: yes | configure:19500: checking whether SSL_set_tlsext_host_name is declared | configure:19500: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:19500: $? = 0 | configure:19500: result: yes | configure:19530: checking for capng_clear in -lcap-ng | configure:19559: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -lcap-ng >&5 | configure:19559: $? = 0 | configure:19569: result: yes | configure:19618: checking for Python 3 (version 3.4 or later) | configure:19645: result: /usr/bin/python3.10 | configure:19652: checking for flake8 | configure:19664: result: no | configure:19678: checking for sphinx-build-3 | configure:19713: result: no | configure:19678: checking for sphinx-build-2 | configure:19713: result: no | configure:19678: checking for sphinx-build | configure:19713: result: no | configure:19731: checking for dot | configure:19743: result: no | configure:19753: checking for net/if_dl.h | configure:19753: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | conftest.c:75:10: fatal error: net/if_dl.h: No such file or directory | 75 | #include | | ^~~~~~~~~~~~~ | compilation terminated. | configure:19753: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_PTHREAD_SPIN_LOCK 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define OPENSSL_SUPPORTS_SNI 1 | | #define HAVE_LIBCAPNG 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_STDIO_H | | # include | | #endif | | #ifdef HAVE_STDLIB_H | | # include | | #endif | | #ifdef HAVE_STRING_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | #include | configure:19753: result: no | configure:19841: checking whether strtok_r macro segfaults on some inputs | configure:19879: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:19879: $? = 0 | configure:19879: ./conftest | configure:19879: $? = 0 | configure:19890: result: no | configure:19907: checking whether AF_XDP is enabled | configure:19910: result: no | configure:20057: checking whether sys_siglist is declared | configure:20057: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:56:10: error: 'sys_siglist' undeclared (first use in this function) | 56 | (void) sys_siglist; | | ^~~~~~~~~~~ | conftest.c:56:10: note: each undeclared identifier is reported only once for each function it appears in | configure:20057: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_PTHREAD_SPIN_LOCK 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define OPENSSL_SUPPORTS_SNI 1 | | #define HAVE_LIBCAPNG 1 | | /* end confdefs.h. */ | | #include | | | | int | | main (void) | | { | | #ifndef sys_siglist | | #ifdef __cplusplus | | (void) sys_siglist; | | #else | | (void) sys_siglist; | | #endif | | #endif | | | | ; | | return 0; | | } | configure:20057: result: no | configure:20067: checking whether malloc_trim is declared | configure:20067: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:57:10: error: 'malloc_trim' undeclared (first use in this function) | 57 | (void) malloc_trim; | | ^~~~~~~~~~~ | conftest.c:57:10: note: each undeclared identifier is reported only once for each function it appears in | configure:20067: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_PTHREAD_SPIN_LOCK 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define OPENSSL_SUPPORTS_SNI 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_DECL_SYS_SIGLIST 0 | | /* end confdefs.h. */ | | #include | | | | int | | main (void) | | { | | #ifndef malloc_trim | | #ifdef __cplusplus | | (void) malloc_trim; | | #else | | (void) malloc_trim; | | #endif | | #endif | | | | ; | | return 0; | | } | configure:20067: result: no | configure:20077: checking for struct stat.st_mtim.tv_nsec | configure:20077: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:20077: $? = 0 | configure:20077: result: yes | configure:20086: checking for struct stat.st_mtimensec | configure:20086: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:56:12: error: 'struct stat' has no member named 'st_mtimensec' | 56 | if (ac_aggr.st_mtimensec) | | ^ | configure:20086: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_PTHREAD_SPIN_LOCK 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define OPENSSL_SUPPORTS_SNI 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_DECL_SYS_SIGLIST 0 | | #define HAVE_DECL_MALLOC_TRIM 0 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | /* end confdefs.h. */ | | #include | | | | int | | main (void) | | { | | static struct stat ac_aggr; | | if (ac_aggr.st_mtimensec) | | return 0; | | ; | | return 0; | | } | configure:20086: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:56:19: error: 'struct stat' has no member named 'st_mtimensec' | 56 | if (sizeof ac_aggr.st_mtimensec) | | ^ | configure:20086: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_PTHREAD_SPIN_LOCK 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define OPENSSL_SUPPORTS_SNI 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_DECL_SYS_SIGLIST 0 | | #define HAVE_DECL_MALLOC_TRIM 0 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | /* end confdefs.h. */ | | #include | | | | int | | main (void) | | { | | static struct stat ac_aggr; | | if (sizeof ac_aggr.st_mtimensec) | | return 0; | | ; | | return 0; | | } | configure:20086: result: no | configure:20096: checking for struct ifreq.ifr_flagshigh | configure:20096: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:56:12: error: 'struct ifreq' has no member named 'ifr_flagshigh' | 56 | if (ac_aggr.ifr_flagshigh) | | ^ | configure:20096: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_PTHREAD_SPIN_LOCK 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define OPENSSL_SUPPORTS_SNI 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_DECL_SYS_SIGLIST 0 | | #define HAVE_DECL_MALLOC_TRIM 0 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | /* end confdefs.h. */ | | #include | | | | int | | main (void) | | { | | static struct ifreq ac_aggr; | | if (ac_aggr.ifr_flagshigh) | | return 0; | | ; | | return 0; | | } | configure:20096: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:56:19: error: 'struct ifreq' has no member named 'ifr_flagshigh' | 56 | if (sizeof ac_aggr.ifr_flagshigh) | | ^ | configure:20096: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_PTHREAD_SPIN_LOCK 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define OPENSSL_SUPPORTS_SNI 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_DECL_SYS_SIGLIST 0 | | #define HAVE_DECL_MALLOC_TRIM 0 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | /* end confdefs.h. */ | | #include | | | | int | | main (void) | | { | | static struct ifreq ac_aggr; | | if (sizeof ac_aggr.ifr_flagshigh) | | return 0; | | ; | | return 0; | | } | configure:20096: result: no | configure:20106: checking for struct mmsghdr.msg_len | configure:20106: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:20106: $? = 0 | configure:20106: result: yes | configure:20116: checking for struct sockaddr_in6.sin6_scope_id | configure:20116: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:20116: $? = 0 | configure:20116: result: yes | configure:20128: checking for mlockall | configure:20128: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:20128: $? = 0 | configure:20128: result: yes | configure:20134: checking for strnlen | configure:20134: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | conftest.c:69:6: warning: conflicting types for built-in function 'strnlen'; expected 'long unsigned int(const char *, long unsigned int)' [-Wbuiltin-declaration-mismatch] | 69 | char strnlen (void); | | ^~~~~~~ | configure:20134: $? = 0 | configure:20134: result: yes | configure:20140: checking for getloadavg | configure:20140: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:20140: $? = 0 | configure:20140: result: yes | configure:20146: checking for statvfs | configure:20146: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:20146: $? = 0 | configure:20146: result: yes | configure:20152: checking for getmntent_r | configure:20152: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:20152: $? = 0 | configure:20152: result: yes | configure:20158: checking for sendmmsg | configure:20158: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:20158: $? = 0 | configure:20158: result: yes | configure:20164: checking for clock_gettime | configure:20164: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:20164: $? = 0 | configure:20164: result: yes | configure:20171: checking for mntent.h | configure:20171: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:20171: $? = 0 | configure:20171: result: yes | configure:20177: checking for sys/statvfs.h | configure:20177: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:20177: $? = 0 | configure:20177: result: yes | configure:20183: checking for linux/types.h | configure:20183: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:20183: $? = 0 | configure:20183: result: yes | configure:20189: checking for linux/if_ether.h | configure:20189: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:20189: $? = 0 | configure:20189: result: yes | configure:20196: checking for linux/net_namespace.h | configure:20196: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:20196: $? = 0 | configure:20196: result: yes | configure:20202: checking for stdatomic.h | configure:20202: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:20202: $? = 0 | configure:20202: result: yes | configure:20208: checking for bits/floatn-common.h | configure:20208: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | conftest.c:93:10: fatal error: bits/floatn-common.h: No such file or directory | 93 | #include | | ^~~~~~~~~~~~~~~~~~~~~~ | compilation terminated. | configure:20208: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_PTHREAD_SPIN_LOCK 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define OPENSSL_SUPPORTS_SNI 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_DECL_SYS_SIGLIST 0 | | #define HAVE_DECL_MALLOC_TRIM 0 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | #define HAVE_STRUCT_MMSGHDR_MSG_LEN 1 | | #define HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID 1 | | #define HAVE_MLOCKALL 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_GETLOADAVG 1 | | #define HAVE_STATVFS 1 | | #define HAVE_GETMNTENT_R 1 | | #define HAVE_SENDMMSG 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_MNTENT_H 1 | | #define HAVE_SYS_STATVFS_H 1 | | #define HAVE_LINUX_TYPES_H 1 | | #define HAVE_LINUX_IF_ETHER_H 1 | | #define HAVE_LINUX_NET_NAMESPACE_H 1 | | #define HAVE_STDATOMIC_H 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_STDIO_H | | # include | | #endif | | #ifdef HAVE_STDLIB_H | | # include | | #endif | | #ifdef HAVE_STRING_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | #include | configure:20208: result: no | configure:20215: checking for net/if_mib.h | configure:20215: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | conftest.c:68:10: fatal error: net/if_mib.h: No such file or directory | 68 | #include | | ^~~~~~~~~~~~~~ | compilation terminated. | configure:20215: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_PTHREAD_SPIN_LOCK 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define OPENSSL_SUPPORTS_SNI 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_DECL_SYS_SIGLIST 0 | | #define HAVE_DECL_MALLOC_TRIM 0 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | #define HAVE_STRUCT_MMSGHDR_MSG_LEN 1 | | #define HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID 1 | | #define HAVE_MLOCKALL 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_GETLOADAVG 1 | | #define HAVE_STATVFS 1 | | #define HAVE_GETMNTENT_R 1 | | #define HAVE_SENDMMSG 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_MNTENT_H 1 | | #define HAVE_SYS_STATVFS_H 1 | | #define HAVE_LINUX_TYPES_H 1 | | #define HAVE_LINUX_IF_ETHER_H 1 | | #define HAVE_LINUX_NET_NAMESPACE_H 1 | | #define HAVE_STDATOMIC_H 1 | | /* end confdefs.h. */ | | #include | | #include | | | | #include | configure:20215: result: no | configure:20255: checking for library containing backtrace | configure:20291: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | /usr/lib/gcc/x86_64-gentoo-linux-musl/12.2.0/../../../../x86_64-gentoo-linux-musl/bin/ld: /var/tmp/portage/net-misc/openvswitch-2.17.2-r1/temp/ccokJdEk.o: in function `main': | conftest.c:(.text.startup+0x5): undefined reference to `backtrace' | collect2: error: ld returned 1 exit status | configure:20291: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_PTHREAD_SPIN_LOCK 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define OPENSSL_SUPPORTS_SNI 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_DECL_SYS_SIGLIST 0 | | #define HAVE_DECL_MALLOC_TRIM 0 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | #define HAVE_STRUCT_MMSGHDR_MSG_LEN 1 | | #define HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID 1 | | #define HAVE_MLOCKALL 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_GETLOADAVG 1 | | #define HAVE_STATVFS 1 | | #define HAVE_GETMNTENT_R 1 | | #define HAVE_SENDMMSG 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_MNTENT_H 1 | | #define HAVE_SYS_STATVFS_H 1 | | #define HAVE_LINUX_TYPES_H 1 | | #define HAVE_LINUX_IF_ETHER_H 1 | | #define HAVE_LINUX_NET_NAMESPACE_H 1 | | #define HAVE_STDATOMIC_H 1 | | /* end confdefs.h. */ | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. | | The 'extern "C"' is for builds by C++ compilers; | | although this is not generally supported in C code supporting it here | | has little cost and some practical benefit (sr 110532). */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char backtrace (void); | | int | | main (void) | | { | | return backtrace (); | | ; | | return 0; | | } | configure:20291: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -lexecinfo >&5 | /usr/lib/gcc/x86_64-gentoo-linux-musl/12.2.0/../../../../x86_64-gentoo-linux-musl/bin/ld: cannot find -lexecinfo: No such file or directory | collect2: error: ld returned 1 exit status | configure:20291: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_PTHREAD_SPIN_LOCK 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define OPENSSL_SUPPORTS_SNI 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_DECL_SYS_SIGLIST 0 | | #define HAVE_DECL_MALLOC_TRIM 0 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | #define HAVE_STRUCT_MMSGHDR_MSG_LEN 1 | | #define HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID 1 | | #define HAVE_MLOCKALL 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_GETLOADAVG 1 | | #define HAVE_STATVFS 1 | | #define HAVE_GETMNTENT_R 1 | | #define HAVE_SENDMMSG 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_MNTENT_H 1 | | #define HAVE_SYS_STATVFS_H 1 | | #define HAVE_LINUX_TYPES_H 1 | | #define HAVE_LINUX_IF_ETHER_H 1 | | #define HAVE_LINUX_NET_NAMESPACE_H 1 | | #define HAVE_STDATOMIC_H 1 | | /* end confdefs.h. */ | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. | | The 'extern "C"' is for builds by C++ compilers; | | although this is not generally supported in C code supporting it here | | has little cost and some practical benefit (sr 110532). */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char backtrace (void); | | int | | main (void) | | { | | return backtrace (); | | ; | | return 0; | | } | configure:20291: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -lubacktrace >&5 | /usr/lib/gcc/x86_64-gentoo-linux-musl/12.2.0/../../../../x86_64-gentoo-linux-musl/bin/ld: cannot find -lubacktrace: No such file or directory | collect2: error: ld returned 1 exit status | configure:20291: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_PTHREAD_SPIN_LOCK 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define OPENSSL_SUPPORTS_SNI 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_DECL_SYS_SIGLIST 0 | | #define HAVE_DECL_MALLOC_TRIM 0 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | #define HAVE_STRUCT_MMSGHDR_MSG_LEN 1 | | #define HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID 1 | | #define HAVE_MLOCKALL 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_GETLOADAVG 1 | | #define HAVE_STATVFS 1 | | #define HAVE_GETMNTENT_R 1 | | #define HAVE_SENDMMSG 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_MNTENT_H 1 | | #define HAVE_SYS_STATVFS_H 1 | | #define HAVE_LINUX_TYPES_H 1 | | #define HAVE_LINUX_IF_ETHER_H 1 | | #define HAVE_LINUX_NET_NAMESPACE_H 1 | | #define HAVE_STDATOMIC_H 1 | | /* end confdefs.h. */ | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. | | The 'extern "C"' is for builds by C++ compilers; | | although this is not generally supported in C code supporting it here | | has little cost and some practical benefit (sr 110532). */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char backtrace (void); | | int | | main (void) | | { | | return backtrace (); | | ; | | return 0; | | } | configure:20311: result: no | configure:20322: checking for linux/perf_event.h | configure:20322: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:20322: $? = 0 | configure:20322: result: yes | configure:20329: checking for valgrind/valgrind.h | configure:20329: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | conftest.c:94:10: fatal error: valgrind/valgrind.h: No such file or directory | 94 | #include | | ^~~~~~~~~~~~~~~~~~~~~ | compilation terminated. | configure:20329: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_PTHREAD_SPIN_LOCK 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define OPENSSL_SUPPORTS_SNI 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_DECL_SYS_SIGLIST 0 | | #define HAVE_DECL_MALLOC_TRIM 0 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | #define HAVE_STRUCT_MMSGHDR_MSG_LEN 1 | | #define HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID 1 | | #define HAVE_MLOCKALL 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_GETLOADAVG 1 | | #define HAVE_STATVFS 1 | | #define HAVE_GETMNTENT_R 1 | | #define HAVE_SENDMMSG 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_MNTENT_H 1 | | #define HAVE_SYS_STATVFS_H 1 | | #define HAVE_LINUX_TYPES_H 1 | | #define HAVE_LINUX_IF_ETHER_H 1 | | #define HAVE_LINUX_NET_NAMESPACE_H 1 | | #define HAVE_STDATOMIC_H 1 | | #define HAVE_LINUX_PERF_EVENT_H 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_STDIO_H | | # include | | #endif | | #ifdef HAVE_STDLIB_H | | # include | | #endif | | #ifdef HAVE_STRING_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | #include | configure:20329: result: no | configure:20336: checking for connect in -lsocket | configure:20365: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -lsocket >&5 | /usr/lib/gcc/x86_64-gentoo-linux-musl/12.2.0/../../../../x86_64-gentoo-linux-musl/bin/ld: cannot find -lsocket: No such file or directory | collect2: error: ld returned 1 exit status | configure:20365: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_PTHREAD_SPIN_LOCK 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define OPENSSL_SUPPORTS_SNI 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_DECL_SYS_SIGLIST 0 | | #define HAVE_DECL_MALLOC_TRIM 0 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | #define HAVE_STRUCT_MMSGHDR_MSG_LEN 1 | | #define HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID 1 | | #define HAVE_MLOCKALL 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_GETLOADAVG 1 | | #define HAVE_STATVFS 1 | | #define HAVE_GETMNTENT_R 1 | | #define HAVE_SENDMMSG 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_MNTENT_H 1 | | #define HAVE_SYS_STATVFS_H 1 | | #define HAVE_LINUX_TYPES_H 1 | | #define HAVE_LINUX_IF_ETHER_H 1 | | #define HAVE_LINUX_NET_NAMESPACE_H 1 | | #define HAVE_STDATOMIC_H 1 | | #define HAVE_LINUX_PERF_EVENT_H 1 | | /* end confdefs.h. */ | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. | | The 'extern "C"' is for builds by C++ compilers; | | although this is not generally supported in C code supporting it here | | has little cost and some practical benefit (sr 110532). */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char connect (void); | | int | | main (void) | | { | | return connect (); | | ; | | return 0; | | } | configure:20375: result: no | configure:20385: checking for library containing gethostbyname | configure:20421: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:20421: $? = 0 | configure:20441: result: none required | configure:20450: checking XenServer release | configure:20463: result: none | configure:20475: checking for groff | configure:20487: result: yes | configure:20497: checking whether x86_64-gentoo-linux-musl-gcc has that supports thread_local | configure:20515: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:20515: $? = 0 | configure:20524: result: yes | configure:20565: checking for library containing __atomic_load_8 | configure:20601: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | conftest.c:77:6: warning: conflicting types for built-in function '__atomic_load_8'; expected 'long unsigned int(const volatile void *, int)' [-Wbuiltin-declaration-mismatch] | 77 | char __atomic_load_8 (void); | | ^~~~~~~~~~~~~~~ | /usr/lib/gcc/x86_64-gentoo-linux-musl/12.2.0/../../../../x86_64-gentoo-linux-musl/bin/ld: /var/tmp/portage/net-misc/openvswitch-2.17.2-r1/temp/ccKLBAAa.o: in function `main': | conftest.c:(.text.startup+0x5): undefined reference to `__atomic_load_8' | collect2: error: ld returned 1 exit status | configure:20601: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_PTHREAD_SPIN_LOCK 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define OPENSSL_SUPPORTS_SNI 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_DECL_SYS_SIGLIST 0 | | #define HAVE_DECL_MALLOC_TRIM 0 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | #define HAVE_STRUCT_MMSGHDR_MSG_LEN 1 | | #define HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID 1 | | #define HAVE_MLOCKALL 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_GETLOADAVG 1 | | #define HAVE_STATVFS 1 | | #define HAVE_GETMNTENT_R 1 | | #define HAVE_SENDMMSG 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_MNTENT_H 1 | | #define HAVE_SYS_STATVFS_H 1 | | #define HAVE_LINUX_TYPES_H 1 | | #define HAVE_LINUX_IF_ETHER_H 1 | | #define HAVE_LINUX_NET_NAMESPACE_H 1 | | #define HAVE_STDATOMIC_H 1 | | #define HAVE_LINUX_PERF_EVENT_H 1 | | #define HAVE_THREAD_LOCAL 1 | | /* end confdefs.h. */ | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. | | The 'extern "C"' is for builds by C++ compilers; | | although this is not generally supported in C code supporting it here | | has little cost and some practical benefit (sr 110532). */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char __atomic_load_8 (void); | | int | | main (void) | | { | | return __atomic_load_8 (); | | ; | | return 0; | | } | configure:20601: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -latomic >&5 | conftest.c:77:6: warning: conflicting types for built-in function '__atomic_load_8'; expected 'long unsigned int(const volatile void *, int)' [-Wbuiltin-declaration-mismatch] | 77 | char __atomic_load_8 (void); | | ^~~~~~~~~~~~~~~ | configure:20601: $? = 0 | configure:20621: result: -latomic | configure:20630: checking whether x86_64-gentoo-linux-musl-gcc supports GCC 4.0+ atomic built-ins | configure:20698: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -latomic >&5 | configure:20698: $? = 0 | configure:20707: result: yes | configure:20714: checking value of __atomic_always_lock_free(1) | configure:20720: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -latomic >&5 | configure:20720: $? = 0 | configure:20720: ./conftest | configure:20720: $? = 0 | configure:20728: result: 1 | configure:20735: checking value of __atomic_always_lock_free(2) | configure:20741: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -latomic >&5 | configure:20741: $? = 0 | configure:20741: ./conftest | configure:20741: $? = 0 | configure:20749: result: 1 | configure:20756: checking value of __atomic_always_lock_free(4) | configure:20762: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -latomic >&5 | configure:20762: $? = 0 | configure:20762: ./conftest | configure:20762: $? = 0 | configure:20770: result: 1 | configure:20777: checking value of __atomic_always_lock_free(8) | configure:20783: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -latomic >&5 | configure:20783: $? = 0 | configure:20783: ./conftest | configure:20783: $? = 0 | configure:20791: result: 1 | configure:20798: checking for library containing aio_write | configure:20834: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -latomic >&5 | configure:20834: $? = 0 | configure:20854: result: none required | configure:20871: checking for pthread_set_name_np | configure:20871: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -latomic >&5 | /usr/lib/gcc/x86_64-gentoo-linux-musl/12.2.0/../../../../x86_64-gentoo-linux-musl/bin/ld: /var/tmp/portage/net-misc/openvswitch-2.17.2-r1/temp/ccPGgiIA.o: in function `main': | conftest.c:(.text.startup+0x5): undefined reference to `pthread_set_name_np' | collect2: error: ld returned 1 exit status | configure:20871: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_PTHREAD_SPIN_LOCK 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define OPENSSL_SUPPORTS_SNI 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_DECL_SYS_SIGLIST 0 | | #define HAVE_DECL_MALLOC_TRIM 0 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | #define HAVE_STRUCT_MMSGHDR_MSG_LEN 1 | | #define HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID 1 | | #define HAVE_MLOCKALL 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_GETLOADAVG 1 | | #define HAVE_STATVFS 1 | | #define HAVE_GETMNTENT_R 1 | | #define HAVE_SENDMMSG 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_MNTENT_H 1 | | #define HAVE_SYS_STATVFS_H 1 | | #define HAVE_LINUX_TYPES_H 1 | | #define HAVE_LINUX_IF_ETHER_H 1 | | #define HAVE_LINUX_NET_NAMESPACE_H 1 | | #define HAVE_STDATOMIC_H 1 | | #define HAVE_LINUX_PERF_EVENT_H 1 | | #define HAVE_THREAD_LOCAL 1 | | #define HAVE_GCC4_ATOMICS 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_1B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_2B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_4B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_8B 1 | | /* end confdefs.h. */ | | /* Define pthread_set_name_np to an innocuous variant, in case declares pthread_set_name_np. | | For example, HP-UX 11i declares gettimeofday. */ | | #define pthread_set_name_np innocuous_pthread_set_name_np | | | | /* System header to define __stub macros and hopefully few prototypes, | | which can conflict with char pthread_set_name_np (void); below. */ | | | | #include | | #undef pthread_set_name_np | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char pthread_set_name_np (void); | | /* The GNU C library defines this for functions which it implements | | to always fail with ENOSYS. Some functions are actually named | | something starting with __ and the normal name is an alias. */ | | #if defined __stub_pthread_set_name_np || defined __stub___pthread_set_name_np | | choke me | | #endif | | | | int | | main (void) | | { | | return pthread_set_name_np (); | | ; | | return 0; | | } | configure:20871: result: no | configure:20879: checking for pthread_setname_np() variant | configure:20897: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -latomic >&5 | configure:20897: $? = 0 | configure:20925: result: glibc | configure:20940: checking whether __linux__ is defined | configure:20957: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:20957: $? = 0 | configure:20965: result: true | configure:20975: checking linker output version information | configure:20983: result: libX-2.17.so.0.0.2) | configure:21022: checking whether x86_64-gentoo-linux-musl-g++ supports C++11 features by default | configure:21317: x86_64-gentoo-linux-musl-g++ -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.cpp >&5 | configure:21317: $? = 0 | configure:21325: result: yes | configure:22038: checking for working posix_memalign | configure:22064: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -latomic >&5 | configure:22064: $? = 0 | configure:22064: ./conftest | configure:22064: $? = 0 | configure:22075: result: yes | configure:22083: checking for ub_ctx_create in -lunbound | configure:22112: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -lunbound -latomic >&5 | /usr/lib/gcc/x86_64-gentoo-linux-musl/12.2.0/../../../../x86_64-gentoo-linux-musl/bin/ld: cannot find -lunbound: No such file or directory | collect2: error: ld returned 1 exit status | configure:22112: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_PTHREAD_SPIN_LOCK 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define OPENSSL_SUPPORTS_SNI 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_DECL_SYS_SIGLIST 0 | | #define HAVE_DECL_MALLOC_TRIM 0 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | #define HAVE_STRUCT_MMSGHDR_MSG_LEN 1 | | #define HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID 1 | | #define HAVE_MLOCKALL 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_GETLOADAVG 1 | | #define HAVE_STATVFS 1 | | #define HAVE_GETMNTENT_R 1 | | #define HAVE_SENDMMSG 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_MNTENT_H 1 | | #define HAVE_SYS_STATVFS_H 1 | | #define HAVE_LINUX_TYPES_H 1 | | #define HAVE_LINUX_IF_ETHER_H 1 | | #define HAVE_LINUX_NET_NAMESPACE_H 1 | | #define HAVE_STDATOMIC_H 1 | | #define HAVE_LINUX_PERF_EVENT_H 1 | | #define HAVE_THREAD_LOCAL 1 | | #define HAVE_GCC4_ATOMICS 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_1B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_2B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_4B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_8B 1 | | #define HAVE_GLIBC_PTHREAD_SETNAME_NP 1 | | #define HAVE_CXX11 1 | | #define HAVE_POSIX_MEMALIGN 1 | | /* end confdefs.h. */ | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. | | The 'extern "C"' is for builds by C++ compilers; | | although this is not generally supported in C code supporting it here | | has little cost and some practical benefit (sr 110532). */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char ub_ctx_create (void); | | int | | main (void) | | { | | return ub_ctx_create (); | | ; | | return 0; | | } | configure:22122: result: no | configure:22146: checking for unw_backtrace in -lunwind | configure:22175: x86_64-gentoo-linux-musl-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -lunwind -latomic >&5 | configure:22175: $? = 0 | configure:22185: result: yes | configure:22191: checking for libunwind.h | configure:22191: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:22191: $? = 0 | configure:22191: result: yes | configure:22224: checking whether the preprocessor supports include_next | configure:22263: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Iconftestd1b -Iconftestd2 conftest.c >&5 | configure:22263: $? = 0 | configure:22286: result: yes | configure:22307: checking whether system header files limit the line length | configure:22332: result: no | configure:22504: checking whether x86_64-gentoo-linux-musl-gcc accepts -Werror | configure:22516: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror conftest.c >&5 | configure:22516: $? = 0 | configure:22530: result: yes | configure:22539: checking whether x86_64-gentoo-linux-musl-gcc accepts -Wall | configure:22551: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -Wall conftest.c >&5 | configure:22551: $? = 0 | configure:22565: result: yes | configure:22575: checking whether x86_64-gentoo-linux-musl-gcc accepts -Wextra | configure:22587: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -Wextra conftest.c >&5 | configure:22587: $? = 0 | configure:22601: result: yes | configure:22611: checking whether x86_64-gentoo-linux-musl-gcc accepts -Wno-sign-compare | configure:22623: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -Wsign-compare conftest.c >&5 | configure:22623: $? = 0 | configure:22637: result: yes | configure:22647: checking whether x86_64-gentoo-linux-musl-gcc accepts -Wpointer-arith | configure:22659: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -Wpointer-arith conftest.c >&5 | configure:22659: $? = 0 | configure:22673: result: yes | configure:22683: checking whether x86_64-gentoo-linux-musl-gcc accepts -Wformat -Wformat-security | configure:22695: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -Wformat -Wformat-security conftest.c >&5 | configure:22695: $? = 0 | configure:22709: result: yes | configure:22719: checking whether x86_64-gentoo-linux-musl-gcc accepts -Wswitch-enum | configure:22731: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -Wswitch-enum conftest.c >&5 | configure:22731: $? = 0 | configure:22745: result: yes | configure:22755: checking whether x86_64-gentoo-linux-musl-gcc accepts -Wunused-parameter | configure:22767: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -Wunused-parameter conftest.c >&5 | configure:22767: $? = 0 | configure:22781: result: yes | configure:22791: checking whether x86_64-gentoo-linux-musl-gcc accepts -Wbad-function-cast | configure:22803: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -Wbad-function-cast conftest.c >&5 | configure:22803: $? = 0 | configure:22817: result: yes | configure:22827: checking whether x86_64-gentoo-linux-musl-gcc accepts -Wcast-align | configure:22839: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -Wcast-align conftest.c >&5 | configure:22839: $? = 0 | configure:22853: result: yes | configure:22863: checking whether x86_64-gentoo-linux-musl-gcc accepts -Wstrict-prototypes | configure:22875: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -Wstrict-prototypes conftest.c >&5 | configure:22875: $? = 0 | configure:22889: result: yes | configure:22899: checking whether x86_64-gentoo-linux-musl-gcc accepts -Wold-style-definition | configure:22911: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -Wold-style-definition conftest.c >&5 | configure:22911: $? = 0 | configure:22925: result: yes | configure:22935: checking whether x86_64-gentoo-linux-musl-gcc accepts -Wmissing-prototypes | configure:22947: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -Wmissing-prototypes conftest.c >&5 | configure:22947: $? = 0 | configure:22961: result: yes | configure:22971: checking whether x86_64-gentoo-linux-musl-gcc accepts -Wmissing-field-initializers | configure:22983: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -Wmissing-field-initializers conftest.c >&5 | configure:22983: $? = 0 | configure:22997: result: yes | configure:23007: checking whether x86_64-gentoo-linux-musl-gcc accepts -Wthread-safety | configure:23019: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -Wthread-safety conftest.c >&5 | x86_64-gentoo-linux-musl-gcc: error: unrecognized command-line option '-Wthread-safety' | configure:23019: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_PTHREAD_SPIN_LOCK 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define OPENSSL_SUPPORTS_SNI 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_DECL_SYS_SIGLIST 0 | | #define HAVE_DECL_MALLOC_TRIM 0 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | #define HAVE_STRUCT_MMSGHDR_MSG_LEN 1 | | #define HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID 1 | | #define HAVE_MLOCKALL 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_GETLOADAVG 1 | | #define HAVE_STATVFS 1 | | #define HAVE_GETMNTENT_R 1 | | #define HAVE_SENDMMSG 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_MNTENT_H 1 | | #define HAVE_SYS_STATVFS_H 1 | | #define HAVE_LINUX_TYPES_H 1 | | #define HAVE_LINUX_IF_ETHER_H 1 | | #define HAVE_LINUX_NET_NAMESPACE_H 1 | | #define HAVE_STDATOMIC_H 1 | | #define HAVE_LINUX_PERF_EVENT_H 1 | | #define HAVE_THREAD_LOCAL 1 | | #define HAVE_GCC4_ATOMICS 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_1B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_2B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_4B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_8B 1 | | #define HAVE_GLIBC_PTHREAD_SETNAME_NP 1 | | #define HAVE_CXX11 1 | | #define HAVE_POSIX_MEMALIGN 1 | | #define HAVE_LIBUNWIND_H 1 | | #define HAVE_UNWIND 1 | | /* end confdefs.h. */ | | int x; | configure:23033: result: no | configure:23043: checking whether x86_64-gentoo-linux-musl-gcc accepts -fno-strict-aliasing | configure:23055: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -fno-strict-aliasing conftest.c >&5 | configure:23055: $? = 0 | configure:23069: result: yes | configure:23079: checking whether x86_64-gentoo-linux-musl-gcc accepts -Wswitch-bool | configure:23091: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -Wswitch-bool conftest.c >&5 | configure:23091: $? = 0 | configure:23105: result: yes | configure:23115: checking whether x86_64-gentoo-linux-musl-gcc accepts -Wlogical-not-parentheses | configure:23127: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -Wlogical-not-parentheses conftest.c >&5 | configure:23127: $? = 0 | configure:23141: result: yes | configure:23151: checking whether x86_64-gentoo-linux-musl-gcc accepts -Wsizeof-array-argument | configure:23163: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -Wsizeof-array-argument conftest.c >&5 | configure:23163: $? = 0 | configure:23177: result: yes | configure:23187: checking whether x86_64-gentoo-linux-musl-gcc accepts -Wbool-compare | configure:23199: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -Wbool-compare conftest.c >&5 | configure:23199: $? = 0 | configure:23213: result: yes | configure:23223: checking whether x86_64-gentoo-linux-musl-gcc accepts -Wshift-negative-value | configure:23235: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -Wshift-negative-value conftest.c >&5 | configure:23235: $? = 0 | configure:23249: result: yes | configure:23259: checking whether x86_64-gentoo-linux-musl-gcc accepts -Wduplicated-cond | configure:23271: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -Wduplicated-cond conftest.c >&5 | configure:23271: $? = 0 | configure:23285: result: yes | configure:23295: checking whether x86_64-gentoo-linux-musl-gcc accepts -Qunused-arguments | configure:23307: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -Qunused-arguments conftest.c >&5 | x86_64-gentoo-linux-musl-gcc: error: unrecognized command-line option '-Qunused-arguments' | configure:23307: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_PTHREAD_SPIN_LOCK 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define OPENSSL_SUPPORTS_SNI 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_DECL_SYS_SIGLIST 0 | | #define HAVE_DECL_MALLOC_TRIM 0 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | #define HAVE_STRUCT_MMSGHDR_MSG_LEN 1 | | #define HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID 1 | | #define HAVE_MLOCKALL 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_GETLOADAVG 1 | | #define HAVE_STATVFS 1 | | #define HAVE_GETMNTENT_R 1 | | #define HAVE_SENDMMSG 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_MNTENT_H 1 | | #define HAVE_SYS_STATVFS_H 1 | | #define HAVE_LINUX_TYPES_H 1 | | #define HAVE_LINUX_IF_ETHER_H 1 | | #define HAVE_LINUX_NET_NAMESPACE_H 1 | | #define HAVE_STDATOMIC_H 1 | | #define HAVE_LINUX_PERF_EVENT_H 1 | | #define HAVE_THREAD_LOCAL 1 | | #define HAVE_GCC4_ATOMICS 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_1B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_2B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_4B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_8B 1 | | #define HAVE_GLIBC_PTHREAD_SETNAME_NP 1 | | #define HAVE_CXX11 1 | | #define HAVE_POSIX_MEMALIGN 1 | | #define HAVE_LIBUNWIND_H 1 | | #define HAVE_UNWIND 1 | | /* end confdefs.h. */ | | int x; | configure:23321: result: no | configure:23331: checking whether x86_64-gentoo-linux-musl-gcc accepts -Wshadow | configure:23343: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -Wshadow conftest.c >&5 | configure:23343: $? = 0 | configure:23357: result: yes | configure:23367: checking whether x86_64-gentoo-linux-musl-gcc accepts -Wmultistatement-macros | configure:23379: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -Wmultistatement-macros conftest.c >&5 | configure:23379: $? = 0 | configure:23393: result: yes | configure:23403: checking whether x86_64-gentoo-linux-musl-gcc accepts -Wcast-align=strict | configure:23415: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -Wcast-align=strict conftest.c >&5 | configure:23415: $? = 0 | configure:23429: result: yes | configure:23439: checking whether x86_64-gentoo-linux-musl-gcc accepts -Wno-null-pointer-arithmetic | configure:23451: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -Wnull-pointer-arithmetic conftest.c >&5 | x86_64-gentoo-linux-musl-gcc: error: unrecognized command-line option '-Wnull-pointer-arithmetic'; did you mean '-Wno-pointer-arith'? | configure:23451: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_PTHREAD_SPIN_LOCK 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define OPENSSL_SUPPORTS_SNI 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_DECL_SYS_SIGLIST 0 | | #define HAVE_DECL_MALLOC_TRIM 0 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | #define HAVE_STRUCT_MMSGHDR_MSG_LEN 1 | | #define HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID 1 | | #define HAVE_MLOCKALL 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_GETLOADAVG 1 | | #define HAVE_STATVFS 1 | | #define HAVE_GETMNTENT_R 1 | | #define HAVE_SENDMMSG 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_MNTENT_H 1 | | #define HAVE_SYS_STATVFS_H 1 | | #define HAVE_LINUX_TYPES_H 1 | | #define HAVE_LINUX_IF_ETHER_H 1 | | #define HAVE_LINUX_NET_NAMESPACE_H 1 | | #define HAVE_STDATOMIC_H 1 | | #define HAVE_LINUX_PERF_EVENT_H 1 | | #define HAVE_THREAD_LOCAL 1 | | #define HAVE_GCC4_ATOMICS 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_1B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_2B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_4B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_8B 1 | | #define HAVE_GLIBC_PTHREAD_SETNAME_NP 1 | | #define HAVE_CXX11 1 | | #define HAVE_POSIX_MEMALIGN 1 | | #define HAVE_LIBUNWIND_H 1 | | #define HAVE_UNWIND 1 | | /* end confdefs.h. */ | | int x; | configure:23465: result: no | configure:23475: checking whether x86_64-gentoo-linux-musl-gcc accepts -Warray-bounds-pointer-arithmetic | configure:23487: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -Warray-bounds-pointer-arithmetic conftest.c >&5 | x86_64-gentoo-linux-musl-gcc: error: unrecognized command-line option '-Warray-bounds-pointer-arithmetic' | configure:23487: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.17.2" | | #define PACKAGE_STRING "openvswitch 2.17.2" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.17.2" | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_PTHREAD_SPIN_LOCK 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define OPENSSL_SUPPORTS_SNI 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_DECL_SYS_SIGLIST 0 | | #define HAVE_DECL_MALLOC_TRIM 0 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | #define HAVE_STRUCT_MMSGHDR_MSG_LEN 1 | | #define HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID 1 | | #define HAVE_MLOCKALL 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_GETLOADAVG 1 | | #define HAVE_STATVFS 1 | | #define HAVE_GETMNTENT_R 1 | | #define HAVE_SENDMMSG 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_MNTENT_H 1 | | #define HAVE_SYS_STATVFS_H 1 | | #define HAVE_LINUX_TYPES_H 1 | | #define HAVE_LINUX_IF_ETHER_H 1 | | #define HAVE_LINUX_NET_NAMESPACE_H 1 | | #define HAVE_STDATOMIC_H 1 | | #define HAVE_LINUX_PERF_EVENT_H 1 | | #define HAVE_THREAD_LOCAL 1 | | #define HAVE_GCC4_ATOMICS 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_1B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_2B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_4B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_8B 1 | | #define HAVE_GLIBC_PTHREAD_SETNAME_NP 1 | | #define HAVE_CXX11 1 | | #define HAVE_POSIX_MEMALIGN 1 | | #define HAVE_LIBUNWIND_H 1 | | #define HAVE_UNWIND 1 | | /* end confdefs.h. */ | | int x; | configure:23501: result: no | configure:23511: checking whether x86_64-gentoo-linux-musl-gcc accepts -Wno-unused | configure:23523: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -Wunused conftest.c >&5 | configure:23523: $? = 0 | configure:23537: result: yes | configure:23554: checking whether x86_64-gentoo-linux-musl-gcc accepts -Wno-unused-parameter | configure:23566: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -Wunused-parameter conftest.c >&5 | configure:23566: $? = 0 | configure:23580: result: yes | configure:23622: checking target hint for cgcc | configure:23637: result: x86_64 | configure:23648: checking vector options for cgcc | configure:23652: result: -D__MMX__=1 -D__MMX_WITH_SSE__=1 -D__SSE2_MATH__=1 -D__SSE_MATH__=1 -D__SSE__=1 -D__SSE2__=1 | configure:23693: checking whether DPCLS Autovalidator is default implementation | configure:23696: result: no | configure:23715: checking whether DPIF AVX512 is default implementation | configure:23718: result: no | configure:23737: checking whether MFEX Autovalidator is default implementation | configure:23740: result: no | configure:23751: checking binutils avx512 assembler checks passing | configure:23772: result: yes | configure:23789: checking whether x86_64-gentoo-linux-musl-gcc accepts -mavx512f -mavx512vpopcntdq | configure:23801: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Werror -mavx512f -mavx512vpopcntdq conftest.c >&5 | configure:23801: $? = 0 | configure:23815: result: yes | configure:31984: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:31984: $? = 0 | configure:32007: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:32007: $? = 0 | configure:32015: checking for struct tcf_t.firstuse | configure:32015: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:32015: $? = 0 | configure:32015: result: yes | configure:32040: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:32040: $? = 0 | configure:32062: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:32062: $? = 0 | configure:32084: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:32084: $? = 0 | configure:32106: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:32106: $? = 0 | configure:32128: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:32128: $? = 0 | configure:32150: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:32150: $? = 0 | configure:32176: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:32176: $? = 0 | configure:32199: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:32199: $? = 0 | configure:32216: checking whether dpdk is enabled | configure:32219: result: no | configure:33249: x86_64-gentoo-linux-musl-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | conftest.c:90:1: note: '#pragma message: Checking for pragma message' | 90 | _Pragma("message(\"Checking for pragma message\")") | | ^~~~~~~ | configure:33249: $? = 0 | configure:33303: checking whether make supports nested variables | configure:33321: result: yes | configure:33434: checking that generated files are newer than configure | configure:33440: result: done | configure:33587: creating ./config.status | | ## ---------------------- ## | ## Running config.status. ## | ## ---------------------- ## | | This file was extended by openvswitch config.status 2.17.2, which was | generated by GNU Autoconf 2.71. Invocation command line was | | CONFIG_FILES = | CONFIG_HEADERS = | CONFIG_LINKS = | CONFIG_COMMANDS = | $ ./config.status | | on gf.packet.net | | config.status:1355: creating lib/stdio.h | config.status:1355: creating lib/string.h | config.status:1355: creating ovsdb/libovsdb.sym | config.status:1355: creating ofproto/libofproto.sym | config.status:1355: creating lib/libsflow.sym | config.status:1355: creating lib/libopenvswitch.sym | config.status:1355: creating vtep/libvtep.sym | config.status:1355: creating Makefile | config.status:1355: creating datapath/Makefile | config.status:1355: creating datapath/linux/Kbuild | config.status:1355: creating datapath/linux/Makefile | config.status:1355: creating datapath/linux/Makefile.main | config.status:1355: creating tests/atlocal | config.status:1355: creating lib/libopenvswitch.pc | config.status:1355: creating lib/libsflow.pc | config.status:1355: creating ofproto/libofproto.pc | config.status:1355: creating ovsdb/libovsdb.pc | config.status:1355: creating include/openvswitch/version.h | config.status:1355: creating config.h | config.status:1584: executing tests/atconfig commands | config.status:1584: executing depfiles commands | config.status:1584: executing libtool commands | config.status:1584: executing include/openflow/openflow.h.stamp commands | config.status:1584: executing utilities/bugtool/dummy commands | config.status:1584: executing ipsec/dummy commands | | ## ---------------- ## | ## Cache variables. ## | ## ---------------- ## | | ac_cv_build=x86_64-gentoo-linux-musl | ac_cv_c_bigendian=no | ac_cv_c_compiler_gnu=yes | ac_cv_c_undeclared_builtin_options='none needed' | ac_cv_cxx_compiler_gnu=yes | ac_cv_env_CCC_set= | ac_cv_env_CCC_value= | ac_cv_env_CC_set= | ac_cv_env_CC_value= | ac_cv_env_CFLAGS_set=set | ac_cv_env_CFLAGS_value='-O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0' | ac_cv_env_CPPFLAGS_set= | ac_cv_env_CPPFLAGS_value= | ac_cv_env_CPP_set= | ac_cv_env_CPP_value= | ac_cv_env_CXXCPP_set= | ac_cv_env_CXXCPP_value= | ac_cv_env_CXXFLAGS_set=set | ac_cv_env_CXXFLAGS_value='-O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0' | ac_cv_env_CXX_set= | ac_cv_env_CXX_value= | ac_cv_env_DPDK_CFLAGS_set= | ac_cv_env_DPDK_CFLAGS_value= | ac_cv_env_DPDK_LIBS_set= | ac_cv_env_DPDK_LIBS_value= | ac_cv_env_KARCH_set= | ac_cv_env_KARCH_value= | ac_cv_env_LDFLAGS_set=set | ac_cv_env_LDFLAGS_value='-Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0' | ac_cv_env_LIBS_set= | ac_cv_env_LIBS_value= | ac_cv_env_LT_SYS_LIBRARY_PATH_set= | ac_cv_env_LT_SYS_LIBRARY_PATH_value= | ac_cv_env_PKG_CONFIG_LIBDIR_set= | ac_cv_env_PKG_CONFIG_LIBDIR_value= | ac_cv_env_PKG_CONFIG_PATH_set=set | ac_cv_env_PKG_CONFIG_PATH_value=/var/tmp/portage/net-misc/openvswitch-2.17.2-r1/temp/python3.10/pkgconfig | ac_cv_env_PKG_CONFIG_set= | ac_cv_env_PKG_CONFIG_value= | ac_cv_env_PYTHON3_set=set | ac_cv_env_PYTHON3_value=/usr/bin/python3.10 | ac_cv_env_SPHINXBUILD_set= | ac_cv_env_SPHINXBUILD_value= | ac_cv_env_build_alias_set=set | ac_cv_env_build_alias_value=x86_64-gentoo-linux-musl | ac_cv_env_host_alias_set=set | ac_cv_env_host_alias_value=x86_64-gentoo-linux-musl | ac_cv_env_target_alias_set= | ac_cv_env_target_alias_value= | ac_cv_func_clock_gettime=yes | ac_cv_func_getloadavg=yes | ac_cv_func_getmntent_r=yes | ac_cv_func_mlockall=yes | ac_cv_func_pthread_set_name_np=no | ac_cv_func_pthread_spin_lock=yes | ac_cv_func_sendmmsg=yes | ac_cv_func_statvfs=yes | ac_cv_func_strerror_r_char_p=no | ac_cv_func_strnlen=yes | ac_cv_have_decl_SSL_set_tlsext_host_name=yes | ac_cv_have_decl_malloc_trim=no | ac_cv_have_decl_strerror_r=yes | ac_cv_have_decl_sys_siglist=no | ac_cv_header_bits_floatn_common_h=no | ac_cv_header_dlfcn_h=yes | ac_cv_header_inttypes_h=yes | ac_cv_header_libunwind_h=yes | ac_cv_header_linux_if_ether_h=yes | ac_cv_header_linux_net_namespace_h=yes | ac_cv_header_linux_netlink_h=yes | ac_cv_header_linux_perf_event_h=yes | ac_cv_header_linux_types_h=yes | ac_cv_header_minix_config_h=no | ac_cv_header_mntent_h=yes | ac_cv_header_net_if_dl_h=no | ac_cv_header_net_if_mib_h=no | ac_cv_header_stdatomic_h=yes | ac_cv_header_stdint_h=yes | ac_cv_header_stdio_h=yes | ac_cv_header_stdlib_h=yes | ac_cv_header_string_h=yes | ac_cv_header_strings_h=yes | ac_cv_header_sys_stat_h=yes | ac_cv_header_sys_statvfs_h=yes | ac_cv_header_sys_types_h=yes | ac_cv_header_unistd_h=yes | ac_cv_header_valgrind_valgrind_h=no | ac_cv_header_wchar_h=yes | ac_cv_header_windows_h=no | ac_cv_host=x86_64-gentoo-linux-musl | ac_cv_lib_cap_ng_capng_clear=yes | ac_cv_lib_socket_connect=no | ac_cv_lib_unbound_ub_ctx_create=no | ac_cv_lib_unwind_unw_backtrace=yes | ac_cv_member_struct_ifreq_ifr_flagshigh=no | ac_cv_member_struct_mmsghdr_msg_len=yes | ac_cv_member_struct_sockaddr_in6_sin6_scope_id=yes | ac_cv_member_struct_stat_st_mtim_tv_nsec=yes | ac_cv_member_struct_stat_st_mtimensec=no | ac_cv_member_struct_tcf_t_firstuse=yes | ac_cv_objext=o | ac_cv_path_EGREP='/bin/grep -E' | ac_cv_path_FGREP='/bin/grep -F' | ac_cv_path_GREP=/bin/grep | ac_cv_path_PKG_CONFIG=/usr/bin/x86_64-gentoo-linux-musl-pkg-config | ac_cv_path_SED=/bin/sed | ac_cv_path_install='/usr/lib/portage/python3.10/ebuild-helpers/xattr/install -c' | ac_cv_path_lt_DD=/bin/dd | ac_cv_path_mkdir=/bin/mkdir | ac_cv_prog_AR=x86_64-gentoo-linux-musl-ar | ac_cv_prog_AWK=gawk | ac_cv_prog_CC=x86_64-gentoo-linux-musl-gcc | ac_cv_prog_CPP='x86_64-gentoo-linux-musl-gcc -E' | ac_cv_prog_CXX=x86_64-gentoo-linux-musl-g++ | ac_cv_prog_CXXCPP='x86_64-gentoo-linux-musl-g++ -E' | ac_cv_prog_OBJDUMP=x86_64-gentoo-linux-musl-objdump | ac_cv_prog_RANLIB=x86_64-gentoo-linux-musl-ranlib | ac_cv_prog_STRIP=x86_64-gentoo-linux-musl-strip | ac_cv_prog_ac_ct_FILECMD=file | ac_cv_prog_cc_c11= | ac_cv_prog_cc_g=yes | ac_cv_prog_cc_stdc= | ac_cv_prog_cxx_11=no | ac_cv_prog_cxx_cxx11= | ac_cv_prog_cxx_g=yes | ac_cv_prog_cxx_stdcxx= | ac_cv_prog_make_make_set=yes | ac_cv_safe_to_define___extensions__=yes | ac_cv_search___atomic_load_8=-latomic | ac_cv_search_aio_write='none required' | ac_cv_search_backtrace=no | ac_cv_search_clock_gettime='none required' | ac_cv_search_gethostbyname='none required' | ac_cv_search_pow='none required' | ac_cv_search_pthread_rwlock_tryrdlock='none required' | ac_cv_search_pthread_rwlockattr_destroy='none required' | ac_cv_search_pthread_spin_lock='none required' | ac_cv_search_timer_create='none required' | ac_cv_should_define__xopen_source=no | ac_cv_sparse_target=x86_64 | ac_cv_sys_file_offset_bits=no | ac_cv_sys_largefile_CC=no | am_cv_CC_dependencies_compiler_type=none | am_cv_CXX_dependencies_compiler_type=none | am_cv_make_support_nested_variables=yes | am_cv_prog_cc_c_o=yes | am_cv_prog_tar_pax=gnutar | ax_cv_cxx_compile_cxx11=yes | ax_cv_func_posix_memalign_works=yes | cl_cv_x64=no | gl_cv_have_include_next=yes | gl_cv_next_stdio_h='' | gl_cv_next_string_h='' | gl_cv_pragma_columns=no | lt_cv_ar_at_file=@ | lt_cv_deplibs_check_method=pass_all | lt_cv_file_magic_cmd='$MAGIC_CMD' | lt_cv_file_magic_test_file= | lt_cv_ld_reload_flag=-r | lt_cv_nm_interface='BSD nm' | lt_cv_objdir=.libs | lt_cv_path_LD=/usr/x86_64-gentoo-linux-musl/bin/ld | lt_cv_path_LDCXX='/usr/x86_64-gentoo-linux-musl/bin/ld -m elf_x86_64' | lt_cv_path_NM='/usr/bin/x86_64-gentoo-linux-musl-nm -B' | lt_cv_path_mainfest_tool=no | lt_cv_prog_compiler_c_o=yes | lt_cv_prog_compiler_c_o_CXX=yes | lt_cv_prog_compiler_pic='-fPIC -DPIC' | lt_cv_prog_compiler_pic_CXX='-fPIC -DPIC' | lt_cv_prog_compiler_pic_works=yes | lt_cv_prog_compiler_pic_works_CXX=yes | lt_cv_prog_compiler_rtti_exceptions=no | lt_cv_prog_compiler_static_works=yes | lt_cv_prog_compiler_static_works_CXX=yes | lt_cv_prog_gnu_ld=yes | lt_cv_prog_gnu_ldcxx=yes | lt_cv_sharedlib_from_linklib_cmd='printf %s\n' | lt_cv_shlibpath_overrides_runpath=yes | lt_cv_sys_global_symbol_pipe='/bin/sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | /bin/sed '\''/ __gnu_lto/d'\''' | lt_cv_sys_global_symbol_to_c_name_address='/bin/sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"\1", (void *) \&\1},/p'\''' | lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='/bin/sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/ {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"lib\1", (void *) \&\1},/p'\''' | lt_cv_sys_global_symbol_to_cdecl='/bin/sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' | lt_cv_sys_global_symbol_to_import= | lt_cv_sys_max_cmd_len=98304 | lt_cv_to_host_file_cmd=func_convert_file_noop | lt_cv_to_tool_file_cmd=func_convert_file_noop | lt_cv_truncate_bin='/bin/dd bs=4096 count=1' | ovs_cv__Qunused_arguments=no | ovs_cv__Wall=yes | ovs_cv__Warray_bounds_pointer_arithmetic=no | ovs_cv__Wbad_function_cast=yes | ovs_cv__Wbool_compare=yes | ovs_cv__Wcast_align=yes | ovs_cv__Wcast_align_strict=yes | ovs_cv__Wduplicated_cond=yes | ovs_cv__Werror=yes | ovs_cv__Wextra=yes | ovs_cv__Wformat_Wformat_security=yes | ovs_cv__Wlogical_not_parentheses=yes | ovs_cv__Wmissing_field_initializers=yes | ovs_cv__Wmissing_prototypes=yes | ovs_cv__Wmultistatement_macros=yes | ovs_cv__Wno_null_pointer_arithmetic=no | ovs_cv__Wno_sign_compare=yes | ovs_cv__Wno_unused=yes | ovs_cv__Wno_unused_parameter=yes | ovs_cv__Wold_style_definition=yes | ovs_cv__Wpointer_arith=yes | ovs_cv__Wshadow=yes | ovs_cv__Wshift_negative_value=yes | ovs_cv__Wsizeof_array_argument=yes | ovs_cv__Wstrict_prototypes=yes | ovs_cv__Wswitch_bool=yes | ovs_cv__Wswitch_enum=yes | ovs_cv__Wthread_safety=no | ovs_cv__Wunused_parameter=yes | ovs_cv__fno_strict_aliasing=yes | ovs_cv__mavx512f_mavx512vpopcntdq=yes | ovs_cv_atomic_always_lock_free_1=1 | ovs_cv_atomic_always_lock_free_2=1 | ovs_cv_atomic_always_lock_free_4=1 | ovs_cv_atomic_always_lock_free_8=1 | ovs_cv_binutils_avx512_good=yes | ovs_cv_dot=no | ovs_cv_flake8=no | ovs_cv_gcc4_atomics=yes | ovs_cv_groff=yes | ovs_cv_linux=true | ovs_cv_pthread_setname_np=glibc | ovs_cv_python3=/usr/bin/python3.10 | ovs_cv_pyuic4=no | ovs_cv_strtok_r_bug=no | ovs_cv_thread_local=yes | ovs_cv_xsversion=none | | ## ----------------- ## | ## Output variables. ## | ## ----------------- ## | | ACLOCAL='${SHELL} '\''/var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/build-aux/missing'\'' aclocal-1.16' | AMDEPBACKSLASH='' | AMDEP_FALSE='' | AMDEP_TRUE='#' | AMTAR='$${TAR-tar}' | AM_BACKSLASH='\' | AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' | AM_DEFAULT_VERBOSITY='1' | AM_V='$(V)' | AR='x86_64-gentoo-linux-musl-ar' | AUTOCONF='${SHELL} '\''/var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/build-aux/missing'\'' autoconf' | AUTOHEADER='${SHELL} '\''/var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/build-aux/missing'\'' autoheader' | AUTOM4TE='${SHELL} '\''/var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/build-aux/missing'\'' autom4te' | AUTOMAKE='${SHELL} '\''/var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/build-aux/missing'\'' automake-1.16' | AWK='gawk' | CAPNG_LDADD='-lcap-ng' | CC='$(if $(C:0=),env REAL_CC="x86_64-gentoo-linux-musl-gcc" CHECK="$(SPARSE) $(SPARSE_WERROR) -I $(top_srcdir)/include/sparse -I $(top_srcdir)/include $(SPARSEFLAGS) $(SPARSE_EXTRA_INCLUDES) " cgcc $(CGCCFLAGS),x86_64-gentoo-linux-musl-gcc)' | CCDEPMODE='depmode=none' | CFLAGS='-O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0' | CGCCFLAGS='-target=x86_64 -target=host_os_specs -D__MMX__=1 -D__MMX_WITH_SSE__=1 -D__SSE2_MATH__=1 -D__SSE_MATH__=1 -D__SSE__=1 -D__SSE2__=1 ' | CPP='x86_64-gentoo-linux-musl-gcc -E' | CPPFLAGS='' | CSCOPE='cscope' | CTAGS='ctags' | CXX='x86_64-gentoo-linux-musl-g++' | CXXCPP='x86_64-gentoo-linux-musl-g++ -E' | CXXDEPMODE='depmode=none' | CXXFLAGS='-O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0' | CYGPATH_W='echo' | DBDIR='/var/lib/openvswitch' | DEFS='-DHAVE_CONFIG_H' | DEPDIR='.deps' | DLLTOOL='false' | DPDK_CFLAGS='' | DPDK_LIBS='' | DPDK_NETDEV_FALSE='' | DPDK_NETDEV_TRUE='#' | DPDK_vswitchd_LDFLAGS='' | DSYMUTIL='' | DUMPBIN='' | ECHO_C='' | ECHO_N='-n' | ECHO_T='' | EGREP='/bin/grep -E' | ENABLE_SPARSE_BY_DEFAULT_FALSE='' | ENABLE_SPARSE_BY_DEFAULT_TRUE='#' | ETAGS='etags' | EXEEXT='' | FGREP='/bin/grep -F' | FILECMD='file' | FLAKE8_WERROR='-' | GREP='/bin/grep' | HAVE_AF_XDP_FALSE='' | HAVE_AF_XDP_TRUE='#' | HAVE_AVX512F_FALSE='#' | HAVE_AVX512F_TRUE='' | HAVE_CXX11='1' | HAVE_CXX_FALSE='' | HAVE_CXX_TRUE='#' | HAVE_DOT_FALSE='' | HAVE_DOT_TRUE='#' | HAVE_FLAKE8_FALSE='' | HAVE_FLAKE8_TRUE='#' | HAVE_GROFF_FALSE='#' | HAVE_GROFF_TRUE='' | HAVE_IF_DL_FALSE='' | HAVE_IF_DL_TRUE='#' | HAVE_LD_AVX512_GOOD_FALSE='#' | HAVE_LD_AVX512_GOOD_TRUE='' | HAVE_LIBCAPNG='yes' | HAVE_LIBCAPNG_FALSE='#' | HAVE_LIBCAPNG_TRUE='' | HAVE_NETLINK_FALSE='#' | HAVE_NETLINK_TRUE='' | HAVE_OPENSSL='yes' | HAVE_OPENSSL_FALSE='#' | HAVE_OPENSSL_TRUE='' | HAVE_POSIX_AIO_FALSE='#' | HAVE_POSIX_AIO_TRUE='' | HAVE_SPHINX_FALSE='' | HAVE_SPHINX_TRUE='#' | HAVE_UNBOUND='no' | HAVE_UNBOUND_FALSE='' | HAVE_UNBOUND_TRUE='#' | HAVE_UNWIND='yes' | HAVE_UNWIND_FALSE='#' | HAVE_UNWIND_TRUE='' | HAVE_USDT_PROBES_FALSE='' | HAVE_USDT_PROBES_TRUE='#' | HAVE_WNO_UNUSED_FALSE='#' | HAVE_WNO_UNUSED_PARAMETER_FALSE='#' | HAVE_WNO_UNUSED_PARAMETER_TRUE='' | HAVE_WNO_UNUSED_TRUE='' | INCLUDE_NEXT='include_next' | INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next' | INSTALL_DATA='${INSTALL} -m 644' | INSTALL_PROGRAM='${INSTALL}' | INSTALL_SCRIPT='${INSTALL}' | INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' | KARCH='' | KBUILD='' | LD='/usr/x86_64-gentoo-linux-musl/bin/ld -m elf_x86_64' | LDFLAGS='-Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0' | LIBBPF_LDADD='' | LIBOBJS='' | LIBS='-latomic -lunwind' | LIBTOOL='$(SHELL) $(top_builddir)/libtool' | LINUX_ENABLED_FALSE='' | LINUX_ENABLED_TRUE='#' | LINUX_FALSE='#' | LINUX_TRUE='' | LIPO='' | LN_S='ln -s' | LOGDIR='/var/log/openvswitch' | LTLIBOBJS='' | LT_AGE='0' | LT_CURRENT='0' | LT_REVISION='0' | LT_SYS_LIBRARY_PATH='' | MAKEINFO='${SHELL} '\''/var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/build-aux/missing'\'' makeinfo' | MANIFEST_TOOL=':' | MKDIR_P='/bin/mkdir -p' | MSVC64_LDFLAGS='' | MSVC_CFLAGS='' | MSVC_PLATFORM='x86' | NDEBUG_FALSE='#' | NDEBUG_TRUE='' | NEXT_AS_FIRST_DIRECTIVE_STDIO_H='' | NEXT_AS_FIRST_DIRECTIVE_STRING_H='' | NEXT_STDIO_H='' | NEXT_STRING_H='' | NM='/usr/bin/x86_64-gentoo-linux-musl-nm -B' | NMEDIT='' | OBJDUMP='x86_64-gentoo-linux-musl-objdump' | OBJEXT='o' | OPENSSL_SUPPORTS_SNI='yes' | OTOOL64='' | OTOOL='' | OVS_CFLAGS='' | OVS_CTAGS_IDENTIFIERS_LIST='OVS_LOCKABLE OVS_NO_THREAD_SAFETY_ANALYSIS OVS_REQ_RDLOCK+ OVS_ACQ_RDLOCK+ OVS_REQ_WRLOCK+ OVS_ACQ_WRLOCK+ OVS_REQUIRES+ OVS_ACQUIRES+ OVS_TRY_WRLOCK+ OVS_TRY_RDLOCK+ OVS_TRY_LOCK+ OVS_GUARDED_BY+ OVS_EXCLUDED+ OVS_RELEASES+ OVS_ACQ_BEFORE+ OVS_ACQ_AFTER+' | OVS_LDFLAGS='' | OVS_LTINFO='-release 2.17 -version-info 0:2' | PACKAGE='openvswitch' | PACKAGE_BUGREPORT='bugs@openvswitch.org' | PACKAGE_NAME='openvswitch' | PACKAGE_STRING='openvswitch 2.17.2' | PACKAGE_TARNAME='openvswitch' | PACKAGE_URL='' | PACKAGE_VERSION='2.17.2' | PATH_SEPARATOR=':' | PKG_CONFIG='/usr/bin/x86_64-gentoo-linux-musl-pkg-config' | PKG_CONFIG_LIBDIR='' | PKG_CONFIG_PATH='/var/tmp/portage/net-misc/openvswitch-2.17.2-r1/temp/python3.10/pkgconfig' | PKIDIR='/etc/ssl/openvswitch' | PRAGMA_COLUMNS='' | PRAGMA_SYSTEM_HEADER='#pragma GCC system_header' | PTHREAD_INCLUDES='' | PTHREAD_LDFLAGS='' | PTHREAD_LIBS='' | PTHREAD_WIN32_DIR_DLL='' | PTHREAD_WIN32_DIR_DLL_WIN_FORM='' | PYTHON3='/usr/bin/python3.10' | RANLIB='x86_64-gentoo-linux-musl-ranlib' | RUNDIR='/var/run/openvswitch' | SED='/bin/sed' | SET_MAKE='' | SHELL='/bin/bash' | SPARSE='sparse' | SPARSEFLAGS='-m64' | SPARSE_EXTRA_INCLUDES='' | SPARSE_WERROR='' | SPHINXBUILD='none' | SSL_DIR='' | SSL_INCLUDES='' | SSL_LDFLAGS='' | SSL_LIBS='-lssl -lcrypto ' | STRIP='x86_64-gentoo-linux-musl-strip' | VERSION='2.17.2' | VSTUDIO_CONFIG='' | VSTUDIO_DDK_FALSE='' | VSTUDIO_DDK_TRUE='#' | VSTUDIO_WIN10_FALSE='' | VSTUDIO_WIN10_TRUE='#' | VSTUDIO_WIN8_1_FALSE='' | VSTUDIO_WIN8_1_TRUE='#' | VSTUDIO_WIN8_FALSE='' | VSTUDIO_WIN8_TRUE='#' | WARNING_FLAGS=' -Wall -Wextra -Wno-sign-compare -Wpointer-arith -Wformat -Wformat-security -Wswitch-enum -Wunused-parameter -Wbad-function-cast -Wcast-align -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-field-initializers -fno-strict-aliasing -Wswitch-bool -Wlogical-not-parentheses -Wsizeof-array-argument -Wbool-compare -Wshift-negative-value -Wduplicated-cond -Wshadow -Wmultistatement-macros -Wcast-align=strict' | WIN32_FALSE='' | WIN32_TRUE='#' | ac_ct_AR='' | ac_ct_CC='' | ac_ct_CXX='' | ac_ct_DUMPBIN='' | am__EXEEXT_FALSE='' | am__EXEEXT_TRUE='#' | am__fastdepCC_FALSE='' | am__fastdepCC_TRUE='#' | am__fastdepCXX_FALSE='' | am__fastdepCXX_TRUE='#' | am__include='include' | am__isrc='' | am__leading_dot='.' | am__nodep='' | am__quote='' | am__tar='tar --format=posix -chf - "$$tardir"' | am__untar='tar -xf -' | bindir='${exec_prefix}/bin' | build='x86_64-gentoo-linux-musl' | build_alias='x86_64-gentoo-linux-musl' | build_cpu='x86_64' | build_os='linux-musl' | build_vendor='gentoo' | datadir='/usr/share' | datarootdir='/usr/share' | docdir='/usr/share/doc/openvswitch-2.17.2-r1' | dvidir='${docdir}' | exec_prefix='${prefix}' | host='x86_64-gentoo-linux-musl' | host_alias='x86_64-gentoo-linux-musl' | host_cpu='x86_64' | host_os='linux-musl' | host_vendor='gentoo' | htmldir='/usr/share/doc/openvswitch-2.17.2-r1/html' | includedir='${prefix}/include' | infodir='/usr/share/info' | install_sh='${SHELL} /var/tmp/portage/net-misc/openvswitch-2.17.2-r1/work/openvswitch-2.17.2/build-aux/install-sh' | libdir='/usr/lib' | libexecdir='${exec_prefix}/libexec' | localedir='${datarootdir}/locale' | localstatedir='/var/lib' | mandir='/usr/share/man' | mkdir_p='$(MKDIR_P)' | oldincludedir='/usr/include' | pdfdir='${docdir}' | prefix='/usr' | program_transform_name='s,x,x,' | psdir='${docdir}' | runstatedir='${localstatedir}/run' | sbindir='${exec_prefix}/sbin' | sharedstatedir='${prefix}/com' | sysconfdir='/etc' | target_alias='' | | ## ----------- ## | ## confdefs.h. ## | ## ----------- ## | | /* confdefs.h */ | #define PACKAGE_NAME "openvswitch" | #define PACKAGE_TARNAME "openvswitch" | #define PACKAGE_VERSION "2.17.2" | #define PACKAGE_STRING "openvswitch 2.17.2" | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | #define PACKAGE_URL "" | #define PACKAGE "openvswitch" | #define VERSION "2.17.2" | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define STDC_HEADERS 1 | #define _ALL_SOURCE 1 | #define _DARWIN_C_SOURCE 1 | #define _GNU_SOURCE 1 | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | #define _NETBSD_SOURCE 1 | #define _OPENBSD_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | #define __STDC_WANT_LIB_EXT2__ 1 | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | #define _TANDEM_SOURCE 1 | #define __EXTENSIONS__ 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_PTHREAD_SPIN_LOCK 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_NETLINK 1 | #define HAVE_OPENSSL 1 | #define OPENSSL_SUPPORTS_SNI 1 | #define HAVE_LIBCAPNG 1 | #define HAVE_DECL_SYS_SIGLIST 0 | #define HAVE_DECL_MALLOC_TRIM 0 | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | #define HAVE_STRUCT_MMSGHDR_MSG_LEN 1 | #define HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID 1 | #define HAVE_MLOCKALL 1 | #define HAVE_STRNLEN 1 | #define HAVE_GETLOADAVG 1 | #define HAVE_STATVFS 1 | #define HAVE_GETMNTENT_R 1 | #define HAVE_SENDMMSG 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_MNTENT_H 1 | #define HAVE_SYS_STATVFS_H 1 | #define HAVE_LINUX_TYPES_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_NET_NAMESPACE_H 1 | #define HAVE_STDATOMIC_H 1 | #define HAVE_LINUX_PERF_EVENT_H 1 | #define HAVE_THREAD_LOCAL 1 | #define HAVE_GCC4_ATOMICS 1 | #define ATOMIC_ALWAYS_LOCK_FREE_1B 1 | #define ATOMIC_ALWAYS_LOCK_FREE_2B 1 | #define ATOMIC_ALWAYS_LOCK_FREE_4B 1 | #define ATOMIC_ALWAYS_LOCK_FREE_8B 1 | #define HAVE_GLIBC_PTHREAD_SETNAME_NP 1 | #define HAVE_CXX11 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_LIBUNWIND_H 1 | #define HAVE_UNWIND 1 | #define HAVE_LD_AVX512_GOOD 1 | #define HAVE_AVX512F 1 | #define HAVE_NLA_BITFIELD32 1 | #define HAVE_TCA_POLICE_PKTRATE64 1 | #define HAVE_STRUCT_TCF_T_FIRSTUSE 1 | #define HAVE_TCA_VLAN_PUSH_VLAN_PRIORITY 1 | #define HAVE_TCA_MPLS_TTL 1 | #define HAVE_TCA_TUNNEL_KEY_ENC_TTL 1 | #define HAVE_TCA_PEDIT_KEY_EX_HDR_TYPE_UDP 1 | #define HAVE_TCA_SKBEDIT_FLAGS 1 | #define HAVE_TCA_STATS_PKT64 1 | #define HAVE_SCTP_CONNTRACK_HEARTBEATS 1 | #define HAVE_VIRTIO_TYPES 1 | #define HAVE_PRAGMA_MESSAGE 1 | | configure: exit 0