Changes in v3 - Fix checkpatch errors (Bill) Changes in v2 - Full patch submission (Barry)
Barry Spinney (4): api: tm: add tm API definitions linux-generic: tm: implement traffic manager linux-generic: tm: add tm to build example: tm: traffic manager example configure.ac | 1 + example/Makefile.am | 2 +- example/traffic_mgmt/.gitignore | 1 + example/traffic_mgmt/Makefile.am | 9 + example/traffic_mgmt/odp_traffic_mgmt.c | 775 +++++ include/odp.h | 1 + include/odp/api/packet_flags.h | 49 + include/odp/api/traffic_mngr.h | 1617 ++++++++++ platform/linux-generic/Makefile.am | 12 + .../linux-generic/include/odp/plat/packet_types.h | 11 + .../include/odp/plat/traffic_mngr_types.h | 188 ++ platform/linux-generic/include/odp/traffic_mngr.h | 35 + platform/linux-generic/include/odp_internal.h | 2 + .../include/odp_name_table_internal.h | 61 + .../linux-generic/include/odp_packet_internal.h | 5 + .../linux-generic/include/odp_pkt_queue_internal.h | 62 + .../include/odp_sorted_list_internal.h | 77 + .../include/odp_timer_wheel_internal.h | 68 + platform/linux-generic/odp_init.c | 5 + platform/linux-generic/odp_name_table.c | 1367 +++++++++ platform/linux-generic/odp_packet_flags.c | 45 + platform/linux-generic/odp_pkt_queue.c | 379 +++ platform/linux-generic/odp_sorted_list.c | 270 ++ platform/linux-generic/odp_timer_wheel.c | 907 ++++++ platform/linux-generic/odp_traffic_mngr.c | 3077 ++++++++++++++++++++ 25 files changed, 9025 insertions(+), 1 deletion(-) create mode 100644 example/traffic_mgmt/.gitignore create mode 100644 example/traffic_mgmt/Makefile.am create mode 100644 example/traffic_mgmt/odp_traffic_mgmt.c create mode 100644 include/odp/api/traffic_mngr.h create mode 100644 platform/linux-generic/include/odp/plat/traffic_mngr_types.h create mode 100644 platform/linux-generic/include/odp/traffic_mngr.h create mode 100644 platform/linux-generic/include/odp_name_table_internal.h create mode 100644 platform/linux-generic/include/odp_pkt_queue_internal.h create mode 100644 platform/linux-generic/include/odp_sorted_list_internal.h create mode 100644 platform/linux-generic/include/odp_timer_wheel_internal.h create mode 100644 platform/linux-generic/odp_name_table.c create mode 100644 platform/linux-generic/odp_pkt_queue.c create mode 100644 platform/linux-generic/odp_sorted_list.c create mode 100644 platform/linux-generic/odp_timer_wheel.c create mode 100644 platform/linux-generic/odp_traffic_mngr.c -- 2.1.4 _______________________________________________ lng-odp mailing list lng-odp@lists.linaro.org https://lists.linaro.org/mailman/listinfo/lng-odp