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 886e54149d3ee64e56c422a0d3dd7c536e2b4b7d (commit) via ec7353be201b526ade8819d9668dec111a9211d7 (commit) from c2ed3f71a8d61449c5e35ce201f020a74a8ea244 (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 886e54149d3ee64e56c422a0d3dd7c536e2b4b7d Author: Bill Fischofer bill.fischofer@linaro.org Date: Fri Sep 22 08:41:19 2017 -0500
linux-generic: packet: add missing doxygen from inline func
Add missing doxygen for internal function packet_to_buffer to avoid warnings under latest doxygen.
This fixes Bug https://bugs.linaro.org/show_bug.cgi?id=3262
Signed-off-by: Bill Fischofer bill.fischofer@linaro.org Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org
diff --git a/platform/linux-generic/include/odp/api/plat/packet_inlines.h b/platform/linux-generic/include/odp/api/plat/packet_inlines.h index be7e18ec..1804fa6f 100644 --- a/platform/linux-generic/include/odp/api/plat/packet_inlines.h +++ b/platform/linux-generic/include/odp/api/plat/packet_inlines.h @@ -157,6 +157,7 @@ static inline void _odp_packet_prefetch(odp_packet_t pkt, uint32_t offset, (void)pkt; (void)offset; (void)len; }
+/** @internal Inline function @param pkt @return */ static inline odp_buffer_t packet_to_buffer(odp_packet_t pkt) { return (odp_buffer_t)pkt;
commit ec7353be201b526ade8819d9668dec111a9211d7 Author: Maxim Uvarov maxim.uvarov@linaro.org Date: Mon Sep 25 21:18:29 2017 +0300
travis: correct doxygen warning capture
use if else bash syntax for grep warnings from log.
Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org Reviewed-by: Bill Fischofer bill.fischofer@linaro.org
diff --git a/.travis.yml b/.travis.yml index a9ae219d..395feb0e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -249,11 +249,17 @@ jobs: fi
- export PATH=$HOME/doxygen-install/bin:$PATH - # doxygen does not trap on warnings, check for them here. - ./bootstrap - ./configure + # doxygen does not trap on warnings, check for them here. - make doxygen-doc 2>&1 |tee doxygen.log - - fgrep -rq warning ./doxygen.log && false + - | + fgrep -rq warning ./test.log + if [ $? -eq 0 ]; then + false + else + true + fi - stage: test env: TEST=checkpatch compiler: gcc
-----------------------------------------------------------------------
Summary of changes: .travis.yml | 10 ++++++++-- platform/linux-generic/include/odp/api/plat/packet_inlines.h | 1 + 2 files changed, 9 insertions(+), 2 deletions(-)
hooks/post-receive