Hi, After todays call we said that we wanted to move include/helper/odp_* into helper/ directory done. Added then into helper/include if we want to move generic c files there as well...
Cheers, Anders Anders Roxell (2): move helper functions and rename to prefix to odph_ odph_icmp: add ODPH_ prefix .gitignore | 6 +- configure.ac | 4 +- doc/doxygen.cfg | 2 +- example/Makefile.inc | 2 +- example/generator/odp_generator.c | 148 ++++++++++----------- example/l2fwd/odp_l2fwd.c | 18 +-- example/odp_example/odp_example.c | 10 +- example/packet/odp_pktio.c | 28 ++-- example/packet_netmap/odp_pktio_netmap.c | 32 ++--- example/timer/odp_timer_test.c | 10 +- .../odp_chksum.h => helper/include/odph_chksum.h | 2 +- helper/include/odph_eth.h | 87 ++++++++++++ helper/include/odph_icmp.h | 98 ++++++++++++++ .../helper/odp_ip.h => helper/include/odph_ip.h | 72 +++++----- .../odp_linux.h => helper/include/odph_linux.h | 8 +- .../include/odph_packet_helper.h | 14 +- .../odp_ring.h => helper/include/odph_ring.h | 100 +++++++------- .../helper/odp_udp.h => helper/include/odph_udp.h | 32 ++--- include/helper/odp_eth.h | 87 ------------ include/helper/odp_icmp.h | 99 -------------- platform/linux-dpdk/Makefile.am | 16 +-- platform/linux-dpdk/include/odp_packet_dpdk.h | 4 +- platform/linux-dpdk/odp_linux.c | 6 +- platform/linux-dpdk/odp_packet.c | 86 ++++++------ platform/linux-generic/Makefile.am | 16 +-- platform/linux-generic/include/api/odp_align.h | 2 +- platform/linux-generic/odp_crypto.c | 4 +- platform/linux-generic/odp_linux.c | 8 +- platform/linux-generic/odp_packet.c | 86 ++++++------ platform/linux-generic/odp_packet_netmap.c | 20 +-- platform/linux-generic/odp_packet_socket.c | 42 +++--- platform/linux-generic/odp_ring.c | 146 ++++++++++---------- platform/linux-keystone2/Makefile.am | 16 +-- platform/linux-keystone2/odp_packet.c | 86 ++++++------ test/Makefile.inc | 2 +- test/api_test/odp_atomic_test.h | 2 +- test/api_test/odp_common.c | 10 +- test/api_test/odp_ring_test.c | 76 +++++------ test/api_test/odp_timer_ping.c | 12 +- 39 files changed, 753 insertions(+), 746 deletions(-) rename include/helper/odp_chksum.h => helper/include/odph_chksum.h (97%) create mode 100644 helper/include/odph_eth.h create mode 100644 helper/include/odph_icmp.h rename include/helper/odp_ip.h => helper/include/odph_ip.h (56%) rename include/helper/odp_linux.h => helper/include/odph_linux.h (86%) rename include/helper/odp_packet_helper.h => helper/include/odph_packet_helper.h (81%) rename include/helper/odp_ring.h => helper/include/odph_ring.h (87%) rename include/helper/odp_udp.h => helper/include/odph_udp.h (74%) delete mode 100644 include/helper/odp_eth.h delete mode 100644 include/helper/odp_icmp.h -- 1.9.1 _______________________________________________ lng-odp mailing list [email protected] http://lists.linaro.org/mailman/listinfo/lng-odp
