[ovs-dev] [PATCH v2] ovn: Detect and prevent duplicate address assignments.

Ben Pfaff blp at ovn.org
Wed Sep 5 22:16:08 UTC 2018


On Wed, Sep 05, 2018 at 05:36:52PM -0400, Mark Michelson wrote:
> This patch alters the 'ovn-nbctl lsp-set-addresses' command to check if
> the addresses being added are duplicates of already-set addresses. In
> the case of MAC addresses, it compares to all switch ports across the
> logical network. In the case of IP addresses, it only compares to other
> switch ports on the logical switch. Test cases have been added for this
> detection.
> 
> This patch also adds a warning message to ovn-northd if duplicate IPv4
> addresses are detected on a switch.
> 
> Signed-off-by: Mark Michelson <mmichels at redhat.com>
> ---
> v1 -> v2:
>  Fixed sparse warning from using htons() instead of htonl()

Thanks for passing along v2.

I get some test failures when I apply this to master:

    2636: ovn -- lsp deletion and broadcast-flow deletion on localnet FAILED (ovn.at:6301)
    2733: ovn-controller-vtep - vtep-macs 1               FAILED (ovn-controller-vtep.at:352)
    2734: ovn-controller-vtep - vtep-macs 2               FAILED (ovn-controller-vtep.at:416)
    2627: ovn -- ipam                                     FAILED (ovn.at:5613)

I'm attaching the full testsuite.log.
-------------- next part --------------
## ------------------------------- ##
## openvswitch 2.10.90 test suite. ##
## ------------------------------- ##

testsuite: command line was:
  $ ../tests/testsuite -C tests AUTOTEST_PATH=utilities:vswitchd:ovsdb:vtep:tests:::ovn/controller-vtep:ovn/northd:ovn/utilities:ovn/controller -j10 2627 2636 2733 2734

## --------- ##
## Platform. ##
## --------- ##

hostname = sigabrt
uname -m = x86_64
uname -r = 3.16.0-4-amd64
uname -s = Linux
uname -v = #1 SMP Debian 3.16.36-1+deb8u1 (2016-09-03)

/usr/bin/uname -p = unknown
/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: /home/blp/nicira/ovs/_build/utilities
PATH: /home/blp/nicira/ovs/utilities
PATH: /home/blp/nicira/ovs/_build/vswitchd
PATH: /home/blp/nicira/ovs/vswitchd
PATH: /home/blp/nicira/ovs/_build/ovsdb
PATH: /home/blp/nicira/ovs/ovsdb
PATH: /home/blp/nicira/ovs/_build/vtep
PATH: /home/blp/nicira/ovs/vtep
PATH: /home/blp/nicira/ovs/_build/tests
PATH: /home/blp/nicira/ovs/tests
PATH: /home/blp/nicira/ovs/_build
PATH: /home/blp/nicira/ovs
PATH: /home/blp/nicira/ovs/_build/ovn/controller-vtep
PATH: /home/blp/nicira/ovs/ovn/controller-vtep
PATH: /home/blp/nicira/ovs/_build/ovn/northd
PATH: /home/blp/nicira/ovs/ovn/northd
PATH: /home/blp/nicira/ovs/_build/ovn/utilities
PATH: /home/blp/nicira/ovs/ovn/utilities
PATH: /home/blp/nicira/ovs/_build/ovn/controller
PATH: /home/blp/nicira/ovs/ovn/controller
PATH: /home/blp/bin
PATH: /usr/local/bin
PATH: /usr/bin
PATH: /bin
PATH: /usr/local/games
PATH: /usr/games

testsuite: atconfig:
| # Configurable variable values for building test suites.
| # Generated by ./config.status.
| # Copyright (C) 2012 Free Software Foundation, Inc.
| 
| # The test suite will define top_srcdir=/../.. etc.
| at_testdir='tests'
| abs_builddir='/home/blp/nicira/ovs/_build/tests'
| at_srcdir='../../tests'
| abs_srcdir='/home/blp/nicira/ovs/_build/../tests'
| at_top_srcdir='../..'
| abs_top_srcdir='/home/blp/nicira/ovs/_build/..'
| at_top_build_prefix='../'
| abs_top_builddir='/home/blp/nicira/ovs/_build'
| 
| # Backward compatibility with Autotest <= 2.59b:
| at_top_builddir=$at_top_build_prefix
| 
| AUTOTEST_PATH='tests'
| 
| SHELL=${CONFIG_SHELL-'/bin/bash'}

testsuite: atlocal:
| # -*- shell-script -*-
| HAVE_OPENSSL='yes'
| HAVE_PYTHON='yes'
| HAVE_PYTHON2='yes'
| HAVE_PYTHON3='yes'
| EGREP='/bin/grep -E'
| 
| if test x"$PYTHON" = x; then
|     PYTHON='/usr/bin/python2'
| fi
| 
| if test x"$PYTHON2" = x; then
|     PYTHON2='/usr/bin/python2'
| fi
| 
| if test x"$PYTHON3" = x; then
|     PYTHON3='/usr/bin/python3'
| 
|     # PYTHONCOERCECLOCALE=0 disables the Unicode compatibility warning on
|     # stderr that breaks almost any Python3 test (PEP 0538)
|     PYTHONCOERCECLOCALE=0
|     export PYTHONCOERCECLOCALE
| fi
| 
| 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_
| 
|     # Before glibc 2.11, the feature enabled by MALLOC_CHECK_ was not
|     # thread-safe.  See https://bugzilla.redhat.com/show_bug.cgi?id=585674 and
|     # in particular the patch attached there, which was applied to glibc CVS as
|     # "Restore locking in free_check." between 1.11 and 1.11.1.
|     vswitchd=$abs_top_builddir/vswitchd/ovs-vswitchd
|     glibc=`ldd $vswitchd | sed -n 's/^	libc\.[^ ]* => \([^ ]*\) .*/\1/p'`
|     glibc_version=`$glibc | sed -n '1s/.*version \([0-9]\{1,\}\.[0-9]\{1,\}\).*/\1/p'`
|     case $glibc_version in
|         2.[0-9] | 2.1[01]) mcheck=disabled ;;
|         *) mcheck=enabled ;;
|     esac
|     if test $mcheck = enabled; then
|         MALLOC_CHECK_=2; export MALLOC_CHECK_
|     else
|         echo >&2 "glibc $glibc_version detected, disabling memory checking"
|     fi
|     ;;
| FreeBSD)
|     case `uname -r` in
|     [789].*)
|         MALLOC_CONF=AJ
|         ;;
|     *)
|         MALLOC_CONF=abort:true,junk:true,redzone: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*)
|     IS_WIN32="yes"
|     IS_BSD="no"
|     ;;
| FreeBSD|NetBSD)
|     IS_WIN32="no"
|     IS_BSD="yes"
|     ;;
| *)
|     IS_WIN32="no"
|     IS_BSD="no"
|     ;;
| esac
| 
| if test x"$PYTHON3" != x && 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 whether to run IPv6 tests.
| $PYTHON -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 $PYTHON 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]'`
|     if test "$HAVE_PYTHON" = "yes"; then
|         result=$($PYTHON $abs_top_srcdir/tests/test-l7.py --help | grep "$1")
|         if test "x${result}" != x; then
|             eval ${var}="yes"
|         else
|             eval ${var}="no"
|         fi
|     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_TCPDUMP
| find_command tcpdump
| 
| 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
| 
| # Avoid OVN environment variables leaking in from external environment.
| unset OVN_NB_DB
| unset OVN_SB_DB
| 
| # 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

## ---------------- ##
## Tested programs. ##
## ---------------- ##

../../tests/testsuite.at:1: /home/blp/nicira/ovs/_build/vswitchd/ovs-vswitchd --version
ovs-vswitchd (Open vSwitch) 2.10.90

../../tests/testsuite.at:1: /home/blp/nicira/ovs/_build/utilities/ovs-vsctl --version
ovs-vsctl (Open vSwitch) 2.10.90
DB Schema 7.16.1

## ------------------ ##
## Running the tests. ##
## ------------------ ##
testsuite: starting at: Wed Sep  5 15:14:31 PDT 2018
testsuite: ending at: Wed Sep  5 15:14:32 PDT 2018
testsuite: test suite duration: 0h 0m 1s

## ------------- ##
## Test results. ##
## ------------- ##

ERROR: All 4 tests were run,
4 failed unexpectedly.

## ------------------------ ##
## Summary of the failures. ##
## ------------------------ ##
Failed tests:
openvswitch 2.10.90 test suite test groups:

 NUM: FILE-NAME:LINE     TEST-GROUP-NAME
      KEYWORDS

 2627: ovn.at:5303        ovn -- ipam
 2636: ovn.at:6276        ovn -- lsp deletion and broadcast-flow deletion on localnet
 2733: ovn-controller-vtep.at:331 ovn-controller-vtep - vtep-macs 1
      ovn
 2734: ovn-controller-vtep.at:403 ovn-controller-vtep - vtep-macs 2
      ovn

## ---------------------- ##
## Detailed failed tests. ##
## ---------------------- ##

#                             -*- compilation -*-
2627. ovn.at:5303: testing ovn -- ipam ...
creating ovn-sb database
creating ovn-nb database
starting ovn-northd
starting backup ovn-northd
../../tests/ovn.at:5312: ovn-nbctl get Logical-Switch-Port p0 dynamic_addresses
../../tests/ovn.at:5320: ovn-nbctl get Logical-Switch-Port p1 dynamic_addresses
../../tests/ovn.at:5323: ovn-nbctl get Logical-Switch-Port p2 dynamic_addresses
../../tests/ovn.at:5326: ovn-nbctl get Logical-Switch-Port p3 dynamic_addresses
../../tests/ovn.at:5329: ovn-nbctl get Logical-Switch-Port p4 dynamic_addresses
../../tests/ovn.at:5332: ovn-nbctl get Logical-Switch-Port p5 dynamic_addresses
../../tests/ovn.at:5335: ovn-nbctl get Logical-Switch-Port p6 dynamic_addresses
../../tests/ovn.at:5338: ovn-nbctl get Logical-Switch-Port p7 dynamic_addresses
../../tests/ovn.at:5341: ovn-nbctl get Logical-Switch-Port p8 dynamic_addresses
../../tests/ovn.at:5344: ovn-nbctl get Logical-Switch-Port p9 dynamic_addresses
../../tests/ovn.at:5353: ovn-nbctl get Logical-Switch-Port p10 dynamic_addresses
../../tests/ovn.at:5360: ovn-nbctl get Logical-Switch-Port p11 dynamic_addresses
../../tests/ovn.at:5363: ovn-nbctl get Logical-Switch-Port p12 dynamic_addresses
../../tests/ovn.at:5366: ovn-nbctl get Logical-Switch-Port p13 dynamic_addresses
../../tests/ovn.at:5369: ovn-nbctl get Logical-Switch-Port p14 dynamic_addresses
../../tests/ovn.at:5372: ovn-nbctl get Logical-Switch-Port p15 dynamic_addresses
../../tests/ovn.at:5375: ovn-nbctl get Logical-Switch-Port p16 dynamic_addresses
../../tests/ovn.at:5378: ovn-nbctl get Logical-Switch-Port p17 dynamic_addresses
../../tests/ovn.at:5381: ovn-nbctl get Logical-Switch-Port p18 dynamic_addresses
../../tests/ovn.at:5384: ovn-nbctl get Logical-Switch-Port p19 dynamic_addresses
../../tests/ovn.at:5392: ovn-nbctl get Logical-Switch-Port p20 dynamic_addresses
e89613fa-4052-4bee-bcec-600583cdc102
e32d8efa-d77f-429f-847c-48f4814ffc2a
../../tests/ovn.at:5403: ovn-nbctl get Logical-Switch-Port p21 dynamic_addresses
../../tests/ovn.at:5410: ovn-nbctl get Logical-Switch-Port p23 dynamic_addresses
../../tests/ovn.at:5418: ovn-nbctl get Logical-Switch-Port p26 dynamic_addresses
../../tests/ovn.at:5425: ovn-nbctl get Logical-Switch-Port p27 dynamic_addresses
../../tests/ovn.at:5430: ovn-nbctl get Logical-Switch-Port p28 dynamic_addresses
254250a0-246d-47ba-b4fc-2f414618be7b
ce386915-994d-4f00-8b0a-c85836eba697
../../tests/ovn.at:5444: ovn-nbctl get Logical-Switch-Port p30 dynamic_addresses
../../tests/ovn.at:5451: ovn-nbctl get Logical-Switch-Port p31 dynamic_addresses
../../tests/ovn.at:5459: ovn-nbctl get Logical-Switch-Port p31 dynamic_addresses
../../tests/ovn.at:5464: ovn-nbctl get Logical-Switch-Port p31 dynamic_addresses
../../tests/ovn.at:5469: ovn-nbctl get Logical-Switch-Port p31 dynamic_addresses
../../tests/ovn.at:5481: ovn-nbctl get Logical-Switch-Port p32 dynamic_addresses
../../tests/ovn.at:5488: ovn-nbctl get Logical-Switch-Port p33 dynamic_addresses
../../tests/ovn.at:5495: ovn-nbctl get Logical-Switch-Port p34 dynamic_addresses
../../tests/ovn.at:5503: ovn-nbctl get Logical-Switch-Port p35 dynamic_addresses
../../tests/ovn.at:5512: ovn-nbctl get Logical-Switch-Port p36 dynamic_addresses
../../tests/ovn.at:5518: ovn-nbctl get Logical-Switch-Port p36 dynamic_addresses
../../tests/ovn.at:5529: ovn-nbctl get Logical-Switch-Port p37 dynamic_addresses
../../tests/ovn.at:5539: ovn-nbctl get Logical-Switch-Port p38 dynamic_addresses
../../tests/ovn.at:5546: ovn-nbctl get Logical-Switch-Port p39 dynamic_addresses
../../tests/ovn.at:5554: ovn-nbctl get Logical-Switch-Port p40 dynamic_addresses
../../tests/ovn.at:5564: ovn-nbctl get Logical-Switch-Port p41 dynamic_addresses
../../tests/ovn.at:5570: ovn-nbctl get Logical-Switch-Port p41 dynamic_addresses
../../tests/ovn.at:5576: ovn-nbctl get Logical-Switch-Port p41 dynamic_addresses
../../tests/ovn.at:5582: ovn-nbctl get Logical-Switch-Port p41 dynamic_addresses
../../tests/ovn.at:5588: ovn-nbctl get Logical-Switch-Port p41 dynamic_addresses
../../tests/ovn.at:5594: ovn-nbctl get Logical-Switch-Port p41 dynamic_addresses
../../tests/ovn.at:5600: ovn-nbctl get Logical-Switch-Port p41 dynamic_addresses
../../tests/ovn.at:5606: ovn-nbctl get Logical-Switch-Port p41 dynamic_addresses
ovn-nbctl: Error on switch sw5: duplicate IPv4 address 192.168.1.2
../../tests/ovn.at:5613: ovn-nbctl get Logical-Switch-Port p41 dynamic_addresses
--- -	2018-09-05 15:14:32.573081899 -0700
+++ /home/blp/nicira/ovs/_build/tests/testsuite.dir/at-groups/2627/stdout	2018-09-05 15:14:32.568321660 -0700
@@ -1,2 +1,2 @@
-"f0:00:00:00:10:2b 192.168.1.3"
+"f0:00:00:00:10:2b 192.168.1.2"
 
2627. ovn.at:5303: 2627. ovn -- ipam (ovn.at:5303): FAILED (ovn.at:5613)

#                             -*- compilation -*-
2636. ovn.at:6276: testing ovn -- lsp deletion and broadcast-flow deletion on localnet ...
creating ovn-sb database
creating ovn-nb database
starting ovn-northd
starting backup ovn-northd
adding simulator 'main'
adding simulator 'hv1'
../../tests/ovn.at:6286: ovs-vsctl set Open_vSwitch . external-ids:ovn-bridge-mappings=physnet1:br-eth0
adding simulator 'hv2'
../../tests/ovn.at:6286: ovs-vsctl set Open_vSwitch . external-ids:ovn-bridge-mappings=physnet1:br-eth0
../../tests/ovn.at:6290: ovn-nbctl lsp-add lsw0 ln_port
../../tests/ovn.at:6291: ovn-nbctl lsp-set-addresses ln_port unknown
../../tests/ovn.at:6292: ovn-nbctl lsp-set-type ln_port localnet
../../tests/ovn.at:6293: ovn-nbctl lsp-set-options ln_port network_name=physnet1
../../tests/ovn.at:6297: ovn-nbctl lsp-add lsw0 localvif1
../../tests/ovn.at:6298: ovn-nbctl lsp-set-addresses localvif1 "f0:00:00:00:00:01 192.168.1.1"
../../tests/ovn.at:6299: ovn-nbctl lsp-set-port-security localvif1 "f0:00:00:00:00:01"
../../tests/ovn.at:6300: ovn-nbctl lsp-add lsw0 localvif2
../../tests/ovn.at:6301: ovn-nbctl lsp-set-addresses localvif2 "f0:00:00:00:00:01 192.168.1.2"
--- /dev/null	2018-07-07 08:02:12.276008806 -0700
+++ /home/blp/nicira/ovs/_build/tests/testsuite.dir/at-groups/2636/stderr	2018-09-05 15:14:32.216345027 -0700
@@ -0,0 +1 @@
+ovn-nbctl: Error on switch lsw0: duplicate ethernet address f0:00:00:00:00:01
../../tests/ovn.at:6301: exit code was 1, expected 0
2636. ovn.at:6276: 2636. ovn -- lsp deletion and broadcast-flow deletion on localnet (ovn.at:6276): FAILED (ovn.at:6301)

#                             -*- compilation -*-
2733. ovn-controller-vtep.at:331: testing ovn-controller-vtep - vtep-macs 1 ...
../../tests/ovn-controller-vtep.at:332: ovsdb-tool create vswitchd.db $abs_top_srcdir/vswitchd/vswitch.ovsschema
../../tests/ovn-controller-vtep.at:332: ovsdb-tool create $daemon.db $abs_top_srcdir/${daemon%%-*}/${daemon}.ovsschema
../../tests/ovn-controller-vtep.at:332: ovsdb-tool create $daemon.db $abs_top_srcdir/${daemon%%-*}/${daemon}.ovsschema
../../tests/ovn-controller-vtep.at:332: ovsdb-tool create $daemon.db $abs_top_srcdir/${daemon%%-*}/${daemon}.ovsschema
../../tests/ovn-controller-vtep.at:332: ovsdb-server --detach --no-chdir --pidfile --log-file --remote=punix:$OVS_RUNDIR/db.sock vswitchd.db vtep.db
stderr:
2018-09-05T22:14:31Z|00001|vlog|INFO|opened log file /home/blp/nicira/ovs/_build/tests/testsuite.dir/2733/ovsdb-server.log
../../tests/ovn-controller-vtep.at:332: ovsdb-server --detach --no-chdir --pidfile=ovsdb-nb-server.pid --log-file=ovsdb-nb-server.log --remote=punix:$OVS_RUNDIR/ovnnb_db.sock ovn-nb.db
stderr:
2018-09-05T22:14:31Z|00001|vlog|INFO|opened log file ovsdb-nb-server.log
../../tests/ovn-controller-vtep.at:332: ovsdb-server --detach --no-chdir --pidfile=ovsdb-sb-server.pid --log-file=ovsdb-sb-server.log --remote=punix:$OVS_RUNDIR/ovnsb_db.sock ovn-sb.db ovn-sb.db
stderr:
2018-09-05T22:14:31Z|00001|vlog|INFO|opened log file ovsdb-sb-server.log
../../tests/ovn-controller-vtep.at:332: sed < stderr '
/vlog|INFO|opened log file/d
/ovsdb_server|INFO|ovsdb-server (Open vSwitch)/d'
../../tests/ovn-controller-vtep.at:332: ovs-vswitchd --enable-dummy=system --disable-system --detach --no-chdir --pidfile --log-file -vvconn -vofproto_dpif
stderr:
2018-09-05T22:14:31Z|00001|vlog|INFO|opened log file /home/blp/nicira/ovs/_build/tests/testsuite.dir/2733/ovs-vswitchd.log
2018-09-05T22:14:31Z|00002|ovs_numa|INFO|Discovered 8 CPU cores on NUMA node 0
2018-09-05T22:14:31Z|00003|ovs_numa|INFO|Discovered 1 NUMA nodes and 8 CPU cores
2018-09-05T22:14:31Z|00004|reconnect|INFO|unix:/home/blp/nicira/ovs/_build/tests/testsuite.dir/2733/db.sock: connecting...
2018-09-05T22:14:31Z|00005|netlink_socket|INFO|netlink: could not enable listening to all nsid (Protocol not available)
2018-09-05T22:14:31Z|00006|reconnect|INFO|unix:/home/blp/nicira/ovs/_build/tests/testsuite.dir/2733/db.sock: connected
../../tests/ovn-controller-vtep.at:332: sed < stderr '
/ovs_numa|INFO|Discovered /d
/vlog|INFO|opened log file/d
/vswitchd|INFO|ovs-vswitchd (Open vSwitch)/d
/reconnect|INFO|/d
/ofproto|INFO|using datapath ID/d
/netlink_socket|INFO|netlink: could not enable listening to all nsid/d
/ofproto|INFO|datapath ID changed to fedcba9876543210/d'
../../tests/ovn-controller-vtep.at:332: ovs-vsctl -- add-br br-vtep \
              -- set bridge br-vtep datapath-type=dummy other-config:datapath-id=fedcba9876543210 other-config:hwaddr=aa:55:aa:55:00:00 protocols=[OpenFlow10,OpenFlow11,OpenFlow12,OpenFlow13,OpenFlow14,OpenFlow15] fail-mode=secure \
              -- add-port br-vtep p0 -- set Interface p0 type=dummy ofport_request=1 \
              -- add-port br-vtep p1 -- set Interface p1 type=dummy ofport_request=2
../../tests/ovn-controller-vtep.at:332: vtep-ctl add-ps br-vtep -- set Physical_Switch br-vtep tunnel_ips=1.2.3.4
../../tests/ovn-controller-vtep.at:332: ovs-vtep --log-file=ovs-vtep.log --pidfile=ovs-vtep.pid --detach br-vtep \
stderr:
../../tests/ovn-controller-vtep.at:332: sed < stderr '
/vlog|INFO|opened log file/d'
ovn-controller-vtep.at:332: waiting until test -n "`vtep-ctl show | grep Physical_Port`"...
ovn-controller-vtep.at:332: wait succeeded quickly
../../tests/ovn-controller-vtep.at:332: ovn-nbctl ls-add br-test
../../tests/ovn-controller-vtep.at:332: ovn-northd --detach --pidfile --log-file
stderr:
2018-09-05T22:14:32Z|00001|vlog|INFO|opened log file /home/blp/nicira/ovs/_build/tests/testsuite.dir/2733/ovn-northd.log
../../tests/ovn-controller-vtep.at:332: sed < stderr '
/vlog|INFO|opened log file/d'
../../tests/ovn-controller-vtep.at:332: ovn-controller-vtep --detach --pidfile --log-file --vtep-db=unix:$OVS_RUNDIR/db.sock --ovnsb-db=unix:$OVS_RUNDIR/ovnsb_db.sock
stderr:
2018-09-05T22:14:32Z|00001|vlog|INFO|opened log file /home/blp/nicira/ovs/_build/tests/testsuite.dir/2733/ovn-controller-vtep.log
../../tests/ovn-controller-vtep.at:332: sed < stderr '
/vlog|INFO|opened log file/d
/reconnect|INFO|/d'
../../tests/ovn-controller-vtep.at:336: ovn-nbctl lsp-add br-test vif0
../../tests/ovn-controller-vtep.at:337: ovn-nbctl lsp-set-addresses vif0 f0:ab:cd:ef:01:02
../../tests/ovn-controller-vtep.at:338: ovn-nbctl --timeout=10 --wait=sb sync
../../tests/ovn-controller-vtep.at:339: ovn-sbctl chassis-add ch0 vxlan 1.2.3.5
../../tests/ovn-controller-vtep.at:340: ovn-sbctl lsp-bind vif0 ch0
../../tests/ovn-controller-vtep.at:344: vtep-ctl add-ls lswitch0 -- bind-ls br-vtep p0 100 lswitch0
../../tests/ovn-controller-vtep.at:345: ovn-nbctl lsp-add br-test br-vtep_lswitch0
../../tests/ovn-controller-vtep.at:345: ovn-nbctl lsp-set-type br-vtep_lswitch0 vtep
../../tests/ovn-controller-vtep.at:345: ovn-nbctl lsp-set-options br-vtep_lswitch0 vtep-physical-switch=br-vtep vtep-logical-switch=lswitch0
ovn-controller-vtep.at:346: waiting until test -n "`ovn-sbctl list Port_Binding  | grep br-vtep_lswitch0`"...
ovn-controller-vtep.at:346: wait succeeded immediately
../../tests/ovn-controller-vtep.at:349: ovn-nbctl ls-add br-void
../../tests/ovn-controller-vtep.at:351: ovn-nbctl lsp-add br-void vif1
../../tests/ovn-controller-vtep.at:352: ovn-nbctl lsp-set-addresses vif1 f0:ab:cd:ef:01:02
--- /dev/null	2018-07-07 08:02:12.276008806 -0700
+++ /home/blp/nicira/ovs/_build/tests/testsuite.dir/at-groups/2733/stderr	2018-09-05 15:14:32.256342370 -0700
@@ -0,0 +1 @@
+ovn-nbctl: Error on switch br-void: duplicate ethernet address f0:ab:cd:ef:01:02
../../tests/ovn-controller-vtep.at:352: exit code was 1, expected 0
ovsdb-server.log:
> 2018-09-05T22:14:31.887Z|00001|vlog|INFO|opened log file /home/blp/nicira/ovs/_build/tests/testsuite.dir/2733/ovsdb-server.log
> 2018-09-05T22:14:31.891Z|00002|ovsdb_server|INFO|ovsdb-server (Open vSwitch) 2.10.90
> 2018-09-05T22:14:32.068Z|00003|jsonrpc|WARN|unix#6: receive error: Connection reset by peer
> 2018-09-05T22:14:32.068Z|00004|reconnect|WARN|unix#6: connection dropped (Connection reset by peer)
> 2018-09-05T22:14:32.071Z|00005|jsonrpc|WARN|unix#7: receive error: Connection reset by peer
> 2018-09-05T22:14:32.071Z|00006|reconnect|WARN|unix#7: connection dropped (Connection reset by peer)
> 2018-09-05T22:14:32.089Z|00007|jsonrpc|WARN|unix#10: receive error: Connection reset by peer
> 2018-09-05T22:14:32.089Z|00008|reconnect|WARN|unix#10: connection dropped (Connection reset by peer)
> 2018-09-05T22:14:32.097Z|00009|jsonrpc|WARN|unix#12: receive error: Connection reset by peer
> 2018-09-05T22:14:32.097Z|00010|reconnect|WARN|unix#12: connection dropped (Connection reset by peer)
> 2018-09-05T22:14:32.176Z|00011|jsonrpc|WARN|unix#16: receive error: Connection reset by peer
> 2018-09-05T22:14:32.176Z|00012|reconnect|WARN|unix#16: connection dropped (Connection reset by peer)
ovs-vswitchd.log:
> 2018-09-05T22:14:31.920Z|00001|vlog|INFO|opened log file /home/blp/nicira/ovs/_build/tests/testsuite.dir/2733/ovs-vswitchd.log
> 2018-09-05T22:14:31.921Z|00002|ovs_numa|INFO|Discovered 8 CPU cores on NUMA node 0
> 2018-09-05T22:14:31.921Z|00003|ovs_numa|INFO|Discovered 1 NUMA nodes and 8 CPU cores
> 2018-09-05T22:14:31.921Z|00004|reconnect|INFO|unix:/home/blp/nicira/ovs/_build/tests/testsuite.dir/2733/db.sock: connecting...
> 2018-09-05T22:14:31.921Z|00005|netlink_socket|INFO|netlink: could not enable listening to all nsid (Protocol not available)
> 2018-09-05T22:14:31.921Z|00006|reconnect|INFO|unix:/home/blp/nicira/ovs/_build/tests/testsuite.dir/2733/db.sock: connected
> 2018-09-05T22:14:31.924Z|00007|bridge|INFO|ovs-vswitchd (Open vSwitch) 2.10.90
> 2018-09-05T22:14:31.939Z|00008|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports recirculation
> 2018-09-05T22:14:31.939Z|00009|ofproto_dpif|INFO|dummy at ovs-dummy: VLAN header stack length probed as 1
> 2018-09-05T22:14:31.939Z|00010|ofproto_dpif|INFO|dummy at ovs-dummy: MPLS label stack length probed as 3
> 2018-09-05T22:14:31.939Z|00011|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports truncate action
> 2018-09-05T22:14:31.939Z|00012|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports unique flow ids
> 2018-09-05T22:14:31.939Z|00013|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports clone action
> 2018-09-05T22:14:31.939Z|00014|ofproto_dpif|INFO|dummy at ovs-dummy: Max sample nesting level probed as 10
> 2018-09-05T22:14:31.939Z|00015|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports eventmask in conntrack action
> 2018-09-05T22:14:31.939Z|00016|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports ct_clear action
> 2018-09-05T22:14:31.939Z|00017|ofproto_dpif|INFO|dummy at ovs-dummy: Max dp_hash algorithm probed to be 1
> 2018-09-05T22:14:31.939Z|00018|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports ct_state
> 2018-09-05T22:14:31.939Z|00019|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports ct_zone
> 2018-09-05T22:14:31.939Z|00020|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports ct_mark
> 2018-09-05T22:14:31.939Z|00021|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports ct_label
> 2018-09-05T22:14:31.939Z|00022|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports ct_state_nat
> 2018-09-05T22:14:31.939Z|00023|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports ct_orig_tuple
> 2018-09-05T22:14:31.939Z|00024|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports ct_orig_tuple6
> 2018-09-05T22:14:31.939Z|00025|bridge|INFO|bridge br-vtep: added interface p0 on port 1
> 2018-09-05T22:14:31.939Z|00026|bridge|INFO|bridge br-vtep: added interface p1 on port 2
> 2018-09-05T22:14:31.939Z|00027|bridge|INFO|bridge br-vtep: added interface br-vtep on port 65534
> 2018-09-05T22:14:31.939Z|00028|bridge|INFO|bridge br-vtep: using datapath ID fedcba9876543210
> 2018-09-05T22:14:31.939Z|00029|connmgr|INFO|br-vtep: added service controller "punix:/home/blp/nicira/ovs/_build/tests/testsuite.dir/2733/br-vtep.mgmt"
> 2018-09-05T22:14:32.070Z|00030|vconn|DBG|unix#0: sent (Success): OFPT_HELLO (OF1.5) (xid=0x1):
>  version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06
> 2018-09-05T22:14:32.071Z|00031|vconn|DBG|unix#0: received: OFPT_HELLO (xid=0x1):
>  version bitmap: 0x01
> 2018-09-05T22:14:32.071Z|00032|vconn|DBG|unix#0: negotiated OpenFlow version 0x01 (we support version 0x06 and earlier, peer supports version 0x01)
> 2018-09-05T22:14:32.071Z|00033|vconn|DBG|unix#0: received: OFPST_TABLE request (xid=0x2):
> 2018-09-05T22:14:32.071Z|00034|vconn|DBG|unix#0: sent (Success): OFPST_TABLE reply (xid=0x2):
>   table 0:
>     active=0, lookup=0, matched=0
>     max_entries=1000000
>     matching:
>       in_port: exact match or wildcard
>       eth_src: exact match or wildcard
>       eth_dst: exact match or wildcard
>       eth_type: exact match or wildcard
>       vlan_vid: exact match or wildcard
>       vlan_pcp: exact match or wildcard
>       ip_src: exact match or wildcard
>       ip_dst: exact match or wildcard
>       nw_proto: exact match or wildcard
>       nw_tos: exact match or wildcard
>       tcp_src: exact match or wildcard
>       tcp_dst: exact match or wildcard
> 
>   table 1: ditto
>   table 2: ditto
>   table 3: ditto
>   table 4: ditto
>   table 5: ditto
>   table 6: ditto
>   table 7: ditto
>   table 8: ditto
>   table 9: ditto
>   table 10: ditto
>   table 11: ditto
>   table 12: ditto
>   table 13: ditto
>   table 14: ditto
>   table 15: ditto
>   table 16: ditto
>   table 17: ditto
>   table 18: ditto
>   table 19: ditto
>   table 20: ditto
>   table 21: ditto
>   table 22: ditto
>   table 23: ditto
>   table 24: ditto
>   table 25: ditto
>   table 26: ditto
>   table 27: ditto
>   table 28: ditto
>   table 29: ditto
>   table 30: ditto
>   table 31: ditto
>   table 32: ditto
>   table 33: ditto
>   table 34: ditto
>   table 35: ditto
>   table 36: ditto
>   table 37: ditto
>   table 38: ditto
>   table 39: ditto
>   table 40: ditto
>   table 41: ditto
>   table 42: ditto
>   table 43: ditto
>   table 44: ditto
>   table 45: ditto
>   table 46: ditto
>   table 47: ditto
>   table 48: ditto
>   table 49: ditto
>   table 50: ditto
>   table 51: ditto
>   table 52: ditto
>   table 53: ditto
>   table 54: ditto
>   table 55: ditto
>   table 56: ditto
>   table 57: ditto
>   table 58: ditto
>   table 59: ditto
>   table 60: ditto
>   table 61: ditto
>   table 62: ditto
>   table 63: ditto
>   table 64: ditto
>   table 65: ditto
>   table 66: ditto
>   table 67: ditto
>   table 68: ditto
>   table 69: ditto
>   table 70: ditto
>   table 71: ditto
>   table 72: ditto
>   table 73: ditto
>   table 74: ditto
>   table 75: ditto
>   table 76: ditto
>   table 77: ditto
>   table 78: ditto
>   table 79: ditto
>   table 80: ditto
>   table 81: ditto
>   table 82: ditto
>   table 83: ditto
>   table 84: ditto
>   table 85: ditto
>   table 86: ditto
>   table 87: ditto
>   table 88: ditto
>   table 89: ditto
>   table 90: ditto
>   table 91: ditto
>   table 92: ditto
>   table 93: ditto
>   table 94: ditto
>   table 95: ditto
>   table 96: ditto
>   table 97: ditto
>   table 98: ditto
>   table 99: ditto
>   table 100: ditto
>   table 101: ditto
>   table 102: ditto
>   table 103: ditto
>   table 104: ditto
>   table 105: ditto
>   table 106: ditto
>   table 107: ditto
>   table 108: ditto
>   table 109: ditto
>   table 110: ditto
>   table 111: ditto
>   table 112: ditto
>   table 113: ditto
>   table 114: ditto
>   table 115: ditto
>   table 116: ditto
>   table 117: ditto
>   table 118: ditto
>   table 119: ditto
>   table 120: ditto
>   table 121: ditto
>   table 122: ditto
>   table 123: ditto
>   table 124: ditto
>   table 125: ditto
>   table 126: ditto
>   table 127: ditto
>   table 128: ditto
>   table 129: ditto
>   table 130: ditto
>   table 131: ditto
>   table 132: ditto
>   table 133: ditto
>   table 134: ditto
>   table 135: ditto
>   table 136: ditto
>   table 137: ditto
>   table 138: ditto
>   table 139: ditto
>   table 140: ditto
>   table 141: ditto
>   table 142: ditto
>   table 143: ditto
>   table 144: ditto
>   table 145: ditto
>   table 146: ditto
>   table 147: ditto
>   table 148: ditto
>   table 149: ditto
>   table 150: ditto
>   table 151: ditto
>   table 152: ditto
>   table 153: ditto
>   table 154: ditto
>   table 155: ditto
>   table 156: ditto
>   table 157: ditto
>   table 158: ditto
>   table 159: ditto
>   table 160: ditto
>   table 161: ditto
>   table 162: ditto
>   table 163: ditto
>   table 164: ditto
>   table 165: ditto
>   table 166: ditto
>   table 167: ditto
>   table 168: ditto
>   table 169: ditto
>   table 170: ditto
>   table 171: ditto
>   table 172: ditto
>   table 173: ditto
>   table 174: ditto
>   table 175: ditto
>   table 176: ditto
>   table 177: ditto
>   table 178: ditto
>   table 179: ditto
>   table 180: ditto
>   table 181: ditto
>   table 182: ditto
>   table 183: ditto
>   table 184: ditto
>   table 185: ditto
>   table 186: ditto
>   table 187: ditto
>   table 188: ditto
>   table 189: ditto
>   table 190: ditto
>   table 191: ditto
>   table 192: ditto
>   table 193: ditto
>   table 194: ditto
>   table 195: ditto
>   table 196: ditto
>   table 197: ditto
>   table 198: ditto
>   table 199: ditto
>   table 200: ditto
>   table 201: ditto
>   table 202: ditto
>   table 203: ditto
>   table 204: ditto
>   table 205: ditto
>   table 206: ditto
>   table 207: ditto
>   table 208: ditto
>   table 209: ditto
>   table 210: ditto
>   table 211: ditto
>   table 212: ditto
>   table 213: ditto
>   table 214: ditto
>   table 215: ditto
>   table 216: ditto
>   table 217: ditto
>   table 218: ditto
>   table 219: ditto
>   table 220: ditto
>   table 221: ditto
>   table 222: ditto
>   table 223: ditto
>   table 224: ditto
>   table 225: ditto
>   table 226: ditto
>   table 227: ditto
>   table 228: ditto
>   table 229: ditto
>   table 230: ditto
>   table 231: ditto
>   table 232: ditto
>   table 233: ditto
>   table 234: ditto
>   table 235: ditto
>   table 236: ditto
>   table 237: ditto
>   table 238: ditto
>   table 239: ditto
>   table 240: ditto
>   table 241: ditto
>   table 242: ditto
>   table 243: ditto
>   table 244: ditto
>   table 245: ditto
>   table 246: ditto
>   table 247: ditto
>   table 248: ditto
>   table 249: ditto
>   table 250: ditto
>   table 251: ditto
>   table 252: ditto
>   table 253: ditto
> 2018-09-05T22:14:32.072Z|00035|vconn|DBG|unix#1: sent (Success): OFPT_HELLO (OF1.5) (xid=0x2):
>  version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06
> 2018-09-05T22:14:32.072Z|00036|vconn|DBG|unix#1: received: OFPT_HELLO (xid=0x3):
>  version bitmap: 0x01
> 2018-09-05T22:14:32.072Z|00037|vconn|DBG|unix#1: negotiated OpenFlow version 0x01 (we support version 0x06 and earlier, peer supports version 0x01)
> 2018-09-05T22:14:32.072Z|00038|vconn|DBG|unix#1: received: OFPT_FEATURES_REQUEST (xid=0x4):
> 2018-09-05T22:14:32.072Z|00039|vconn|DBG|unix#1: 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(p0): addr:aa:55:aa:55:00:13
>      config:     PORT_DOWN
>      state:      LINK_DOWN
>      speed: 0 Mbps now, 0 Mbps max
>  2(p1): addr:aa:55:aa:55:00:14
>      config:     PORT_DOWN
>      state:      LINK_DOWN
>      speed: 0 Mbps now, 0 Mbps max
>  LOCAL(br-vtep): addr:aa:55:aa:55:00:00
>      config:     PORT_DOWN
>      state:      LINK_DOWN
>      speed: 0 Mbps now, 0 Mbps max
> 2018-09-05T22:14:32.073Z|00040|vconn|DBG|unix#2: sent (Success): OFPT_HELLO (OF1.5) (xid=0x3):
>  version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06
> 2018-09-05T22:14:32.073Z|00041|vconn|DBG|unix#2: received: OFPT_HELLO (xid=0x5):
>  version bitmap: 0x01
> 2018-09-05T22:14:32.073Z|00042|vconn|DBG|unix#2: negotiated OpenFlow version 0x01 (we support version 0x06 and earlier, peer supports version 0x01)
> 2018-09-05T22:14:32.073Z|00043|vconn|DBG|unix#2: received: OFPT_FLOW_MOD (xid=0x6): DEL actions=drop
> 2018-09-05T22:14:32.073Z|00044|vconn|DBG|unix#2: received: OFPT_BARRIER_REQUEST (xid=0x7):
> 2018-09-05T22:14:32.073Z|00045|vconn|DBG|unix#2: sent (Success): OFPT_BARRIER_REPLY (xid=0x7):
> 2018-09-05T22:14:32.073Z|00046|connmgr|INFO|br-vtep<->unix#2: 1 flow_mods in the last 0 s (1 deletes)
> 2018-09-05T22:14:32.083Z|00047|bridge|INFO|bridge vtep_bfd: added interface vtep_bfd on port 65534
> 2018-09-05T22:14:32.083Z|00048|bridge|INFO|bridge vtep_bfd: using datapath ID 0000322d6a61434e
> 2018-09-05T22:14:32.083Z|00049|connmgr|INFO|vtep_bfd: added service controller "punix:/home/blp/nicira/ovs/_build/tests/testsuite.dir/2733/vtep_bfd.mgmt"
ovn-northd.log:
> 2018-09-05T22:14:32.182Z|00001|vlog|INFO|opened log file /home/blp/nicira/ovs/_build/tests/testsuite.dir/2733/ovn-northd.log
> 2018-09-05T22:14:32.183Z|00002|reconnect|INFO|unix:/home/blp/nicira/ovs/_build/tests/testsuite.dir/2733/ovnnb_db.sock: connecting...
> 2018-09-05T22:14:32.183Z|00003|reconnect|INFO|unix:/home/blp/nicira/ovs/_build/tests/testsuite.dir/2733/ovnsb_db.sock: connecting...
> 2018-09-05T22:14:32.183Z|00004|reconnect|INFO|unix:/home/blp/nicira/ovs/_build/tests/testsuite.dir/2733/ovnnb_db.sock: connected
> 2018-09-05T22:14:32.183Z|00005|reconnect|INFO|unix:/home/blp/nicira/ovs/_build/tests/testsuite.dir/2733/ovnsb_db.sock: connected
> 2018-09-05T22:14:32.183Z|00006|ovn_northd|INFO|ovn-northd lock acquired. This ovn-northd instance is now active.
ovn-controller-vtep.log:
> 2018-09-05T22:14:32.191Z|00001|vlog|INFO|opened log file /home/blp/nicira/ovs/_build/tests/testsuite.dir/2733/ovn-controller-vtep.log
> 2018-09-05T22:14:32.191Z|00002|reconnect|INFO|unix:/home/blp/nicira/ovs/_build/tests/testsuite.dir/2733/db.sock: connecting...
> 2018-09-05T22:14:32.191Z|00003|reconnect|INFO|unix:/home/blp/nicira/ovs/_build/tests/testsuite.dir/2733/db.sock: connected
> 2018-09-05T22:14:32.193Z|00004|reconnect|INFO|unix:/home/blp/nicira/ovs/_build/tests/testsuite.dir/2733/ovnsb_db.sock: connecting...
> 2018-09-05T22:14:32.193Z|00005|reconnect|INFO|unix:/home/blp/nicira/ovs/_build/tests/testsuite.dir/2733/ovnsb_db.sock: connected
> 2018-09-05T22:14:32.196Z|00006|gateway|INFO|add Chassis row for VTEP physical switch (br-vtep)
2733. ovn-controller-vtep.at:331: 2733. ovn-controller-vtep - vtep-macs 1 (ovn-controller-vtep.at:331): FAILED (ovn-controller-vtep.at:352)

#                             -*- compilation -*-
2734. ovn-controller-vtep.at:403: testing ovn-controller-vtep - vtep-macs 2 ...
../../tests/ovn-controller-vtep.at:404: ovsdb-tool create vswitchd.db $abs_top_srcdir/vswitchd/vswitch.ovsschema
../../tests/ovn-controller-vtep.at:404: ovsdb-tool create $daemon.db $abs_top_srcdir/${daemon%%-*}/${daemon}.ovsschema
../../tests/ovn-controller-vtep.at:404: ovsdb-tool create $daemon.db $abs_top_srcdir/${daemon%%-*}/${daemon}.ovsschema
../../tests/ovn-controller-vtep.at:404: ovsdb-tool create $daemon.db $abs_top_srcdir/${daemon%%-*}/${daemon}.ovsschema
../../tests/ovn-controller-vtep.at:404: ovsdb-server --detach --no-chdir --pidfile --log-file --remote=punix:$OVS_RUNDIR/db.sock vswitchd.db vtep.db
stderr:
2018-09-05T22:14:31Z|00001|vlog|INFO|opened log file /home/blp/nicira/ovs/_build/tests/testsuite.dir/2734/ovsdb-server.log
../../tests/ovn-controller-vtep.at:404: ovsdb-server --detach --no-chdir --pidfile=ovsdb-nb-server.pid --log-file=ovsdb-nb-server.log --remote=punix:$OVS_RUNDIR/ovnnb_db.sock ovn-nb.db
stderr:
2018-09-05T22:14:31Z|00001|vlog|INFO|opened log file ovsdb-nb-server.log
../../tests/ovn-controller-vtep.at:404: ovsdb-server --detach --no-chdir --pidfile=ovsdb-sb-server.pid --log-file=ovsdb-sb-server.log --remote=punix:$OVS_RUNDIR/ovnsb_db.sock ovn-sb.db ovn-sb.db
stderr:
2018-09-05T22:14:31Z|00001|vlog|INFO|opened log file ovsdb-sb-server.log
../../tests/ovn-controller-vtep.at:404: sed < stderr '
/vlog|INFO|opened log file/d
/ovsdb_server|INFO|ovsdb-server (Open vSwitch)/d'
../../tests/ovn-controller-vtep.at:404: ovs-vswitchd --enable-dummy=system --disable-system --detach --no-chdir --pidfile --log-file -vvconn -vofproto_dpif
stderr:
2018-09-05T22:14:31Z|00001|vlog|INFO|opened log file /home/blp/nicira/ovs/_build/tests/testsuite.dir/2734/ovs-vswitchd.log
2018-09-05T22:14:31Z|00002|ovs_numa|INFO|Discovered 8 CPU cores on NUMA node 0
2018-09-05T22:14:31Z|00003|ovs_numa|INFO|Discovered 1 NUMA nodes and 8 CPU cores
2018-09-05T22:14:31Z|00004|reconnect|INFO|unix:/home/blp/nicira/ovs/_build/tests/testsuite.dir/2734/db.sock: connecting...
2018-09-05T22:14:31Z|00005|netlink_socket|INFO|netlink: could not enable listening to all nsid (Protocol not available)
2018-09-05T22:14:31Z|00006|reconnect|INFO|unix:/home/blp/nicira/ovs/_build/tests/testsuite.dir/2734/db.sock: connected
../../tests/ovn-controller-vtep.at:404: sed < stderr '
/ovs_numa|INFO|Discovered /d
/vlog|INFO|opened log file/d
/vswitchd|INFO|ovs-vswitchd (Open vSwitch)/d
/reconnect|INFO|/d
/ofproto|INFO|using datapath ID/d
/netlink_socket|INFO|netlink: could not enable listening to all nsid/d
/ofproto|INFO|datapath ID changed to fedcba9876543210/d'
../../tests/ovn-controller-vtep.at:404: ovs-vsctl -- add-br br-vtep \
              -- set bridge br-vtep datapath-type=dummy other-config:datapath-id=fedcba9876543210 other-config:hwaddr=aa:55:aa:55:00:00 protocols=[OpenFlow10,OpenFlow11,OpenFlow12,OpenFlow13,OpenFlow14,OpenFlow15] fail-mode=secure \
              -- add-port br-vtep p0 -- set Interface p0 type=dummy ofport_request=1 \
              -- add-port br-vtep p1 -- set Interface p1 type=dummy ofport_request=2
../../tests/ovn-controller-vtep.at:404: vtep-ctl add-ps br-vtep -- set Physical_Switch br-vtep tunnel_ips=1.2.3.4
../../tests/ovn-controller-vtep.at:404: ovs-vtep --log-file=ovs-vtep.log --pidfile=ovs-vtep.pid --detach br-vtep \
stderr:
../../tests/ovn-controller-vtep.at:404: sed < stderr '
/vlog|INFO|opened log file/d'
ovn-controller-vtep.at:404: waiting until test -n "`vtep-ctl show | grep Physical_Port`"...
ovn-controller-vtep.at:404: wait succeeded quickly
../../tests/ovn-controller-vtep.at:404: ovn-nbctl ls-add br-test
../../tests/ovn-controller-vtep.at:404: ovn-northd --detach --pidfile --log-file
stderr:
2018-09-05T22:14:32Z|00001|vlog|INFO|opened log file /home/blp/nicira/ovs/_build/tests/testsuite.dir/2734/ovn-northd.log
../../tests/ovn-controller-vtep.at:404: sed < stderr '
/vlog|INFO|opened log file/d'
../../tests/ovn-controller-vtep.at:404: ovn-controller-vtep --detach --pidfile --log-file --vtep-db=unix:$OVS_RUNDIR/db.sock --ovnsb-db=unix:$OVS_RUNDIR/ovnsb_db.sock
stderr:
2018-09-05T22:14:32Z|00001|vlog|INFO|opened log file /home/blp/nicira/ovs/_build/tests/testsuite.dir/2734/ovn-controller-vtep.log
../../tests/ovn-controller-vtep.at:404: sed < stderr '
/vlog|INFO|opened log file/d
/reconnect|INFO|/d'
../../tests/ovn-controller-vtep.at:408: ovn-nbctl lsp-add br-test vif0
../../tests/ovn-controller-vtep.at:409: ovn-nbctl lsp-set-addresses vif0 f0:ab:cd:ef:01:02
../../tests/ovn-controller-vtep.at:410: ovn-nbctl --timeout=10 --wait=sb sync
../../tests/ovn-controller-vtep.at:411: ovn-sbctl chassis-add ch0 vxlan 1.2.3.5
../../tests/ovn-controller-vtep.at:412: ovn-sbctl lsp-bind vif0 ch0
../../tests/ovn-controller-vtep.at:415: ovn-nbctl lsp-add br-test vif1
../../tests/ovn-controller-vtep.at:416: ovn-nbctl lsp-set-addresses vif1 f0:ab:cd:ef:01:02
--- /dev/null	2018-07-07 08:02:12.276008806 -0700
+++ /home/blp/nicira/ovs/_build/tests/testsuite.dir/at-groups/2734/stderr	2018-09-05 15:14:32.276341043 -0700
@@ -0,0 +1 @@
+ovn-nbctl: Error on switch br-test: duplicate ethernet address f0:ab:cd:ef:01:02
../../tests/ovn-controller-vtep.at:416: exit code was 1, expected 0
ovsdb-server.log:
> 2018-09-05T22:14:31.936Z|00001|vlog|INFO|opened log file /home/blp/nicira/ovs/_build/tests/testsuite.dir/2734/ovsdb-server.log
> 2018-09-05T22:14:31.941Z|00002|ovsdb_server|INFO|ovsdb-server (Open vSwitch) 2.10.90
> 2018-09-05T22:14:32.114Z|00003|jsonrpc|WARN|unix#7: receive error: Connection reset by peer
> 2018-09-05T22:14:32.114Z|00004|reconnect|WARN|unix#7: connection dropped (Connection reset by peer)
> 2018-09-05T22:14:32.140Z|00005|jsonrpc|WARN|unix#12: receive error: Connection reset by peer
> 2018-09-05T22:14:32.140Z|00006|reconnect|WARN|unix#12: connection dropped (Connection reset by peer)
ovs-vswitchd.log:
> 2018-09-05T22:14:31.968Z|00001|vlog|INFO|opened log file /home/blp/nicira/ovs/_build/tests/testsuite.dir/2734/ovs-vswitchd.log
> 2018-09-05T22:14:31.968Z|00002|ovs_numa|INFO|Discovered 8 CPU cores on NUMA node 0
> 2018-09-05T22:14:31.968Z|00003|ovs_numa|INFO|Discovered 1 NUMA nodes and 8 CPU cores
> 2018-09-05T22:14:31.968Z|00004|reconnect|INFO|unix:/home/blp/nicira/ovs/_build/tests/testsuite.dir/2734/db.sock: connecting...
> 2018-09-05T22:14:31.968Z|00005|netlink_socket|INFO|netlink: could not enable listening to all nsid (Protocol not available)
> 2018-09-05T22:14:31.968Z|00006|reconnect|INFO|unix:/home/blp/nicira/ovs/_build/tests/testsuite.dir/2734/db.sock: connected
> 2018-09-05T22:14:31.971Z|00007|bridge|INFO|ovs-vswitchd (Open vSwitch) 2.10.90
> 2018-09-05T22:14:31.987Z|00008|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports recirculation
> 2018-09-05T22:14:31.987Z|00009|ofproto_dpif|INFO|dummy at ovs-dummy: VLAN header stack length probed as 1
> 2018-09-05T22:14:31.987Z|00010|ofproto_dpif|INFO|dummy at ovs-dummy: MPLS label stack length probed as 3
> 2018-09-05T22:14:31.987Z|00011|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports truncate action
> 2018-09-05T22:14:31.987Z|00012|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports unique flow ids
> 2018-09-05T22:14:31.987Z|00013|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports clone action
> 2018-09-05T22:14:31.987Z|00014|ofproto_dpif|INFO|dummy at ovs-dummy: Max sample nesting level probed as 10
> 2018-09-05T22:14:31.987Z|00015|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports eventmask in conntrack action
> 2018-09-05T22:14:31.987Z|00016|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports ct_clear action
> 2018-09-05T22:14:31.987Z|00017|ofproto_dpif|INFO|dummy at ovs-dummy: Max dp_hash algorithm probed to be 1
> 2018-09-05T22:14:31.987Z|00018|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports ct_state
> 2018-09-05T22:14:31.987Z|00019|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports ct_zone
> 2018-09-05T22:14:31.988Z|00020|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports ct_mark
> 2018-09-05T22:14:31.988Z|00021|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports ct_label
> 2018-09-05T22:14:31.988Z|00022|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports ct_state_nat
> 2018-09-05T22:14:31.988Z|00023|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports ct_orig_tuple
> 2018-09-05T22:14:31.988Z|00024|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports ct_orig_tuple6
> 2018-09-05T22:14:31.988Z|00025|bridge|INFO|bridge br-vtep: added interface p0 on port 1
> 2018-09-05T22:14:31.988Z|00026|bridge|INFO|bridge br-vtep: added interface p1 on port 2
> 2018-09-05T22:14:31.988Z|00027|bridge|INFO|bridge br-vtep: added interface br-vtep on port 65534
> 2018-09-05T22:14:31.988Z|00028|bridge|INFO|bridge br-vtep: using datapath ID fedcba9876543210
> 2018-09-05T22:14:31.988Z|00029|connmgr|INFO|br-vtep: added service controller "punix:/home/blp/nicira/ovs/_build/tests/testsuite.dir/2734/br-vtep.mgmt"
> 2018-09-05T22:14:32.115Z|00030|vconn|DBG|unix#0: sent (Success): OFPT_HELLO (OF1.5) (xid=0x1):
>  version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06
> 2018-09-05T22:14:32.115Z|00031|vconn|DBG|unix#0: received: OFPT_HELLO (xid=0x1):
>  version bitmap: 0x01
> 2018-09-05T22:14:32.115Z|00032|vconn|DBG|unix#0: negotiated OpenFlow version 0x01 (we support version 0x06 and earlier, peer supports version 0x01)
> 2018-09-05T22:14:32.115Z|00033|vconn|DBG|unix#0: received: OFPST_TABLE request (xid=0x2):
> 2018-09-05T22:14:32.115Z|00034|vconn|DBG|unix#0: sent (Success): OFPST_TABLE reply (xid=0x2):
>   table 0:
>     active=0, lookup=0, matched=0
>     max_entries=1000000
>     matching:
>       in_port: exact match or wildcard
>       eth_src: exact match or wildcard
>       eth_dst: exact match or wildcard
>       eth_type: exact match or wildcard
>       vlan_vid: exact match or wildcard
>       vlan_pcp: exact match or wildcard
>       ip_src: exact match or wildcard
>       ip_dst: exact match or wildcard
>       nw_proto: exact match or wildcard
>       nw_tos: exact match or wildcard
>       tcp_src: exact match or wildcard
>       tcp_dst: exact match or wildcard
> 
>   table 1: ditto
>   table 2: ditto
>   table 3: ditto
>   table 4: ditto
>   table 5: ditto
>   table 6: ditto
>   table 7: ditto
>   table 8: ditto
>   table 9: ditto
>   table 10: ditto
>   table 11: ditto
>   table 12: ditto
>   table 13: ditto
>   table 14: ditto
>   table 15: ditto
>   table 16: ditto
>   table 17: ditto
>   table 18: ditto
>   table 19: ditto
>   table 20: ditto
>   table 21: ditto
>   table 22: ditto
>   table 23: ditto
>   table 24: ditto
>   table 25: ditto
>   table 26: ditto
>   table 27: ditto
>   table 28: ditto
>   table 29: ditto
>   table 30: ditto
>   table 31: ditto
>   table 32: ditto
>   table 33: ditto
>   table 34: ditto
>   table 35: ditto
>   table 36: ditto
>   table 37: ditto
>   table 38: ditto
>   table 39: ditto
>   table 40: ditto
>   table 41: ditto
>   table 42: ditto
>   table 43: ditto
>   table 44: ditto
>   table 45: ditto
>   table 46: ditto
>   table 47: ditto
>   table 48: ditto
>   table 49: ditto
>   table 50: ditto
>   table 51: ditto
>   table 52: ditto
>   table 53: ditto
>   table 54: ditto
>   table 55: ditto
>   table 56: ditto
>   table 57: ditto
>   table 58: ditto
>   table 59: ditto
>   table 60: ditto
>   table 61: ditto
>   table 62: ditto
>   table 63: ditto
>   table 64: ditto
>   table 65: ditto
>   table 66: ditto
>   table 67: ditto
>   table 68: ditto
>   table 69: ditto
>   table 70: ditto
>   table 71: ditto
>   table 72: ditto
>   table 73: ditto
>   table 74: ditto
>   table 75: ditto
>   table 76: ditto
>   table 77: ditto
>   table 78: ditto
>   table 79: ditto
>   table 80: ditto
>   table 81: ditto
>   table 82: ditto
>   table 83: ditto
>   table 84: ditto
>   table 85: ditto
>   table 86: ditto
>   table 87: ditto
>   table 88: ditto
>   table 89: ditto
>   table 90: ditto
>   table 91: ditto
>   table 92: ditto
>   table 93: ditto
>   table 94: ditto
>   table 95: ditto
>   table 96: ditto
>   table 97: ditto
>   table 98: ditto
>   table 99: ditto
>   table 100: ditto
>   table 101: ditto
>   table 102: ditto
>   table 103: ditto
>   table 104: ditto
>   table 105: ditto
>   table 106: ditto
>   table 107: ditto
>   table 108: ditto
>   table 109: ditto
>   table 110: ditto
>   table 111: ditto
>   table 112: ditto
>   table 113: ditto
>   table 114: ditto
>   table 115: ditto
>   table 116: ditto
>   table 117: ditto
>   table 118: ditto
>   table 119: ditto
>   table 120: ditto
>   table 121: ditto
>   table 122: ditto
>   table 123: ditto
>   table 124: ditto
>   table 125: ditto
>   table 126: ditto
>   table 127: ditto
>   table 128: ditto
>   table 129: ditto
>   table 130: ditto
>   table 131: ditto
>   table 132: ditto
>   table 133: ditto
>   table 134: ditto
>   table 135: ditto
>   table 136: ditto
>   table 137: ditto
>   table 138: ditto
>   table 139: ditto
>   table 140: ditto
>   table 141: ditto
>   table 142: ditto
>   table 143: ditto
>   table 144: ditto
>   table 145: ditto
>   table 146: ditto
>   table 147: ditto
>   table 148: ditto
>   table 149: ditto
>   table 150: ditto
>   table 151: ditto
>   table 152: ditto
>   table 153: ditto
>   table 154: ditto
>   table 155: ditto
>   table 156: ditto
>   table 157: ditto
>   table 158: ditto
>   table 159: ditto
>   table 160: ditto
>   table 161: ditto
>   table 162: ditto
>   table 163: ditto
>   table 164: ditto
>   table 165: ditto
>   table 166: ditto
>   table 167: ditto
>   table 168: ditto
>   table 169: ditto
>   table 170: ditto
>   table 171: ditto
>   table 172: ditto
>   table 173: ditto
>   table 174: ditto
>   table 175: ditto
>   table 176: ditto
>   table 177: ditto
>   table 178: ditto
>   table 179: ditto
>   table 180: ditto
>   table 181: ditto
>   table 182: ditto
>   table 183: ditto
>   table 184: ditto
>   table 185: ditto
>   table 186: ditto
>   table 187: ditto
>   table 188: ditto
>   table 189: ditto
>   table 190: ditto
>   table 191: ditto
>   table 192: ditto
>   table 193: ditto
>   table 194: ditto
>   table 195: ditto
>   table 196: ditto
>   table 197: ditto
>   table 198: ditto
>   table 199: ditto
>   table 200: ditto
>   table 201: ditto
>   table 202: ditto
>   table 203: ditto
>   table 204: ditto
>   table 205: ditto
>   table 206: ditto
>   table 207: ditto
>   table 208: ditto
>   table 209: ditto
>   table 210: ditto
>   table 211: ditto
>   table 212: ditto
>   table 213: ditto
>   table 214: ditto
>   table 215: ditto
>   table 216: ditto
>   table 217: ditto
>   table 218: ditto
>   table 219: ditto
>   table 220: ditto
>   table 221: ditto
>   table 222: ditto
>   table 223: ditto
>   table 224: ditto
>   table 225: ditto
>   table 226: ditto
>   table 227: ditto
>   table 228: ditto
>   table 229: ditto
>   table 230: ditto
>   table 231: ditto
>   table 232: ditto
>   table 233: ditto
>   table 234: ditto
>   table 235: ditto
>   table 236: ditto
>   table 237: ditto
>   table 238: ditto
>   table 239: ditto
>   table 240: ditto
>   table 241: ditto
>   table 242: ditto
>   table 243: ditto
>   table 244: ditto
>   table 245: ditto
>   table 246: ditto
>   table 247: ditto
>   table 248: ditto
>   table 249: ditto
>   table 250: ditto
>   table 251: ditto
>   table 252: ditto
>   table 253: ditto
> 2018-09-05T22:14:32.115Z|00035|vconn|DBG|unix#1: sent (Success): OFPT_HELLO (OF1.5) (xid=0x2):
>  version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06
> 2018-09-05T22:14:32.115Z|00036|vconn|DBG|unix#1: received: OFPT_HELLO (xid=0x3):
>  version bitmap: 0x01
> 2018-09-05T22:14:32.115Z|00037|vconn|DBG|unix#1: negotiated OpenFlow version 0x01 (we support version 0x06 and earlier, peer supports version 0x01)
> 2018-09-05T22:14:32.115Z|00038|vconn|DBG|unix#1: received: OFPT_FEATURES_REQUEST (xid=0x4):
> 2018-09-05T22:14:32.115Z|00039|vconn|DBG|unix#1: 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(p0): addr:aa:55:aa:55:00:13
>      config:     PORT_DOWN
>      state:      LINK_DOWN
>      speed: 0 Mbps now, 0 Mbps max
>  2(p1): addr:aa:55:aa:55:00:14
>      config:     PORT_DOWN
>      state:      LINK_DOWN
>      speed: 0 Mbps now, 0 Mbps max
>  LOCAL(br-vtep): addr:aa:55:aa:55:00:00
>      config:     PORT_DOWN
>      state:      LINK_DOWN
>      speed: 0 Mbps now, 0 Mbps max
> 2018-09-05T22:14:32.116Z|00040|vconn|DBG|unix#2: sent (Success): OFPT_HELLO (OF1.5) (xid=0x3):
>  version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06
> 2018-09-05T22:14:32.116Z|00041|vconn|DBG|unix#2: received: OFPT_HELLO (xid=0x5):
>  version bitmap: 0x01
> 2018-09-05T22:14:32.116Z|00042|vconn|DBG|unix#2: negotiated OpenFlow version 0x01 (we support version 0x06 and earlier, peer supports version 0x01)
> 2018-09-05T22:14:32.116Z|00043|vconn|DBG|unix#2: received: OFPT_FLOW_MOD (xid=0x6): DEL actions=drop
> 2018-09-05T22:14:32.116Z|00044|vconn|DBG|unix#2: received: OFPT_BARRIER_REQUEST (xid=0x7):
> 2018-09-05T22:14:32.116Z|00045|vconn|DBG|unix#2: sent (Success): OFPT_BARRIER_REPLY (xid=0x7):
> 2018-09-05T22:14:32.116Z|00046|connmgr|INFO|br-vtep<->unix#2: 1 flow_mods in the last 0 s (1 deletes)
> 2018-09-05T22:14:32.125Z|00047|bridge|INFO|bridge vtep_bfd: added interface vtep_bfd on port 65534
> 2018-09-05T22:14:32.125Z|00048|bridge|INFO|bridge vtep_bfd: using datapath ID 000072a878786248
> 2018-09-05T22:14:32.125Z|00049|connmgr|INFO|vtep_bfd: added service controller "punix:/home/blp/nicira/ovs/_build/tests/testsuite.dir/2734/vtep_bfd.mgmt"
ovn-northd.log:
> 2018-09-05T22:14:32.227Z|00001|vlog|INFO|opened log file /home/blp/nicira/ovs/_build/tests/testsuite.dir/2734/ovn-northd.log
> 2018-09-05T22:14:32.228Z|00002|reconnect|INFO|unix:/home/blp/nicira/ovs/_build/tests/testsuite.dir/2734/ovnnb_db.sock: connecting...
> 2018-09-05T22:14:32.228Z|00003|reconnect|INFO|unix:/home/blp/nicira/ovs/_build/tests/testsuite.dir/2734/ovnsb_db.sock: connecting...
> 2018-09-05T22:14:32.228Z|00004|reconnect|INFO|unix:/home/blp/nicira/ovs/_build/tests/testsuite.dir/2734/ovnnb_db.sock: connected
> 2018-09-05T22:14:32.228Z|00005|reconnect|INFO|unix:/home/blp/nicira/ovs/_build/tests/testsuite.dir/2734/ovnsb_db.sock: connected
> 2018-09-05T22:14:32.230Z|00006|ovn_northd|INFO|ovn-northd lock acquired. This ovn-northd instance is now active.
ovn-controller-vtep.log:
> 2018-09-05T22:14:32.239Z|00001|vlog|INFO|opened log file /home/blp/nicira/ovs/_build/tests/testsuite.dir/2734/ovn-controller-vtep.log
> 2018-09-05T22:14:32.240Z|00002|reconnect|INFO|unix:/home/blp/nicira/ovs/_build/tests/testsuite.dir/2734/db.sock: connecting...
> 2018-09-05T22:14:32.240Z|00003|reconnect|INFO|unix:/home/blp/nicira/ovs/_build/tests/testsuite.dir/2734/db.sock: connected
> 2018-09-05T22:14:32.241Z|00004|reconnect|INFO|unix:/home/blp/nicira/ovs/_build/tests/testsuite.dir/2734/ovnsb_db.sock: connecting...
> 2018-09-05T22:14:32.241Z|00005|reconnect|INFO|unix:/home/blp/nicira/ovs/_build/tests/testsuite.dir/2734/ovnsb_db.sock: connected
> 2018-09-05T22:14:32.244Z|00006|gateway|INFO|add Chassis row for VTEP physical switch (br-vtep)
2734. ovn-controller-vtep.at:403: 2734. ovn-controller-vtep - vtep-macs 2 (ovn-controller-vtep.at:403): FAILED (ovn-controller-vtep.at:416)


## ------------- ##
## ../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.10.90, which was
| generated by GNU Autoconf 2.69.  Invocation command line was
| 
|   $ ../configure --enable-ssl --enable-Werror --prefix=/usr --localstatedir=/var KARCH=i386 --enable-silent-rules CFLAGS=-g -O2 -fno-diagnostics-show-caret P4C_BEHAVIORAL=/home/blp/.local/bin/p4c-behavioral --enable-sparse CC=gcc-8
| 
| ## --------- ##
| ## Platform. ##
| ## --------- ##
| 
| hostname = sigabrt
| uname -m = x86_64
| uname -r = 3.16.0-4-amd64
| uname -s = Linux
| uname -v = #1 SMP Debian 3.16.36-1+deb8u1 (2016-09-03)
| 
| /usr/bin/uname -p = unknown
| /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: /home/blp/bin
| PATH: /usr/local/bin
| PATH: /usr/bin
| PATH: /bin
| PATH: /usr/local/games
| PATH: /usr/games
| 
| 
| ## ----------- ##
| ## Core tests. ##
| ## ----------- ##
| 
| configure:3016: checking for a BSD-compatible install
| configure:3084: result: /usr/bin/install -c
| configure:3095: checking whether build environment is sane
| configure:3150: result: yes
| configure:3301: checking for a thread-safe mkdir -p
| configure:3340: result: /bin/mkdir -p
| configure:3347: checking for gawk
| configure:3363: found /usr/bin/gawk
| configure:3374: result: gawk
| configure:3385: checking whether make sets $(MAKE)
| configure:3407: result: yes
| configure:3436: checking whether make supports nested variables
| configure:3453: result: yes
| configure:3532: checking how to create a pax tar archive
| configure:3543: tar --version
| tar (GNU tar) 1.29
| Copyright (C) 2015 Free Software Foundation, Inc.
| License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
| 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:3546: $? = 0
| configure:3586: tardir=conftest.dir && eval tar --format=posix -chf - "$tardir" >conftest.tar
| configure:3589: $? = 0
| configure:3593: tar -xf - <conftest.tar
| configure:3596: $? = 0
| configure:3598: cat conftest.dir/file
| GrepMe
| configure:3601: $? = 0
| configure:3614: result: gnutar
| configure:3677: checking for style of include used by make
| configure:3705: result: GNU
| configure:3776: checking for gcc
| configure:3803: result: gcc-8
| configure:4032: checking for C compiler version
| configure:4041: gcc-8 --version >&5
| gcc-8 (Debian 8.1.0-12) 8.1.0
| Copyright (C) 2018 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:4052: $? = 0
| configure:4041: gcc-8 -v >&5
| Using built-in specs.
| COLLECT_GCC=gcc-8
| COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/8/lto-wrapper
| Target: i686-linux-gnu
| Configured with: ../src/configure -v --with-pkgversion='Debian 8.1.0-12' --with-bugurl=file:///usr/share/doc/gcc-8/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-8 --program-prefix=i686-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-targets=all --enable-multiarch --disable-werror --with-arch-32=i686 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu
| Thread model: posix
| gcc version 8.1.0 (Debian 8.1.0-12) 
| configure:4052: $? = 0
| configure:4041: gcc-8 -V >&5
| gcc-8: error: unrecognized command line option '-V'
| gcc-8: fatal error: no input files
| compilation terminated.
| configure:4052: $? = 1
| configure:4041: gcc-8 -qversion >&5
| gcc-8: error: unrecognized command line option '-qversion'; did you mean '--version'?
| gcc-8: fatal error: no input files
| compilation terminated.
| configure:4052: $? = 1
| configure:4072: checking whether the C compiler works
| configure:4094: gcc-8 -g -O2 -fno-diagnostics-show-caret   conftest.c  >&5
| configure:4098: $? = 0
| configure:4146: result: yes
| configure:4149: checking for C compiler default output file name
| configure:4151: result: a.out
| configure:4157: checking for suffix of executables
| configure:4164: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c  >&5
| configure:4168: $? = 0
| configure:4190: result: 
| configure:4212: checking whether we are cross compiling
| configure:4220: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c  >&5
| configure:4224: $? = 0
| configure:4231: ./conftest
| configure:4235: $? = 0
| configure:4250: result: no
| configure:4255: checking for suffix of object files
| configure:4277: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:4281: $? = 0
| configure:4302: result: o
| configure:4306: checking whether we are using the GNU C compiler
| configure:4325: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:4325: $? = 0
| configure:4334: result: yes
| configure:4343: checking whether gcc-8 accepts -g
| configure:4363: gcc-8 -c -g  conftest.c >&5
| configure:4363: $? = 0
| configure:4404: result: yes
| configure:4421: checking for gcc-8 option to accept ISO C89
| configure:4484: gcc-8  -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:4484: $? = 0
| configure:4497: result: none needed
| configure:4522: checking whether gcc-8 understands -c and -o together
| configure:4544: gcc-8 -c conftest.c -o conftest2.o
| configure:4547: $? = 0
| configure:4544: gcc-8 -c conftest.c -o conftest2.o
| configure:4547: $? = 0
| configure:4559: result: yes
| configure:4578: checking dependency style of gcc-8
| configure:4689: result: gcc3
| configure:4704: checking for gcc-8 option to accept ISO C99
| configure:4853: gcc-8  -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:4853: $? = 0
| configure:4866: result: none needed
| configure:4940: checking for g++
| configure:4956: found /usr/bin/g++
| configure:4967: result: g++
| configure:4994: checking for C++ compiler version
| configure:5003: g++ --version >&5
| g++ (Debian 7.3.0-24) 7.3.0
| Copyright (C) 2017 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:5014: $? = 0
| configure:5003: g++ -v >&5
| Using built-in specs.
| COLLECT_GCC=g++
| COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/7/lto-wrapper
| Target: i686-linux-gnu
| Configured with: ../src/configure -v --with-pkgversion='Debian 7.3.0-24' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=i686-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-targets=all --enable-multiarch --disable-werror --with-arch-32=i686 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu
| Thread model: posix
| gcc version 7.3.0 (Debian 7.3.0-24) 
| configure:5014: $? = 0
| configure:5003: g++ -V >&5
| g++: error: unrecognized command line option '-V'
| g++: fatal error: no input files
| compilation terminated.
| configure:5014: $? = 1
| configure:5003: g++ -qversion >&5
| g++: error: unrecognized command line option '-qversion'; did you mean '--version'?
| g++: fatal error: no input files
| compilation terminated.
| configure:5014: $? = 1
| configure:5018: checking whether we are using the GNU C++ compiler
| configure:5037: g++ -c   conftest.cpp >&5
| configure:5037: $? = 0
| configure:5046: result: yes
| configure:5055: checking whether g++ accepts -g
| configure:5075: g++ -c -g  conftest.cpp >&5
| configure:5075: $? = 0
| configure:5116: result: yes
| configure:5141: checking dependency style of g++
| configure:5252: result: gcc3
| configure:5272: checking how to run the C preprocessor
| configure:5303: gcc-8 -E  conftest.c
| configure:5303: $? = 0
| configure:5317: gcc-8 -E  conftest.c
| conftest.c:11:10: fatal error: ac_nonexistent.h: No such file or directory
|  #include <ac_nonexistent.h>
|           ^~~~~~~~~~~~~~~~~~
| compilation terminated.
| configure:5317: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | /* end confdefs.h.  */
| | #include <ac_nonexistent.h>
| configure:5342: result: gcc-8 -E
| configure:5362: gcc-8 -E  conftest.c
| configure:5362: $? = 0
| configure:5376: gcc-8 -E  conftest.c
| conftest.c:11:10: fatal error: ac_nonexistent.h: No such file or directory
|  #include <ac_nonexistent.h>
|           ^~~~~~~~~~~~~~~~~~
| compilation terminated.
| configure:5376: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | /* end confdefs.h.  */
| | #include <ac_nonexistent.h>
| configure:5405: checking for grep that handles long lines and -e
| configure:5463: result: /bin/grep
| configure:5468: checking for fgrep
| configure:5530: result: /bin/grep -F
| configure:5535: checking for egrep
| configure:5597: result: /bin/grep -E
| configure:5656: checking for pkg-config
| configure:5674: found /usr/bin/pkg-config
| configure:5686: result: /usr/bin/pkg-config
| configure:5711: checking pkg-config is at least version 0.9.0
| configure:5714: result: yes
| configure:5729: checking for ANSI C header files
| configure:5749: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:5749: $? = 0
| configure:5822: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c  >&5
| configure:5822: $? = 0
| configure:5822: ./conftest
| configure:5822: $? = 0
| configure:5833: result: yes
| configure:5846: checking for sys/types.h
| configure:5846: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:5846: $? = 0
| configure:5846: result: yes
| configure:5846: checking for sys/stat.h
| configure:5846: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:5846: $? = 0
| configure:5846: result: yes
| configure:5846: checking for stdlib.h
| configure:5846: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:5846: $? = 0
| configure:5846: result: yes
| configure:5846: checking for string.h
| configure:5846: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:5846: $? = 0
| configure:5846: result: yes
| configure:5846: checking for memory.h
| configure:5846: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:5846: $? = 0
| configure:5846: result: yes
| configure:5846: checking for strings.h
| configure:5846: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:5846: $? = 0
| configure:5846: result: yes
| configure:5846: checking for inttypes.h
| configure:5846: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:5846: $? = 0
| configure:5846: result: yes
| configure:5846: checking for stdint.h
| configure:5846: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:5846: $? = 0
| configure:5846: result: yes
| configure:5846: checking for unistd.h
| configure:5846: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:5846: $? = 0
| configure:5846: result: yes
| configure:5859: checking minix/config.h usability
| configure:5859: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| conftest.c:54:10: fatal error: minix/config.h: No such file or directory
| compilation terminated.
| configure:5859: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | #include <minix/config.h>
| configure:5859: result: no
| configure:5859: checking minix/config.h presence
| configure:5859: gcc-8 -E  conftest.c
| conftest.c:21:10: fatal error: minix/config.h: No such file or directory
|  #include <minix/config.h>
|           ^~~~~~~~~~~~~~~~
| compilation terminated.
| configure:5859: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | /* end confdefs.h.  */
| | #include <minix/config.h>
| configure:5859: result: no
| configure:5859: checking for minix/config.h
| configure:5859: result: no
| configure:5880: checking whether it is safe to define __EXTENSIONS__
| configure:5898: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:5898: $? = 0
| configure:5905: result: yes
| configure:5919: checking whether byte ordering is bigendian
| configure:5934: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| conftest.c:27:9: error: unknown type name 'not'
| conftest.c:27:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal'
| conftest.c:27:15: error: unknown type name 'universal'
| configure:5934: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | /* end confdefs.h.  */
| | #ifndef __APPLE_CC__
| | 	       not a universal capable compiler
| | 	     #endif
| | 	     typedef int dummy;
| | 
| configure:5979: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:5979: $? = 0
| configure:5997: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| conftest.c: In function 'main':
| conftest.c:33:4: error: unknown type name 'not'; did you mean 'ino_t'?
| conftest.c:33:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian'
| configure:5997: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | /* end confdefs.h.  */
| | #include <sys/types.h>
| | 		#include <sys/param.h>
| | 
| | int
| | main ()
| | {
| | #if BYTE_ORDER != BIG_ENDIAN
| | 		 not big endian
| | 		#endif
| | 
| |   ;
| |   return 0;
| | }
| configure:6125: result: no
| configure:6150: checking for special C compiler options needed for large files
| configure:6195: result: no
| configure:6201: checking for _FILE_OFFSET_BITS value needed for large files
| configure:6226: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| conftest.c:31:41: warning: result of '-2147483648 << 31' requires 63 bits to represent, but 'long int' only has 32 bits [-Wshift-overflow=]
| conftest.c:32:23: note: in expansion of macro 'LARGE_OFF_T'
| conftest.c:31:73: warning: result of '-2147483648 << 31' requires 63 bits to represent, but 'long int' only has 32 bits [-Wshift-overflow=]
| conftest.c:32:23: note: in expansion of macro 'LARGE_OFF_T'
| conftest.c:31:41: warning: result of '-2147483648 << 31' requires 63 bits to represent, but 'long int' only has 32 bits [-Wshift-overflow=]
| conftest.c:33:13: note: in expansion of macro 'LARGE_OFF_T'
| conftest.c:31:73: warning: result of '-2147483648 << 31' requires 63 bits to represent, but 'long int' only has 32 bits [-Wshift-overflow=]
| conftest.c:33:13: note: in expansion of macro 'LARGE_OFF_T'
| conftest.c:32:7: error: variably modified 'off_t_is_large' at file scope
| configure:6226: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | /* end confdefs.h.  */
| | #include <sys/types.h>
| |  /* Check that off_t can represent 2**63 - 1 correctly.
| |     We can't simply define LARGE_OFF_T to be 9223372036854775807,
| |     since some C++ compilers masquerading as C compilers
| |     incorrectly reject 9223372036854775807.  */
| | #define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31))
| |   int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
| | 		       && LARGE_OFF_T % 2147483647 == 1)
| | 		      ? 1 : -1];
| | int
| | main ()
| | {
| | 
| |   ;
| |   return 0;
| | }
| configure:6250: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:6250: $? = 0
| configure:6258: result: 64
| configure:6373: checking build system type
| configure:6387: result: x86_64-unknown-linux-gnu
| configure:6407: checking host system type
| configure:6420: result: x86_64-unknown-linux-gnu
| configure:6461: checking how to print strings
| configure:6488: result: printf
| configure:6509: checking for a sed that does not truncate output
| configure:6573: result: /bin/sed
| configure:6621: checking for ld used by gcc-8
| configure:6688: result: /usr/bin/ld
| configure:6695: checking if the linker (/usr/bin/ld) is GNU ld
| configure:6710: result: yes
| configure:6722: checking for BSD- or MS-compatible name lister (nm)
| configure:6771: result: /usr/bin/nm -B
| configure:6901: checking the name lister (/usr/bin/nm -B) interface
| configure:6908: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:6911: /usr/bin/nm -B "conftest.o"
| configure:6914: output
| 00000000 B some_variable
| configure:6921: result: BSD nm
| configure:6924: checking whether ln -s works
| configure:6928: result: yes
| configure:6936: checking the maximum length of command line arguments
| configure:7067: result: 1572864
| configure:7084: checking whether the shell understands some XSI constructs
| configure:7094: result: yes
| configure:7098: checking whether the shell understands "+="
| configure:7104: result: yes
| configure:7139: checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format
| configure:7179: result: func_convert_file_noop
| configure:7186: checking how to convert x86_64-unknown-linux-gnu file names to toolchain format
| configure:7206: result: func_convert_file_noop
| configure:7213: checking for /usr/bin/ld option to reload object files
| configure:7220: result: -r
| configure:7294: checking for objdump
| configure:7310: found /usr/bin/objdump
| configure:7321: result: objdump
| configure:7353: checking how to recognize dependent libraries
| configure:7551: result: pass_all
| configure:7636: checking for dlltool
| configure:7666: result: no
| configure:7696: checking how to associate runtime and link libraries
| configure:7723: result: printf %s\n
| configure:7783: checking for ar
| configure:7799: found /usr/bin/ar
| configure:7810: result: ar
| configure:7847: checking for archiver @FILE support
| configure:7864: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:7864: $? = 0
| configure:7867: ar cru libconftest.a @conftest.lst >&5
| ar: `u' modifier ignored since `D' is the default (see `U')
| configure:7870: $? = 0
| configure:7875: ar cru libconftest.a @conftest.lst >&5
| ar: `u' modifier ignored since `D' is the default (see `U')
| ar: conftest.o: No such file or directory
| configure:7878: $? = 1
| configure:7890: result: @
| configure:7948: checking for strip
| configure:7964: found /usr/bin/strip
| configure:7975: result: strip
| configure:8047: checking for ranlib
| configure:8063: found /usr/bin/ranlib
| configure:8074: result: ranlib
| configure:8176: checking command to parse /usr/bin/nm -B output from gcc-8 object
| configure:8296: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:8299: $? = 0
| configure:8303: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm
| configure:8306: $? = 0
| configure:8372: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c conftstm.o >&5
| configure:8375: $? = 0
| configure:8413: result: ok
| configure:8450: checking for sysroot
| configure:8480: result: no
| configure:8557: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:8560: $? = 0
| configure:8749: checking for mt
| configure:8765: found /bin/mt
| configure:8776: result: mt
| configure:8799: checking if mt is a manifest tool
| configure:8805: mt '-?'
| configure:8813: result: no
| configure:9452: checking for dlfcn.h
| configure:9452: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:9452: $? = 0
| configure:9452: result: yes
| configure:9668: checking for objdir
| configure:9683: result: .libs
| configure:9954: checking if gcc-8 supports -fno-rtti -fno-exceptions
| configure:9972: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  -fno-rtti -fno-exceptions conftest.c >&5
| cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C
| configure:9976: $? = 0
| configure:9989: result: no
| configure:10316: checking for gcc-8 option to produce PIC
| configure:10323: result: -fPIC -DPIC
| configure:10331: checking if gcc-8 PIC flag -fPIC -DPIC works
| configure:10349: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  -fPIC -DPIC -DPIC conftest.c >&5
| configure:10353: $? = 0
| configure:10366: result: yes
| configure:10395: checking if gcc-8 static flag -static works
| configure:10423: result: yes
| configure:10438: checking if gcc-8 supports -c -o file.o
| configure:10459: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  -o out/conftest2.o conftest.c >&5
| configure:10463: $? = 0
| configure:10485: result: yes
| configure:10493: checking if gcc-8 supports -c -o file.o
| configure:10540: result: yes
| configure:10573: checking whether the gcc-8 linker (/usr/bin/ld -m elf_i386) supports shared libraries
| configure:11730: result: yes
| configure:11970: checking dynamic linker characteristics
| configure:12470: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   -Wl,-rpath -Wl,/foo conftest.c  >&5
| configure:12470: $? = 0
| configure:12704: result: GNU/Linux ld.so
| configure:12811: checking how to hardcode library paths into programs
| configure:12836: result: immediate
| configure:13376: checking whether stripping libraries is possible
| configure:13381: result: yes
| configure:13416: checking if libtool supports shared libraries
| configure:13418: result: yes
| configure:13421: checking whether to build shared libraries
| configure:13442: result: no
| configure:13445: checking whether to build static libraries
| configure:13449: result: yes
| configure:13472: checking how to run the C++ preprocessor
| configure:13499: g++ -E  conftest.cpp
| configure:13499: $? = 0
| configure:13513: g++ -E  conftest.cpp
| conftest.cpp:29:10: fatal error: ac_nonexistent.h: No such file or directory
|  #include <ac_nonexistent.h>
|           ^~~~~~~~~~~~~~~~~~
| compilation terminated.
| configure:13513: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define _FILE_OFFSET_BITS 64
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | /* end confdefs.h.  */
| | #include <ac_nonexistent.h>
| configure:13538: result: g++ -E
| configure:13558: g++ -E  conftest.cpp
| configure:13558: $? = 0
| configure:13572: g++ -E  conftest.cpp
| conftest.cpp:29:10: fatal error: ac_nonexistent.h: No such file or directory
|  #include <ac_nonexistent.h>
|           ^~~~~~~~~~~~~~~~~~
| compilation terminated.
| configure:13572: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define _FILE_OFFSET_BITS 64
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | /* end confdefs.h.  */
| | #include <ac_nonexistent.h>
| configure:13741: checking for ld used by g++
| configure:13808: result: /usr/bin/ld -m elf_i386
| configure:13815: checking if the linker (/usr/bin/ld -m elf_i386) is GNU ld
| configure:13830: result: yes
| configure:13885: checking whether the g++ linker (/usr/bin/ld -m elf_i386) supports shared libraries
| configure:14887: result: yes
| configure:14923: g++ -c -g -O2  conftest.cpp >&5
| configure:14926: $? = 0
| configure:15446: checking for g++ option to produce PIC
| configure:15453: result: -fPIC -DPIC
| configure:15461: checking if g++ PIC flag -fPIC -DPIC works
| configure:15479: g++ -c -g -O2  -fPIC -DPIC -DPIC conftest.cpp >&5
| configure:15483: $? = 0
| configure:15496: result: yes
| configure:15519: checking if g++ static flag -static works
| configure:15547: result: yes
| configure:15559: checking if g++ supports -c -o file.o
| configure:15580: g++ -c -g -O2  -o out/conftest2.o conftest.cpp >&5
| configure:15584: $? = 0
| configure:15606: result: yes
| configure:15611: checking if g++ supports -c -o file.o
| configure:15658: result: yes
| configure:15688: checking whether the g++ linker (/usr/bin/ld -m elf_i386) supports shared libraries
| configure:15727: result: yes
| configure:15868: checking dynamic linker characteristics
| configure:16536: result: GNU/Linux ld.so
| configure:16589: checking how to hardcode library paths into programs
| configure:16614: result: immediate
| configure:16711: checking for library containing pow
| configure:16742: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c  >&5
| conftest.c:36:6: warning: conflicting types for built-in function 'pow' [-Wbuiltin-declaration-mismatch]
| /usr/bin/ld: /tmp/cc7smoEK.o: in function `main':
| /home/blp/nicira/ovs/_build/conftest.c:40: undefined reference to `pow'
| collect2: error: ld returned 1 exit status
| configure:16742: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define _FILE_OFFSET_BITS 64
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | /* 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.  */
| | #ifdef __cplusplus
| | extern "C"
| | #endif
| | char pow ();
| | int
| | main ()
| | {
| | return pow ();
| |   ;
| |   return 0;
| | }
| configure:16742: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -lm   >&5
| conftest.c:36:6: warning: conflicting types for built-in function 'pow' [-Wbuiltin-declaration-mismatch]
| configure:16742: $? = 0
| configure:16759: result: -lm
| configure:16767: checking for library containing clock_gettime
| configure:16798: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -lm  >&5
| configure:16798: $? = 0
| configure:16815: result: none required
| configure:16823: checking for library containing timer_create
| configure:16854: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -lm  >&5
| /usr/bin/ld: /tmp/ccR5yqxP.o: in function `main':
| /home/blp/nicira/ovs/_build/conftest.c:40: undefined reference to `timer_create'
| collect2: error: ld returned 1 exit status
| configure:16854: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define _FILE_OFFSET_BITS 64
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | /* 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.  */
| | #ifdef __cplusplus
| | extern "C"
| | #endif
| | char timer_create ();
| | int
| | main ()
| | {
| | return timer_create ();
| |   ;
| |   return 0;
| | }
| configure:16854: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -lrt  -lm  >&5
| configure:16854: $? = 0
| configure:16871: result: -lrt
| configure:16879: checking for library containing pthread_create
| configure:16910: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -lrt -lm  >&5
| /usr/bin/ld: /tmp/cc38j8wT.o: undefined reference to symbol 'pthread_create@@GLIBC_2.1'
| /usr/bin/ld: //lib/i386-linux-gnu/libpthread.so.0: error adding symbols: DSO missing from command line
| collect2: error: ld returned 1 exit status
| configure:16910: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define _FILE_OFFSET_BITS 64
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | /* 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.  */
| | #ifdef __cplusplus
| | extern "C"
| | #endif
| | char pthread_create ();
| | int
| | main ()
| | {
| | return pthread_create ();
| |   ;
| |   return 0;
| | }
| configure:16910: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -lpthread  -lrt -lm  >&5
| configure:16910: $? = 0
| configure:16927: result: -lpthread
| configure:16935: checking whether strerror_r is declared
| configure:16935: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:16935: $? = 0
| configure:16935: result: yes
| configure:16948: checking for strerror_r
| configure:16948: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -lpthread -lrt -lm  >&5
| configure:16948: $? = 0
| configure:16948: result: yes
| configure:16957: checking whether strerror_r returns char *
| configure:16981: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:16981: $? = 0
| configure:17019: result: yes
| configure:17028: checking vmware.h usability
| configure:17028: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| conftest.c:65:10: fatal error: vmware.h: No such file or directory
| compilation terminated.
| configure:17028: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define _FILE_OFFSET_BITS 64
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | #include <vmware.h>
| configure:17028: result: no
| configure:17028: checking vmware.h presence
| configure:17028: gcc-8 -E  conftest.c
| conftest.c:32:10: fatal error: vmware.h: No such file or directory
|  #include <vmware.h>
|           ^~~~~~~~~~
| compilation terminated.
| configure:17028: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define _FILE_OFFSET_BITS 64
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | /* end confdefs.h.  */
| | #include <vmware.h>
| configure:17028: result: no
| configure:17028: checking for vmware.h
| configure:17028: result: no
| configure:17049: checking for MSVC x64 compiler
| configure:17064: result: no
| configure:17069: checking windows.h usability
| configure:17069: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| conftest.c:65:10: fatal error: windows.h: No such file or directory
| compilation terminated.
| configure:17069: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define _FILE_OFFSET_BITS 64
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | #include <windows.h>
| configure:17069: result: no
| configure:17069: checking windows.h presence
| configure:17069: gcc-8 -E  conftest.c
| conftest.c:32:10: fatal error: windows.h: No such file or directory
|  #include <windows.h>
|           ^~~~~~~~~~~
| compilation terminated.
| configure:17069: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define _FILE_OFFSET_BITS 64
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | /* end confdefs.h.  */
| | #include <windows.h>
| configure:17069: result: no
| configure:17069: checking for windows.h
| configure:17069: result: no
| configure:17291: checking for linux/netlink.h
| configure:17291: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:17291: $? = 0
| configure:17291: result: yes
| configure:17347: checking for pkg-config
| configure:17377: result: /usr/bin/pkg-config
| configure:17439: checking whether compiling and linking against OpenSSL works
| Trying link with SSL_LDFLAGS=; SSL_LIBS=-lssl -lcrypto ; SSL_INCLUDES=
| configure:17461: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret     conftest.c -lssl -lcrypto  -lpthread -lrt -lm  >&5
| configure:17461: $? = 0
| configure:17463: result: yes
| configure:17531: checking for capng_clear in -lcap-ng
| configure:17556: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -lcap-ng  -lpthread -lrt -lm  >&5
| /usr/bin/ld: cannot find -lcap-ng
| collect2: error: ld returned 1 exit status
| configure:17556: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define _FILE_OFFSET_BITS 64
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define VSTUDIO_DDK 1
| | #define HAVE_NETLINK 1
| | #define HAVE_OPENSSL 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.  */
| | #ifdef __cplusplus
| | extern "C"
| | #endif
| | char capng_clear ();
| | int
| | main ()
| | {
| | return capng_clear ();
| |   ;
| |   return 0;
| | }
| configure:17565: result: no
| configure:17579: WARNING: cannot find libcap-ng.
| --user option will not be supported on Linux.
| (you may use --disable-libcapng to suppress this warning). 
| configure:17612: checking for Python 2.x for x >= 7
| configure:17645: result: /usr/bin/python2
| configure:17665: checking for Python 3.x for x >= 4
| configure:17698: result: /usr/bin/python3
| configure:17718: checking for Python 2 or 3
| configure:17736: result: /usr/bin/python2
| configure:17750: checking for flake8
| configure:17761: result: yes
| configure:17771: checking for sphinx
| configure:17782: result: yes
| configure:17792: checking for dot
| configure:17803: result: yes
| configure:17813: checking net/if_packet.h usability
| configure:17813: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:17813: $? = 0
| configure:17813: result: yes
| configure:17813: checking net/if_packet.h presence
| configure:17813: gcc-8 -E  conftest.c
| configure:17813: $? = 0
| configure:17813: result: yes
| configure:17813: checking for net/if_packet.h
| configure:17813: result: yes
| configure:17834: checking net/if_dl.h usability
| configure:17834: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| conftest.c:69:10: fatal error: net/if_dl.h: No such file or directory
| compilation terminated.
| configure:17834: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define _FILE_OFFSET_BITS 64
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define VSTUDIO_DDK 1
| | #define HAVE_NETLINK 1
| | #define HAVE_OPENSSL 1
| | #define HAVE_IF_PACKET 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | #include <net/if_dl.h>
| configure:17834: result: no
| configure:17834: checking net/if_dl.h presence
| configure:17834: gcc-8 -E  conftest.c
| conftest.c:36:10: fatal error: net/if_dl.h: No such file or directory
|  #include <net/if_dl.h>
|           ^~~~~~~~~~~~~
| compilation terminated.
| configure:17834: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define _FILE_OFFSET_BITS 64
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define VSTUDIO_DDK 1
| | #define HAVE_NETLINK 1
| | #define HAVE_OPENSSL 1
| | #define HAVE_IF_PACKET 1
| | /* end confdefs.h.  */
| | #include <net/if_dl.h>
| configure:17834: result: no
| configure:17834: checking for net/if_dl.h
| configure:17834: result: no
| configure:17913: checking whether strtok_r macro segfaults on some inputs
| configure:17949: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -lpthread -lrt -lm  >&5
| configure:17949: $? = 0
| configure:17949: ./conftest
| configure:17949: $? = 0
| configure:17959: result: no
| configure:17967: checking whether sys_siglist is declared
| configure:17967: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:17967: $? = 0
| configure:17967: result: yes
| configure:17979: checking for struct stat.st_mtim.tv_nsec
| configure:17979: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:17979: $? = 0
| configure:17979: result: yes
| configure:17989: checking for struct stat.st_mtimensec
| configure:17989: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| conftest.c: In function 'main':
| conftest.c:44:13: error: 'struct stat' has no member named 'st_mtimensec'; did you mean 'st_mtim'?
| configure:17989: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define _FILE_OFFSET_BITS 64
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define VSTUDIO_DDK 1
| | #define HAVE_NETLINK 1
| | #define HAVE_OPENSSL 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| | /* end confdefs.h.  */
| | #include <sys/stat.h>
| | 
| | int
| | main ()
| | {
| | static struct stat ac_aggr;
| | if (ac_aggr.st_mtimensec)
| | return 0;
| |   ;
| |   return 0;
| | }
| configure:17989: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| conftest.c: In function 'main':
| conftest.c:44:20: error: 'struct stat' has no member named 'st_mtimensec'; did you mean 'st_mtim'?
| configure:17989: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define _FILE_OFFSET_BITS 64
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define VSTUDIO_DDK 1
| | #define HAVE_NETLINK 1
| | #define HAVE_OPENSSL 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| | /* end confdefs.h.  */
| | #include <sys/stat.h>
| | 
| | int
| | main ()
| | {
| | static struct stat ac_aggr;
| | if (sizeof ac_aggr.st_mtimensec)
| | return 0;
| |   ;
| |   return 0;
| | }
| configure:17989: result: no
| configure:18000: checking for struct ifreq.ifr_flagshigh
| configure:18000: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| conftest.c: In function 'main':
| conftest.c:44:12: error: 'struct ifreq' has no member named 'ifr_flagshigh'
| configure:18000: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define _FILE_OFFSET_BITS 64
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define VSTUDIO_DDK 1
| | #define HAVE_NETLINK 1
| | #define HAVE_OPENSSL 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| | /* end confdefs.h.  */
| | #include <net/if.h>
| | 
| | int
| | main ()
| | {
| | static struct ifreq ac_aggr;
| | if (ac_aggr.ifr_flagshigh)
| | return 0;
| |   ;
| |   return 0;
| | }
| configure:18000: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| conftest.c: In function 'main':
| conftest.c:44:19: error: 'struct ifreq' has no member named 'ifr_flagshigh'
| configure:18000: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define _FILE_OFFSET_BITS 64
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define VSTUDIO_DDK 1
| | #define HAVE_NETLINK 1
| | #define HAVE_OPENSSL 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| | /* end confdefs.h.  */
| | #include <net/if.h>
| | 
| | int
| | main ()
| | {
| | static struct ifreq ac_aggr;
| | if (sizeof ac_aggr.ifr_flagshigh)
| | return 0;
| |   ;
| |   return 0;
| | }
| configure:18000: result: no
| configure:18011: checking for struct mmsghdr.msg_len
| configure:18011: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:18011: $? = 0
| configure:18011: result: yes
| configure:18022: checking for struct sockaddr_in6.sin6_scope_id
| configure:18022: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:18022: $? = 0
| configure:18022: result: yes
| configure:18038: checking for mlockall
| configure:18038: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -lpthread -lrt -lm  >&5
| configure:18038: $? = 0
| configure:18038: result: yes
| configure:18038: checking for strnlen
| configure:18038: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -lpthread -lrt -lm  >&5
| configure:18038: $? = 0
| configure:18038: result: yes
| configure:18038: checking for getloadavg
| configure:18038: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -lpthread -lrt -lm  >&5
| configure:18038: $? = 0
| configure:18038: result: yes
| configure:18038: checking for statvfs
| configure:18038: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -lpthread -lrt -lm  >&5
| configure:18038: $? = 0
| configure:18038: result: yes
| configure:18038: checking for getmntent_r
| configure:18038: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -lpthread -lrt -lm  >&5
| configure:18038: $? = 0
| configure:18038: result: yes
| configure:18038: checking for sendmmsg
| configure:18038: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -lpthread -lrt -lm  >&5
| configure:18038: $? = 0
| configure:18038: result: yes
| configure:18038: checking for clock_gettime
| configure:18038: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -lpthread -lrt -lm  >&5
| configure:18038: $? = 0
| configure:18038: result: yes
| configure:18050: checking mntent.h usability
| configure:18050: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:18050: $? = 0
| configure:18050: result: yes
| configure:18050: checking mntent.h presence
| configure:18050: gcc-8 -E  conftest.c
| configure:18050: $? = 0
| configure:18050: result: yes
| configure:18050: checking for mntent.h
| configure:18050: result: yes
| configure:18050: checking sys/statvfs.h usability
| configure:18050: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:18050: $? = 0
| configure:18050: result: yes
| configure:18050: checking sys/statvfs.h presence
| configure:18050: gcc-8 -E  conftest.c
| configure:18050: $? = 0
| configure:18050: result: yes
| configure:18050: checking for sys/statvfs.h
| configure:18050: result: yes
| configure:18050: checking linux/types.h usability
| configure:18050: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:18050: $? = 0
| configure:18050: result: yes
| configure:18050: checking linux/types.h presence
| configure:18050: gcc-8 -E  conftest.c
| configure:18050: $? = 0
| configure:18050: result: yes
| configure:18050: checking for linux/types.h
| configure:18050: result: yes
| configure:18050: checking linux/if_ether.h usability
| configure:18050: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:18050: $? = 0
| configure:18050: result: yes
| configure:18050: checking linux/if_ether.h presence
| configure:18050: gcc-8 -E  conftest.c
| configure:18050: $? = 0
| configure:18050: result: yes
| configure:18050: checking for linux/if_ether.h
| configure:18050: result: yes
| configure:18063: checking linux/net_namespace.h usability
| configure:18063: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:18063: $? = 0
| configure:18063: result: yes
| configure:18063: checking linux/net_namespace.h presence
| configure:18063: gcc-8 -E  conftest.c
| configure:18063: $? = 0
| configure:18063: result: yes
| configure:18063: checking for linux/net_namespace.h
| configure:18063: result: yes
| configure:18063: checking stdatomic.h usability
| configure:18063: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:18063: $? = 0
| configure:18063: result: yes
| configure:18063: checking stdatomic.h presence
| configure:18063: gcc-8 -E  conftest.c
| configure:18063: $? = 0
| configure:18063: result: yes
| configure:18063: checking for stdatomic.h
| configure:18063: result: yes
| configure:18075: checking for net/if_mib.h
| configure:18075: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| conftest.c:56:10: fatal error: net/if_mib.h: No such file or directory
| compilation terminated.
| configure:18075: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define _FILE_OFFSET_BITS 64
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define VSTUDIO_DDK 1
| | #define HAVE_NETLINK 1
| | #define HAVE_OPENSSL 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #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 <sys/types.h>
| | #include <net/if.h>
| | 
| | #include <net/if_mib.h>
| configure:18075: result: no
| configure:18115: checking for library containing backtrace
| configure:18146: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -lpthread -lrt -lm  >&5
| configure:18146: $? = 0
| configure:18163: result: none required
| configure:18175: checking linux/perf_event.h usability
| configure:18175: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:18175: $? = 0
| configure:18175: result: yes
| configure:18175: checking linux/perf_event.h presence
| configure:18175: gcc-8 -E  conftest.c
| configure:18175: $? = 0
| configure:18175: result: yes
| configure:18175: checking for linux/perf_event.h
| configure:18175: result: yes
| configure:18187: checking valgrind/valgrind.h usability
| configure:18187: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:18187: $? = 0
| configure:18187: result: yes
| configure:18187: checking valgrind/valgrind.h presence
| configure:18187: gcc-8 -E  conftest.c
| configure:18187: $? = 0
| configure:18187: result: yes
| configure:18187: checking for valgrind/valgrind.h
| configure:18187: result: yes
| configure:18197: checking for connect in -lsocket
| configure:18222: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -lsocket  -lpthread -lrt -lm  >&5
| /usr/bin/ld: cannot find -lsocket
| collect2: error: ld returned 1 exit status
| configure:18222: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define _FILE_OFFSET_BITS 64
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define VSTUDIO_DDK 1
| | #define HAVE_NETLINK 1
| | #define HAVE_OPENSSL 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #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_BACKTRACE 1
| | #define HAVE_LINUX_PERF_EVENT_H 1
| | #define HAVE_VALGRIND_VALGRIND_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.  */
| | #ifdef __cplusplus
| | extern "C"
| | #endif
| | char connect ();
| | int
| | main ()
| | {
| | return connect ();
| |   ;
| |   return 0;
| | }
| configure:18231: result: no
| configure:18242: checking for library containing gethostbyname
| configure:18273: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -lpthread -lrt -lm  >&5
| configure:18273: $? = 0
| configure:18290: result: none required
| configure:18298: checking XenServer release
| configure:18310: result: none
| configure:18322: checking for groff
| configure:18333: result: yes
| configure:18343: checking whether gcc-8 has <threads.h> that supports thread_local
| configure:18360: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -lpthread -lrt -lm  >&5
| conftest.c:56:10: fatal error: threads.h: No such file or directory
| compilation terminated.
| configure:18360: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define _FILE_OFFSET_BITS 64
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define VSTUDIO_DDK 1
| | #define HAVE_NETLINK 1
| | #define HAVE_OPENSSL 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #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_BACKTRACE 1
| | #define HAVE_LINUX_PERF_EVENT_H 1
| | #define HAVE_VALGRIND_VALGRIND_H 1
| | /* end confdefs.h.  */
| | #include <threads.h>
| | static thread_local int var;
| | int
| | main ()
| | {
| | return var;
| |   ;
| |   return 0;
| | }
| configure:18368: result: no
| configure:18375: checking whether gcc-8 supports __thread
| configure:18391: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -lpthread -lrt -lm  >&5
| configure:18391: $? = 0
| configure:18399: result: yes
| configure:18407: checking for library containing __atomic_load_8
| configure:18438: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -lpthread -lrt -lm  >&5
| conftest.c:64:6: warning: conflicting types for built-in function '__atomic_load_8' [-Wbuiltin-declaration-mismatch]
| /usr/bin/ld: /tmp/ccBtTJJA.o: in function `main':
| /home/blp/nicira/ovs/_build/conftest.c:68: undefined reference to `__atomic_load_8'
| collect2: error: ld returned 1 exit status
| configure:18438: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define _FILE_OFFSET_BITS 64
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define VSTUDIO_DDK 1
| | #define HAVE_NETLINK 1
| | #define HAVE_OPENSSL 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #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_BACKTRACE 1
| | #define HAVE_LINUX_PERF_EVENT_H 1
| | #define HAVE_VALGRIND_VALGRIND_H 1
| | #define HAVE___THREAD 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.  */
| | #ifdef __cplusplus
| | extern "C"
| | #endif
| | char __atomic_load_8 ();
| | int
| | main ()
| | {
| | return __atomic_load_8 ();
| |   ;
| |   return 0;
| | }
| configure:18438: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -latomic  -lpthread -lrt -lm  >&5
| conftest.c:64:6: warning: conflicting types for built-in function '__atomic_load_8' [-Wbuiltin-declaration-mismatch]
| configure:18438: $? = 0
| configure:18455: result: -latomic
| configure:18463: checking whether gcc-8 supports GCC 4.0+ atomic built-ins
| configure:18530: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -latomic -lpthread -lrt -lm  >&5
| configure:18530: $? = 0
| configure:18538: result: yes
| configure:18545: checking value of __atomic_always_lock_free(1)
| configure:18550: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -latomic -lpthread -lrt -lm  >&5
| configure:18550: $? = 0
| configure:18550: ./conftest
| configure:18550: $? = 0
| configure:18557: result: 1
| configure:18566: checking value of __atomic_always_lock_free(2)
| configure:18571: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -latomic -lpthread -lrt -lm  >&5
| configure:18571: $? = 0
| configure:18571: ./conftest
| configure:18571: $? = 0
| configure:18578: result: 1
| configure:18587: checking value of __atomic_always_lock_free(4)
| configure:18592: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -latomic -lpthread -lrt -lm  >&5
| configure:18592: $? = 0
| configure:18592: ./conftest
| configure:18592: $? = 0
| configure:18599: result: 1
| configure:18608: checking value of __atomic_always_lock_free(8)
| configure:18613: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -latomic -lpthread -lrt -lm  >&5
| configure:18613: $? = 0
| configure:18613: ./conftest
| configure:18613: $? = 0
| configure:18620: result: 1
| configure:18629: checking for library containing aio_write
| configure:18660: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -latomic -lpthread -lrt -lm  >&5
| configure:18660: $? = 0
| configure:18677: result: none required
| configure:18695: checking for pthread_set_name_np
| configure:18695: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -latomic -lpthread -lrt -lm  >&5
| /usr/bin/ld: /tmp/ccpEtGMS.o: in function `main':
| /home/blp/nicira/ovs/_build/conftest.c:96: undefined reference to `pthread_set_name_np'
| collect2: error: ld returned 1 exit status
| configure:18695: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define _FILE_OFFSET_BITS 64
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define VSTUDIO_DDK 1
| | #define HAVE_NETLINK 1
| | #define HAVE_OPENSSL 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #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_BACKTRACE 1
| | #define HAVE_LINUX_PERF_EVENT_H 1
| | #define HAVE_VALGRIND_VALGRIND_H 1
| | #define HAVE___THREAD 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 <limits.h> declares pthread_set_name_np.
| |    For example, HP-UX 11i <limits.h> 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 (); below.
| |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| |     <limits.h> exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include <limits.h>
| | #else
| | # include <assert.h>
| | #endif
| | 
| | #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 ();
| | /* 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 ()
| | {
| | return pthread_set_name_np ();
| |   ;
| |   return 0;
| | }
| configure:18695: result: no
| configure:18705: checking for pthread_setname_np() variant
| configure:18722: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -latomic -lpthread -lrt -lm  >&5
| configure:18722: $? = 0
| configure:18748: result: glibc
| configure:18763: checking whether __linux__ is defined
| configure:18779: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:18779: $? = 0
| configure:18786: result: true
| configure:18796: checking linker output version information
| configure:18804: result: libX-2.10.so.0.0.90)
| configure:18843: checking whether g++ supports C++11 features by default
| configure:19137: g++ -c -g -O2  conftest.cpp >&5
| configure:19137: $? = 0
| configure:19144: result: yes
| configure:19831: checking atomic usability
| configure:19831: g++ -c -g -O2  conftest.cpp >&5
| configure:19831: $? = 0
| configure:19831: result: yes
| configure:19831: checking atomic presence
| configure:19831: g++ -E  conftest.cpp
| configure:19831: $? = 0
| configure:19831: result: yes
| configure:19831: checking for atomic
| configure:19831: result: yes
| configure:19858: checking for working posix_memalign
| configure:19882: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -latomic -lpthread -lrt -lm  >&5
| configure:19882: $? = 0
| configure:19882: ./conftest
| configure:19882: $? = 0
| configure:19892: result: yes
| configure:19900: checking for ub_ctx_create in -lunbound
| configure:19925: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret   conftest.c -lunbound  -latomic -lpthread -lrt -lm  >&5
| configure:19925: $? = 0
| configure:19934: result: yes
| configure:19958: checking whether the preprocessor supports include_next
| configure:19996: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  -Iconftestd1b -Iconftestd2 conftest.c >&5
| configure:19996: $? = 0
| configure:20017: result: yes
| configure:20038: checking whether system header files limit the line length
| configure:20061: result: no
| configure:20087: checking for stdio.h
| configure:20087: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:20087: $? = 0
| configure:20087: result: yes
| configure:20087: checking for string.h
| configure:20087: result: yes
| configure:20252: checking whether gcc-8 accepts -Werror
| configure:20263: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  -Werror  conftest.c >&5
| configure:20263: $? = 0
| configure:20276: result: yes
| configure:20285: checking whether gcc-8 accepts -Wall
| configure:20296: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -Werror -Wall  conftest.c >&5
| configure:20296: $? = 0
| configure:20309: result: yes
| configure:20319: checking whether gcc-8 accepts -Wextra
| configure:20330: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -Werror -Wextra  conftest.c >&5
| configure:20330: $? = 0
| configure:20343: result: yes
| configure:20353: checking whether gcc-8 accepts -Wno-sign-compare
| configure:20364: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -Werror -Wno-sign-compare  conftest.c >&5
| configure:20364: $? = 0
| configure:20377: result: yes
| configure:20387: checking whether gcc-8 accepts -Wpointer-arith
| configure:20398: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -Werror -Wpointer-arith  conftest.c >&5
| configure:20398: $? = 0
| configure:20411: result: yes
| configure:20421: checking whether gcc-8 accepts -Wformat -Wformat-security
| configure:20432: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -Werror -Wformat -Wformat-security  conftest.c >&5
| configure:20432: $? = 0
| configure:20445: result: yes
| configure:20455: checking whether gcc-8 accepts -Wswitch-enum
| configure:20466: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -Werror -Wswitch-enum  conftest.c >&5
| configure:20466: $? = 0
| configure:20479: result: yes
| configure:20489: checking whether gcc-8 accepts -Wunused-parameter
| configure:20500: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -Werror -Wunused-parameter  conftest.c >&5
| configure:20500: $? = 0
| configure:20513: result: yes
| configure:20523: checking whether gcc-8 accepts -Wbad-function-cast
| configure:20534: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -Werror -Wbad-function-cast  conftest.c >&5
| configure:20534: $? = 0
| configure:20547: result: yes
| configure:20557: checking whether gcc-8 accepts -Wcast-align
| configure:20568: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -Werror -Wcast-align  conftest.c >&5
| configure:20568: $? = 0
| configure:20581: result: yes
| configure:20591: checking whether gcc-8 accepts -Wstrict-prototypes
| configure:20602: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -Werror -Wstrict-prototypes  conftest.c >&5
| configure:20602: $? = 0
| configure:20615: result: yes
| configure:20625: checking whether gcc-8 accepts -Wold-style-definition
| configure:20636: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -Werror -Wold-style-definition  conftest.c >&5
| configure:20636: $? = 0
| configure:20649: result: yes
| configure:20659: checking whether gcc-8 accepts -Wmissing-prototypes
| configure:20670: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -Werror -Wmissing-prototypes  conftest.c >&5
| configure:20670: $? = 0
| configure:20683: result: yes
| configure:20693: checking whether gcc-8 accepts -Wmissing-field-initializers
| configure:20704: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -Werror -Wmissing-field-initializers  conftest.c >&5
| configure:20704: $? = 0
| configure:20717: result: yes
| configure:20727: checking whether gcc-8 accepts -Wthread-safety
| configure:20738: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -Werror -Wthread-safety  conftest.c >&5
| gcc-8: error: unrecognized command line option '-Wthread-safety'; did you mean '-fthread-jumps'?
| configure:20738: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define _FILE_OFFSET_BITS 64
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define VSTUDIO_DDK 1
| | #define HAVE_NETLINK 1
| | #define HAVE_OPENSSL 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #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_BACKTRACE 1
| | #define HAVE_LINUX_PERF_EVENT_H 1
| | #define HAVE_VALGRIND_VALGRIND_H 1
| | #define HAVE___THREAD 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_ATOMIC 1
| | #define HAVE_POSIX_MEMALIGN 1
| | #define HAVE_UNBOUND 1
| | #define HAVE_STDIO_H 1
| | #define HAVE_STRING_H 1
| | /* end confdefs.h.  */
| | int x;
| configure:20751: result: no
| configure:20761: checking whether gcc-8 accepts -fno-strict-aliasing
| configure:20772: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -Werror -fno-strict-aliasing  conftest.c >&5
| configure:20772: $? = 0
| configure:20785: result: yes
| configure:20795: checking whether gcc-8 accepts -Wswitch-bool
| configure:20806: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -Werror -Wswitch-bool  conftest.c >&5
| configure:20806: $? = 0
| configure:20819: result: yes
| configure:20829: checking whether gcc-8 accepts -Wlogical-not-parentheses
| configure:20840: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -Werror -Wlogical-not-parentheses  conftest.c >&5
| configure:20840: $? = 0
| configure:20853: result: yes
| configure:20863: checking whether gcc-8 accepts -Wsizeof-array-argument
| configure:20874: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -Werror -Wsizeof-array-argument  conftest.c >&5
| configure:20874: $? = 0
| configure:20887: result: yes
| configure:20897: checking whether gcc-8 accepts -Wbool-compare
| configure:20908: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -Werror -Wbool-compare  conftest.c >&5
| configure:20908: $? = 0
| configure:20921: result: yes
| configure:20931: checking whether gcc-8 accepts -Wshift-negative-value
| configure:20942: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -Werror -Wshift-negative-value  conftest.c >&5
| configure:20942: $? = 0
| configure:20955: result: yes
| configure:20965: checking whether gcc-8 accepts -Wduplicated-cond
| configure:20976: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -Werror -Wduplicated-cond  conftest.c >&5
| configure:20976: $? = 0
| configure:20989: result: yes
| configure:20999: checking whether gcc-8 accepts -Qunused-arguments
| configure:21010: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -Werror -Qunused-arguments  conftest.c >&5
| gcc-8: error: unrecognized command line option '-Qunused-arguments'; did you mean '-Wunused-parameter'?
| configure:21010: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define _FILE_OFFSET_BITS 64
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define VSTUDIO_DDK 1
| | #define HAVE_NETLINK 1
| | #define HAVE_OPENSSL 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #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_BACKTRACE 1
| | #define HAVE_LINUX_PERF_EVENT_H 1
| | #define HAVE_VALGRIND_VALGRIND_H 1
| | #define HAVE___THREAD 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_ATOMIC 1
| | #define HAVE_POSIX_MEMALIGN 1
| | #define HAVE_UNBOUND 1
| | #define HAVE_STDIO_H 1
| | #define HAVE_STRING_H 1
| | /* end confdefs.h.  */
| | int x;
| configure:21023: result: no
| configure:21033: checking whether gcc-8 accepts -Wshadow
| configure:21044: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -Werror -Wshadow  conftest.c >&5
| configure:21044: $? = 0
| configure:21057: result: yes
| configure:21067: checking whether gcc-8 accepts -Wmultistatement-macros
| configure:21078: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -Werror -Wmultistatement-macros  conftest.c >&5
| configure:21078: $? = 0
| configure:21091: result: yes
| configure:21101: checking whether gcc-8 accepts -Wcast-align=strict
| configure:21112: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -Werror -Wcast-align=strict  conftest.c >&5
| configure:21112: $? = 0
| configure:21125: result: yes
| configure:21135: checking whether gcc-8 accepts -Wno-null-pointer-arithmetic
| configure:21146: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -Werror -Wno-null-pointer-arithmetic  conftest.c >&5
| configure:21146: $? = 0
| configure:21159: result: yes
| configure:21169: checking whether gcc-8 accepts -Warray-bounds-pointer-arithmetic
| configure:21180: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -Werror -Warray-bounds-pointer-arithmetic  conftest.c >&5
| gcc-8: error: unrecognized command line option '-Warray-bounds-pointer-arithmetic'; did you mean '--warn-no-pointer-arith'?
| configure:21180: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define _FILE_OFFSET_BITS 64
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define VSTUDIO_DDK 1
| | #define HAVE_NETLINK 1
| | #define HAVE_OPENSSL 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #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_BACKTRACE 1
| | #define HAVE_LINUX_PERF_EVENT_H 1
| | #define HAVE_VALGRIND_VALGRIND_H 1
| | #define HAVE___THREAD 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_ATOMIC 1
| | #define HAVE_POSIX_MEMALIGN 1
| | #define HAVE_UNBOUND 1
| | #define HAVE_STDIO_H 1
| | #define HAVE_STRING_H 1
| | /* end confdefs.h.  */
| | int x;
| configure:21193: result: no
| configure:21203: checking whether gcc-8 accepts -Wno-unused
| configure:21214: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -Werror -Wno-unused  conftest.c >&5
| configure:21214: $? = 0
| configure:21227: result: yes
| configure:21244: checking whether gcc-8 accepts -Wno-unused-parameter
| configure:21255: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -Werror -Wno-unused-parameter  conftest.c >&5
| configure:21255: $? = 0
| configure:21268: result: yes
| configure:21309: checking target hint for cgcc
| configure:21323: result: x86
| configure:28309: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| conftest.c: In function 'main':
| conftest.c:75:17: error: 'TCA_FLOWER_KEY_ENC_IP_TTL_MASK' undeclared (first use in this function); did you mean 'TCA_FLOWER_KEY_ENC_IPV6_DST_MASK'?
| conftest.c:75:17: note: each undeclared identifier is reported only once for each function it appears in
| configure:28309: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define _FILE_OFFSET_BITS 64
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define VSTUDIO_DDK 1
| | #define HAVE_NETLINK 1
| | #define HAVE_OPENSSL 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #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_BACKTRACE 1
| | #define HAVE_LINUX_PERF_EVENT_H 1
| | #define HAVE_VALGRIND_VALGRIND_H 1
| | #define HAVE___THREAD 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_ATOMIC 1
| | #define HAVE_POSIX_MEMALIGN 1
| | #define HAVE_UNBOUND 1
| | #define HAVE_STDIO_H 1
| | #define HAVE_STRING_H 1
| | /* end confdefs.h.  */
| | 
| |     #include <linux/pkt_cls.h>
| | int
| | main ()
| | {
| | 
| |         int x = TCA_FLOWER_KEY_ENC_IP_TTL_MASK;
| | 
| |   ;
| |   return 0;
| | }
| configure:28330: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| configure:28330: $? = 0
| configure:28351: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| conftest.c: In function 'main':
| conftest.c:76:17: error: 'TCA_TUNNEL_KEY_ENC_TTL' undeclared (first use in this function); did you mean 'TCA_TUNNEL_KEY_ENC_KEY_ID'?
| conftest.c:76:17: note: each undeclared identifier is reported only once for each function it appears in
| configure:28351: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define _FILE_OFFSET_BITS 64
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define VSTUDIO_DDK 1
| | #define HAVE_NETLINK 1
| | #define HAVE_OPENSSL 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #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_BACKTRACE 1
| | #define HAVE_LINUX_PERF_EVENT_H 1
| | #define HAVE_VALGRIND_VALGRIND_H 1
| | #define HAVE___THREAD 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_ATOMIC 1
| | #define HAVE_POSIX_MEMALIGN 1
| | #define HAVE_UNBOUND 1
| | #define HAVE_STDIO_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_TCA_VLAN_PUSH_VLAN_PRIORITY 1
| | /* end confdefs.h.  */
| | 
| |     #include <linux/tc_act/tc_tunnel_key.h>
| | int
| | main ()
| | {
| | 
| |         int x = TCA_TUNNEL_KEY_ENC_TTL;
| | 
| |   ;
| |   return 0;
| | }
| configure:28372: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| conftest.c: In function 'main':
| conftest.c:76:17: error: 'TCA_PEDIT_KEY_EX_HDR_TYPE_UDP' undeclared (first use in this function); did you mean 'TCA_FLOWER_KEY_ETH_TYPE'?
| conftest.c:76:17: note: each undeclared identifier is reported only once for each function it appears in
| configure:28372: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.10.90"
| | #define PACKAGE_STRING "openvswitch 2.10.90"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.10.90"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define __EXTENSIONS__ 1
| | #define _ALL_SOURCE 1
| | #define _GNU_SOURCE 1
| | #define _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define _FILE_OFFSET_BITS 64
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define VSTUDIO_DDK 1
| | #define HAVE_NETLINK 1
| | #define HAVE_OPENSSL 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #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_BACKTRACE 1
| | #define HAVE_LINUX_PERF_EVENT_H 1
| | #define HAVE_VALGRIND_VALGRIND_H 1
| | #define HAVE___THREAD 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_ATOMIC 1
| | #define HAVE_POSIX_MEMALIGN 1
| | #define HAVE_UNBOUND 1
| | #define HAVE_STDIO_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_TCA_VLAN_PUSH_VLAN_PRIORITY 1
| | /* end confdefs.h.  */
| | 
| |     #include <linux/tc_act/tc_pedit.h>
| | int
| | main ()
| | {
| | 
| |         int x = TCA_PEDIT_KEY_EX_HDR_TYPE_UDP;
| | 
| |   ;
| |   return 0;
| | }
| configure:28387: checking whether dpdk datapath is enabled
| configure:28390: result: no
| configure:28810: gcc-8 -c -g -O2 -fno-diagnostics-show-caret  conftest.c >&5
| conftest.c:70:1: note: #pragma message: Checking for pragma message
| configure:28810: $? = 0
| configure:28864: checking whether make supports nested variables
| configure:28881: result: yes
| configure:29002: checking that generated files are newer than configure
| configure:29008: result: done
| configure:29155: creating ./config.status
| 
| ## ---------------------- ##
| ## Running config.status. ##
| ## ---------------------- ##
| 
| This file was extended by openvswitch config.status 2.10.90, which was
| generated by GNU Autoconf 2.69.  Invocation command line was
| 
|   CONFIG_FILES    = 
|   CONFIG_HEADERS  = 
|   CONFIG_LINKS    = 
|   CONFIG_COMMANDS = 
|   $ ./config.status 
| 
| on sigabrt
| 
| config.status:1336: creating lib/stdio.h
| config.status:1336: creating lib/string.h
| config.status:1336: creating ovsdb/libovsdb.sym
| config.status:1336: creating ofproto/libofproto.sym
| config.status:1336: creating lib/libsflow.sym
| config.status:1336: creating lib/libopenvswitch.sym
| config.status:1336: creating ovn/lib/libovn.sym
| config.status:1336: creating vtep/libvtep.sym
| config.status:1336: creating Makefile
| config.status:1336: creating datapath/Makefile
| config.status:1336: creating datapath/linux/Kbuild
| config.status:1336: creating datapath/linux/Makefile
| config.status:1336: creating datapath/linux/Makefile.main
| config.status:1336: creating tests/atlocal
| config.status:1336: creating lib/libopenvswitch.pc
| config.status:1336: creating lib/libsflow.pc
| config.status:1336: creating ofproto/libofproto.pc
| config.status:1336: creating ovsdb/libovsdb.pc
| config.status:1336: creating include/openvswitch/version.h
| config.status:1336: creating config.h
| config.status:1502: config.h is unchanged
| config.status:1550: executing tests/atconfig commands
| config.status:1550: executing depfiles commands
| config.status:1550: executing libtool commands
| config.status:1550: executing include/openflow/openflow.h.stamp commands
| config.status:1550: executing utilities/bugtool/dummy commands
| config.status:1550: executing ovn/dummy commands
| config.status:1550: executing ovn/utilities/dummy commands
| 
| ## ---------------- ##
| ## Cache variables. ##
| ## ---------------- ##
| 
| ac_cv_build=x86_64-unknown-linux-gnu
| ac_cv_c_bigendian=no
| ac_cv_c_compiler_gnu=yes
| ac_cv_cxx_compiler_gnu=yes
| ac_cv_env_CCC_set=
| ac_cv_env_CCC_value=
| ac_cv_env_CC_set=set
| ac_cv_env_CC_value=gcc-8
| ac_cv_env_CFLAGS_set=set
| ac_cv_env_CFLAGS_value='-g -O2 -fno-diagnostics-show-caret'
| 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=
| ac_cv_env_CXXFLAGS_value=
| 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=set
| ac_cv_env_KARCH_value=i386
| ac_cv_env_LDFLAGS_set=
| ac_cv_env_LDFLAGS_value=
| ac_cv_env_LIBS_set=
| ac_cv_env_LIBS_value=
| ac_cv_env_PKG_CONFIG_LIBDIR_set=
| ac_cv_env_PKG_CONFIG_LIBDIR_value=
| ac_cv_env_PKG_CONFIG_PATH_set=
| ac_cv_env_PKG_CONFIG_PATH_value=
| ac_cv_env_PKG_CONFIG_set=
| ac_cv_env_PKG_CONFIG_value=
| ac_cv_env_build_alias_set=
| ac_cv_env_build_alias_value=
| ac_cv_env_host_alias_set=
| ac_cv_env_host_alias_value=
| 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_sendmmsg=yes
| ac_cv_func_statvfs=yes
| ac_cv_func_strerror_r=yes
| ac_cv_func_strerror_r_char_p=yes
| ac_cv_func_strnlen=yes
| ac_cv_have_decl_strerror_r=yes
| ac_cv_have_decl_sys_siglist=yes
| ac_cv_header_atomic=yes
| ac_cv_header_dlfcn_h=yes
| ac_cv_header_inttypes_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_memory_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_net_if_packet_h=yes
| ac_cv_header_stdatomic_h=yes
| ac_cv_header_stdc=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=yes
| ac_cv_header_vmware_h=no
| ac_cv_header_windows_h=no
| ac_cv_host=x86_64-unknown-linux-gnu
| ac_cv_lib_cap_ng_capng_clear=no
| ac_cv_lib_socket_connect=no
| ac_cv_lib_unbound_ub_ctx_create=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_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/pkg-config
| ac_cv_path_SED=/bin/sed
| ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config
| ac_cv_path_install='/usr/bin/install -c'
| ac_cv_path_mkdir=/bin/mkdir
| ac_cv_prog_AWK=gawk
| ac_cv_prog_CPP='gcc-8 -E'
| ac_cv_prog_CXXCPP='g++ -E'
| ac_cv_prog_ac_ct_AR=ar
| ac_cv_prog_ac_ct_CC=gcc-8
| ac_cv_prog_ac_ct_CXX=g++
| ac_cv_prog_ac_ct_MANIFEST_TOOL=mt
| ac_cv_prog_ac_ct_OBJDUMP=objdump
| ac_cv_prog_ac_ct_RANLIB=ranlib
| ac_cv_prog_ac_ct_STRIP=strip
| ac_cv_prog_cc_c89=
| ac_cv_prog_cc_c99=
| ac_cv_prog_cc_g=yes
| ac_cv_prog_cxx_g=yes
| 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='none required'
| ac_cv_search_clock_gettime='none required'
| ac_cv_search_gethostbyname='none required'
| ac_cv_search_pow=-lm
| ac_cv_search_pthread_create=-lpthread
| ac_cv_search_timer_create=-lrt
| ac_cv_sparse_target=x86
| ac_cv_sys_file_offset_bits=64
| ac_cv_sys_largefile_CC=no
| am_cv_CC_dependencies_compiler_type=gcc3
| am_cv_CXX_dependencies_compiler_type=gcc3
| 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='<stdio.h>'
| gl_cv_next_string_h='<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/bin/ld
| lt_cv_path_LDCXX='/usr/bin/ld -m elf_i386'
| lt_cv_path_NM='/usr/bin/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='sed -n -e '\''s/^.*[	 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[	 ][	 ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\'''
| lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/  {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/  {"\2", (void *) \&\2},/p'\'''
| lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/  {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \(lib[^ ]*\)$/  {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/  {"lib\2", (void *) \&\2},/p'\'''
| lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
| lt_cv_sys_max_cmd_len=1572864
| lt_cv_to_host_file_cmd=func_convert_file_noop
| lt_cv_to_tool_file_cmd=func_convert_file_noop
| 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=yes
| 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___thread=yes
| ovs_cv__fno_strict_aliasing=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_dot=yes
| ovs_cv_flake8=yes
| ovs_cv_gcc4_atomics=yes
| ovs_cv_groff=yes
| ovs_cv_linux=true
| ovs_cv_pthread_setname_np=glibc
| ovs_cv_python2=/usr/bin/python2
| ovs_cv_python3=/usr/bin/python3
| ovs_cv_python=/usr/bin/python2
| ovs_cv_sphinx=yes
| ovs_cv_strtok_r_bug=no
| ovs_cv_thread_local=no
| ovs_cv_xsversion=none
| 
| ## ----------------- ##
| ## Output variables. ##
| ## ----------------- ##
| 
| ACLOCAL='${SHELL} /home/blp/nicira/ovs/build-aux/missing aclocal-1.15'
| AMDEPBACKSLASH='\'
| AMDEP_FALSE='#'
| AMDEP_TRUE=''
| AMTAR='$${TAR-tar}'
| AM_BACKSLASH='\'
| AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
| AM_DEFAULT_VERBOSITY='0'
| AM_V='$(V)'
| AR='ar'
| AUTOCONF='${SHELL} /home/blp/nicira/ovs/build-aux/missing autoconf'
| AUTOHEADER='${SHELL} /home/blp/nicira/ovs/build-aux/missing autoheader'
| AUTOM4TE='${SHELL} /home/blp/nicira/ovs/build-aux/missing autom4te'
| AUTOMAKE='${SHELL} /home/blp/nicira/ovs/build-aux/missing automake-1.15'
| AWK='gawk'
| CAPNG_LDADD=''
| CC='$(if $(C:0=),env REAL_CC="gcc-8" CHECK="$(SPARSE) $(SPARSE_WERROR) -I $(top_srcdir)/include/sparse $(SPARSEFLAGS) $(SPARSE_EXTRA_INCLUDES) " cgcc $(CGCCFLAGS),gcc-8)'
| CCDEPMODE='depmode=gcc3'
| CFLAGS='-g -O2 -fno-diagnostics-show-caret'
| CGCCFLAGS='-target=i86'
| CPP='gcc-8 -E'
| CPPFLAGS=''
| CXX='g++'
| CXXCPP='g++ -E'
| CXXDEPMODE='depmode=gcc3'
| CXXFLAGS='-g -O2'
| CYGPATH_W='echo'
| DBDIR='${sysconfdir}/${PACKAGE}'
| 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=''
| ESX_FALSE=''
| ESX_TRUE='#'
| EXEEXT=''
| FGREP='/bin/grep -F'
| FLAKE8_WERROR=''
| GREP='/bin/grep'
| 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_IF_PACKET_FALSE='#'
| HAVE_IF_PACKET_TRUE=''
| HAVE_LIBCAPNG=''
| 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_PYTHON2='yes'
| HAVE_PYTHON2_FALSE='#'
| HAVE_PYTHON2_TRUE=''
| HAVE_PYTHON3='yes'
| HAVE_PYTHON3_FALSE='#'
| HAVE_PYTHON3_TRUE=''
| HAVE_PYTHON='yes'
| HAVE_PYTHON_FALSE='#'
| HAVE_PYTHON_TRUE=''
| HAVE_SPHINX_FALSE='#'
| HAVE_SPHINX_TRUE=''
| HAVE_UNBOUND='yes'
| HAVE_UNBOUND_FALSE='#'
| HAVE_UNBOUND_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='i386'
| KBUILD=''
| LD='/usr/bin/ld -m elf_i386'
| LDFLAGS=''
| LIBOBJS=''
| LIBS='-latomic -lpthread -lrt -lm  -lunbound'
| LIBTOOL='$(SHELL) $(top_builddir)/libtool'
| LINUX_ENABLED_FALSE=''
| LINUX_ENABLED_TRUE='#'
| LINUX_FALSE='#'
| LINUX_TRUE=''
| LIPO=''
| LN_S='ln -s'
| LOGDIR='${localstatedir}/log/${PACKAGE}'
| LTLIBOBJS=''
| LT_AGE='0'
| LT_CURRENT='0'
| LT_REVISION='0'
| MAKEINFO='${SHELL} /home/blp/nicira/ovs/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='<stdio.h>'
| NEXT_AS_FIRST_DIRECTIVE_STRING_H='<string.h>'
| NEXT_STDIO_H='<stdio.h>'
| NEXT_STRING_H='<string.h>'
| NM='/usr/bin/nm -B'
| NMEDIT=''
| OBJDUMP='objdump'
| OBJEXT='o'
| OTOOL64=''
| OTOOL=''
| OVS_CFLAGS=' -Werror -Werror'
| OVS_CTAGS_IDENTIFIERS_LIST='-I "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.10 -version-info 0:90'
| PACKAGE='openvswitch'
| PACKAGE_BUGREPORT='bugs at openvswitch.org'
| PACKAGE_NAME='openvswitch'
| PACKAGE_STRING='openvswitch 2.10.90'
| PACKAGE_TARNAME='openvswitch'
| PACKAGE_URL=''
| PACKAGE_VERSION='2.10.90'
| PATH_SEPARATOR=':'
| PKG_CONFIG='/usr/bin/pkg-config'
| PKG_CONFIG_LIBDIR=''
| PKG_CONFIG_PATH=''
| PKIDIR='${localstatedir}/lib/openvswitch/pki'
| 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=''
| PYTHON2='/usr/bin/python2'
| PYTHON3='/usr/bin/python3'
| PYTHON='/usr/bin/python2'
| RANLIB='ranlib'
| RUNDIR='${localstatedir}/run/openvswitch'
| SED='/bin/sed'
| SET_MAKE=''
| SHELL='/bin/bash'
| SPARSE='sparse'
| SPARSEFLAGS=''
| SPARSE_EXTRA_INCLUDES='-I /usr/local/include -I /usr/include/i386-linux-gnu '
| SPARSE_WERROR='-Wsparse-error'
| SSL_DIR=''
| SSL_INCLUDES=''
| SSL_LDFLAGS=''
| SSL_LIBS='-lssl -lcrypto '
| STRIP='strip'
| VERSION='2.10.90'
| 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 -Wno-null-pointer-arithmetic'
| WIN32_FALSE=''
| WIN32_TRUE='#'
| ac_ct_AR='ar'
| ac_ct_CC='gcc-8'
| ac_ct_CXX='g++'
| 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=' -I$(srcdir)'
| am__leading_dot='.'
| am__nodep='_no'
| am__quote=''
| am__tar='tar --format=posix -chf - "$$tardir"'
| am__untar='tar -xf -'
| bindir='${exec_prefix}/bin'
| build='x86_64-unknown-linux-gnu'
| build_alias=''
| build_cpu='x86_64'
| build_os='linux-gnu'
| build_vendor='unknown'
| datadir='${datarootdir}'
| datarootdir='${prefix}/share'
| docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
| dvidir='${docdir}'
| exec_prefix='${prefix}'
| host='x86_64-unknown-linux-gnu'
| host_alias=''
| host_cpu='x86_64'
| host_os='linux-gnu'
| host_vendor='unknown'
| htmldir='${docdir}'
| includedir='${prefix}/include'
| infodir='${datarootdir}/info'
| install_sh='${SHELL} /home/blp/nicira/ovs/build-aux/install-sh'
| libdir='${exec_prefix}/lib'
| libexecdir='${exec_prefix}/libexec'
| localedir='${datarootdir}/locale'
| localstatedir='/var'
| mandir='${datarootdir}/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='${prefix}/etc'
| target_alias=''
| 
| ## ----------- ##
| ## confdefs.h. ##
| ## ----------- ##
| 
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.10.90"
| #define PACKAGE_STRING "openvswitch 2.10.90"
| #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.10.90"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_DECL_STRERROR_R 1
| #define HAVE_STRERROR_R 1
| #define STRERROR_R_CHAR_P 1
| #define VSTUDIO_DDK 1
| #define HAVE_NETLINK 1
| #define HAVE_OPENSSL 1
| #define HAVE_IF_PACKET 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #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_BACKTRACE 1
| #define HAVE_LINUX_PERF_EVENT_H 1
| #define HAVE_VALGRIND_VALGRIND_H 1
| #define HAVE___THREAD 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_ATOMIC 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_UNBOUND 1
| #define HAVE_STDIO_H 1
| #define HAVE_STRING_H 1
| #define HAVE_TCA_VLAN_PUSH_VLAN_PRIORITY 1
| #define HAVE_PRAGMA_MESSAGE 1
| 
| configure: exit 0
| 
| ## ---------------------- ##
| ## Running config.status. ##
| ## ---------------------- ##
| 
| This file was extended by openvswitch config.status 2.10.90, which was
| generated by GNU Autoconf 2.69.  Invocation command line was
| 
|   CONFIG_FILES    = 
|   CONFIG_HEADERS  = 
|   CONFIG_LINKS    = 
|   CONFIG_COMMANDS = 
|   $ ./config.status Makefile depfiles
| 
| on sigabrt
| 
| config.status:1336: creating Makefile
| config.status:1550: executing depfiles commands
| 
| ## ---------------------- ##
| ## Running config.status. ##
| ## ---------------------- ##
| 
| This file was extended by openvswitch config.status 2.10.90, which was
| generated by GNU Autoconf 2.69.  Invocation command line was
| 
|   CONFIG_FILES    = 
|   CONFIG_HEADERS  = 
|   CONFIG_LINKS    = 
|   CONFIG_COMMANDS = 
|   $ ./config.status Makefile depfiles
| 
| on sigabrt
| 
| config.status:1336: creating Makefile
| config.status:1550: executing depfiles commands
| 
| ## ---------------------- ##
| ## Running config.status. ##
| ## ---------------------- ##
| 
| This file was extended by openvswitch config.status 2.10.90, which was
| generated by GNU Autoconf 2.69.  Invocation command line was
| 
|   CONFIG_FILES    = 
|   CONFIG_HEADERS  = 
|   CONFIG_LINKS    = 
|   CONFIG_COMMANDS = 
|   $ ./config.status Makefile depfiles
| 
| on sigabrt
| 
| config.status:1336: creating Makefile
| config.status:1550: executing depfiles commands
| 
| ## ---------------------- ##
| ## Running config.status. ##
| ## ---------------------- ##
| 
| This file was extended by openvswitch config.status 2.10.90, which was
| generated by GNU Autoconf 2.69.  Invocation command line was
| 
|   CONFIG_FILES    = 
|   CONFIG_HEADERS  = 
|   CONFIG_LINKS    = 
|   CONFIG_COMMANDS = 
|   $ ./config.status Makefile depfiles
| 
| on sigabrt
| 
| config.status:1336: creating Makefile
| config.status:1550: executing depfiles commands
| 
| ## ---------------------- ##
| ## Running config.status. ##
| ## ---------------------- ##
| 
| This file was extended by openvswitch config.status 2.10.90, which was
| generated by GNU Autoconf 2.69.  Invocation command line was
| 
|   CONFIG_FILES    = 
|   CONFIG_HEADERS  = 
|   CONFIG_LINKS    = 
|   CONFIG_COMMANDS = 
|   $ ./config.status Makefile depfiles
| 
| on sigabrt
| 
| config.status:1336: creating Makefile
| config.status:1550: executing depfiles commands
| 
| ## ---------------------- ##
| ## Running config.status. ##
| ## ---------------------- ##
| 
| This file was extended by openvswitch config.status 2.10.90, which was
| generated by GNU Autoconf 2.69.  Invocation command line was
| 
|   CONFIG_FILES    = 
|   CONFIG_HEADERS  = 
|   CONFIG_LINKS    = 
|   CONFIG_COMMANDS = 
|   $ ./config.status Makefile depfiles
| 
| on sigabrt
| 
| config.status:1336: creating Makefile
| config.status:1550: executing depfiles commands
| 
| ## ---------------------- ##
| ## Running config.status. ##
| ## ---------------------- ##
| 
| This file was extended by openvswitch config.status 2.10.90, which was
| generated by GNU Autoconf 2.69.  Invocation command line was
| 
|   CONFIG_FILES    = 
|   CONFIG_HEADERS  = 
|   CONFIG_LINKS    = 
|   CONFIG_COMMANDS = 
|   $ ./config.status Makefile depfiles
| 
| on sigabrt
| 
| config.status:1336: creating Makefile
| config.status:1550: executing depfiles commands
| 
| ## ---------------------- ##
| ## Running config.status. ##
| ## ---------------------- ##
| 
| This file was extended by openvswitch config.status 2.10.90, which was
| generated by GNU Autoconf 2.69.  Invocation command line was
| 
|   CONFIG_FILES    = 
|   CONFIG_HEADERS  = 
|   CONFIG_LINKS    = 
|   CONFIG_COMMANDS = 
|   $ ./config.status Makefile depfiles
| 
| on sigabrt
| 
| config.status:1336: creating Makefile
| config.status:1550: executing depfiles commands



More information about the dev mailing list