Re: [lng-odp] Packet L3/L4 type implementation, alternative way

2018-02-12 Thread Github ODP bot
Balasubramanian Manoharan(bala-manoharan) replied on github web page: platform/linux-generic/odp_packet.c line 23 @@ -2544,3 +2544,41 @@ int odp_packet_has_ref(odp_packet_t pkt) return 0; } + +odp_proto_l3_type_t odp_packet_l3_type(odp_packet_t pkt) +{ + odp_packet_hdr_t *pkt_hdr

Re: [lng-odp] Select scheduler+queue in runtime, basing on environment

2018-02-12 Thread Github ODP bot
Dmitry Eremin-Solenikov(lumag) replied on github web page: .travis.yml line 7 @@ -53,9 +53,6 @@ env: - CONF="" - CONF="--disable-abi-compat" - CONF="--enable-deprecated" -- CONF="--enable-schedule-sp" -- CONF="--enable-schedule-iquery" --

[lng-odp] [Linaro/odp] 0f0d38: linux-gen: move common macros to odp_macros_intern...

2018-02-12 Thread GitHub
Branch: refs/heads/master Home: https://github.com/Linaro/odp Commit: 0f0d381ce87519fb5451ff93c0f8c5d0d7d57748 https://github.com/Linaro/odp/commit/0f0d381ce87519fb5451ff93c0f8c5d0d7d57748 Author: Mykyta Iziumtsev Date: 2018-02-12 (Mon, 12 Feb

Re: [lng-odp] linux-gen: crypto: implement AES-XCBC-MAC and SHA384-HMAC

2018-02-12 Thread Github ODP bot
Dmitry Eremin-Solenikov(lumag) replied on github web page: platform/linux-generic/odp_crypto.c line 5 @@ -36,6 +36,9 @@ #define MAX_SESSIONS 32 +#define AES_BLOCK_SIZE 16 +typedef uint32_t aes_block[4]; Comment: Please use `uint32_t*` instead of adding new type.

Re: [lng-odp] linux-gen: crypto: implement AES-XCBC-MAC and SHA384-HMAC

2018-02-12 Thread Github ODP bot
Dmitry Eremin-Solenikov(lumag) replied on github web page: platform/linux-generic/odp_crypto.c line 57 @@ -308,6 +319,142 @@ void packet_hmac(odp_packet_t pkt, HMAC_Final(ctx, hash, NULL); } +static void do_pad_xor(uint8_t *out, const uint8_t *in, int len) { + int pos=0; +

[lng-odp] [Linaro/odp] 994e95: linux-gen: packet: optimize parse ipv4 and udp

2018-02-12 Thread GitHub
Branch: refs/heads/master Home: https://github.com/Linaro/odp Commit: 994e9549e9bf0b92c6a046685c9622e7f279b574 https://github.com/Linaro/odp/commit/994e9549e9bf0b92c6a046685c9622e7f279b574 Author: Petri Savolainen Date: 2018-02-12 (Mon, 12 Feb

[lng-odp] [Linaro/odp] bde474: validation: shm: test capa and maximum reservation

2018-02-12 Thread GitHub
Branch: refs/heads/master Home: https://github.com/Linaro/odp Commit: bde4740691276d71ef50653350a67823229bacc6 https://github.com/Linaro/odp/commit/bde4740691276d71ef50653350a67823229bacc6 Author: Petri Savolainen Date: 2018-02-12 (Mon, 12 Feb

Re: [lng-odp] linux-gen: crypto: implement AES-XCBC-MAC and SHA384-HMAC

2018-02-12 Thread Github ODP bot
Dmitry Eremin-Solenikov(lumag) replied on github web page: platform/linux-generic/odp_crypto.c line 83 @@ -308,6 +319,142 @@ void packet_hmac(odp_packet_t pkt, HMAC_Final(ctx, hash, NULL); } +static void do_pad_xor(uint8_t *out, const uint8_t *in, int len) { + int pos=0; +

Re: [lng-odp] linux-gen: crypto: implement AES-XCBC-MAC and SHA384-HMAC

2018-02-12 Thread Github ODP bot
Dmitry Eremin-Solenikov(lumag) replied on github web page: platform/linux-generic/odp_crypto.c line 155 @@ -308,6 +319,142 @@ void packet_hmac(odp_packet_t pkt, HMAC_Final(ctx, hash, NULL); } +static void do_pad_xor(uint8_t *out, const uint8_t *in, int len) { + int pos=0; +

Re: [lng-odp] Update parser validation test

2018-02-12 Thread Github ODP bot
Dmitry Eremin-Solenikov(lumag) replied on github web page: test/validation/api/packet/packet.c line 443 @@ -2713,6 +2714,216 @@ static void parse_eth_ipv6_tcp(void) odp_packet_free_multi(pkt, num_pkt); } +/* Ethernet/VLAN/IPv4/UDP */ +static void parse_eth_vlan_ipv4_udp(void) +{ +

Re: [lng-odp] Select scheduler+queue in runtime, basing on environment

2018-02-12 Thread Github ODP bot
Bill Fischofer(Bill-Fischofer-Linaro) replied on github web page: .travis.yml line 7 @@ -53,9 +53,6 @@ env: - CONF="" - CONF="--disable-abi-compat" - CONF="--enable-deprecated" -- CONF="--enable-schedule-sp" -- CONF="--enable-schedule-iquery" --

Re: [lng-odp] linux-gen: crypto: implement AES-XCBC-MAC and SHA384-HMAC

2018-02-12 Thread Github ODP bot
Dmitry Eremin-Solenikov(lumag) replied on github web page: platform/linux-generic/odp_crypto.c line 152 @@ -308,6 +319,142 @@ void packet_hmac(odp_packet_t pkt, HMAC_Final(ctx, hash, NULL); } +static void do_pad_xor(uint8_t *out, const uint8_t *in, int len) { + int pos=0; +

[lng-odp] [Linaro/odp] eed69e: shippable: report test results even if ci step fai...

2018-02-12 Thread GitHub
Branch: refs/heads/master Home: https://github.com/Linaro/odp Commit: eed69e81f7830269012517691a276c4dac57d6cf https://github.com/Linaro/odp/commit/eed69e81f7830269012517691a276c4dac57d6cf Author: Dmitry Eremin-Solenikov Date: 2018-02-12

[lng-odp] [PATCH v1 1/1] travis: add two tests using DPDK version 17.11

2018-02-12 Thread Github ODP bot
From: Dmitry Eremin-Solenikov Signed-off-by: Dmitry Eremin-Solenikov --- /** Email created from pull request 473 (lumag:travis-dpdk-17.11) ** https://github.com/Linaro/odp/pull/473 ** Patch:

[lng-odp] [PATCH v1 0/1] travis: add two tests using DPDK version 17.11

2018-02-12 Thread Github ODP bot
Signed-off-by: Dmitry Eremin-Solenikov dmitry.ereminsoleni...@linaro.org github /** Email created from pull request 473 (lumag:travis-dpdk-17.11) ** https://github.com/Linaro/odp/pull/473 ** Patch: https://github.com/Linaro/odp/pull/473.patch ** Base

Re: [lng-odp] Select scheduler+queue in runtime, basing on environment

2018-02-12 Thread Github ODP bot
Petri Savolainen(psavol) replied on github web page: .travis.yml line 7 @@ -53,9 +53,6 @@ env: - CONF="" - CONF="--disable-abi-compat" - CONF="--enable-deprecated" -- CONF="--enable-schedule-sp" -- CONF="--enable-schedule-iquery" --

Re: [lng-odp] non-optimized (default) host support

2018-02-12 Thread Github ODP bot
Bill Fischofer(Bill-Fischofer-Linaro) replied on github web page: .travis.yml line 5 @@ -58,6 +58,8 @@ env: - CONF="--enable-schedule-scalable" - CONF="--enable-dpdk-zero-copy" - CONF="--disable-static-applications" +- CONF="--disable-host-optimization" +

Re: [lng-odp] non-optimized (default) host support

2018-02-12 Thread Github ODP bot
Bill Fischofer(Bill-Fischofer-Linaro) replied on github web page: configure.ac @@ -185,6 +177,23 @@ AS_CASE([$host], ) AC_SUBST([ARCH_ABI]) +AC_ARG_ENABLE([host-optimization], + [AS_HELP_STRING([--disable-host-optimization], Comment: What's the use case (other than testing) for

Re: [lng-odp] non-optimized (default) host support

2018-02-12 Thread Github ODP bot
Bill Fischofer(Bill-Fischofer-Linaro) replied on github web page: include/odp/arch/default-linux/odp/api/abi/align.h line 1 @@ -0,0 +1,7 @@ +/* Copyright (c) 2017, Linaro Limited Comment: 2018 for all new copyright dates > Bill Fischofer(Bill-Fischofer-Linaro) wrote: > @muvarov This is a

Re: [lng-odp] non-optimized (default) host support

2018-02-12 Thread Github ODP bot
Dmitry Eremin-Solenikov(lumag) replied on github web page: .travis.yml line 5 @@ -58,6 +58,8 @@ env: - CONF="--enable-schedule-scalable" - CONF="--enable-dpdk-zero-copy" - CONF="--disable-static-applications" +- CONF="--disable-host-optimization" +-