This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "".
The branch, master has been updated
via 6d832e408b848c739cd1ce07584322619030936a (commit)
from 123d4b5092725f3fbc7178ff0cde4c7f8d53ffd3 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 6d832e408b848c739cd1ce07584322619030936a
Author: Matias Elo <matias.elo(a)nokia.com>
Date: Wed Mar 13 14:49:59 2019 +0200
linux-gen: netmap: bump tested version to v13.0
Signed-off-by: Matias Elo <matias.elo(a)nokia.com>
Reviewed-by: Petri Savolainen <petri.savolainen(a)nokia.com>
diff --git a/.travis.yml b/.travis.yml
index bb84ab19e..607e89477 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -84,7 +84,7 @@ install:
echo "Installing NETMAP";
sudo apt-get install linux-headers-`uname -r` ;
CDIR=`pwd` ;
- git -c advice.detachedHead=false clone -q --depth=1 --single-branch --branch=v11.2 https://github.com/luigirizzo/netmap.git;
+ git -c advice.detachedHead=false clone -q --depth=1 --single-branch --branch=v13.0 https://github.com/luigirizzo/netmap.git;
pushd netmap/LINUX;
./configure --drivers= ;
make -j $(nproc);
diff --git a/DEPENDENCIES b/DEPENDENCIES
index f16617bc3..917d84158 100644
--- a/DEPENDENCIES
+++ b/DEPENDENCIES
@@ -96,13 +96,13 @@ Prerequisites for building the OpenDataPlane (ODP) API
3.3.1 Building netmap kernel modules
ODP works at least with the latest release version of netmap, which is
- currently 11.2. However, if possible one should try to use the latest netmap
+ currently v13.0. However, if possible one should try to use the latest netmap
master branch commit for the best performance and the latest bug fixes.
# Checkout netmap code
$ git clone https://github.com/luigirizzo/netmap.git
$ cd netmap
- $ git checkout v11.2 (optional)
+ $ git checkout v13.0 (optional)
This is enough to build ODP. If you don't want to build netmap kernel
modules you can jump to section 3.3.2.
-----------------------------------------------------------------------
Summary of changes:
.travis.yml | 2 +-
DEPENDENCIES | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
hooks/post-receive
--
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "".
The branch, master has been updated
via 31b17c87d784fc841d310b03462f0d02dac35eac (commit)
from e7a14391d9375aab1f9f6ec8d16de9ff29f51956 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 31b17c87d784fc841d310b03462f0d02dac35eac
Author: Dmitry Eremin-Solenikov <deremin-solenikov(a)cavium.com>
Date: Wed Mar 13 20:21:45 2019 +0300
m4: fix ODP_PTHREAD definition
AC_SUBST PTHREAD_CFLAGS/_LIBS variables inside ODP_PTHREAD macro
definition, so they get properly substituted when compiling.
Signed-off-by: Dmitry Eremin-Solenikov <deremin-solenikov(a)cavium.com>
Reviewed-by: Matias Elo <matias.elo(a)nokia.com>
diff --git a/m4/odp_pthread.m4 b/m4/odp_pthread.m4
index 0e3485e37..ad65f4d1a 100644
--- a/m4/odp_pthread.m4
+++ b/m4/odp_pthread.m4
@@ -11,7 +11,7 @@ AC_DEFUN([ODP_PTHREAD], [
AC_LANG_PUSH([C])
PTHEAD_CFLAGS="-pthread"
CFLAGS="$CFLAGS $PTHEAD_CFLAGS"
- PTHEAD_LIBS="-pthread"
+ PTHREAD_LIBS="-pthread"
LDFLAGS="$LDFLAGS $PTHREAD_LIBS"
AC_TRY_LINK_FUNC([pthread_create], [pthread=yes])
if test x"$pthread" != "xyes"; then
@@ -19,6 +19,6 @@ AC_DEFUN([ODP_PTHREAD], [
fi
AC_MSG_RESULT([yes])
AC_LANG_POP([C])
+ AC_SUBST([PTHREAD_LIBS])
+ AC_SUBST([PTHREAD_CFLAGS])
])
-AC_SUBST([PTHREAD_LIBS])
-AC_SUBST([PTHREAD_CFLAGS])
-----------------------------------------------------------------------
Summary of changes:
m4/odp_pthread.m4 | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
hooks/post-receive
--
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "".
The branch, master has been updated
via 3e3f2536bd4246010a765dde30bc1b88f824dcab (commit)
via 6e4cbdfa5357b88d825ba75886aee2a33320ebff (commit)
from a0dbb9e7203842587c19181ddb59f91ec718c0ee (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 3e3f2536bd4246010a765dde30bc1b88f824dcab
Author: Matias Elo <matias.elo(a)nokia.com>
Date: Mon Mar 4 14:48:43 2019 +0200
configure: update mailing list address
Signed-off-by: Matias Elo <matias.elo(a)nokia.com>
Reviewed-by: Bill Fischofer <billf(a)me.com>
diff --git a/configure.ac b/configure.ac
index be5ae7870..923d98dff 100644
--- a/configure.ac
+++ b/configure.ac
@@ -8,7 +8,7 @@ m4_define([odpapi_minor_version], [1])
m4_define([odpapi_point_version], [0])
m4_define([odpapi_version],
[odpapi_generation_version.odpapi_major_version.odpapi_minor_version.odpapi_point_version])
-AC_INIT([OpenDataPlane],[odpapi_version],[lng-odp(a)lists.linaro.org])
+AC_INIT([OpenDataPlane],[odpapi_version],[odp(a)lists.opendataplane.org])
ODP_VERSION_API_GENERATION=odpapi_generation_version
AC_SUBST(ODP_VERSION_API_GENERATION)
commit 6e4cbdfa5357b88d825ba75886aee2a33320ebff
Author: Matias Elo <matias.elo(a)nokia.com>
Date: Mon Mar 4 14:43:10 2019 +0200
README: update mailing list address
Signed-off-by: Matias Elo <matias.elo(a)nokia.com>
Reviewed-by: Bill Fischofer <billf(a)me.com>
diff --git a/README b/README
index f20800aab..2d63ef41a 100644
--- a/README
+++ b/README
@@ -4,7 +4,7 @@ All rights reserved.
SPDX-License-Identifier: BSD-3-Clause
OpenDataPlane (ODP) project web page:
- http://www.opendataplane.org
+ https://www.opendataplane.org
ODP project in GitHub:
https://github.com/OpenDataPlane
@@ -44,7 +44,7 @@ Licensing:
file for details.
Mailing list:
- lng-odp(a)lists.linaro.org
+ odp(a)lists.opendataplane.org
Contributing:
Please read CONTRIBUTING file before submitting patches. ODP project follows
-----------------------------------------------------------------------
Summary of changes:
README | 4 ++--
configure.ac | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
hooks/post-receive
--