Message ID | 1419262270-23776-1-git-send-email-maxim.uvarov@linaro.org |
---|---|
State | Accepted |
Commit | b2bfcf349771861130703fdc37a9065bc42e64b8 |
Headers | show |
Function coverage linux-generic is now 79.1 % so we are closing in on sunny day tests for 1.0, the scheduled synchronizers, classification and timer tests for 0.7.0 will go a long way to closing the gap. http://docs.opendataplane.org/linux-generic-gcov-html/linux-generic/index-sort-f.html Coverity We added new issues CID Type Impact First Detected Component Category File Function 85006 Operands don't affect result Medium 12/22/14 generic Integer handling issues /platform/linux-generic/include/odp_buffer_inlines.h validate_buf 85005 Unchecked return value Medium 12/22/14 validation Error handling issues /test/validation/odp_queue.c test_odp_queue_sunnyday 85004 Unchecked return value Medium 12/22/14 generic Error handling issues /platform/linux-generic/odp_crypto.c odp_crypto_operation 83058 Buffer not null terminated High 11/23/14 generic Memory - illegal accesses /platform/linux-generic/odp_packet_io.c odp_pktio_open clang scan http://docs.opendataplane.org/clang-scan/index.html CLANG its self has issues https://ci.linaro.org/job/odp-api-ssc/TESTS=clang,label=build/164/console Slightly broken html summary https://ci.linaro.org/job/odp-api-ssc/TESTS=clang,label=build/164/warnings6Result/ C99 X86 build errors https://ci.linaro.org/job/odp-api-check-native-c99/buildhw=x86_64,label=build/31/console in odp_shared_memory.c & odp_timer.c SPARSE Has a lot of unhelpful messages this time - time to revisit this tool https://ci.linaro.org/job/odp-api-ssc/TESTS=sparse,label=build/164/console On 22 December 2014 at 10:31, Maxim Uvarov <maxim.uvarov@linaro.org> wrote: > Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org> > --- > Changes from previous version: > > Anders Roxell (1): > validation: Makefile: cleanup make flags > > Bill Fischofer (5): > linux-generic: packet: streamline packet add/rem data > linux-generic: packet: add ODP_PACKET_OFFSET_INVALID > linux-generic: pktio code to handle segmented packets > linux-generic: enable segmented packet support > api: buffer: change odp_buffer_pool_info_t output > > Maxim Uvarov (3): > api: pktio: remove odp_pktio_set_mtu > validation: pktio: add mac, promisc and mtu tests > Update version number from 0.5.0 to 0.6.0 > > Mike Holmes (2): > DEPENDENCIES: add documentation instructions > validation: odp_buffer: add to test suite > > Ola Liljedahl (1): > linux-generic: odp_ticketlock.h: implement trylock() > > Petri Savolainen (3): > > Stuart Haslam (2): > api: pktio: remove odp_pktio_get_input() and odp_pktio_set_input() > validation: pktio: initial pktio tests > > Taras Kondratiuk (11): > linux-generic: implement odp_queue_destroy() > validation: common: fix application exit status > api: init: add a way to determine a last ODP thread termination > linux-generic: init: implement basic odp_term_local() > linux-generic: crypto: always make a copy of IV > linux-generic: crypto: implement completion event context > linux-generic: crypto: implement > odp_crypto_get_operation_compl_packet() > Revert "validation: XFAIL crypto until API is implemented" > validation: buffer: add initial buffer pool tests > validation: buffer: add initial buffer tests > validation: buffer: add initial packet tests > > platform/linux-generic/include/api/odp_version.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/platform/linux-generic/include/api/odp_version.h > b/platform/linux-generic/include/api/odp_version.h > index e8569b8..464d830 100644 > --- a/platform/linux-generic/include/api/odp_version.h > +++ b/platform/linux-generic/include/api/odp_version.h > @@ -37,7 +37,7 @@ extern "C" { > * Introduction of major new features or changes. APIs with different > major > * versions are likely not backward compatible. > */ > -#define ODP_VERSION_API_MAJOR 5 > +#define ODP_VERSION_API_MAJOR 6 > > /** > * ODP API minor version > -- > 1.8.5.1.163.gd7aced9 > > > _______________________________________________ > lng-odp mailing list > lng-odp@lists.linaro.org > http://lists.linaro.org/mailman/listinfo/lng-odp >
diff --git a/platform/linux-generic/include/api/odp_version.h b/platform/linux-generic/include/api/odp_version.h index e8569b8..464d830 100644 --- a/platform/linux-generic/include/api/odp_version.h +++ b/platform/linux-generic/include/api/odp_version.h @@ -37,7 +37,7 @@ extern "C" { * Introduction of major new features or changes. APIs with different major * versions are likely not backward compatible. */ -#define ODP_VERSION_API_MAJOR 5 +#define ODP_VERSION_API_MAJOR 6 /** * ODP API minor version
Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org> --- Changes from previous version: Anders Roxell (1): validation: Makefile: cleanup make flags Bill Fischofer (5): linux-generic: packet: streamline packet add/rem data linux-generic: packet: add ODP_PACKET_OFFSET_INVALID linux-generic: pktio code to handle segmented packets linux-generic: enable segmented packet support api: buffer: change odp_buffer_pool_info_t output Maxim Uvarov (3): api: pktio: remove odp_pktio_set_mtu validation: pktio: add mac, promisc and mtu tests Update version number from 0.5.0 to 0.6.0 Mike Holmes (2): DEPENDENCIES: add documentation instructions validation: odp_buffer: add to test suite Ola Liljedahl (1): linux-generic: odp_ticketlock.h: implement trylock() Petri Savolainen (3): Stuart Haslam (2): api: pktio: remove odp_pktio_get_input() and odp_pktio_set_input() validation: pktio: initial pktio tests Taras Kondratiuk (11): linux-generic: implement odp_queue_destroy() validation: common: fix application exit status api: init: add a way to determine a last ODP thread termination linux-generic: init: implement basic odp_term_local() linux-generic: crypto: always make a copy of IV linux-generic: crypto: implement completion event context linux-generic: crypto: implement odp_crypto_get_operation_compl_packet() Revert "validation: XFAIL crypto until API is implemented" validation: buffer: add initial buffer pool tests validation: buffer: add initial buffer tests validation: buffer: add initial packet tests platform/linux-generic/include/api/odp_version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)