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, 2.0 has been updated
via 63fd88635cc10caaa02fdccd3f52c9494487bdd2 (commit)
from 75f3d60e6b31544bb9b273364b2cce502262c1f8 (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 63fd88635cc10caaa02fdccd3f52c9494487bdd2
Author: Kevin Wang <kevin.wang(a)arm.com>
Date: Wed Dec 6 15:25:04 2017 +0800
linux-gen: pool: modify CONFIG_POOL_CACHE_SIZE from 256 to 255
CONFIG_POOL_CACHE_SIZE is used in pool_cache_t. In pool_cache_t,
there is another variable "num" which type is uint32_t. So if
set CONFIG_POOL_CACHE_SIZE to 256 here, the capacity of pool_cache_t
is 1028B which will waste 60B in one cache line. So reduce it to 255.
Signed-off-by: Kevin Wang <kevin.wang(a)arm.com>
Reviewed-by: Honnappa Nagarahalli <honnappa.nagarahalli(a)arm.com>
Reviewed-by: Ola Liljedahl <ola.Liljedahl(a)arm.com>
Reviewed-by: Bill Fischofer <bill.fischofer(a)linaro.org>
Signed-off-by: Yi He <yi.he(a)linaro.org>
diff --git a/platform/linux-generic/include/odp_config_internal.h b/platform/linux-generic/include/odp_config_internal.h
index 9720581a..3519cfc7 100644
--- a/platform/linux-generic/include/odp_config_internal.h
+++ b/platform/linux-generic/include/odp_config_internal.h
@@ -150,6 +150,6 @@
/*
* Maximum number of events in a thread local pool cache
*/
-#define CONFIG_POOL_CACHE_SIZE 256
+#define CONFIG_POOL_CACHE_SIZE 255
#endif
-----------------------------------------------------------------------
Summary of changes:
platform/linux-generic/include/odp_config_internal.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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 c15a810b7a47f2e07200f83aa534163ca06e2b16 (commit)
via aef79483e3d3e517b4cf2d71b3c22985326532c0 (commit)
via f49d7bad7316ed0be807f37984908fc37da68004 (commit)
from 811281a22b6274b7f41b926a9cfbe09e48a366bd (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 c15a810b7a47f2e07200f83aa534163ca06e2b16
Author: Maxim Uvarov <maxim.uvarov(a)linaro.org>
Date: Wed Dec 6 18:57:33 2017 +0300
Revert "travis: temporary turn off dpdk caching"
This reverts:
commit 73bc46197ec0 ("travis: temporary turn off dpdk caching")
Looks like dpdk build is stable now and we can turn on caching for dpdk.
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
Reviewed-by: Bill Fischofer <bill.fischofer(a)linaro.org>
diff --git a/.travis.yml b/.travis.yml
index 1340ef27..a3032672 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -61,7 +61,7 @@ cache:
ccache: true
pip: true
directories:
- #- dpdk
+ - dpdk
- netmap
- $HOME/cunit-install
- $HOME/doxygen-install
commit aef79483e3d3e517b4cf2d71b3c22985326532c0
Author: Maxim Uvarov <maxim.uvarov(a)linaro.org>
Date: Wed Dec 6 18:55:15 2017 +0300
gitignore add gcov files
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
Reviewed-by: Bill Fischofer <bill.fischofer(a)linaro.org>
diff --git a/.gitignore b/.gitignore
index b9c61424..93ab63a3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,7 @@
*.d
*.gcda
*.gcno
+*.gcov
*.la
*.lo
*.o
commit f49d7bad7316ed0be807f37984908fc37da68004
Author: Maxim Uvarov <maxim.uvarov(a)linaro.org>
Date: Tue Dec 5 19:25:10 2017 +0300
travis: disable ccache for codecov
Log says:
odp_pktio_perf.gcno:cannot open notes file
Reason is codecov does not see any generated files which were not
complied due to ccache. Disabling ccache makes it work.
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
Reviewed-by: Bill Fischofer <bill.fischofer(a)linaro.org>
diff --git a/.travis.yml b/.travis.yml
index 976f0763..1340ef27 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -35,7 +35,7 @@ env:
# By default Linaro CODECOV_TOKEN token is used. It's ok to use it to see
# for individual commit validation. But you you want to track tests history
# you need generated new one at https://codecov.io specific for your repo.
- - CODECOV_TOKEN=8e1c0fd8-62ff-411e-a79f-5839f6662c11
+ - CODECOV_TOKEN=a733c34c-5f5c-4ff1-af4b-e9f5edb1ab5e
addons:
apt:
@@ -245,12 +245,11 @@ jobs:
- ./configure --prefix=$HOME/odp-install
--enable-user-guides
--with-dpdk-path=`pwd`/dpdk/${TARGET}
- --with-netmap-path=`pwd`/netmap CFLAGS="-O0
- -coverage"
+ --with-netmap-path=`pwd`/netmap CFLAGS="-O0 -coverage"
CXXFLAGS="-O0 -coverage" LDFLAGS="--coverage"
--enable-debug=full
--enable-helper-linux
- - sudo LD_LIBRARY_PATH="$HOME/cunit-install/$CROSS_ARCH/lib:$LD_LIBRARY_PATH" PATH=${PATH//:\.\/node_modules\/\.bin/} make check
+ - sudo CCACHE_DISABLE=1 LD_LIBRARY_PATH="$HOME/cunit-install/$CROSS_ARCH/lib:$LD_LIBRARY_PATH" PATH=${PATH//:\.\/node_modules\/\.bin/} make check
- find . -type f -iname '*.[ch]' -not -path ".git/*" -execdir gcov {} \; ; bash <(curl -s https://codecov.io/bash) -X coveragepy
- stage: test
env: TEST=distcheck
-----------------------------------------------------------------------
Summary of changes:
.gitignore | 1 +
.travis.yml | 9 ++++-----
2 files changed, 5 insertions(+), 5 deletions(-)
hooks/post-receive
--