[ovs-discuss] [openvswitch 2.5.0] testsuite: 15 18 756 failed

John Chludzinski john.chludzinski at vivaldi.net
Tue Jul 19 17:54:52 UTC 2016


Makefile:5737: recipe for target 'check-local' failed
make[3]: *** [check-local] Error 1
make[3]: Leaving directory '/root/rpmbuild/BUILD/openvswitch-2.5.0'
Makefile:4958: recipe for target 'check-am' failed
make[2]: *** [check-am] Error 2
make[2]: Leaving directory '/root/rpmbuild/BUILD/openvswitch-2.5.0'
Makefile:4667: recipe for target 'check-recursive' failed
make[1]: *** [check-recursive] Error 1
make[1]: Leaving directory '/root/rpmbuild/BUILD/openvswitch-2.5.0'
Makefile:4962: recipe for target 'check' failed
make: *** [check] Error 2
 + cat tests/testsuite.log
 ## ----------------------------- ##
 ## openvswitch 2.5.0 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
--recheck

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

 hostname = localhost.localdomain
 uname -m = i686
 uname -r = 4.5.7-202.fc23.i686
 uname -s = Linux
 uname -v = #1 SMP Tue Jun 28 18:53:34 UTC 2016

 /usr/bin/uname -p = i686
 /bin/uname -X     = unknown

 /bin/arch              = i686
 /usr/bin/arch -k       = unknown
 /usr/convex/getsysinfo = unknown
 /usr/bin/hostinfo      = unknown
 /bin/machine           = unknown
 /usr/bin/oslevel       = unknown
 /bin/universe          = unknown

 PATH: /root/rpmbuild/BUILD/openvswitch-2.5.0/utilities
 PATH: /root/rpmbuild/BUILD/openvswitch-2.5.0/vswitchd
 PATH: /root/rpmbuild/BUILD/openvswitch-2.5.0/ovsdb
 PATH: /root/rpmbuild/BUILD/openvswitch-2.5.0/vtep
 PATH: /root/rpmbuild/BUILD/openvswitch-2.5.0/tests
 PATH: /root/rpmbuild/BUILD/openvswitch-2.5.0
 PATH: /root/rpmbuild/BUILD/openvswitch-2.5.0/ovn/controller-vtep
 PATH: /root/rpmbuild/BUILD/openvswitch-2.5.0/ovn/northd
 PATH: /root/rpmbuild/BUILD/openvswitch-2.5.0/ovn/utilities
 PATH: /root/rpmbuild/BUILD/openvswitch-2.5.0/ovn/controller
 PATH: /usr/local/sbin
 PATH: /usr/local/bin
 PATH: /usr/sbin
 PATH: /usr/bin
 PATH: /opt/rakudo-star-2016.01/install/bin/

 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='/root/rpmbuild/BUILD/openvswitch-2.5.0/tests'
| at_srcdir='.'
| abs_srcdir='/root/rpmbuild/BUILD/openvswitch-2.5.0/tests'
| at_top_srcdir='..'
| abs_top_srcdir='/root/rpmbuild/BUILD/openvswitch-2.5.0'
| at_top_build_prefix='../'
| abs_top_builddir='/root/rpmbuild/BUILD/openvswitch-2.5.0'
| 
| # Backward compatibility with Autotest <= 2.59b:
| at_top_builddir=$at_top_build_prefix
| 
| AUTOTEST_PATH='tests'
| 
| SHELL=${CONFIG_SHELL-'/bin/sh'}

testsuite: atlocal:
| # -*- shell-script -*-
| HAVE_OPENSSL='yes'
| HAVE_PYTHON='yes'
| EGREP='/usr/bin/grep -E'
| PERL='/usr/bin/perl'
| 
| if test x"$PYTHON" = x; then
|     PYTHON='/usr/bin/python'
| 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
| 
| # Check whether to run IPv6 tests.
| if perl -e 'use Socket; socket(FH, PF_INET6, SOCK_STREAM, 0) || exit
1;'; then
|     HAVE_IPV6=yes
| else
|     HAVE_IPV6=no
| fi
| 
| # XXX: Disable Python related tests on Windows because Open vSwitch
code
| # written in Python has not been ported to the Windows platform. We
will
| # need to remove the next block after porting is complete.
| if test "$IS_WIN32" = "yes"; then
|     HAVE_PYTHON="no"
| fi
| 
| if test "$HAVE_PYTHON" = "yes" \
|    && test "x`$PYTHON $abs_top_srcdir/tests/test-l7.py --help | grep
'ftp'`" != x; then
|     HAVE_PYFTPDLIB="yes"
| else
|     HAVE_PYFTPDLIB="no"
| fi

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

./testsuite.at:1:
/root/rpmbuild/BUILD/openvswitch-2.5.0/vswitchd/ovs-vswitchd --version
ovs-vswitchd (Open vSwitch) 2.5.0
Compiled Jul 19 2016 12:33:55

./testsuite.at:1:
/root/rpmbuild/BUILD/openvswitch-2.5.0/utilities/ovs-vsctl --version
ovs-vsctl (Open vSwitch) 2.5.0
Compiled Jul 19 2016 12:32:37
DB Schema 7.12.1

./testsuite.at:1: /usr/bin/perl --version

This is perl 5, version 22, subversion 2 (v5.22.2) built for
i386-linux-thread-multi
(with 14 registered patches, see perl -V for more detail)

Copyright 1987-2015, Larry Wall

Perl may be copied only under the terms of either the Artistic License
or the
GNU General Public License, which may be found in the Perl 5 source kit.

Complete documentation for Perl, including FAQ lists, should be found on
this system using "man perl" or "perldoc perl".  If you have access to
the
Internet, point your browser at http://www.perl.org/, the Perl Home
Page.

## ------------------ ##
## Running the tests. ##
## ------------------ ##
testsuite: starting at: Tue Jul 19 13:06:22 EDT 2016
756. ofproto - table features (OpenFlow 1.3) (ofproto.at:1711): ok    
(0m1.838s 0m3.682s)
testsuite: ending at: Tue Jul 19 13:06:48 EDT 2016
testsuite: test suite duration: 0h 0m 26s

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

ERROR: All 3 tests were run,
2 failed unexpectedly.

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

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

  15: bfd.at:261         bfd - bfd decay
  18: bfd.at:519         bfd - bfd forwarding_if_rx - with bfd decay

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

#                             -*- compilation -*-
15. bfd.at:261: testing bfd - bfd decay ...
./bfd.at:262: ovsdb-tool create conf.db
$abs_top_srcdir/vswitchd/vswitch.ovsschema
./bfd.at:262: ovsdb-server --detach --no-chdir --pidfile --log-file
--remote=punix:$OVS_RUNDIR/db.sock
stderr:
2016-07-19T17:06:24Z|00001|vlog|INFO|opened log file
/root/rpmbuild/BUILD/openvswitch-2.5.0/tests/testsuite.dir/0015/ovsdb-server.log
./bfd.at:262: sed < stderr '
/vlog|INFO|opened log file/d
/ovsdb_server|INFO|ovsdb-server (Open vSwitch)/d'
./bfd.at:262: ovs-vsctl --no-wait init
./bfd.at:262: ovs-vswitchd --enable-dummy --disable-system --detach
--no-chdir --pidfile --log-file -vvconn -vofproto_dpif
stderr:
2016-07-19T17:06:24Z|00001|vlog|INFO|opened log file
/root/rpmbuild/BUILD/openvswitch-2.5.0/tests/testsuite.dir/0015/ovs-vswitchd.log
2016-07-19T17:06:24Z|00002|ovs_numa|INFO|Discovered 0 NUMA nodes and 0
CPU cores
2016-07-19T17:06:24Z|00003|reconnect|INFO|unix:/root/rpmbuild/BUILD/openvswitch-2.5.0/tests/testsuite.dir/0015/db.sock:
connecting...
2016-07-19T17:06:24Z|00004|reconnect|INFO|unix:/root/rpmbuild/BUILD/openvswitch-2.5.0/tests/testsuite.dir/0015/db.sock:
connected
./bfd.at:262: 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
/netdev_linux|INFO|.*device has unknown hardware address family/d
/ofproto|INFO|datapath ID changed to fedcba9876543210/d'
./bfd.at:262: ovs-vsctl -- add-br br0 -- set bridge br0
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-br br1 -- set bridge br1 datapath-type=dummy --
\
                    add-port br1 p1 -- set Interface p1 type=patch \
                    options:peer=p0 ofport_request=2 -- \
                    add-port br0 p0 -- set Interface p0 type=patch \
                    options:peer=p1 ofport_request=1 -- \
                    set Interface p0 bfd:enable=true bfd:min_tx=300
bfd:min_rx=300 -- \
                    set Interface p1 bfd:enable=true bfd:min_tx=500
bfd:min_rx=500 
warped
./bfd.at:274: ovs-appctl bfd/show p0 | sed -e '/Time:/d' | sed -e
'/Discriminator/d' | sed -e '/Interval:/d'
./bfd.at:275: ovs-appctl bfd/show p1 | sed -e '/Time:/d' | sed -e
'/Discriminator/d' | sed -e '/Interval:/d'
./bfd.at:276: ovs-appctl bfd/show p0 | sed -n '/TX Interval/p'
./bfd.at:277: ovs-appctl bfd/show p0 | sed -n '/RX Interval/p'
./bfd.at:280: ovs-vsctl set interface p0 bfd:decay_min_rx=3000
warped
./bfd.at:284: ovs-appctl bfd/show p0 | sed -n '/TX Interval/p'
./bfd.at:285: ovs-appctl bfd/show p0 | sed -n '/RX Interval/p'
warped
./bfd.at:290: ovs-appctl bfd/show p0 | sed -n '/TX Interval/p'
./bfd.at:291: ovs-appctl bfd/show p0 | sed -n '/RX Interval/p'
warped
./bfd.at:295: ovs-appctl bfd/show p0 | sed -e '/Time:/d' | sed -e
'/Discriminator/d' | sed -e '/Interval:/d'
./bfd.at:296: ovs-appctl bfd/show p1 | sed -e '/Time:/d' | sed -e
'/Discriminator/d' | sed -e '/Interval:/d'
./bfd.at:297: ovs-appctl bfd/show p0 | sed -n '/TX Interval/p'
./bfd.at:298: ovs-appctl bfd/show p0 | sed -n '/RX Interval/p'
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
warped
./bfd.at:307: ovs-ofctl packet-out br1 3 2 
"90e2ba01475000101856b2e80806000108000604000100101856b2e80202020300000000000002020202"
stdout:
./bfd.at:312: ovs-appctl bfd/show p0 | sed -n '/TX Interval/p'
./bfd.at:313: ovs-appctl bfd/show p0 | sed -n '/RX Interval/p'
./bfd.at:319: ovs-vsctl set Interface p0 bfd:decay_min_rx=1000
warped
./bfd.at:322: ovs-appctl bfd/show p0 | sed -e '/Time:/d' | sed -e
'/Discriminator/d' | sed -e '/Interval:/d'
--- -    2016-07-19 13:06:30.836801873 -0400
+++
/root/rpmbuild/BUILD/openvswitch-2.5.0/tests/testsuite.dir/at-groups/15/stdout
   2016-07-19 13:06:30.827079128 -0400
@@ -1,12 +1,12 @@
-    Forwarding: true
+    Forwarding: false
     Detect Multiplier: 3
     Concatenated Path Down: false

     Local Flags: none
-    Local Session State: up
-    Local Diagnostic: No Diagnostic
+    Local Session State: init
+    Local Diagnostic: Control Detection Time Expired

     Remote Flags: none
-    Remote Session State: up
-    Remote Diagnostic: No Diagnostic
+    Remote Session State: down
+    Remote Diagnostic: Neighbor Signaled Session Down

ovsdb-server.log: 

> 2016-07-19T17:06:24.342Z|00001|vlog|INFO|opened log file /root/rpmbuild/BUILD/openvswitch-2.5.0/tests/testsuite.dir/0015/ovsdb-server.log
> 2016-07-19T17:06:24.380Z|00002|ovsdb_server|INFO|ovsdb-server (Open vSwitch) 2.5.0
 ovs-vswitchd.log: 

> 2016-07-19T17:06:24.473Z|00001|vlog|INFO|opened log file /root/rpmbuild/BUILD/openvswitch-2.5.0/tests/testsuite.dir/0015/ovs-vswitchd.log
> 2016-07-19T17:06:24.476Z|00002|ovs_numa|INFO|Discovered 0 NUMA nodes and 0 CPU cores
> 2016-07-19T17:06:24.476Z|00003|reconnect|INFO|unix:/root/rpmbuild/BUILD/openvswitch-2.5.0/tests/testsuite.dir/0015/db.sock: connecting...
> 2016-07-19T17:06:24.477Z|00004|reconnect|INFO|unix:/root/rpmbuild/BUILD/openvswitch-2.5.0/tests/testsuite.dir/0015/db.sock: connected
> 2016-07-19T17:06:24.493Z|00005|bridge|INFO|ovs-vswitchd (Open vSwitch) 2.5.0
> 2016-07-19T17:06:24.571Z|00006|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports recirculation
> 2016-07-19T17:06:24.571Z|00007|ofproto_dpif|INFO|dummy at ovs-dummy: MPLS label stack length probed as 3
> 2016-07-19T17:06:24.572Z|00008|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports unique flow ids
> 2016-07-19T17:06:24.572Z|00009|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath does not support ct_state
> 2016-07-19T17:06:24.572Z|00010|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath does not support ct_zone
> 2016-07-19T17:06:24.572Z|00011|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath does not support ct_mark
> 2016-07-19T17:06:24.572Z|00012|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath does not support ct_label
> 2016-07-19T17:06:24.577Z|00013|bridge|INFO|bridge br0: added interface p0 on port 1
> 2016-07-19T17:06:24.578Z|00014|bridge|INFO|bridge br0: added interface br0 on port 65534
> 2016-07-19T17:06:24.578Z|00015|bridge|INFO|bridge br1: added interface p1 on port 2
> 2016-07-19T17:06:24.578Z|00016|bridge|INFO|bridge br1: added interface br1 on port 65534
> 2016-07-19T17:06:24.578Z|00017|bridge|INFO|bridge br0: using datapath ID fedcba9876543210
> 2016-07-19T17:06:24.603Z|00018|bfd|INFO|p0: BFD state change: admin_down->down "No Diagnostic"->"No Diagnostic".
> Forwarding: false
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 0ms
> Detect Time: now +537209446ms
> Next TX Time: now +537209446ms
> Last TX Time: now +537209446ms
> 
> Local Flags: none
> Local Session State: admin_down
> Local Diagnostic: No Diagnostic
> Local Discriminator: 0x42d92880
> Local Minimum TX Interval: 1000ms
> Local Minimum RX Interval: 0ms
> 
> Remote Flags: none
> Remote Session State: admin_down
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x0
> Remote Minimum TX Interval: 0ms
> Remote Minimum RX Interval: 0ms
> 2016-07-19T17:06:24.604Z|00019|connmgr|INFO|br0: added service controller "punix:/root/rpmbuild/BUILD/openvswitch-2.5.0/tests/testsuite.dir/0015/br0.mgmt"
> 2016-07-19T17:06:24.605Z|00001|ofproto_dpif_monitor(monitor4)|INFO|monitor thread created
> 2016-07-19T17:06:24.611Z|00020|bridge|INFO|bridge br1: using datapath ID 00005ef703a1584f
> 2016-07-19T17:06:24.635Z|00021|bfd|INFO|p1: BFD state change: admin_down->down "No Diagnostic"->"No Diagnostic".
> Forwarding: false
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 0ms
> Detect Time: now +537209479ms
> Next TX Time: now +537209479ms
> Last TX Time: now +537209479ms
> 
> Local Flags: none
> Local Session State: admin_down
> Local Diagnostic: No Diagnostic
> Local Discriminator: 0x9eea77e4
> Local Minimum TX Interval: 1000ms
> Local Minimum RX Interval: 0ms
> 
> Remote Flags: none
> Remote Session State: admin_down
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x0
> Remote Minimum TX Interval: 0ms
> Remote Minimum RX Interval: 0ms
> 2016-07-19T17:06:24.637Z|00022|connmgr|INFO|br1: added service controller "punix:/root/rpmbuild/BUILD/openvswitch-2.5.0/tests/testsuite.dir/0015/br1.mgmt"
> 2016-07-19T17:06:24.723Z|00002|bfd(monitor4)|INFO|p0: New remote min_rx.
> vers:1 diag:"No Diagnostic" state:down mult:3 length:24
> flags: none
> my_disc:0x9eea77e4 your_disc:0x0
> min_tx:1000000us (1000ms)
> min_rx:500000us (500ms)
> min_rx_echo:0us (0ms)    Forwarding: false
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 300ms
> Detect Time: now +537210058ms
> Next TX Time: now -206ms
> Last TX Time: now +584ms
> 
> Local Flags: none
> Local Session State: down
> Local Diagnostic: No Diagnostic
> Local Discriminator: 0x42d92880
> Local Minimum TX Interval: 1000ms
> Local Minimum RX Interval: 300ms
> 
> Remote Flags: none
> Remote Session State: down
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x9eea77e4
> Remote Minimum TX Interval: 0ms
> Remote Minimum RX Interval: 500ms
> 2016-07-19T17:06:24.755Z|00003|bfd(monitor4)|INFO|p0: BFD state change: down->init "No Diagnostic"->"No Diagnostic".
> Forwarding: false
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 1000ms
> Detect Time: now -3000ms
> Next TX Time: now +794ms
> Last TX Time: now +1584ms
> 
> Local Flags: none
> Local Session State: down
> Local Diagnostic: No Diagnostic
> Local Discriminator: 0x42d92880
> Local Minimum TX Interval: 1000ms
> Local Minimum RX Interval: 300ms
> 
> Remote Flags: none
> Remote Session State: down
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x9eea77e4
> Remote Minimum TX Interval: 1000ms
> Remote Minimum RX Interval: 500ms
> 2016-07-19T17:06:24.757Z|00004|bfd(monitor4)|INFO|p0: long delay of 1794ms (expected 1000ms) sending BFD control message
> 2016-07-19T17:06:24.793Z|00005|bfd(monitor4)|INFO|p1: New remote min_rx.
> vers:1 diag:"No Diagnostic" state:init mult:3 length:24
> flags: none
> my_disc:0x42d92880 your_disc:0x9eea77e4
> min_tx:1000000us (1000ms)
> min_rx:300000us (300ms)
> min_rx_echo:0us (0ms)    Forwarding: false
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 500ms
> Detect Time: now +537212058ms
> Next TX Time: now +1240ms
> Last TX Time: now +2000ms
> 
> Local Flags: none
> Local Session State: down
> Local Diagnostic: No Diagnostic
> Local Discriminator: 0x9eea77e4
> Local Minimum TX Interval: 1000ms
> Local Minimum RX Interval: 500ms
> 
> Remote Flags: none
> Remote Session State: init
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x42d92880
> Remote Minimum TX Interval: 0ms
> Remote Minimum RX Interval: 300ms
> 2016-07-19T17:06:24.823Z|00006|bfd(monitor4)|INFO|p1: BFD state change: down->up "No Diagnostic"->"No Diagnostic".
> Forwarding: false
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 1000ms
> Detect Time: now -3000ms
> Next TX Time: now +1240ms
> Last TX Time: now +2000ms
> 
> Local Flags: none
> Local Session State: down
> Local Diagnostic: No Diagnostic
> Local Discriminator: 0x9eea77e4
> Local Minimum TX Interval: 1000ms
> Local Minimum RX Interval: 500ms
> 
> Remote Flags: none
> Remote Session State: init
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x42d92880
> Remote Minimum TX Interval: 1000ms
> Remote Minimum RX Interval: 300ms
> 2016-07-19T17:06:24.825Z|00007|bfd(monitor4)|INFO|p1: long delay of 1240ms (expected 500ms) sending BFD control message
> 2016-07-19T17:06:24.854Z|00008|bfd(monitor4)|INFO|p0: BFD state change: init->up "No Diagnostic"->"No Diagnostic".
> Forwarding: false
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 500ms
> Detect Time: now -1500ms
> Next TX Time: now -780ms
> Last TX Time: now +0ms
> 
> Local Flags: none
> Local Session State: init
> Local Diagnostic: No Diagnostic
> Local Discriminator: 0x42d92880
> Local Minimum TX Interval: 1000ms
> Local Minimum RX Interval: 300ms
> 
> Remote Flags: none
> Remote Session State: up
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x9eea77e4
> Remote Minimum TX Interval: 500ms
> Remote Minimum RX Interval: 500ms
> 2016-07-19T17:06:25.036Z|00023|memory|INFO|12820 kB peak resident set size after 10.2 seconds
> 2016-07-19T17:06:25.036Z|00024|memory|INFO|handlers:1 ports:4 revalidators:1 rules:9
> 2016-07-19T17:06:26.190Z|00025|bfd|INFO|p0: Initiating poll sequence
> 2016-07-19T17:06:26.228Z|00009|bfd(monitor4)|INFO|p0: Poll sequence terminated.
> vers:1 diag:"No Diagnostic" state:up mult:3 length:24
> flags: final
> my_disc:0x9eea77e4 your_disc:0x42d92880
> min_tx:500000us (500ms)
> min_rx:500000us (500ms)
> min_rx_echo:0us (0ms)    Forwarding: true
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 500ms
> RX Interval: Approx 500ms
> Detect Time: now -1000ms
> Next TX Time: now -485ms
> Last TX Time: now +0ms
> 
> Local Flags: none
> Local Session State: up
> Local Diagnostic: No Diagnostic
> Local Discriminator: 0x42d92880
> Local Minimum TX Interval: 300ms
> Local Minimum RX Interval: 300ms
> 
> Remote Flags: final
> Remote Session State: up
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x9eea77e4
> Remote Minimum TX Interval: 500ms
> Remote Minimum RX Interval: 500ms
> 2016-07-19T17:06:26.311Z|00010|bfd(monitor4)|INFO|p0: Initiating poll sequence
> 2016-07-19T17:06:26.336Z|00011|bfd(monitor4)|INFO|p1: New remote min_rx.
> vers:1 diag:"No Diagnostic" state:up mult:3 length:24
> flags: poll
> my_disc:0x42d92880 your_disc:0x9eea77e4
> min_tx:300000us (300ms)
> min_rx:3000000us (3000ms)
> min_rx_echo:0us (0ms)    Forwarding: true
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 3000ms
> RX Interval: Approx 500ms
> Detect Time: now -1500ms
> Next TX Time: now -2880ms
> Last TX Time: now +0ms
> 
> Local Flags: final
> Local Session State: up
> Local Diagnostic: No Diagnostic
> Local Discriminator: 0x9eea77e4
> Local Minimum TX Interval: 500ms
> Local Minimum RX Interval: 500ms
> 
> Remote Flags: poll
> Remote Session State: up
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x42d92880
> Remote Minimum TX Interval: 300ms
> Remote Minimum RX Interval: 3000ms
> 2016-07-19T17:06:26.375Z|00012|bfd(monitor4)|INFO|p0: Poll sequence terminated.
> vers:1 diag:"No Diagnostic" state:up mult:3 length:24
> flags: final
> my_disc:0x9eea77e4 your_disc:0x42d92880
> min_tx:500000us (500ms)
> min_rx:500000us (500ms)
> min_rx_echo:0us (0ms)    Forwarding: true
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 500ms
> RX Interval: Approx 3000ms
> Detect Time: now -500ms
> Next TX Time: now -445ms
> Last TX Time: now +0ms
> 
> Local Flags: none
> Local Session State: up
> Local Diagnostic: No Diagnostic
> Local Discriminator: 0x42d92880
> Local Minimum TX Interval: 300ms
> Local Minimum RX Interval: 3000ms
> 
> Remote Flags: final
> Remote Session State: up
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x9eea77e4
> Remote Minimum TX Interval: 500ms
> Remote Minimum RX Interval: 500ms
> 2016-07-19T17:06:26.996Z|00026|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x1):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:26.997Z|00027|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:26.997Z|00028|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:26.998Z|00029|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:26.999Z|00030|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:27.003Z|00031|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:28.252Z|00032|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x2):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:28.252Z|00033|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:28.252Z|00034|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:28.253Z|00035|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:28.254Z|00036|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:28.254Z|00037|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:28.291Z|00038|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x3):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:28.291Z|00039|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:28.292Z|00040|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:28.292Z|00041|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:28.292Z|00042|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:28.292Z|00043|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:28.329Z|00044|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x4):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:28.329Z|00045|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:28.329Z|00046|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:28.331Z|00047|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:28.331Z|00048|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:28.335Z|00049|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:28.367Z|00050|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x5):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:28.367Z|00051|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:28.367Z|00052|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:28.367Z|00053|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:28.368Z|00054|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:28.368Z|00055|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:28.402Z|00056|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x6):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:28.403Z|00057|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:28.403Z|00058|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:28.404Z|00059|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:28.405Z|00060|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:28.405Z|00061|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:28.439Z|00062|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x7):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:28.440Z|00063|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:28.440Z|00064|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:28.441Z|00065|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:28.442Z|00066|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:28.442Z|00067|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:28.489Z|00068|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x8):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:28.489Z|00069|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:28.489Z|00070|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:28.497Z|00071|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:28.497Z|00072|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:28.498Z|00073|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:28.555Z|00074|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x9):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:28.555Z|00075|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:28.556Z|00076|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:28.564Z|00077|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:28.564Z|00078|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:28.565Z|00079|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:28.616Z|00080|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0xa):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:28.617Z|00081|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:28.617Z|00082|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:28.624Z|00083|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:28.624Z|00084|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:28.625Z|00085|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:28.675Z|00086|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0xb):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:28.676Z|00087|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:28.676Z|00088|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:28.676Z|00089|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:28.676Z|00090|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:28.676Z|00091|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:28.712Z|00092|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0xc):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:28.712Z|00093|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:28.712Z|00094|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:28.713Z|00095|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:28.714Z|00096|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:28.718Z|00097|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:28.748Z|00098|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0xd):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:28.748Z|00099|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:28.749Z|00100|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:28.749Z|00101|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:28.749Z|00102|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:28.749Z|00103|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:28.784Z|00104|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0xe):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:28.784Z|00105|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:28.784Z|00106|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:28.784Z|00107|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:28.785Z|00108|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:28.785Z|00109|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:28.820Z|00110|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0xf):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:28.820Z|00111|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:28.820Z|00112|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:28.821Z|00113|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:28.821Z|00114|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:28.821Z|00115|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:28.856Z|00116|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x10):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:28.856Z|00117|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:28.856Z|00118|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:28.856Z|00119|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:28.856Z|00120|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:28.857Z|00121|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:28.891Z|00122|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x11):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:28.892Z|00123|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:28.892Z|00124|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:28.893Z|00125|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:28.894Z|00126|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:28.898Z|00127|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:28.929Z|00128|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x12):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:28.930Z|00129|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:28.930Z|00130|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:28.932Z|00131|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:28.933Z|00132|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:28.937Z|00133|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:28.967Z|00134|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x13):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:28.967Z|00135|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:28.967Z|00136|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:28.968Z|00137|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:28.969Z|00138|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:28.973Z|00139|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:29.004Z|00140|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x14):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:29.004Z|00141|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:29.004Z|00142|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:29.004Z|00143|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:29.005Z|00144|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:29.005Z|00145|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:29.039Z|00146|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x15):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:29.039Z|00147|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:29.039Z|00148|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:29.040Z|00149|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:29.040Z|00150|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:29.040Z|00151|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:29.076Z|00152|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x16):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:29.077Z|00153|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:29.077Z|00154|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:29.085Z|00155|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:29.085Z|00156|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:29.085Z|00157|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:29.119Z|00158|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x17):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:29.119Z|00159|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:29.119Z|00160|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:29.119Z|00161|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:29.119Z|00162|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:29.119Z|00163|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:29.156Z|00164|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x18):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:29.156Z|00165|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:29.156Z|00166|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:29.157Z|00167|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:29.158Z|00168|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:29.162Z|00169|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:29.192Z|00170|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x19):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:29.193Z|00171|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:29.193Z|00172|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:29.194Z|00173|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:29.195Z|00174|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:29.195Z|00175|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:29.230Z|00176|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x1a):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:29.230Z|00177|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:29.230Z|00178|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:29.231Z|00179|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:29.231Z|00180|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:29.231Z|00181|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:29.267Z|00182|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x1b):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:29.267Z|00183|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:29.267Z|00184|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:29.268Z|00185|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:29.268Z|00186|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:29.268Z|00187|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:29.303Z|00188|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x1c):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:29.303Z|00189|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:29.304Z|00190|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:29.304Z|00191|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:29.304Z|00192|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:29.305Z|00193|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:29.340Z|00194|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x1d):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:29.341Z|00195|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:29.341Z|00196|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:29.342Z|00197|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:29.343Z|00198|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:29.343Z|00199|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:29.364Z|00013|bfd(monitor4)|INFO|p0: Initiating poll sequence
> 2016-07-19T17:06:29.393Z|00014|bfd(monitor4)|INFO|p1: New remote min_rx.
> vers:1 diag:"No Diagnostic" state:up mult:3 length:24
> flags: poll
> my_disc:0x42d92880 your_disc:0x9eea77e4
> min_tx:300000us (300ms)
> min_rx:300000us (300ms)
> min_rx_echo:0us (0ms)    Forwarding: true
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 500ms
> RX Interval: Approx 500ms
> Detect Time: now -1500ms
> Next TX Time: now +565ms
> Last TX Time: now +1000ms
> 
> Local Flags: final
> Local Session State: up
> Local Diagnostic: No Diagnostic
> Local Discriminator: 0x9eea77e4
> Local Minimum TX Interval: 500ms
> Local Minimum RX Interval: 500ms
> 
> Remote Flags: poll
> Remote Session State: up
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x42d92880
> Remote Minimum TX Interval: 300ms
> Remote Minimum RX Interval: 300ms
> 2016-07-19T17:06:29.430Z|00015|bfd(monitor4)|INFO|p0: Poll sequence terminated.
> vers:1 diag:"No Diagnostic" state:up mult:3 length:24
> flags: final
> my_disc:0x9eea77e4 your_disc:0x42d92880
> min_tx:500000us (500ms)
> min_rx:500000us (500ms)
> min_rx_echo:0us (0ms)    Forwarding: true
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 500ms
> RX Interval: Approx 500ms
> Detect Time: now -8000ms
> Next TX Time: now -410ms
> Last TX Time: now +0ms
> 
> Local Flags: none
> Local Session State: up
> Local Diagnostic: No Diagnostic
> Local Discriminator: 0x42d92880
> Local Minimum TX Interval: 300ms
> Local Minimum RX Interval: 300ms
> 
> Remote Flags: final
> Remote Session State: up
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x9eea77e4
> Remote Minimum TX Interval: 500ms
> Remote Minimum RX Interval: 500ms
> 2016-07-19T17:06:29.433Z|00200|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x1e):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:29.436Z|00201|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:29.438Z|00202|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:29.440Z|00203|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:29.442Z|00204|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:29.447Z|00205|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:29.479Z|00206|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x1f):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:29.479Z|00207|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:29.479Z|00208|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:29.480Z|00209|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:29.480Z|00210|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:29.481Z|00211|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:29.515Z|00212|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x20):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:29.515Z|00213|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:29.515Z|00214|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:29.516Z|00215|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:29.516Z|00216|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:29.516Z|00217|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:29.551Z|00218|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x21):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:29.551Z|00219|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:29.551Z|00220|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:29.559Z|00221|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:29.559Z|00222|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:29.560Z|00223|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:29.595Z|00224|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x22):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:29.595Z|00225|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:29.595Z|00226|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:29.596Z|00227|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:29.596Z|00228|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:29.596Z|00229|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:29.631Z|00230|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x23):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:29.631Z|00231|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:29.631Z|00232|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:29.632Z|00233|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:29.632Z|00234|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:29.632Z|00235|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:29.668Z|00236|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x24):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:29.668Z|00237|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:29.668Z|00238|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:29.669Z|00239|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:29.670Z|00240|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:29.671Z|00241|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:29.707Z|00242|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x25):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:29.708Z|00243|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:29.708Z|00244|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:29.709Z|00245|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:29.710Z|00246|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:29.710Z|00247|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:29.744Z|00248|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x26):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:29.745Z|00249|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:29.745Z|00250|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:29.746Z|00251|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:29.748Z|00252|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:29.749Z|00253|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:29.782Z|00254|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x27):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:29.783Z|00255|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:29.783Z|00256|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:29.783Z|00257|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:29.783Z|00258|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:29.783Z|00259|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:29.818Z|00260|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x28):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:29.818Z|00261|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:29.818Z|00262|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:29.818Z|00263|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:29.819Z|00264|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:29.819Z|00265|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:29.854Z|00266|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x29):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:29.854Z|00267|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:29.854Z|00268|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:29.854Z|00269|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:29.854Z|00270|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:29.855Z|00271|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:29.889Z|00272|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x2a):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:29.889Z|00273|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:29.889Z|00274|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:29.889Z|00275|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:29.890Z|00276|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:29.890Z|00277|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:29.925Z|00278|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x2b):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:29.925Z|00279|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:29.925Z|00280|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:29.926Z|00281|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:29.926Z|00282|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:29.926Z|00283|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:29.961Z|00284|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x2c):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:29.962Z|00285|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:29.962Z|00286|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:29.964Z|00287|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:29.965Z|00288|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:29.966Z|00289|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:30.001Z|00290|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x2d):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:30.001Z|00291|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:30.002Z|00292|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:30.003Z|00293|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:30.003Z|00294|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:30.007Z|00295|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:30.038Z|00296|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x2e):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:30.039Z|00297|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:30.039Z|00298|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:30.040Z|00299|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:30.041Z|00300|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:30.042Z|00301|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:30.076Z|00302|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x2f):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:30.076Z|00303|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:30.076Z|00304|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:30.077Z|00305|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:30.078Z|00306|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:30.083Z|00307|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:30.112Z|00308|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x30):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:30.112Z|00309|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:30.112Z|00310|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:30.113Z|00311|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:30.113Z|00312|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:30.113Z|00313|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:30.149Z|00314|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x31):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:30.149Z|00315|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:30.149Z|00316|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:30.150Z|00317|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:30.150Z|00318|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:30.150Z|00319|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:30.188Z|00320|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.3) (xid=0x32):
> version bitmap: 0x01, 0x02, 0x03, 0x04
> 2016-07-19T17:06:30.188Z|00321|vconn|DBG|unix: received: OFPT_HELLO (xid=0x1):
> version bitmap: 0x01
> 2016-07-19T17:06:30.188Z|00322|vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x04 and earlier, peer supports version 0x01)
> 2016-07-19T17:06:30.188Z|00323|vconn|DBG|unix: received: OFPT_PACKET_OUT (xid=0x2): in_port=3 actions=output:2 data_len=42
> arp,vlan_tci=0x0000,dl_src=00:10:18:56:b2:e8,dl_dst=90:e2:ba:01:47:50,arp_spa=2.2.2.3,arp_tpa=2.2.2.2,arp_op=1,arp_sha=00:10:18:56:b2:e8,arp_tha=00:00:00:00:00:00
> 2016-07-19T17:06:30.188Z|00324|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (xid=0x3):
> 2016-07-19T17:06:30.188Z|00325|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (xid=0x3):
> 2016-07-19T17:06:30.270Z|00326|bfd|INFO|p0: Initiating poll sequence
> 2016-07-19T17:06:30.301Z|00016|bfd(monitor4)|INFO|p0: Poll sequence terminated.
> vers:1 diag:"No Diagnostic" state:up mult:3 length:24
> flags: final
> my_disc:0x9eea77e4 your_disc:0x42d92880
> min_tx:500000us (500ms)
> min_rx:500000us (500ms)
> min_rx_echo:0us (0ms)    Forwarding: true
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 500ms
> RX Interval: Approx 500ms
> Detect Time: now -1500ms
> Next TX Time: now -495ms
> Last TX Time: now +0ms
> 
> Local Flags: none
> Local Session State: up
> Local Diagnostic: No Diagnostic
> Local Discriminator: 0x42d92880
> Local Minimum TX Interval: 300ms
> Local Minimum RX Interval: 300ms
> 
> Remote Flags: final
> Remote Session State: up
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x9eea77e4
> Remote Minimum TX Interval: 500ms
> Remote Minimum RX Interval: 500ms
> 2016-07-19T17:06:30.326Z|00017|bfd(monitor4)|INFO|p0: Initiating poll sequence
> 2016-07-19T17:06:30.349Z|00018|bfd(monitor4)|INFO|p1: New remote min_rx.
> vers:1 diag:"No Diagnostic" state:up mult:3 length:24
> flags: poll
> my_disc:0x42d92880 your_disc:0x9eea77e4
> min_tx:300000us (300ms)
> min_rx:1000000us (1000ms)
> min_rx_echo:0us (0ms)    Forwarding: true
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 500ms
> Detect Time: now -1500ms
> Next TX Time: now -360ms
> Last TX Time: now +500ms
> 
> Local Flags: final
> Local Session State: up
> Local Diagnostic: No Diagnostic
> Local Discriminator: 0x9eea77e4
> Local Minimum TX Interval: 500ms
> Local Minimum RX Interval: 500ms
> 
> Remote Flags: poll
> Remote Session State: up
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x42d92880
> Remote Minimum TX Interval: 300ms
> Remote Minimum RX Interval: 1000ms
> 2016-07-19T17:06:30.378Z|00019|bfd(monitor4)|INFO|p0: BFD state change: up->down "No Diagnostic"->"Control Detection Time Expired".
> Forwarding: true
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 500ms
> RX Interval: Approx 500ms
> Detect Time: now +0ms
> Next TX Time: now +505ms
> Last TX Time: now +1000ms
> 
> Local Flags: poll
> Local Session State: up
> Local Diagnostic: No Diagnostic
> Local Discriminator: 0x42d92880
> Local Minimum TX Interval: 300ms
> Local Minimum RX Interval: 300ms
> 
> Remote Flags: none
> Remote Session State: up
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x9eea77e4
> Remote Minimum TX Interval: 500ms
> Remote Minimum RX Interval: 500ms
> 2016-07-19T17:06:30.380Z|00020|bfd(monitor4)|INFO|p1: long delay of 1640ms (expected 1000ms) sending BFD control message
> 2016-07-19T17:06:30.415Z|00021|bfd(monitor4)|INFO|p0: Poll sequence terminated.
> vers:1 diag:"No Diagnostic" state:up mult:3 length:24
> flags: final
> my_disc:0x9eea77e4 your_disc:0x42d92880
> min_tx:500000us (500ms)
> min_rx:500000us (500ms)
> min_rx_echo:0us (0ms)    Forwarding: false
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 1000ms
> Detect Time: now +1000ms
> Next TX Time: now +1505ms
> Last TX Time: now +2000ms
> 
> Local Flags: none
> Local Session State: down
> Local Diagnostic: Control Detection Time Expired
> Local Discriminator: 0x42d92880
> Local Minimum TX Interval: 1000ms
> Local Minimum RX Interval: 1000ms
> 
> Remote Flags: final
> Remote Session State: up
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x9eea77e4
> Remote Minimum TX Interval: 0ms
> Remote Minimum RX Interval: 1ms
> 2016-07-19T17:06:30.449Z|00022|bfd(monitor4)|INFO|p0: New remote min_rx.
> vers:1 diag:"No Diagnostic" state:up mult:3 length:24
> flags: final
> my_disc:0x9eea77e4 your_disc:0x42d92880
> min_tx:500000us (500ms)
> min_rx:500000us (500ms)
> min_rx_echo:0us (0ms)    Forwarding: false
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 1000ms
> Detect Time: now +1000ms
> Next TX Time: now +1160ms
> Last TX Time: now +2000ms
> 
> Local Flags: none
> Local Session State: down
> Local Diagnostic: Control Detection Time Expired
> Local Discriminator: 0x42d92880
> Local Minimum TX Interval: 1000ms
> Local Minimum RX Interval: 1000ms
> 
> Remote Flags: final
> Remote Session State: up
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x9eea77e4
> Remote Minimum TX Interval: 0ms
> Remote Minimum RX Interval: 500ms
> 2016-07-19T17:06:30.478Z|00023|bfd(monitor4)|INFO|p1: BFD state change: up->down "No Diagnostic"->"Control Detection Time Expired".
> Forwarding: true
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 500ms
> Detect Time: now +0ms
> Next TX Time: now -470ms
> Last TX Time: now +500ms
> 
> Local Flags: none
> Local Session State: up
> Local Diagnostic: No Diagnostic
> Local Discriminator: 0x9eea77e4
> Local Minimum TX Interval: 500ms
> Local Minimum RX Interval: 500ms
> 
> Remote Flags: poll
> Remote Session State: up
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x42d92880
> Remote Minimum TX Interval: 300ms
> Remote Minimum RX Interval: 1000ms
> 2016-07-19T17:06:30.489Z|00327|ovs_rcu|WARN|blocked 1000 ms waiting for monitor4 to quiesce
> 2016-07-19T17:06:30.508Z|00024|bfd(monitor4)|INFO|p0: BFD state change: down->init "Control Detection Time Expired"->"Control Detection Time Expired".
> Forwarding: false
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 1000ms
> Detect Time: now -3000ms
> Next TX Time: now +2660ms
> Last TX Time: now +3500ms
> 
> Local Flags: none
> Local Session State: down
> Local Diagnostic: Control Detection Time Expired
> Local Discriminator: 0x42d92880
> Local Minimum TX Interval: 1000ms
> Local Minimum RX Interval: 1000ms
> 
> Remote Flags: none
> Remote Session State: down
> Remote Diagnostic: Control Detection Time Expired
> Remote Discriminator: 0x9eea77e4
> Remote Minimum TX Interval: 1000ms
> Remote Minimum RX Interval: 500ms
> 2016-07-19T17:06:30.510Z|00025|bfd(monitor4)|INFO|p0: long delay of 3660ms (expected 1000ms) sending BFD control message
> 2016-07-19T17:06:30.514Z|00328|ovs_rcu|WARN|blocked 2000 ms waiting for monitor4 to quiesce
> 2016-07-19T17:06:30.549Z|00026|bfd(monitor4)|INFO|p1: New remote min_rx.
> vers:1 diag:"Control Detection Time Expired" state:init mult:3 length:24
> flags: none
> my_disc:0x42d92880 your_disc:0x9eea77e4
> min_tx:1000000us (1000ms)
> min_rx:1000000us (1000ms)
> min_rx_echo:0us (0ms)    Forwarding: false
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 500ms
> Detect Time: now +2000ms
> Next TX Time: now -960ms
> Last TX Time: now +0ms
> 
> Local Flags: none
> Local Session State: down
> Local Diagnostic: Control Detection Time Expired
> Local Discriminator: 0x9eea77e4
> Local Minimum TX Interval: 1000ms
> Local Minimum RX Interval: 500ms
> 
> Remote Flags: none
> Remote Session State: init
> Remote Diagnostic: Control Detection Time Expired
> Remote Discriminator: 0x42d92880
> Remote Minimum TX Interval: 0ms
> Remote Minimum RX Interval: 1000ms
> 2016-07-19T17:06:30.558Z|00329|ovs_rcu|WARN|blocked 4000 ms waiting for monitor4 to quiesce
> 2016-07-19T17:06:30.595Z|00027|bfd(monitor4)|INFO|p1: BFD state change: down->up "Control Detection Time Expired"->"Control Detection Time Expired".
> Forwarding: false
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 1000ms
> Detect Time: now -3000ms
> Next TX Time: now +1040ms
> Last TX Time: now +2000ms
> 
> Local Flags: none
> Local Session State: down
> Local Diagnostic: Control Detection Time Expired
> Local Discriminator: 0x9eea77e4
> Local Minimum TX Interval: 1000ms
> Local Minimum RX Interval: 500ms
> 
> Remote Flags: none
> Remote Session State: init
> Remote Diagnostic: Control Detection Time Expired
> Remote Discriminator: 0x42d92880
> Remote Minimum TX Interval: 1000ms
> Remote Minimum RX Interval: 1000ms
> 2016-07-19T17:06:30.651Z|00028|bfd(monitor4)|INFO|p0: BFD state change: init->down "Control Detection Time Expired"->"Control Detection Time Expired".
> Forwarding: false
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 1000ms
> Detect Time: now +500ms
> Next TX Time: now +2550ms
> Last TX Time: now +3500ms
> 
> Local Flags: none
> Local Session State: init
> Local Diagnostic: Control Detection Time Expired
> Local Discriminator: 0x42d92880
> Local Minimum TX Interval: 1000ms
> Local Minimum RX Interval: 1000ms
> 
> Remote Flags: none
> Remote Session State: down
> Remote Diagnostic: Control Detection Time Expired
> Remote Discriminator: 0x9eea77e4
> Remote Minimum TX Interval: 1000ms
> Remote Minimum RX Interval: 500ms
> 2016-07-19T17:06:30.653Z|00029|bfd(monitor4)|INFO|p0: long delay of 2550ms (expected 1000ms) sending BFD control message
> 2016-07-19T17:06:30.691Z|00030|bfd(monitor4)|INFO|p1: BFD state change: up->down "Control Detection Time Expired"->"Neighbor Signaled Session Down".
> Forwarding: true
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 1000ms
> Detect Time: now -3000ms
> Next TX Time: now +2540ms
> Last TX Time: now +3500ms
> 
> Local Flags: none
> Local Session State: up
> Local Diagnostic: Control Detection Time Expired
> Local Discriminator: 0x9eea77e4
> Local Minimum TX Interval: 500ms
> Local Minimum RX Interval: 500ms
> 
> Remote Flags: none
> Remote Session State: down
> Remote Diagnostic: Control Detection Time Expired
> Remote Discriminator: 0x42d92880
> Remote Minimum TX Interval: 1000ms
> Remote Minimum RX Interval: 1000ms
> 2016-07-19T17:06:30.739Z|00031|bfd(monitor4)|INFO|p1: Remote signaled STATE_DOWN.
> vers:1 diag:"Control Detection Time Expired" state:down mult:3 length:24
> flags: none
> my_disc:0x42d92880 your_disc:0x0
> min_tx:1000000us (1000ms)
> min_rx:1000000us (1000ms)
> min_rx_echo:0us (0ms)    Forwarding: false
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 500ms
> Detect Time: now -3000ms
> Next TX Time: now +2540ms
> Last TX Time: now +3500ms
> 
> Local Flags: none
> Local Session State: down
> Local Diagnostic: Neighbor Signaled Session Down
> Local Discriminator: 0x9eea77e4
> Local Minimum TX Interval: 1000ms
> Local Minimum RX Interval: 500ms
> 
> Remote Flags: none
> Remote Session State: down
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x0
> Remote Minimum TX Interval: 0ms
> Remote Minimum RX Interval: 1ms
> 2016-07-19T17:06:30.741Z|00032|bfd(monitor4)|INFO|p1: long delay of 2540ms (expected 1000ms) sending BFD control message
> 2016-07-19T17:06:30.791Z|00033|bfd(monitor4)|INFO|p0: New remote min_rx.
> vers:1 diag:"Neighbor Signaled Session Down" state:down mult:3 length:24
> flags: none
> my_disc:0x9eea77e4 your_disc:0x0
> min_tx:1000000us (1000ms)
> min_rx:500000us (500ms)
> min_rx_echo:0us (0ms)    Forwarding: false
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 1000ms
> Detect Time: now +500ms
> Next TX Time: now -970ms
> Last TX Time: now +0ms
> 
> Local Flags: none
> Local Session State: down
> Local Diagnostic: Control Detection Time Expired
> Local Discriminator: 0x42d92880
> Local Minimum TX Interval: 1000ms
> Local Minimum RX Interval: 1000ms
> 
> Remote Flags: none
> Remote Session State: down
> Remote Diagnostic: Neighbor Signaled Session Down
> Remote Discriminator: 0x9eea77e4
> Remote Minimum TX Interval: 0ms
> Remote Minimum RX Interval: 500ms
> 2016-07-19T17:06:30.819Z|00034|bfd(monitor4)|INFO|p0: BFD state change: down->init "Control Detection Time Expired"->"Control Detection Time Expired".
> Forwarding: false
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 1000ms
> Detect Time: now -3000ms
> Next TX Time: now -970ms
> Last TX Time: now +0ms
> 
> Local Flags: none
> Local Session State: down
> Local Diagnostic: Control Detection Time Expired
> Local Discriminator: 0x42d92880
> Local Minimum TX Interval: 1000ms
> Local Minimum RX Interval: 1000ms
> 
> Remote Flags: none
> Remote Session State: down
> Remote Diagnostic: Neighbor Signaled Session Down
> Remote Discriminator: 0x9eea77e4
> Remote Minimum TX Interval: 1000ms
> Remote Minimum RX Interval: 500ms
 15. bfd.at:261: 15. bfd - bfd decay (bfd.at:261): FAILED (bfd.at:322)

#                             -*- compilation -*-
18. bfd.at:519: testing bfd - bfd forwarding_if_rx - with bfd decay ...
./bfd.at:520: ovsdb-tool create conf.db
$abs_top_srcdir/vswitchd/vswitch.ovsschema
./bfd.at:520: ovsdb-server --detach --no-chdir --pidfile --log-file
--remote=punix:$OVS_RUNDIR/db.sock
stderr:
2016-07-19T17:06:31Z|00001|vlog|INFO|opened log file
/root/rpmbuild/BUILD/openvswitch-2.5.0/tests/testsuite.dir/0018/ovsdb-server.log
./bfd.at:520: sed < stderr '
/vlog|INFO|opened log file/d
/ovsdb_server|INFO|ovsdb-server (Open vSwitch)/d'
./bfd.at:520: ovs-vsctl --no-wait init
./bfd.at:520: ovs-vswitchd --enable-dummy --disable-system --detach
--no-chdir --pidfile --log-file -vvconn -vofproto_dpif
stderr:
2016-07-19T17:06:32Z|00001|vlog|INFO|opened log file
/root/rpmbuild/BUILD/openvswitch-2.5.0/tests/testsuite.dir/0018/ovs-vswitchd.log
2016-07-19T17:06:32Z|00002|ovs_numa|INFO|Discovered 0 NUMA nodes and 0
CPU cores
2016-07-19T17:06:32Z|00003|reconnect|INFO|unix:/root/rpmbuild/BUILD/openvswitch-2.5.0/tests/testsuite.dir/0018/db.sock:
connecting...
2016-07-19T17:06:32Z|00004|reconnect|INFO|unix:/root/rpmbuild/BUILD/openvswitch-2.5.0/tests/testsuite.dir/0018/db.sock:
connected
./bfd.at:520: 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
/netdev_linux|INFO|.*device has unknown hardware address family/d
/ofproto|INFO|datapath ID changed to fedcba9876543210/d'
./bfd.at:520: ovs-vsctl -- add-br br0 -- set bridge br0
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-br br1 -- set bridge br1 datapath-type=dummy --
\
                    add-port br1 p1 -- set Interface p1 type=patch \
                    options:peer=p0 ofport_request=2 -- \
                    add-port br0 p0 -- set Interface p0 type=patch \
                    options:peer=p1 ofport_request=1 -- \
                    set Interface p0 bfd:enable=true bfd:min_tx=300
bfd:min_rx=300 bfd:decay_min_rx=3000 -- \
                    set Interface p1 bfd:enable=true bfd:min_tx=500
bfd:min_rx=500 
warped
./bfd.at:531: ovs-appctl bfd/show p0 | sed -e '/Time:/d' | sed -e
'/Discriminator/d' | sed -e '/Interval:/d'
--- -    2016-07-19 13:06:32.829990671 -0400
+++
/root/rpmbuild/BUILD/openvswitch-2.5.0/tests/testsuite.dir/at-groups/18/stdout
   2016-07-19 13:06:32.821054200 -0400
@@ -4,9 +4,9 @@

     Local Flags: none
     Local Session State: up
-    Local Diagnostic: No Diagnostic
+    Local Diagnostic: Neighbor Signaled Session Down

     Remote Flags: none
-    Remote Session State: up
-    Remote Diagnostic: No Diagnostic
+    Remote Session State: init
+    Remote Diagnostic: Control Detection Time Expired

ovsdb-server.log: 

> 2016-07-19T17:06:31.908Z|00001|vlog|INFO|opened log file /root/rpmbuild/BUILD/openvswitch-2.5.0/tests/testsuite.dir/0018/ovsdb-server.log
> 2016-07-19T17:06:31.933Z|00002|ovsdb_server|INFO|ovsdb-server (Open vSwitch) 2.5.0
 ovs-vswitchd.log: 

> 2016-07-19T17:06:32.001Z|00001|vlog|INFO|opened log file /root/rpmbuild/BUILD/openvswitch-2.5.0/tests/testsuite.dir/0018/ovs-vswitchd.log
> 2016-07-19T17:06:32.004Z|00002|ovs_numa|INFO|Discovered 0 NUMA nodes and 0 CPU cores
> 2016-07-19T17:06:32.004Z|00003|reconnect|INFO|unix:/root/rpmbuild/BUILD/openvswitch-2.5.0/tests/testsuite.dir/0018/db.sock: connecting...
> 2016-07-19T17:06:32.005Z|00004|reconnect|INFO|unix:/root/rpmbuild/BUILD/openvswitch-2.5.0/tests/testsuite.dir/0018/db.sock: connected
> 2016-07-19T17:06:32.021Z|00005|bridge|INFO|ovs-vswitchd (Open vSwitch) 2.5.0
> 2016-07-19T17:06:32.110Z|00006|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports recirculation
> 2016-07-19T17:06:32.110Z|00007|ofproto_dpif|INFO|dummy at ovs-dummy: MPLS label stack length probed as 3
> 2016-07-19T17:06:32.111Z|00008|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath supports unique flow ids
> 2016-07-19T17:06:32.111Z|00009|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath does not support ct_state
> 2016-07-19T17:06:32.111Z|00010|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath does not support ct_zone
> 2016-07-19T17:06:32.111Z|00011|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath does not support ct_mark
> 2016-07-19T17:06:32.112Z|00012|ofproto_dpif|INFO|dummy at ovs-dummy: Datapath does not support ct_label
> 2016-07-19T17:06:32.116Z|00013|bridge|INFO|bridge br0: added interface p0 on port 1
> 2016-07-19T17:06:32.117Z|00014|bridge|INFO|bridge br0: added interface br0 on port 65534
> 2016-07-19T17:06:32.119Z|00015|bridge|INFO|bridge br1: added interface p1 on port 2
> 2016-07-19T17:06:32.119Z|00016|bridge|INFO|bridge br1: added interface br1 on port 65534
> 2016-07-19T17:06:32.119Z|00017|bridge|INFO|bridge br0: using datapath ID fedcba9876543210
> 2016-07-19T17:06:32.145Z|00018|bfd|INFO|p0: BFD state change: admin_down->down "No Diagnostic"->"No Diagnostic".
> Forwarding: false
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 0ms
> Detect Time: now +537216988ms
> Next TX Time: now +537216988ms
> Last TX Time: now +537216988ms
> 
> Local Flags: none
> Local Session State: admin_down
> Local Diagnostic: No Diagnostic
> Local Discriminator: 0x554c53f4
> Local Minimum TX Interval: 1000ms
> Local Minimum RX Interval: 0ms
> 
> Remote Flags: none
> Remote Session State: admin_down
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x0
> Remote Minimum TX Interval: 0ms
> Remote Minimum RX Interval: 0ms
> 2016-07-19T17:06:32.147Z|00019|connmgr|INFO|br0: added service controller "punix:/root/rpmbuild/BUILD/openvswitch-2.5.0/tests/testsuite.dir/0018/br0.mgmt"
> 2016-07-19T17:06:32.148Z|00001|ofproto_dpif_monitor(monitor4)|INFO|monitor thread created
> 2016-07-19T17:06:32.152Z|00020|bridge|INFO|bridge br1: using datapath ID 0000fe335ae31544
> 2016-07-19T17:06:32.179Z|00021|bfd|INFO|p1: BFD state change: admin_down->down "No Diagnostic"->"No Diagnostic".
> Forwarding: false
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 0ms
> Detect Time: now +537217020ms
> Next TX Time: now +537217021ms
> Last TX Time: now +537217021ms
> 
> Local Flags: none
> Local Session State: admin_down
> Local Diagnostic: No Diagnostic
> Local Discriminator: 0x396531cd
> Local Minimum TX Interval: 1000ms
> Local Minimum RX Interval: 0ms
> 
> Remote Flags: none
> Remote Session State: admin_down
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x0
> Remote Minimum TX Interval: 0ms
> Remote Minimum RX Interval: 0ms
> 2016-07-19T17:06:32.181Z|00022|connmgr|INFO|br1: added service controller "punix:/root/rpmbuild/BUILD/openvswitch-2.5.0/tests/testsuite.dir/0018/br1.mgmt"
> 2016-07-19T17:06:32.260Z|00002|bfd(monitor4)|INFO|p0: New remote min_rx.
> vers:1 diag:"No Diagnostic" state:down mult:3 length:24
> flags: none
> my_disc:0x396531cd your_disc:0x0
> min_tx:1000000us (1000ms)
> min_rx:500000us (500ms)
> min_rx_echo:0us (0ms)    Forwarding: false
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 300ms
> Detect Time: now +537217596ms
> Next TX Time: now -320ms
> Last TX Time: now +580ms
> 
> Local Flags: none
> Local Session State: down
> Local Diagnostic: No Diagnostic
> Local Discriminator: 0x554c53f4
> Local Minimum TX Interval: 1000ms
> Local Minimum RX Interval: 300ms
> 
> Remote Flags: none
> Remote Session State: down
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x396531cd
> Remote Minimum TX Interval: 0ms
> Remote Minimum RX Interval: 500ms
> 2016-07-19T17:06:32.290Z|00003|bfd(monitor4)|INFO|p0: BFD state change: down->init "No Diagnostic"->"No Diagnostic".
> Forwarding: false
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 1000ms
> Detect Time: now -3000ms
> Next TX Time: now +180ms
> Last TX Time: now +1080ms
> 
> Local Flags: none
> Local Session State: down
> Local Diagnostic: No Diagnostic
> Local Discriminator: 0x554c53f4
> Local Minimum TX Interval: 1000ms
> Local Minimum RX Interval: 300ms
> 
> Remote Flags: none
> Remote Session State: down
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x396531cd
> Remote Minimum TX Interval: 1000ms
> Remote Minimum RX Interval: 500ms
> 2016-07-19T17:06:32.292Z|00004|bfd(monitor4)|INFO|p0: long delay of 1680ms (expected 1000ms) sending BFD control message
> 2016-07-19T17:06:32.327Z|00005|bfd(monitor4)|INFO|p1: New remote min_rx.
> vers:1 diag:"No Diagnostic" state:init mult:3 length:24
> flags: none
> my_disc:0x554c53f4 your_disc:0x396531cd
> min_tx:1000000us (1000ms)
> min_rx:300000us (300ms)
> min_rx_echo:0us (0ms)    Forwarding: false
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 500ms
> Detect Time: now +537219596ms
> Next TX Time: now +1240ms
> Last TX Time: now +2000ms
> 
> Local Flags: none
> Local Session State: down
> Local Diagnostic: No Diagnostic
> Local Discriminator: 0x396531cd
> Local Minimum TX Interval: 1000ms
> Local Minimum RX Interval: 500ms
> 
> Remote Flags: none
> Remote Session State: init
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x554c53f4
> Remote Minimum TX Interval: 0ms
> Remote Minimum RX Interval: 300ms
> 2016-07-19T17:06:32.356Z|00006|bfd(monitor4)|INFO|p1: BFD state change: down->up "No Diagnostic"->"No Diagnostic".
> Forwarding: false
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 1000ms
> Detect Time: now -3000ms
> Next TX Time: now +1240ms
> Last TX Time: now +2000ms
> 
> Local Flags: none
> Local Session State: down
> Local Diagnostic: No Diagnostic
> Local Discriminator: 0x396531cd
> Local Minimum TX Interval: 1000ms
> Local Minimum RX Interval: 500ms
> 
> Remote Flags: none
> Remote Session State: init
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x554c53f4
> Remote Minimum TX Interval: 1000ms
> Remote Minimum RX Interval: 300ms
> 2016-07-19T17:06:32.358Z|00007|bfd(monitor4)|INFO|p1: long delay of 1240ms (expected 500ms) sending BFD control message
> 2016-07-19T17:06:32.386Z|00008|bfd(monitor4)|INFO|p0: BFD state change: init->up "No Diagnostic"->"No Diagnostic".
> Forwarding: false
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 500ms
> Detect Time: now -1500ms
> Next TX Time: now -950ms
> Last TX Time: now +0ms
> 
> Local Flags: none
> Local Session State: init
> Local Diagnostic: No Diagnostic
> Local Discriminator: 0x554c53f4
> Local Minimum TX Interval: 1000ms
> Local Minimum RX Interval: 300ms
> 
> Remote Flags: none
> Remote Session State: up
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x396531cd
> Remote Minimum TX Interval: 500ms
> Remote Minimum RX Interval: 500ms
> 2016-07-19T17:06:32.454Z|00009|bfd(monitor4)|INFO|p0: Initiating poll sequence
> 2016-07-19T17:06:32.478Z|00010|bfd(monitor4)|INFO|p1: New remote min_rx.
> vers:1 diag:"No Diagnostic" state:up mult:3 length:24
> flags: poll
> my_disc:0x554c53f4 your_disc:0x396531cd
> min_tx:300000us (300ms)
> min_rx:3000000us (3000ms)
> min_rx_echo:0us (0ms)    Forwarding: true
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 3000ms
> RX Interval: Approx 500ms
> Detect Time: now -1500ms
> Next TX Time: now -2140ms
> Last TX Time: now +500ms
> 
> Local Flags: final
> Local Session State: up
> Local Diagnostic: No Diagnostic
> Local Discriminator: 0x396531cd
> Local Minimum TX Interval: 500ms
> Local Minimum RX Interval: 500ms
> 
> Remote Flags: poll
> Remote Session State: up
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x554c53f4
> Remote Minimum TX Interval: 300ms
> Remote Minimum RX Interval: 3000ms
> 2016-07-19T17:06:32.516Z|00011|bfd(monitor4)|INFO|p0: Poll sequence terminated.
> vers:1 diag:"No Diagnostic" state:up mult:3 length:24
> flags: final
> my_disc:0x396531cd your_disc:0x554c53f4
> min_tx:500000us (500ms)
> min_rx:500000us (500ms)
> min_rx_echo:0us (0ms)    Forwarding: true
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 500ms
> RX Interval: Approx 3000ms
> Detect Time: now -500ms
> Next TX Time: now +80ms
> Last TX Time: now +500ms
> 
> Local Flags: none
> Local Session State: up
> Local Diagnostic: No Diagnostic
> Local Discriminator: 0x554c53f4
> Local Minimum TX Interval: 300ms
> Local Minimum RX Interval: 3000ms
> 
> Remote Flags: final
> Remote Session State: up
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x396531cd
> Remote Minimum TX Interval: 500ms
> Remote Minimum RX Interval: 500ms
> 2016-07-19T17:06:32.546Z|00012|bfd(monitor4)|INFO|p1: BFD state change: up->down "No Diagnostic"->"Control Detection Time Expired".
> Forwarding: true
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 3000ms
> RX Interval: Approx 500ms
> Detect Time: now +500ms
> Next TX Time: now -250ms
> Last TX Time: now +2000ms
> 
> Local Flags: none
> Local Session State: up
> Local Diagnostic: No Diagnostic
> Local Discriminator: 0x396531cd
> Local Minimum TX Interval: 500ms
> Local Minimum RX Interval: 500ms
> 
> Remote Flags: poll
> Remote Session State: up
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x554c53f4
> Remote Minimum TX Interval: 300ms
> Remote Minimum RX Interval: 3000ms
> 2016-07-19T17:06:32.575Z|00013|bfd(monitor4)|INFO|p0: BFD state change: up->down "No Diagnostic"->"Neighbor Signaled Session Down".
> Forwarding: true
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 500ms
> RX Interval: Approx 3000ms
> Detect Time: now -9000ms
> Next TX Time: now +3080ms
> Last TX Time: now +3500ms
> 
> Local Flags: none
> Local Session State: up
> Local Diagnostic: No Diagnostic
> Local Discriminator: 0x554c53f4
> Local Minimum TX Interval: 300ms
> Local Minimum RX Interval: 3000ms
> 
> Remote Flags: none
> Remote Session State: down
> Remote Diagnostic: Control Detection Time Expired
> Remote Discriminator: 0x396531cd
> Remote Minimum TX Interval: 1000ms
> Remote Minimum RX Interval: 500ms
> 2016-07-19T17:06:32.610Z|00014|bfd(monitor4)|INFO|p0: Remote signaled STATE_DOWN.
> vers:1 diag:"Control Detection Time Expired" state:down mult:3 length:24
> flags: none
> my_disc:0x396531cd your_disc:0x0
> min_tx:1000000us (1000ms)
> min_rx:500000us (500ms)
> min_rx_echo:0us (0ms)    Forwarding: false
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 300ms
> Detect Time: now -9000ms
> Next TX Time: now +3080ms
> Last TX Time: now +3500ms
> 
> Local Flags: none
> Local Session State: down
> Local Diagnostic: Neighbor Signaled Session Down
> Local Discriminator: 0x554c53f4
> Local Minimum TX Interval: 1000ms
> Local Minimum RX Interval: 300ms
> 
> Remote Flags: none
> Remote Session State: down
> Remote Diagnostic: No Diagnostic
> Remote Discriminator: 0x0
> Remote Minimum TX Interval: 0ms
> Remote Minimum RX Interval: 1ms
> 2016-07-19T17:06:32.614Z|00015|bfd(monitor4)|INFO|p0: long delay of 3580ms (expected 1000ms) sending BFD control message
> 2016-07-19T17:06:32.675Z|00016|bfd(monitor4)|INFO|p1: New remote min_rx.
> vers:1 diag:"Neighbor Signaled Session Down" state:down mult:3 length:24
> flags: none
> my_disc:0x554c53f4 your_disc:0x0
> min_tx:1000000us (1000ms)
> min_rx:300000us (300ms)
> min_rx_echo:0us (0ms)    Forwarding: false
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 500ms
> Detect Time: now +2000ms
> Next TX Time: now -330ms
> Last TX Time: now +500ms
> 
> Local Flags: none
> Local Session State: down
> Local Diagnostic: Control Detection Time Expired
> Local Discriminator: 0x396531cd
> Local Minimum TX Interval: 1000ms
> Local Minimum RX Interval: 500ms
> 
> Remote Flags: none
> Remote Session State: down
> Remote Diagnostic: Neighbor Signaled Session Down
> Remote Discriminator: 0x554c53f4
> Remote Minimum TX Interval: 0ms
> Remote Minimum RX Interval: 300ms
> 2016-07-19T17:06:32.719Z|00017|bfd(monitor4)|INFO|p1: BFD state change: down->init "Control Detection Time Expired"->"Control Detection Time Expired".
> Forwarding: false
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 1000ms
> Detect Time: now -3000ms
> Next TX Time: now +170ms
> Last TX Time: now +1000ms
> 
> Local Flags: none
> Local Session State: down
> Local Diagnostic: Control Detection Time Expired
> Local Discriminator: 0x396531cd
> Local Minimum TX Interval: 1000ms
> Local Minimum RX Interval: 500ms
> 
> Remote Flags: none
> Remote Session State: down
> Remote Diagnostic: Neighbor Signaled Session Down
> Remote Discriminator: 0x554c53f4
> Remote Minimum TX Interval: 1000ms
> Remote Minimum RX Interval: 300ms
> 2016-07-19T17:06:32.773Z|00018|bfd(monitor4)|INFO|p0: New remote min_rx.
> vers:1 diag:"Control Detection Time Expired" state:init mult:3 length:24
> flags: none
> my_disc:0x396531cd your_disc:0x554c53f4
> min_tx:1000000us (1000ms)
> min_rx:500000us (500ms)
> min_rx_echo:0us (0ms)    Forwarding: false
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 300ms
> Detect Time: now -8000ms
> Next TX Time: now -370ms
> Last TX Time: now +500ms
> 
> Local Flags: none
> Local Session State: down
> Local Diagnostic: Neighbor Signaled Session Down
> Local Discriminator: 0x554c53f4
> Local Minimum TX Interval: 1000ms
> Local Minimum RX Interval: 300ms
> 
> Remote Flags: none
> Remote Session State: init
> Remote Diagnostic: Control Detection Time Expired
> Remote Discriminator: 0x396531cd
> Remote Minimum TX Interval: 0ms
> Remote Minimum RX Interval: 500ms
> 2016-07-19T17:06:32.815Z|00019|bfd(monitor4)|INFO|p0: BFD state change: down->up "Neighbor Signaled Session Down"->"Neighbor Signaled Session Down".
> Forwarding: false
> Detect Multiplier: 3
> Concatenated Path Down: false
> TX Interval: Approx 1000ms
> RX Interval: Approx 1000ms
> Detect Time: now -3000ms
> Next TX Time: now -370ms
> Last TX Time: now +500ms
> 
> Local Flags: none
> Local Session State: down
> Local Diagnostic: Neighbor Signaled Session Down
> Local Discriminator: 0x554c53f4
> Local Minimum TX Interval: 1000ms
> Local Minimum RX Interval: 300ms
> 
> Remote Flags: none
> Remote Session State: init
> Remote Diagnostic: Control Detection Time Expired
> Remote Discriminator: 0x396531cd
> Remote Minimum TX Interval: 1000ms
> Remote Minimum RX Interval: 500ms
> 2016-07-19T17:06:32.825Z|00023|memory|INFO|12872 kB peak resident set size after 10.2 seconds
> 2016-07-19T17:06:32.826Z|00024|memory|INFO|handlers:1 ports:4 revalidators:1 rules:9
 18. bfd.at:519: 18. bfd - bfd forwarding_if_rx - with bfd decay
(bfd.at:519): FAILED (bfd.at:531)

## ------------- ##
## ../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.5.0, which was
| generated by GNU Autoconf 2.69.  Invocation command line was
| 
|   $ ./configure --build=i686-redhat-linux-gnu
--host=i686-redhat-linux-gnu --program-prefix=
--disable-dependency-tracking --prefix=/usr --exec-prefix=/usr
--bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc
--datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib
--libexecdir=/usr/libexec --localstatedir=/var --sharedstatedir=/var/lib
--mandir=/usr/share/man --infodir=/usr/share/info --enable-libcapng
--enable-ssl --with-pkidir=/var/lib/openvswitch/pki
| 
| ## --------- ##
| ## Platform. ##
| ## --------- ##
| 
| hostname = localhost.localdomain
| uname -m = i686
| uname -r = 4.5.7-202.fc23.i686
| uname -s = Linux
| uname -v = #1 SMP Tue Jun 28 18:53:34 UTC 2016
| 
| /usr/bin/uname -p = i686
| /bin/uname -X     = unknown
| 
| /bin/arch              = i686
| /usr/bin/arch -k       = unknown
| /usr/convex/getsysinfo = unknown
| /usr/bin/hostinfo      = unknown
| /bin/machine           = unknown
| /usr/bin/oslevel       = unknown
| /bin/universe          = unknown
| 
| PATH: /usr/local/sbin
| PATH: /usr/local/bin
| PATH: /usr/sbin
| PATH: /usr/bin
| PATH: /opt/rakudo-star-2016.01/install/bin/
| 
| 
| ## ----------- ##
| ## Core tests. ##
| ## ----------- ##
| 
| configure:2676: checking for a BSD-compatible install
| configure:2744: result: /usr/bin/install -c
| configure:2755: checking whether build environment is sane
| configure:2810: result: yes
| configure:2961: checking for a thread-safe mkdir -p
| configure:3000: result: /usr/bin/mkdir -p
| configure:3007: checking for gawk
| configure:3023: found /usr/bin/gawk
| configure:3034: result: gawk
| configure:3045: checking whether make sets $(MAKE)
| configure:3067: result: yes
| configure:3096: checking whether make supports nested variables
| configure:3113: result: yes
| configure:3192: checking how to create a pax tar archive
| configure:3203: tar --version
| tar (GNU tar) 1.28
| Copyright (C) 2014 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:3206: $? = 0
| configure:3246: tardir=conftest.dir && eval tar --format=posix -chf -
"$tardir" >conftest.tar
| configure:3249: $? = 0
| configure:3253: tar -xf - <conftest.tar
| configure:3256: $? = 0
| configure:3258: cat conftest.dir/file
| GrepMe
| configure:3261: $? = 0
| configure:3274: result: gnutar
| configure:3336: checking for style of include used by make
| configure:3364: result: GNU
| configure:3395: checking for i686-redhat-linux-gnu-gcc
| configure:3425: result: no
| configure:3435: checking for gcc
| configure:3451: found /usr/bin/gcc
| configure:3462: result: gcc
| configure:3691: checking for C compiler version
| configure:3700: gcc --version >&5
| gcc (GCC) 5.3.1 20160406 (Red Hat 5.3.1-6)
| Copyright (C) 2015 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:3711: $? = 0
| configure:3700: gcc -v >&5
| Using built-in specs.
| COLLECT_GCC=gcc
|
COLLECT_LTO_WRAPPER=/usr/libexec/gcc/i686-redhat-linux/5.3.1/lto-wrapper
| Target: i686-redhat-linux
| Configured with: ../configure --enable-bootstrap
--enable-languages=c,c++,objc,obj-c++,fortran,ada,go,lto --prefix=/usr
--mandir=/usr/share/man --infodir=/usr/share/info
--with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-shared
--enable-threads=posix --enable-checking=release --enable-multilib
--with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions
--enable-gnu-unique-object --enable-linker-build-id
--with-linker-hash-style=gnu --enable-plugin --enable-initfini-array
--disable-libgcj --with-isl --enable-libmpx
--enable-gnu-indirect-function --with-tune=generic --with-arch=i686
--build=i686-redhat-linux
| Thread model: posix
| gcc version 5.3.1 20160406 (Red Hat 5.3.1-6) (GCC) 
| configure:3711: $? = 0
| configure:3700: gcc -V >&5
| gcc: error: unrecognized command line option '-V'
| gcc: fatal error: no input files
| compilation terminated.
| configure:3711: $? = 1
| configure:3700: gcc -qversion >&5
| gcc: error: unrecognized command line option '-qversion'
| gcc: fatal error: no input files
| compilation terminated.
| configure:3711: $? = 1
| configure:3731: checking whether the C compiler works
| configure:3753: gcc -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c  >&5
| configure:3757: $? = 0
| configure:3805: result: yes
| configure:3808: checking for C compiler default output file name
| configure:3810: result: a.out
| configure:3816: checking for suffix of executables
| configure:3823: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c  >&5
| configure:3827: $? = 0
| configure:3849: result: 
| configure:3871: checking whether we are cross compiling
| configure:3879: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c  >&5
| configure:3883: $? = 0
| configure:3890: ./conftest
| configure:3894: $? = 0
| configure:3909: result: no
| configure:3914: checking for suffix of object files
| configure:3936: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:3940: $? = 0
| configure:3961: result: o
| configure:3965: checking whether we are using the GNU C compiler
| configure:3984: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:3984: $? = 0
| configure:3993: result: yes
| configure:4002: checking whether gcc accepts -g
| configure:4022: gcc -c -g  conftest.c >&5
| configure:4022: $? = 0
| configure:4063: result: yes
| configure:4080: checking for gcc option to accept ISO C89
| configure:4143: gcc  -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:4143: $? = 0
| configure:4156: result: none needed
| configure:4181: checking whether gcc understands -c and -o together
| configure:4203: gcc -c conftest.c -o conftest2.o
| configure:4206: $? = 0
| configure:4203: gcc -c conftest.c -o conftest2.o
| configure:4206: $? = 0
| configure:4218: result: yes
| configure:4237: checking dependency style of gcc
| configure:4348: result: none
| configure:4363: checking for gcc option to accept ISO C99
| configure:4512: gcc  -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| conftest.c: In function 'test_varargs':
| conftest.c:82:9: warning: variable 'fnumber' set but not used
[-Wunused-but-set-variable]
|    float fnumber;
|          ^
| conftest.c:81:7: warning: variable 'number' set but not used
[-Wunused-but-set-variable]
|    int number;
|        ^
| conftest.c:80:15: warning: variable 'str' set but not used
[-Wunused-but-set-variable]
|    const char *str;
|                ^
| configure:4512: $? = 0
| configure:4525: result: none needed
| configure:4546: checking how to run the C preprocessor
| configure:4577: gcc -E  conftest.c
| configure:4577: $? = 0
| configure:4591: gcc -E  conftest.c
| conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or
directory
| compilation terminated.
| configure:4591: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | /* end confdefs.h.  */
| | #include <ac_nonexistent.h>
| configure:4616: result: gcc -E
| configure:4636: gcc -E  conftest.c
| configure:4636: $? = 0
| configure:4650: gcc -E  conftest.c
| conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or
directory
| compilation terminated.
| configure:4650: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | /* end confdefs.h.  */
| | #include <ac_nonexistent.h>
| configure:4679: checking for grep that handles long lines and -e
| configure:4737: result: /usr/bin/grep
| configure:4742: checking for fgrep
| configure:4804: result: /usr/bin/grep -F
| configure:4809: checking for egrep
| configure:4871: result: /usr/bin/grep -E
| configure:4880: checking for perl
| configure:4898: found /usr/bin/perl
| configure:4911: result: /usr/bin/perl
| configure:4929: checking for ANSI C header files
| configure:4949: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:4949: $? = 0
| configure:5022: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c  >&5
| configure:5022: $? = 0
| configure:5022: ./conftest
| configure:5022: $? = 0
| configure:5033: result: yes
| configure:5046: checking for sys/types.h
| configure:5046: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:5046: $? = 0
| configure:5046: result: yes
| configure:5046: checking for sys/stat.h
| configure:5046: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:5046: $? = 0
| configure:5046: result: yes
| configure:5046: checking for stdlib.h
| configure:5046: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:5046: $? = 0
| configure:5046: result: yes
| configure:5046: checking for string.h
| configure:5046: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:5046: $? = 0
| configure:5046: result: yes
| configure:5046: checking for memory.h
| configure:5046: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:5046: $? = 0
| configure:5046: result: yes
| configure:5046: checking for strings.h
| configure:5046: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:5046: $? = 0
| configure:5046: result: yes
| configure:5046: checking for inttypes.h
| configure:5046: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:5046: $? = 0
| configure:5046: result: yes
| configure:5046: checking for stdint.h
| configure:5046: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:5046: $? = 0
| configure:5046: result: yes
| configure:5046: checking for unistd.h
| configure:5046: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:5046: $? = 0
| configure:5046: result: yes
| configure:5059: checking minix/config.h usability
| configure:5059: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| conftest.c:54:26: fatal error: minix/config.h: No such file or
directory
| compilation terminated.
| configure:5059: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | #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:5059: result: no
| configure:5059: checking minix/config.h presence
| configure:5059: gcc -E  conftest.c
| conftest.c:21:26: fatal error: minix/config.h: No such file or
directory
| compilation terminated.
| configure:5059: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | #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:5059: result: no
| configure:5059: checking for minix/config.h
| configure:5059: result: no
| configure:5080: checking whether it is safe to define __EXTENSIONS__
| configure:5098: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:5098: $? = 0
| configure:5105: result: yes
| configure:5119: checking whether byte ordering is bigendian
| configure:5134: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| conftest.c:27:9: error: unknown type name 'not'
|          not a universal capable compiler
|          ^
| conftest.c:27:15: error: expected '=', ',', ';', 'asm' or
'__attribute__' before 'universal'
|          not a universal capable compiler
|                ^
| conftest.c:27:15: error: unknown type name 'universal'
| configure:5134: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | #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:5179: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:5179: $? = 0
| configure:5197: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| conftest.c: In function 'main':
| conftest.c:33:4: error: unknown type name 'not'
|     not big endian
|     ^
| conftest.c:33:12: error: expected '=', ',', ';', 'asm' or
'__attribute__' before 'endian'
|     not big endian
|             ^
| configure:5197: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | #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:5325: result: no
| configure:5350: checking for special C compiler options needed for
large files
| configure:5395: result: no
| configure:5401: checking for _FILE_OFFSET_BITS value needed for large
files
| configure:5426: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| conftest.c:32:7: error: size of array 'off_t_is_large' is negative
|    int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
|        ^
| configure:5426: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | #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:5450: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:5450: $? = 0
| configure:5458: result: 64
| configure:5573: checking build system type
| configure:5587: result: i686-redhat-linux-gnu
| configure:5607: checking host system type
| configure:5620: result: i686-redhat-linux-gnu
| configure:5661: checking how to print strings
| configure:5688: result: printf
| configure:5709: checking for a sed that does not truncate output
| configure:5773: result: /usr/bin/sed
| configure:5821: checking for ld used by gcc
| configure:5888: result: /usr/bin/ld
| configure:5895: checking if the linker (/usr/bin/ld) is GNU ld
| configure:5910: result: yes
| configure:5922: checking for BSD- or MS-compatible name lister (nm)
| configure:5971: result: /usr/bin/nm -B
| configure:6101: checking the name lister (/usr/bin/nm -B) interface
| configure:6108: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:6111: /usr/bin/nm -B "conftest.o"
| configure:6114: output
| 00000000 B some_variable
| configure:6121: result: BSD nm
| configure:6124: checking whether ln -s works
| configure:6128: result: yes
| configure:6136: checking the maximum length of command line arguments
| configure:6267: result: 1572864
| configure:6284: checking whether the shell understands some XSI
constructs
| configure:6294: result: yes
| configure:6298: checking whether the shell understands "+="
| configure:6304: result: yes
| configure:6339: checking how to convert i686-redhat-linux-gnu file
names to i686-redhat-linux-gnu format
| configure:6379: result: func_convert_file_noop
| configure:6386: checking how to convert i686-redhat-linux-gnu file
names to toolchain format
| configure:6406: result: func_convert_file_noop
| configure:6413: checking for /usr/bin/ld option to reload object files
| configure:6420: result: -r
| configure:6454: checking for i686-redhat-linux-gnu-objdump
| configure:6484: result: no
| configure:6494: checking for objdump
| configure:6510: found /usr/bin/objdump
| configure:6521: result: objdump
| configure:6553: checking how to recognize dependent libraries
| configure:6751: result: pass_all
| configure:6796: checking for i686-redhat-linux-gnu-dlltool
| configure:6826: result: no
| configure:6836: checking for dlltool
| configure:6866: result: no
| configure:6896: checking how to associate runtime and link libraries
| configure:6923: result: printf %s\n
| configure:6939: checking for i686-redhat-linux-gnu-ar
| configure:6969: result: no
| configure:6983: checking for ar
| configure:6999: found /usr/bin/ar
| configure:7010: result: ar
| configure:7047: checking for archiver @FILE support
| configure:7064: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:7064: $? = 0
| configure:7067: ar cru libconftest.a @conftest.lst >&5
| ar: `u' modifier ignored since `D' is the default (see `U')
| configure:7070: $? = 0
| configure:7075: 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:7078: $? = 1
| configure:7090: result: @
| configure:7108: checking for i686-redhat-linux-gnu-strip
| configure:7138: result: no
| configure:7148: checking for strip
| configure:7164: found /usr/bin/strip
| configure:7175: result: strip
| configure:7207: checking for i686-redhat-linux-gnu-ranlib
| configure:7237: result: no
| configure:7247: checking for ranlib
| configure:7263: found /usr/bin/ranlib
| configure:7274: result: ranlib
| configure:7376: checking command to parse /usr/bin/nm -B output from
gcc object
| configure:7496: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:7499: $? = 0
| configure:7503: /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:7506: $? = 0
| configure:7572: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c conftstm.o >&5
| configure:7575: $? = 0
| configure:7613: result: ok
| configure:7650: checking for sysroot
| configure:7680: result: no
| configure:7909: checking for i686-redhat-linux-gnu-mt
| configure:7939: result: no
| configure:7949: checking for mt
| configure:7979: result: no
| configure:7999: checking if : is a manifest tool
| configure:8005: : '-?'
| configure:8013: result: no
| configure:8652: checking for dlfcn.h
| configure:8652: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:8652: $? = 0
| configure:8652: result: yes
| configure:8857: checking for objdir
| configure:8872: result: .libs
| configure:9143: checking if gcc supports -fno-rtti -fno-exceptions
| configure:9161: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -fno-rtti -fno-exceptions
conftest.c >&5
| cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++
but not for C
| configure:9165: $? = 0
| configure:9178: result: no
| configure:9505: checking for gcc option to produce PIC
| configure:9512: result: -fPIC -DPIC
| configure:9520: checking if gcc PIC flag -fPIC -DPIC works
| configure:9538: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -fPIC -DPIC -DPIC conftest.c
>&5
| configure:9542: $? = 0
| configure:9555: result: yes
| configure:9584: checking if gcc static flag -static works
| configure:9612: result: no
| configure:9627: checking if gcc supports -c -o file.o
| configure:9648: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -o out/conftest2.o conftest.c
>&5
| configure:9652: $? = 0
| configure:9674: result: yes
| configure:9682: checking if gcc supports -c -o file.o
| configure:9729: result: yes
| configure:9762: checking whether the gcc linker (/usr/bin/ld) supports
shared libraries
| configure:10919: result: yes
| configure:11159: checking dynamic linker characteristics
| configure:11659: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld -Wl,-rpath -Wl,/foo
conftest.c  >&5
| configure:11659: $? = 0
| configure:11893: result: GNU/Linux ld.so
| configure:12000: checking how to hardcode library paths into programs
| configure:12025: result: immediate
| configure:12565: checking whether stripping libraries is possible
| configure:12570: result: yes
| configure:12605: checking if libtool supports shared libraries
| configure:12607: result: yes
| configure:12610: checking whether to build shared libraries
| configure:12631: result: no
| configure:12634: checking whether to build static libraries
| configure:12638: result: yes
| configure:12711: checking for library containing pow
| configure:12742: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c  >&5
| conftest.c:36:6: warning: conflicting types for built-in function
'pow'
|  char pow ();
|       ^
| /tmp/cct3k6qQ.o: In function `main':
| /root/rpmbuild/BUILD/openvswitch-2.5.0/conftest.c:40: undefined
reference to `pow'
| collect2: error: ld returned 1 exit status
| configure:12742: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | #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:12742: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -lm   >&5
| conftest.c:36:6: warning: conflicting types for built-in function
'pow'
|  char pow ();
|       ^
| configure:12742: $? = 0
| configure:12759: result: -lm
| configure:12767: checking for library containing clock_gettime
| configure:12798: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -lm  >&5
| configure:12798: $? = 0
| configure:12815: result: none required
| configure:12823: checking for library containing timer_create
| configure:12854: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -lm  >&5
| /tmp/ccAalndm.o: In function `main':
| /root/rpmbuild/BUILD/openvswitch-2.5.0/conftest.c:40: undefined
reference to `timer_create'
| collect2: error: ld returned 1 exit status
| configure:12854: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | #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:12854: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -lrt  -lm  >&5
| configure:12854: $? = 0
| configure:12871: result: -lrt
| configure:12879: checking for library containing pthread_create
| configure:12910: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -lrt -lm  >&5
| /usr/bin/ld: /tmp/cc7df4a1.o: undefined reference to symbol
'pthread_create@@GLIBC_2.1'
| /lib/libpthread.so.0: error adding symbols: DSO missing from command
line
| collect2: error: ld returned 1 exit status
| configure:12910: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | #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:12910: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -lpthread  -lrt
-lm  >&5
| configure:12910: $? = 0
| configure:12927: result: -lpthread
| configure:12935: checking whether strerror_r is declared
| configure:12935: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:12935: $? = 0
| configure:12935: result: yes
| configure:12948: checking for strerror_r
| configure:12948: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -lpthread -lrt
-lm  >&5
| configure:12948: $? = 0
| configure:12948: result: yes
| configure:12957: checking whether strerror_r returns char *
| configure:12981: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:12981: $? = 0
| configure:13019: result: yes
| configure:13028: checking vmware.h usability
| configure:13028: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| conftest.c:65:20: fatal error: vmware.h: No such file or directory
| compilation terminated.
| configure:13028: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | #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:13028: result: no
| configure:13028: checking vmware.h presence
| configure:13028: gcc -E  conftest.c
| conftest.c:32:20: fatal error: vmware.h: No such file or directory
| compilation terminated.
| configure:13028: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | #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:13028: result: no
| configure:13028: checking for vmware.h
| configure:13028: result: no
| configure:13049: checking for MSVC x64 compiler
| configure:13062: result: no
| configure:13066: checking windows.h usability
| configure:13066: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| conftest.c:65:21: fatal error: windows.h: No such file or directory
| compilation terminated.
| configure:13066: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | #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:13066: result: no
| configure:13066: checking windows.h presence
| configure:13066: gcc -E  conftest.c
| conftest.c:32:21: fatal error: windows.h: No such file or directory
| compilation terminated.
| configure:13066: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | #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:13066: result: no
| configure:13066: checking for windows.h
| configure:13066: result: no
| configure:13226: checking for linux/netlink.h
| configure:13226: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:13226: $? = 0
| configure:13226: result: yes
| configure:13282: checking for pkg-config
| configure:13300: found /usr/bin/pkg-config
| configure:13312: result: /usr/bin/pkg-config
| configure:13372: checking whether compiling and linking against
OpenSSL works
| Trying link with SSL_LDFLAGS=; SSL_LIBS=-lssl -lcrypto ; SSL_INCLUDES=
| configure:13394: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables   -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld  conftest.c -lssl -lcrypto
 -lpthread -lrt -lm  >&5
| configure:13394: $? = 0
| configure:13396: result: yes
| configure:13463: checking for capng_clear in -lcap-ng
| configure:13488: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -lcap-ng 
-lpthread -lrt -lm  >&5
| configure:13488: $? = 0
| configure:13497: result: yes
| configure:13544: checking for Python 2.x for x >= 7
| configure:13570: result: /usr/bin/python
| configure:13590: checking for dot
| configure:13601: result: yes
| configure:13611: checking net/if_packet.h usability
| configure:13611: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:13611: $? = 0
| configure:13611: result: yes
| configure:13611: checking net/if_packet.h presence
| configure:13611: gcc -E  conftest.c
| configure:13611: $? = 0
| configure:13611: result: yes
| configure:13611: checking for net/if_packet.h
| configure:13611: result: yes
| configure:13632: checking net/if_dl.h usability
| configure:13632: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| conftest.c:70:23: fatal error: net/if_dl.h: No such file or directory
| compilation terminated.
| configure:13632: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | #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_LIBCAPNG 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:13632: result: no
| configure:13632: checking net/if_dl.h presence
| configure:13632: gcc -E  conftest.c
| conftest.c:37:23: fatal error: net/if_dl.h: No such file or directory
| compilation terminated.
| configure:13632: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | #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_LIBCAPNG 1
| | #define HAVE_IF_PACKET 1
| | /* end confdefs.h.  */
| | #include <net/if_dl.h>
| configure:13632: result: no
| configure:13632: checking for net/if_dl.h
| configure:13632: result: no
| configure:13711: checking whether strtok_r macro segfaults on some
inputs
| configure:13747: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -lpthread -lrt
-lm  >&5
| conftest.c: In function 'main':
| conftest.c:54:28: warning: ignoring return value of 'freopen',
declared with attribute warn_unused_result [-Wunused-result]
|                             freopen ("/dev/null", "w", stdout);
|                             ^
| configure:13747: $? = 0
| configure:13747: ./conftest
| configure:13747: $? = 0
| configure:13757: result: no
| configure:13765: checking whether sys_siglist is declared
| configure:13765: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:13765: $? = 0
| configure:13765: result: yes
| configure:13777: checking for struct stat.st_mtim.tv_nsec
| configure:13777: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:13777: $? = 0
| configure:13777: result: yes
| configure:13787: checking for struct stat.st_mtimensec
| configure:13787: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| conftest.c: In function 'main':
| conftest.c:45:12: error: 'struct stat' has no member named
'st_mtimensec'
|  if (ac_aggr.st_mtimensec)
|             ^
| conftest.c:44:20: warning: variable 'ac_aggr' set but not used
[-Wunused-but-set-variable]
|  static struct stat ac_aggr;
|                     ^
| configure:13787: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | #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_LIBCAPNG 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:13787: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| conftest.c: In function 'main':
| conftest.c:45:19: error: 'struct stat' has no member named
'st_mtimensec'
|  if (sizeof ac_aggr.st_mtimensec)
|                    ^
| conftest.c:44:20: warning: variable 'ac_aggr' set but not used
[-Wunused-but-set-variable]
|  static struct stat ac_aggr;
|                     ^
| configure:13787: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | #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_LIBCAPNG 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:13787: result: no
| configure:13798: checking for struct ifreq.ifr_flagshigh
| configure:13798: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| conftest.c: In function 'main':
| conftest.c:45:12: error: 'struct ifreq' has no member named
'ifr_flagshigh'
|  if (ac_aggr.ifr_flagshigh)
|             ^
| conftest.c:44:21: warning: variable 'ac_aggr' set but not used
[-Wunused-but-set-variable]
|  static struct ifreq ac_aggr;
|                      ^
| configure:13798: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | #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_LIBCAPNG 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:13798: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| conftest.c: In function 'main':
| conftest.c:45:19: error: 'struct ifreq' has no member named
'ifr_flagshigh'
|  if (sizeof ac_aggr.ifr_flagshigh)
|                    ^
| conftest.c:44:21: warning: variable 'ac_aggr' set but not used
[-Wunused-but-set-variable]
|  static struct ifreq ac_aggr;
|                      ^
| configure:13798: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | #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_LIBCAPNG 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:13798: result: no
| configure:13812: checking for mlockall
| configure:13812: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -lpthread -lrt
-lm  >&5
| configure:13812: $? = 0
| configure:13812: result: yes
| configure:13812: checking for strnlen
| configure:13812: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -lpthread -lrt
-lm  >&5
| configure:13812: $? = 0
| configure:13812: result: yes
| configure:13812: checking for getloadavg
| configure:13812: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -lpthread -lrt
-lm  >&5
| configure:13812: $? = 0
| configure:13812: result: yes
| configure:13812: checking for statvfs
| configure:13812: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -lpthread -lrt
-lm  >&5
| configure:13812: $? = 0
| configure:13812: result: yes
| configure:13812: checking for getmntent_r
| configure:13812: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -lpthread -lrt
-lm  >&5
| configure:13812: $? = 0
| configure:13812: result: yes
| configure:13824: checking mntent.h usability
| configure:13824: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:13824: $? = 0
| configure:13824: result: yes
| configure:13824: checking mntent.h presence
| configure:13824: gcc -E  conftest.c
| configure:13824: $? = 0
| configure:13824: result: yes
| configure:13824: checking for mntent.h
| configure:13824: result: yes
| configure:13824: checking sys/statvfs.h usability
| configure:13824: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:13824: $? = 0
| configure:13824: result: yes
| configure:13824: checking sys/statvfs.h presence
| configure:13824: gcc -E  conftest.c
| configure:13824: $? = 0
| configure:13824: result: yes
| configure:13824: checking for sys/statvfs.h
| configure:13824: result: yes
| configure:13824: checking linux/types.h usability
| configure:13824: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:13824: $? = 0
| configure:13824: result: yes
| configure:13824: checking linux/types.h presence
| configure:13824: gcc -E  conftest.c
| configure:13824: $? = 0
| configure:13824: result: yes
| configure:13824: checking for linux/types.h
| configure:13824: result: yes
| configure:13824: checking linux/if_ether.h usability
| configure:13824: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:13824: $? = 0
| configure:13824: result: yes
| configure:13824: checking linux/if_ether.h presence
| configure:13824: gcc -E  conftest.c
| configure:13824: $? = 0
| configure:13824: result: yes
| configure:13824: checking for linux/if_ether.h
| configure:13824: result: yes
| configure:13824: checking stdatomic.h usability
| configure:13824: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:13824: $? = 0
| configure:13824: result: yes
| configure:13824: checking stdatomic.h presence
| configure:13824: gcc -E  conftest.c
| configure:13824: $? = 0
| configure:13824: result: yes
| configure:13824: checking for stdatomic.h
| configure:13824: result: yes
| configure:13836: checking for net/if_mib.h
| configure:13836: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| conftest.c:52:24: fatal error: net/if_mib.h: No such file or directory
| compilation terminated.
| configure:13836: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | #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_LIBCAPNG 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| | #define HAVE_MLOCKALL 1
| | #define HAVE_STRNLEN 1
| | #define HAVE_GETLOADAVG 1
| | #define HAVE_STATVFS 1
| | #define HAVE_GETMNTENT_R 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_STDATOMIC_H 1
| | /* end confdefs.h.  */
| | #include <sys/types.h>
| | #include <net/if.h>
| | 
| | #include <net/if_mib.h>
| configure:13836: result: no
| configure:13876: checking for library containing backtrace
| configure:13907: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -lpthread -lrt
-lm  >&5
| configure:13907: $? = 0
| configure:13924: result: none required
| configure:13936: checking linux/perf_event.h usability
| configure:13936: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:13936: $? = 0
| configure:13936: result: yes
| configure:13936: checking linux/perf_event.h presence
| configure:13936: gcc -E  conftest.c
| configure:13936: $? = 0
| configure:13936: result: yes
| configure:13936: checking for linux/perf_event.h
| configure:13936: result: yes
| configure:13948: checking valgrind/valgrind.h usability
| configure:13948: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| conftest.c:84:31: fatal error: valgrind/valgrind.h: No such file or
directory
| compilation terminated.
| configure:13948: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | #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_LIBCAPNG 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| | #define HAVE_MLOCKALL 1
| | #define HAVE_STRNLEN 1
| | #define HAVE_GETLOADAVG 1
| | #define HAVE_STATVFS 1
| | #define HAVE_GETMNTENT_R 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_STDATOMIC_H 1
| | #define HAVE_BACKTRACE 1
| | #define HAVE_LINUX_PERF_EVENT_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 <valgrind/valgrind.h>
| configure:13948: result: no
| configure:13948: checking valgrind/valgrind.h presence
| configure:13948: gcc -E  conftest.c
| conftest.c:51:31: fatal error: valgrind/valgrind.h: No such file or
directory
| compilation terminated.
| configure:13948: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | #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_LIBCAPNG 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| | #define HAVE_MLOCKALL 1
| | #define HAVE_STRNLEN 1
| | #define HAVE_GETLOADAVG 1
| | #define HAVE_STATVFS 1
| | #define HAVE_GETMNTENT_R 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_STDATOMIC_H 1
| | #define HAVE_BACKTRACE 1
| | #define HAVE_LINUX_PERF_EVENT_H 1
| | /* end confdefs.h.  */
| | #include <valgrind/valgrind.h>
| configure:13948: result: no
| configure:13948: checking for valgrind/valgrind.h
| configure:13948: result: no
| configure:13958: checking for connect in -lsocket
| configure:13983: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -lsocket 
-lpthread -lrt -lm  >&5
| /usr/bin/ld: cannot find -lsocket
| collect2: error: ld returned 1 exit status
| configure:13983: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | #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_LIBCAPNG 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| | #define HAVE_MLOCKALL 1
| | #define HAVE_STRNLEN 1
| | #define HAVE_GETLOADAVG 1
| | #define HAVE_STATVFS 1
| | #define HAVE_GETMNTENT_R 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_STDATOMIC_H 1
| | #define HAVE_BACKTRACE 1
| | #define HAVE_LINUX_PERF_EVENT_H 1
| | /* end confdefs.h.  */
| | 
| | /* Override any GCC internal prototype to avoid an error.
| |    Use char because int might match the return type of a GCC
| |    builtin and then its argument prototype would still apply.  */
| | #ifdef __cplusplus
| | extern "C"
| | #endif
| | char connect ();
| | int
| | main ()
| | {
| | return connect ();
| |   ;
| |   return 0;
| | }
| configure:13992: result: no
| configure:14003: checking for library containing gethostbyname
| configure:14034: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -lpthread -lrt
-lm  >&5
| configure:14034: $? = 0
| configure:14051: result: none required
| configure:14059: checking XenServer release
| configure:14071: result: none
| configure:14083: checking for groff
| configure:14094: result: yes
| configure:14104: checking whether make is GNU make
| configure:14110: invoking make --version:
| GNU Make 4.0
| Built for i686-redhat-linux-gnu
| Copyright (C) 1988-2013 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.
| configure:14121: result: yes
| configure:14131: checking whether gcc has <threads.h> that supports
thread_local
| configure:14148: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -lpthread -lrt
-lm  >&5
| conftest.c:51:21: fatal error: threads.h: No such file or directory
| compilation terminated.
| configure:14148: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | #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_LIBCAPNG 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| | #define HAVE_MLOCKALL 1
| | #define HAVE_STRNLEN 1
| | #define HAVE_GETLOADAVG 1
| | #define HAVE_STATVFS 1
| | #define HAVE_GETMNTENT_R 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_STDATOMIC_H 1
| | #define HAVE_BACKTRACE 1
| | #define HAVE_LINUX_PERF_EVENT_H 1
| | /* end confdefs.h.  */
| | #include <threads.h>
| | static thread_local int var;
| | int
| | main ()
| | {
| | return var;
| |   ;
| |   return 0;
| | }
| configure:14156: result: no
| configure:14163: checking whether gcc supports __thread
| configure:14179: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -lpthread -lrt
-lm  >&5
| configure:14179: $? = 0
| configure:14187: result: yes
| configure:14195: checking for library containing __atomic_load_8
| configure:14226: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -lpthread -lrt
-lm  >&5
| conftest.c:59:6: warning: conflicting types for built-in function
'__atomic_load_8'
|  char __atomic_load_8 ();
|       ^
| /tmp/ccEl9Lef.o: In function `main':
| /root/rpmbuild/BUILD/openvswitch-2.5.0/conftest.c:63: undefined
reference to `__atomic_load_8'
| collect2: error: ld returned 1 exit status
| configure:14226: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | #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_LIBCAPNG 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| | #define HAVE_MLOCKALL 1
| | #define HAVE_STRNLEN 1
| | #define HAVE_GETLOADAVG 1
| | #define HAVE_STATVFS 1
| | #define HAVE_GETMNTENT_R 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_STDATOMIC_H 1
| | #define HAVE_BACKTRACE 1
| | #define HAVE_LINUX_PERF_EVENT_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:14226: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -latomic 
-lpthread -lrt -lm  >&5
| conftest.c:59:6: warning: conflicting types for built-in function
'__atomic_load_8'
|  char __atomic_load_8 ();
|       ^
| configure:14226: $? = 0
| configure:14243: result: -latomic
| configure:14251: checking whether gcc supports GCC 4.0+ atomic
built-ins
| configure:14318: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -latomic
-lpthread -lrt -lm  >&5
| configure:14318: $? = 0
| configure:14326: result: yes
| configure:14333: checking value of __atomic_always_lock_free(1)
| configure:14338: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -latomic
-lpthread -lrt -lm  >&5
| configure:14338: $? = 0
| configure:14338: ./conftest
| configure:14338: $? = 0
| configure:14345: result: 1
| configure:14354: checking value of __atomic_always_lock_free(2)
| configure:14359: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -latomic
-lpthread -lrt -lm  >&5
| configure:14359: $? = 0
| configure:14359: ./conftest
| configure:14359: $? = 0
| configure:14366: result: 1
| configure:14375: checking value of __atomic_always_lock_free(4)
| configure:14380: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -latomic
-lpthread -lrt -lm  >&5
| configure:14380: $? = 0
| configure:14380: ./conftest
| configure:14380: $? = 0
| configure:14387: result: 1
| configure:14396: checking value of __atomic_always_lock_free(8)
| configure:14401: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -latomic
-lpthread -lrt -lm  >&5
| configure:14401: $? = 0
| configure:14401: ./conftest
| configure:14401: $? = 0
| configure:14408: result: 1
| configure:14417: checking for library containing aio_write
| configure:14448: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -latomic
-lpthread -lrt -lm  >&5
| configure:14448: $? = 0
| configure:14465: result: none required
| configure:14483: checking for pthread_set_name_np
| configure:14483: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -latomic
-lpthread -lrt -lm  >&5
| /tmp/ccSuAoKW.o: In function `main':
| /root/rpmbuild/BUILD/openvswitch-2.5.0/conftest.c:91: undefined
reference to `pthread_set_name_np'
| collect2: error: ld returned 1 exit status
| configure:14483: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | #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_LIBCAPNG 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| | #define HAVE_MLOCKALL 1
| | #define HAVE_STRNLEN 1
| | #define HAVE_GETLOADAVG 1
| | #define HAVE_STATVFS 1
| | #define HAVE_GETMNTENT_R 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_STDATOMIC_H 1
| | #define HAVE_BACKTRACE 1
| | #define HAVE_LINUX_PERF_EVENT_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:14483: result: no
| configure:14493: checking for pthread_setname_np() variant
| configure:14510: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -latomic
-lpthread -lrt -lm  >&5
| configure:14510: $? = 0
| configure:14536: result: glibc
| configure:14551: checking whether __linux__ is defined
| configure:14567: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:14567: $? = 0
| configure:14574: result: true
| configure:14584: checking for working posix_memalign
| configure:14608: gcc -o conftest -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld conftest.c -latomic
-lpthread -lrt -lm  >&5
| configure:14608: $? = 0
| configure:14608: ./conftest
| configure:14608: $? = 0
| configure:14618: result: yes
| configure:14629: checking whether the preprocessor supports
include_next
| configure:14667: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Iconftestd1b -Iconftestd2
conftest.c >&5
| configure:14667: $? = 0
| configure:14688: result: yes
| configure:14709: checking whether system header files limit the line
length
| configure:14732: result: no
| configure:14758: checking for stdio.h
| configure:14758: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| configure:14758: $? = 0
| configure:14758: result: yes
| configure:14758: checking for string.h
| configure:14758: result: yes
| configure:14923: checking whether gcc accepts -Werror
| configure:14941: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  -Werror  conftest.c >&5
| configure:14941: $? = 0
| configure:14949: result: yes
| configure:14958: checking whether gcc accepts -Wall
| configure:14976: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables -Werror -Wall  conftest.c >&5
| configure:14976: $? = 0
| configure:14984: result: yes
| configure:14994: checking whether gcc accepts -Wextra
| configure:15012: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables -Werror -Wextra  conftest.c >&5
| configure:15012: $? = 0
| configure:15020: result: yes
| configure:15030: checking whether gcc accepts -Wno-sign-compare
| configure:15048: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables -Werror -Wno-sign-compare 
conftest.c >&5
| configure:15048: $? = 0
| configure:15056: result: yes
| configure:15066: checking whether gcc accepts -Wpointer-arith
| configure:15084: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables -Werror -Wpointer-arith 
conftest.c >&5
| configure:15084: $? = 0
| configure:15092: result: yes
| configure:15102: checking whether gcc accepts -Wformat-security
| configure:15120: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables -Werror -Wformat-security 
conftest.c >&5
| configure:15120: $? = 0
| configure:15128: result: yes
| configure:15138: checking whether gcc accepts -Wswitch-enum
| configure:15156: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables -Werror -Wswitch-enum 
conftest.c >&5
| configure:15156: $? = 0
| configure:15164: result: yes
| configure:15174: checking whether gcc accepts -Wunused-parameter
| configure:15192: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables -Werror -Wunused-parameter 
conftest.c >&5
| configure:15192: $? = 0
| configure:15200: result: yes
| configure:15210: checking whether gcc accepts -Wbad-function-cast
| configure:15228: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables -Werror -Wbad-function-cast 
conftest.c >&5
| configure:15228: $? = 0
| configure:15236: result: yes
| configure:15246: checking whether gcc accepts -Wcast-align
| configure:15264: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables -Werror -Wcast-align 
conftest.c >&5
| configure:15264: $? = 0
| configure:15272: result: yes
| configure:15282: checking whether gcc accepts -Wstrict-prototypes
| configure:15300: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables -Werror -Wstrict-prototypes 
conftest.c >&5
| conftest.c:63:1: error: function declaration isn't a prototype
[-Werror=strict-prototypes]
|  main ()
|  ^
| cc1: all warnings being treated as errors
| configure:15300: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | #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_LIBCAPNG 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| | #define HAVE_MLOCKALL 1
| | #define HAVE_STRNLEN 1
| | #define HAVE_GETLOADAVG 1
| | #define HAVE_STATVFS 1
| | #define HAVE_GETMNTENT_R 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_STDATOMIC_H 1
| | #define HAVE_BACKTRACE 1
| | #define HAVE_LINUX_PERF_EVENT_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_POSIX_MEMALIGN 1
| | #define HAVE_STDIO_H 1
| | #define HAVE_STRING_H 1
| | /* end confdefs.h.  */
| | 
| | int
| | main ()
| | {
| | 
| |   ;
| |   return 0;
| | }
| configure:15308: result: no
| configure:15318: checking whether gcc accepts -Wold-style-definition
| configure:15336: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables -Werror -Wold-style-definition 
conftest.c >&5
| conftest.c: In function 'main':
| conftest.c:63:1: error: old-style function definition
[-Werror=old-style-definition]
|  main ()
|  ^
| cc1: all warnings being treated as errors
| configure:15336: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | #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_LIBCAPNG 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| | #define HAVE_MLOCKALL 1
| | #define HAVE_STRNLEN 1
| | #define HAVE_GETLOADAVG 1
| | #define HAVE_STATVFS 1
| | #define HAVE_GETMNTENT_R 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_STDATOMIC_H 1
| | #define HAVE_BACKTRACE 1
| | #define HAVE_LINUX_PERF_EVENT_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_POSIX_MEMALIGN 1
| | #define HAVE_STDIO_H 1
| | #define HAVE_STRING_H 1
| | /* end confdefs.h.  */
| | 
| | int
| | main ()
| | {
| | 
| |   ;
| |   return 0;
| | }
| configure:15344: result: no
| configure:15354: checking whether gcc accepts -Wmissing-prototypes
| configure:15372: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables -Werror -Wmissing-prototypes 
conftest.c >&5
| configure:15372: $? = 0
| configure:15380: result: yes
| configure:15390: checking whether gcc accepts
-Wmissing-field-initializers
| configure:15408: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables -Werror
-Wmissing-field-initializers  conftest.c >&5
| configure:15408: $? = 0
| configure:15416: result: yes
| configure:15426: checking whether gcc accepts -Wthread-safety
| configure:15444: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables -Werror -Wthread-safety 
conftest.c >&5
| cc1: error: unrecognized command line option '-Wthread-safety'
| configure:15444: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | #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_LIBCAPNG 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| | #define HAVE_MLOCKALL 1
| | #define HAVE_STRNLEN 1
| | #define HAVE_GETLOADAVG 1
| | #define HAVE_STATVFS 1
| | #define HAVE_GETMNTENT_R 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_STDATOMIC_H 1
| | #define HAVE_BACKTRACE 1
| | #define HAVE_LINUX_PERF_EVENT_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_POSIX_MEMALIGN 1
| | #define HAVE_STDIO_H 1
| | #define HAVE_STRING_H 1
| | /* end confdefs.h.  */
| | 
| | int
| | main ()
| | {
| | 
| |   ;
| |   return 0;
| | }
| configure:15452: result: no
| configure:15462: checking whether gcc accepts -fno-strict-aliasing
| configure:15480: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables -Werror -fno-strict-aliasing 
conftest.c >&5
| configure:15480: $? = 0
| configure:15488: result: yes
| configure:15498: checking whether gcc accepts -Qunused-arguments
| configure:15516: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables -Werror -Qunused-arguments 
conftest.c >&5
| gcc: error: unrecognized command line option '-Qunused-arguments'
| configure:15516: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.5.0"
| | #define PACKAGE_STRING "openvswitch 2.5.0"
| | #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.5.0"
| | #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_LIBCAPNG 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| | #define HAVE_MLOCKALL 1
| | #define HAVE_STRNLEN 1
| | #define HAVE_GETLOADAVG 1
| | #define HAVE_STATVFS 1
| | #define HAVE_GETMNTENT_R 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_STDATOMIC_H 1
| | #define HAVE_BACKTRACE 1
| | #define HAVE_LINUX_PERF_EVENT_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_POSIX_MEMALIGN 1
| | #define HAVE_STDIO_H 1
| | #define HAVE_STRING_H 1
| | /* end confdefs.h.  */
| | 
| | int
| | main ()
| | {
| | 
| |   ;
| |   return 0;
| | }
| configure:15524: result: no
| configure:15534: checking whether gcc accepts -Wno-unused
| configure:15552: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables -Werror -Wno-unused  conftest.c
>&5
| configure:15552: $? = 0
| configure:15560: result: yes
| configure:15577: checking whether gcc accepts -Wno-unused-parameter
| configure:15595: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables -Werror -Wno-unused-parameter 
conftest.c >&5
| configure:15595: $? = 0
| configure:15603: result: yes
| configure:15627: checking target hint for cgcc
| configure:15641: result: x86
| configure:15653: checking whether make has GNU make $(if) extension
| configure:15664: invoking make -f conftest.mk all:
| echo y > conftest.out
| configure:15666: conftest.out contains:
| y
| configure:15676: result: yes
| configure:20272: gcc -c -O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables  conftest.c >&5
| conftest.c:61:1: note: #pragma message: Checking for pragma message
|  _Pragma("message(\"Checking for pragma message\")")
|  ^
| configure:20272: $? = 0
| configure:20326: checking whether make supports nested variables
| configure:20343: result: yes
| configure:20464: checking that generated files are newer than
configure
| configure:20470: result: done
| configure:20576: creating ./config.status
| 
| ## ---------------------- ##
| ## Running config.status. ##
| ## ---------------------- ##
| 
| This file was extended by openvswitch config.status 2.5.0, which was
| generated by GNU Autoconf 2.69.  Invocation command line was
| 
|   CONFIG_FILES    = 
|   CONFIG_HEADERS  = 
|   CONFIG_LINKS    = 
|   CONFIG_COMMANDS = 
|   $ ./config.status 
| 
| on localhost.localdomain
| 
| config.status:1227: creating lib/stdio.h
| config.status:1227: creating lib/string.h
| config.status:1227: creating ovsdb/libovsdb.sym
| config.status:1227: creating ofproto/libofproto.sym
| config.status:1227: creating lib/libsflow.sym
| config.status:1227: creating lib/libopenvswitch.sym
| config.status:1227: creating ovn/lib/libovn.sym
| config.status:1227: creating vtep/libvtep.sym
| config.status:1227: creating Makefile
| config.status:1227: creating datapath/Makefile
| config.status:1227: creating datapath/linux/Kbuild
| config.status:1227: creating datapath/linux/Makefile
| config.status:1227: creating datapath/linux/Makefile.main
| config.status:1227: creating tests/atlocal
| config.status:1227: creating lib/libopenvswitch.pc
| config.status:1227: creating lib/libsflow.pc
| config.status:1227: creating ofproto/libofproto.pc
| config.status:1227: creating ovsdb/libovsdb.pc
| config.status:1227: creating include/openvswitch/version.h
| config.status:1227: creating config.h
| config.status:1456: executing tests/atconfig commands
| config.status:1456: executing depfiles commands
| config.status:1456: executing libtool commands
| config.status:1456: executing include/openflow/openflow.h.stamp
commands
| config.status:1456: executing utilities/bugtool/dummy commands
| config.status:1456: executing ovn/dummy commands
| config.status:1456: executing ovn/utilities/dummy commands
| 
| ## ---------------- ##
| ## Cache variables. ##
| ## ---------------- ##
| 
| ac_cv_build=i686-redhat-linux-gnu
| ac_cv_c_bigendian=no
| ac_cv_c_compiler_gnu=yes
| ac_cv_env_CC_set=
| ac_cv_env_CC_value=
| ac_cv_env_CFLAGS_set=set
| ac_cv_env_CFLAGS_value='-O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables'
| ac_cv_env_CPPFLAGS_set=
| ac_cv_env_CPPFLAGS_value=
| ac_cv_env_CPP_set=
| ac_cv_env_CPP_value=
| ac_cv_env_KARCH_set=
| ac_cv_env_KARCH_value=
| ac_cv_env_LDFLAGS_set=set
| ac_cv_env_LDFLAGS_value='-Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld'
| ac_cv_env_LIBS_set=
| ac_cv_env_LIBS_value=
| ac_cv_env_PERL_set=
| ac_cv_env_PERL_value=
| ac_cv_env_build_alias_set=set
| ac_cv_env_build_alias_value=i686-redhat-linux-gnu
| ac_cv_env_host_alias_set=set
| ac_cv_env_host_alias_value=i686-redhat-linux-gnu
| ac_cv_env_target_alias_set=
| ac_cv_env_target_alias_value=
| 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_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_dlfcn_h=yes
| ac_cv_header_inttypes_h=yes
| ac_cv_header_linux_if_ether_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=no
| ac_cv_header_vmware_h=no
| ac_cv_header_windows_h=no
| ac_cv_host=i686-redhat-linux-gnu
| ac_cv_lib_cap_ng_capng_clear=yes
| ac_cv_lib_socket_connect=no
| ac_cv_member_struct_ifreq_ifr_flagshigh=no
| 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='/usr/bin/grep -E'
| ac_cv_path_FGREP='/usr/bin/grep -F'
| ac_cv_path_GREP=/usr/bin/grep
| ac_cv_path_PERL=/usr/bin/perl
| ac_cv_path_PKG_CONFIG=/usr/bin/pkg-config
| ac_cv_path_SED=/usr/bin/sed
| ac_cv_path_install='/usr/bin/install -c'
| ac_cv_path_mkdir=/usr/bin/mkdir
| ac_cv_prog_AWK=gawk
| ac_cv_prog_CPP='gcc -E'
| ac_cv_prog_ac_ct_AR=ar
| ac_cv_prog_ac_ct_CC=gcc
| 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_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=none
| am_cv_make_support_nested_variables=yes
| am_cv_prog_cc_c_o=yes
| am_cv_prog_tar_pax=gnutar
| 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_NM='/usr/bin/nm -B'
| lt_cv_path_mainfest_tool=no
| lt_cv_prog_compiler_c_o=yes
| lt_cv_prog_compiler_pic='-fPIC -DPIC'
| lt_cv_prog_compiler_pic_works=yes
| lt_cv_prog_compiler_rtti_exceptions=no
| lt_cv_prog_compiler_static_works=no
| lt_cv_prog_gnu_ld=yes
| lt_cv_sharedlib_from_linklib_cmd='printf %s\n'
| lt_cv_shlibpath_overrides_runpath=no
| 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__Wbad_function_cast=yes
| ovs_cv__Wcast_align=yes
| ovs_cv__Werror=yes
| ovs_cv__Wextra=yes
| ovs_cv__Wformat_security=yes
| ovs_cv__Wmissing_field_initializers=yes
| ovs_cv__Wmissing_prototypes=yes
| ovs_cv__Wno_sign_compare=yes
| ovs_cv__Wno_unused=yes
| ovs_cv__Wno_unused_parameter=yes
| ovs_cv__Wold_style_definition=no
| ovs_cv__Wpointer_arith=yes
| ovs_cv__Wstrict_prototypes=no
| 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_gcc4_atomics=yes
| ovs_cv_gnu_make=yes
| ovs_cv_gnu_make_if=yes
| ovs_cv_groff=yes
| ovs_cv_linux=true
| ovs_cv_pthread_setname_np=glibc
| ovs_cv_python=/usr/bin/python
| ovs_cv_strtok_r_bug=no
| ovs_cv_thread_local=no
| ovs_cv_xsversion=none
| 
| ## ----------------- ##
| ## Output variables. ##
| ## ----------------- ##
| 
| ACLOCAL='${SHELL}
/root/rpmbuild/BUILD/openvswitch-2.5.0/build-aux/missing aclocal-1.14'
| AMDEPBACKSLASH=''
| AMDEP_FALSE=''
| AMDEP_TRUE='#'
| AMTAR='$${TAR-tar}'
| AM_BACKSLASH='\'
| AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
| AM_DEFAULT_VERBOSITY='1'
| AM_V='$(V)'
| AR='ar'
| AUTOCONF='${SHELL}
/root/rpmbuild/BUILD/openvswitch-2.5.0/build-aux/missing autoconf'
| AUTOHEADER='${SHELL}
/root/rpmbuild/BUILD/openvswitch-2.5.0/build-aux/missing autoheader'
| AUTOM4TE='${SHELL}
/root/rpmbuild/BUILD/openvswitch-2.5.0/build-aux/missing autom4te'
| AUTOMAKE='${SHELL}
/root/rpmbuild/BUILD/openvswitch-2.5.0/build-aux/missing automake-1.14'
| AWK='gawk'
| CAPNG_LDADD='-lcap-ng'
| CC='$(if $(C),env REAL_CC="gcc" CHECK="$(SPARSE) -I
$(top_srcdir)/include/sparse $(SPARSEFLAGS) $(SPARSE_EXTRA_INCLUDES) "
cgcc $(CGCCFLAGS),gcc)'
| CCDEPMODE='depmode=none'
| CFLAGS='-O2 -g -pipe -Wall -Werror=format-security
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686
-mtune=atom -fasynchronous-unwind-tables'
| CGCCFLAGS='-target=i86'
| CPP='gcc -E'
| CPPFLAGS=''
| CYGPATH_W='echo'
| DBDIR='${sysconfdir}/${PACKAGE}'
| DEFS='-DHAVE_CONFIG_H'
| DEPDIR='.deps'
| DLLTOOL='false'
| DPDK_NETDEV_FALSE=''
| DPDK_NETDEV_TRUE='#'
| DPDK_vswitchd_LDFLAGS=''
| DSYMUTIL=''
| DUMPBIN=''
| ECHO_C=''
| ECHO_N='-n'
| ECHO_T=''
| EGREP='/usr/bin/grep -E'
| ESX_FALSE=''
| ESX_TRUE='#'
| EXEEXT=''
| FGREP='/usr/bin/grep -F'
| GNU_MAKE_FALSE='#'
| GNU_MAKE_TRUE=''
| GREP='/usr/bin/grep'
| HAVE_DOT_FALSE='#'
| HAVE_DOT_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='yes'
| HAVE_LIBCAPNG_FALSE='#'
| HAVE_LIBCAPNG_TRUE=''
| HAVE_NETLINK_FALSE='#'
| HAVE_NETLINK_TRUE=''
| HAVE_OPENSSL='yes'
| HAVE_OPENSSL_FALSE='#'
| HAVE_OPENSSL_TRUE=''
| HAVE_POSIX_AIO_FALSE='#'
| HAVE_POSIX_AIO_TRUE=''
| HAVE_PYTHON='yes'
| HAVE_PYTHON_FALSE='#'
| HAVE_PYTHON_TRUE=''
| HAVE_WNO_UNUSED_FALSE='#'
| HAVE_WNO_UNUSED_PARAMETER_FALSE='#'
| HAVE_WNO_UNUSED_PARAMETER_TRUE=''
| HAVE_WNO_UNUSED_TRUE=''
| INCLUDE_NEXT='include_next'
| INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next'
| INSTALL_DATA='${INSTALL} -m 644'
| INSTALL_PROGRAM='${INSTALL}'
| INSTALL_SCRIPT='${INSTALL}'
| INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
| KARCH=''
| KBUILD=''
| LD='/usr/bin/ld'
| LDFLAGS='-Wl,-z,relro -specs=/usr/lib/rpm/redhat/redhat-hardened-ld'
| LIBOBJS=''
| LIBS='-latomic -lpthread -lrt -lm '
| 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='1'
| LT_REVISION='0'
| MAKEINFO='${SHELL}
/root/rpmbuild/BUILD/openvswitch-2.5.0/build-aux/missing makeinfo'
| MANIFEST_TOOL=':'
| MKDIR_P='/usr/bin/mkdir -p'
| MSVC64_LDFLAGS=''
| MSVC_CFLAGS=''
| 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=''
| OVS_LDFLAGS=''
| PACKAGE='openvswitch'
| PACKAGE_BUGREPORT='bugs at openvswitch.org'
| PACKAGE_NAME='openvswitch'
| PACKAGE_STRING='openvswitch 2.5.0'
| PACKAGE_TARNAME='openvswitch'
| PACKAGE_URL=''
| PACKAGE_VERSION='2.5.0'
| PATH_SEPARATOR=':'
| PERL='/usr/bin/perl'
| PKG_CONFIG='/usr/bin/pkg-config'
| PKIDIR='/var/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=''
| PYTHON='/usr/bin/python'
| RANLIB='ranlib'
| RUNDIR='${localstatedir}/run/openvswitch'
| SED='/usr/bin/sed'
| SET_MAKE=''
| SHELL='/bin/sh'
| SPARSE='sparse'
| SPARSEFLAGS=''
| SPARSE_EXTRA_INCLUDES='-I /usr/local/include '
| SSL_INCLUDES=''
| SSL_LDFLAGS=''
| SSL_LIBS='-lssl -lcrypto '
| STRIP='strip'
| VERSION='2.5.0'
| VSTUDIO_CONFIG=''
| VSTUDIO_DDK_FALSE=''
| VSTUDIO_DDK_TRUE='#'
| WARNING_FLAGS=' -Wall -Wextra -Wno-sign-compare -Wpointer-arith
-Wformat-security -Wswitch-enum -Wunused-parameter -Wbad-function-cast
-Wcast-align -Wmissing-prototypes -Wmissing-field-initializers
-fno-strict-aliasing'
| WIN32_FALSE=''
| WIN32_TRUE='#'
| ac_ct_AR='ar'
| ac_ct_CC='gcc'
| ac_ct_DUMPBIN=''
| am__EXEEXT_FALSE=''
| am__EXEEXT_TRUE='#'
| am__fastdepCC_FALSE=''
| am__fastdepCC_TRUE='#'
| am__include='include'
| am__isrc=''
| am__leading_dot='.'
| am__nodep=''
| am__quote=''
| am__tar='tar --format=posix -chf - "$$tardir"'
| am__untar='tar -xf -'
| bindir='/usr/bin'
| build='i686-redhat-linux-gnu'
| build_alias='i686-redhat-linux-gnu'
| build_cpu='i686'
| build_os='linux-gnu'
| build_vendor='redhat'
| datadir='/usr/share'
| datarootdir='${prefix}/share'
| docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
| dvidir='${docdir}'
| exec_prefix='/usr'
| host='i686-redhat-linux-gnu'
| host_alias='i686-redhat-linux-gnu'
| host_cpu='i686'
| host_os='linux-gnu'
| host_vendor='redhat'
| htmldir='${docdir}'
| includedir='/usr/include'
| infodir='/usr/share/info'
| install_sh='${SHELL}
/root/rpmbuild/BUILD/openvswitch-2.5.0/build-aux/install-sh'
| libdir='/usr/lib'
| libexecdir='/usr/libexec'
| localedir='${datarootdir}/locale'
| localstatedir='/var'
| mandir='/usr/share/man'
| mkdir_p='$(MKDIR_P)'
| oldincludedir='/usr/include'
| pdfdir='${docdir}'
| prefix='/usr'
| program_transform_name='s&^&&'
| psdir='${docdir}'
| sbindir='/usr/sbin'
| sharedstatedir='/var/lib'
| sysconfdir='/etc'
| target_alias=''
| 
| ## ----------- ##
| ## confdefs.h. ##
| ## ----------- ##
| 
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.5.0"
| #define PACKAGE_STRING "openvswitch 2.5.0"
| #define PACKAGE_BUGREPORT "bugs at openvswitch.org"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.5.0"
| #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_LIBCAPNG 1
| #define HAVE_IF_PACKET 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| #define HAVE_MLOCKALL 1
| #define HAVE_STRNLEN 1
| #define HAVE_GETLOADAVG 1
| #define HAVE_STATVFS 1
| #define HAVE_GETMNTENT_R 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_STDATOMIC_H 1
| #define HAVE_BACKTRACE 1
| #define HAVE_LINUX_PERF_EVENT_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_POSIX_MEMALIGN 1
| #define HAVE_STDIO_H 1
| #define HAVE_STRING_H 1
| #define HAVE_PRAGMA_MESSAGE 1
| 
| configure: exit 0

+ exit 1
error: Bad exit status from /var/tmp/rpm-tmp.vlppyd (%check)

RPM build errors:
    Bad exit status from /var/tmp/rpm-tmp.vlppyd (%check)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://openvswitch.org/pipermail/ovs-discuss/attachments/20160719/1b7ec244/attachment-0002.html>


More information about the discuss mailing list