After the discussion this morning I assume we not following this patch set anymore.
On 21 January 2015 at 14:03, Bill Fischofer <[email protected]> wrote: > I'll take a look at that. It was building find but when I ran checkpatch I > ran into a few issues and in correcting them the last couple of sections > might have been skewed somewhat. > > On Wed, Jan 21, 2015 at 7:01 AM, Anders Roxell <[email protected]> > wrote: >> >> Your patches didn't build individually for me... >> >> Using patch: >> lng-odp_PATCHv2_6-8_api_schedule_switch_schedule_from_buffers_to_events.mbox >> Trying to apply patch >> Patch applied >> Building with patch >> PASS: odp_init >> PASS: odp_queue >> PASS: odp_crypto >> PASS: odp_shm >> PASS: odp_schedule >> PASS: odp_pktio_run >> PASS: odp_buffer >> PASS: odp_system >> ../../test-driver: line 107: 13743 Segmentation fault "$@" > >> $log_file 2>&1 >> FAIL: odp_timer >> PASS: odp_time >> PASS: odp_synchronizers >> >> ============================================================================ >> Testsuite summary for OpenDataPlane 0.8.0 >> >> ============================================================================ >> # TOTAL: 11 >> # PASS: 10 >> # SKIP: 0 >> # XFAIL: 0 >> # FAIL: 1 >> # XPASS: 0 >> # ERROR: 0 >> >> ============================================================================ >> See test/validation/test-suite.log >> Please report to [email protected] >> >> ============================================================================ >> >> >> Using patch: >> lng-odp_PATCHv2_7-8_api_packet_expose_new_packet_APIs_for_events.mbox >> Trying to apply patch >> Patch applied >> Building with patch >> make[2]: *** [odp_packet.lo] Error 1 >> make[1]: *** [all-recursive] Error 1 >> make: *** [all-recursive] Error 1 >> BUILD ERROR! >> >> /home/anders/src/check-odp/log/odp-apply/lng-odp_PATCHv2_7-8_api_packet_expose_new_packet_APIs_for_events.mbox-make.log >> >> >> Cheers, >> Anders >> >> On 2015-01-20 22:57, Bill Fischofer wrote: >> > This patch series implements Phase I of events. New types are added >> > and enabled, but existing code still works with the old buffer-based >> > APIs. This sets the stage for Phase II that should convert existing >> > code to use the new APIs. Phase III can then delete the old APIs. >> > >> > Bill Fischofer (8): >> > api: event: Add event type >> > api: pool: Add pool type >> > api: event: Add event implementation >> > api: pool: Rename ODP_CONFIG_BUFFER_POOLS to ODP_CONFIG_POOLS >> > api: queue: switch queues from buffers to events >> > api: schedule: switch schedule from buffers to events >> > api: packet: expose new packet APIs for events >> > api: pools: enable use of odp_pool_create() >> > >> > platform/linux-generic/Makefile.am | 3 + >> > platform/linux-generic/include/api/odp_buffer.h | 28 ++- >> > .../linux-generic/include/api/odp_buffer_pool.h | 20 +- >> > platform/linux-generic/include/api/odp_config.h | 4 +- >> > platform/linux-generic/include/api/odp_event.h | 59 ++++++ >> > platform/linux-generic/include/api/odp_packet.h | 32 +++- >> > .../linux-generic/include/api/odp_platform_types.h | 12 ++ >> > platform/linux-generic/include/api/odp_pool.h | 202 >> > +++++++++++++++++++++ >> > platform/linux-generic/include/api/odp_queue.h | 32 ++-- >> > platform/linux-generic/include/api/odp_schedule.h | 32 ++-- >> > .../linux-generic/include/odp_buffer_inlines.h | 6 +- >> > .../linux-generic/include/odp_buffer_internal.h | 8 +- >> > .../include/odp_buffer_pool_internal.h | 22 +-- >> > .../linux-generic/include/odp_packet_internal.h | 8 +- >> > platform/linux-generic/odp_buffer.c | 17 +- >> > platform/linux-generic/odp_buffer_pool.c | 170 >> > ++++++++++------- >> > platform/linux-generic/odp_event.c | 19 ++ >> > platform/linux-generic/odp_packet.c | 30 ++- >> > platform/linux-generic/odp_queue.c | 18 +- >> > platform/linux-generic/odp_schedule.c | 48 +++-- >> > test/validation/buffer/odp_buffer_pool_test.c | 12 -- >> > 21 files changed, 582 insertions(+), 200 deletions(-) >> > create mode 100644 platform/linux-generic/include/api/odp_event.h >> > create mode 100644 platform/linux-generic/include/api/odp_pool.h >> > create mode 100644 platform/linux-generic/odp_event.c >> > >> > -- >> > 2.1.0 >> > >> > >> > _______________________________________________ >> > lng-odp mailing list >> > [email protected] >> > http://lists.linaro.org/mailman/listinfo/lng-odp > > _______________________________________________ lng-odp mailing list [email protected] http://lists.linaro.org/mailman/listinfo/lng-odp
