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 d61d32590d1772b70b8dcd0d0ec44d29029d7443 (commit) via 66b363634fe1bba003cdb9e4e49a5980fc8c79f4 (commit) via bd1b1adf37dd8d252f7daf761d4ae9a6d1ef156a (commit) via 4fafec8378b6e7d0b353d851e724ab27eb002b27 (commit) from 63d92eb289261d1534b5b9e1e04291faa5e45d30 (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 d61d32590d1772b70b8dcd0d0ec44d29029d7443 Merge: 66b36363 bd1b1adf Author: Maxim Uvarov maxim.uvarov@linaro.org Date: Thu Oct 26 17:06:11 2017 +0300
Merge branch 'master' into api-next
Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org
commit 66b363634fe1bba003cdb9e4e49a5980fc8c79f4 Author: Sachin Saxena sachin.saxena@nxp.com Date: Tue Oct 10 12:14:17 2017 +0530
api: pool: Return address range for pool objects
Pool info support has been extented to provide minimum and maximum addresses of application accessible data for any pool object (event).
Signed-off-by: Sachin Saxena sachin.saxena@nxp.com Reviewed-by: Petri Savolainen petri.savolainen@linaro.org Reviewed-by: Bill Fischofer bill.fischofer@linaro.org Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org
diff --git a/include/odp/api/spec/pool.h b/include/odp/api/spec/pool.h index 221798ee..35f78377 100644 --- a/include/odp/api/spec/pool.h +++ b/include/odp/api/spec/pool.h @@ -294,6 +294,22 @@ odp_pool_t odp_pool_lookup(const char *name); typedef struct odp_pool_info_t { const char *name; /**< pool name */ odp_pool_param_t params; /**< pool parameters */ + + /** Minimum data address. + * This is the minimum address that application accessible + * data of any object (event) allocated from the pool may + * locate. When there's no application accessible data + * (e.g. ODP_POOL_TIMEOUT pools), the value may be zero. + */ + uintptr_t min_data_addr; + + /** Maximum data address. + * This is the maximum address that application accessible + * data of any object (event) allocated from the pool may + * locate. When there's no application accessible data + * (e.g. ODP_POOL_TIMEOUT pools), the value may be zero. + */ + uintptr_t max_data_addr; } odp_pool_info_t;
/**
-----------------------------------------------------------------------
Summary of changes: include/odp/api/spec/pool.h | 16 ++++++++++++++++ platform/linux-generic/pktio/netmap.c | 15 ++++++++++----- 2 files changed, 26 insertions(+), 5 deletions(-)
hooks/post-receive