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, devel/native-drivers has been updated via 121a1e14d0b3b205420df876587ec1e8ef4cf723 (commit) from 6336beb21e88eef30fbfcd415e6d038c96f4343d (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 121a1e14d0b3b205420df876587ec1e8ef4cf723 Author: Josep Puigdemont josep.puigdemont@linaro.org Date: Thu Dec 14 15:45:12 2017 +0100
physmem: rename init/term functions
Signed-off-by: Josep Puigdemont josep.puigdemont@linaro.org
diff --git a/platform/linux-generic/pktio/physmem/physmem.c b/platform/linux-generic/pktio/physmem/physmem.c index 54b62d2d..b426c21d 100644 --- a/platform/linux-generic/pktio/physmem/physmem.c +++ b/platform/linux-generic/pktio/physmem/physmem.c @@ -544,7 +544,7 @@ static void init_blocks(void) LIST_INIT(&block_data.empty); }
-int physmem_block_global_init(void) +int physmem_block_init_global(void) { init_blocks();
@@ -557,7 +557,7 @@ int physmem_block_global_init(void) return 0; }
-int physmem_block_global_term(void) +int physmem_block_term_global(void) { for (int i = 0; i < MAX_HUGEPAGES; ++i) { if (pages[i].fd == 0) diff --git a/platform/linux-generic/pktio/physmem/physmem.h b/platform/linux-generic/pktio/physmem/physmem.h index 0ebc2ba6..9a7f37c4 100644 --- a/platform/linux-generic/pktio/physmem/physmem.h +++ b/platform/linux-generic/pktio/physmem/physmem.h @@ -32,8 +32,8 @@ struct physmem_block { physmem_block_type_t type; };
-int physmem_block_global_init(void); -int physmem_block_global_term(void); +int physmem_block_init_global(void); +int physmem_block_term_global(void);
struct physmem_block *physmem_block_alloc(uint64_t); void physmem_block_free(struct physmem_block *);
-----------------------------------------------------------------------
Summary of changes: platform/linux-generic/pktio/physmem/physmem.c | 4 ++-- platform/linux-generic/pktio/physmem/physmem.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-)
hooks/post-receive