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, api-next has been updated
via 2c494b4a67123c838b4b6915679cca06f9e0bdd2 (commit)
via e6fd300ada7529c9ae454c2ce537844a1c822d21 (commit)
from bbb10c23626657723466a42b94612b554858ce1d (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 2c494b4a67123c838b4b6915679cca06f9e0bdd2
Merge: bbb10c2 e6fd300
Author: Maxim Uvarov <maxim.uvarov(a)linaro.org>
Date: Tue Jul 26 19:03:43 2016 +0300
Merge branch 'master' into api-next
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
-----------------------------------------------------------------------
Summary of changes:
platform/linux-generic/odp_pool.c | 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 e6fd300ada7529c9ae454c2ce537844a1c822d21 (commit)
from 870ef79d2dae0ad94a5079d0ca1e222493937aef (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 e6fd300ada7529c9ae454c2ce537844a1c822d21
Author: Maxim Uvarov <maxim.uvarov(a)linaro.org>
Date: Tue Jul 26 18:05:00 2016 +0300
linux-gen: fix odp_pool_print
commit: ec0d570 linux-gen: pool: optimize thread local buffer cache
removed elements for prints but did not remove that
from format string.
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
diff --git a/platform/linux-generic/odp_pool.c b/platform/linux-generic/odp_pool.c
index 0a427ed..415c9fa 100644
--- a/platform/linux-generic/odp_pool.c
+++ b/platform/linux-generic/odp_pool.c
@@ -1103,7 +1103,7 @@ void odp_pool_print(odp_pool_t pool_hdl)
odp_shm_to_u64(pool->s.pool_shm));
ODP_DBG(" pool status %s\n",
pool->s.quiesced ? "quiesced" : "active");
- ODP_DBG(" pool opts %s, %s, %s\n",
+ ODP_DBG(" pool opts %s, %s\n",
pool->s.flags.unsegmented ? "unsegmented" : "segmented",
pool->s.flags.predefined ? "predefined" : "created");
ODP_DBG(" pool base %p\n", pool->s.pool_base_addr);
-----------------------------------------------------------------------
Summary of changes:
platform/linux-generic/odp_pool.c | 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 d440fa6b463d9dad5e852d7970c5f77493f190f0 (commit)
from 5d5304117434ab340cdd138066561e00a6b0642d (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 d440fa6b463d9dad5e852d7970c5f77493f190f0
Author: Oriol Arcas <oriol(a)starflownetworks.com>
Date: Tue Jul 19 11:16:43 2016 +0200
linux-generic: pool: set maximum number of pools to 64
Signed-off-by: Oriol Arcas <oriol(a)starflownetworks.com>
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
diff --git a/platform/linux-generic/include/odp_config_internal.h b/platform/linux-generic/include/odp_config_internal.h
index b108c07..989ea08 100644
--- a/platform/linux-generic/include/odp_config_internal.h
+++ b/platform/linux-generic/include/odp_config_internal.h
@@ -14,7 +14,7 @@ extern "C" {
/*
* Maximum number of pools
*/
-#define ODP_CONFIG_POOLS 16
+#define ODP_CONFIG_POOLS 64
/*
* Maximum number of queues
-----------------------------------------------------------------------
Summary of changes:
platform/linux-generic/include/odp_config_internal.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--