Re: [lng-odp] [API-NEXT PATCH] api: ipsec: add warning status event

2017-07-17 Thread Nikhil Agarwal
Reviewed-by: Nikhil Agarwal -Original Message- From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of Petri Savolainen Sent: Friday, July 14, 2017 6:14 PM To: lng-odp@lists.linaro.org Subject: [lng-odp] [API-NEXT PATCH] api: ipsec: add warning

Re: [lng-odp] DPDK integration under DDF

2017-07-17 Thread Honnappa Nagarahalli
I have updated the document to define 2 phases for this integration, please take a look. I have considered L2FWD application as a demo for both phases and have defined few work items. We can discuss these work items in ODP-Cloud call.

Re: [lng-odp] [PATCHv3] linux-gen: scheduler: clean up odp_scheduler_if.h

2017-07-17 Thread Honnappa Nagarahalli
On 17 July 2017 at 14:46, Bill Fischofer wrote: > On Mon, Jul 17, 2017 at 4:23 AM, Elo, Matias (Nokia - FI/Espoo) < > matias@nokia.com> wrote: > >> Does this patch fix some real problem? At leas for me it only makes the >> scheduler interface harder to follow by

Re: [lng-odp] [PATCHv3] linux-gen: scheduler: clean up odp_scheduler_if.h

2017-07-17 Thread Honnappa Nagarahalli
On 17 July 2017 at 04:23, Elo, Matias (Nokia - FI/Espoo) wrote: > Does this patch fix some real problem? At leas for me it only makes the > scheduler interface harder to follow by spreading the functions into multiple > headers. I have said this again and again.

[lng-odp] [PATCH v1 1/1] test: ipc pktio: bind tasks and keep packet order

2017-07-17 Thread Github ODP bot
From: Maxim Uvarov Tasks which use odp time api have to be bind to cores. pktio_ipc1 and pktio_ipc2 apps expect counters inside packets incrementing in order - cache request in buffers to process such packet can not be allocated immediately. Single reorder of

[lng-odp] [PATCH v1 0/1] test: ipc pktio: bind tasks to cores

2017-07-17 Thread Github ODP bot
tasks which use odp time api have to be bind to cores. https://bugs.linaro.org/show_bug.cgi?id=3126 Signed-off-by: Maxim Uvarov maxim.uva...@linaro.org github /** Email created from pull request 79 (muvarov:master_ipc_bug3126) **

Re: [lng-odp] [PATCH API-NEXT v3 1/1] linux-gen: pktio: loop: reset packet subtype on loopback

2017-07-17 Thread Maxim Uvarov
On 07/12/17 12:00, Github ODP bot wrote: > From: Dmitry Eremin-Solenikov > > loop interface can get any kind of packets, but should output only basic > packets. Reset packet subtype on loopback. > > Signed-off-by: Dmitry Eremin-Solenikov

Re: [lng-odp] [PATCH v2 0/8] dpdk zero-copy pktio

2017-07-17 Thread Maxim Uvarov
Merged. Maxim. On 07/14/17 13:59, Github ODP bot wrote: > V2: > > Simplify mbuf_pool_create() arguments (Krishna) > Fix bug in dpdk_send() (Krishna) > Add Travis test (Maxim) > Destroy dpdk memory pool using a callback in odp_pool_destroy(). Fixes a bug > detected by Travis. > > This patch set

[lng-odp] [Linaro/odp] 9bb623: example: ipsec: fix build with OpenSSL located in ...

2017-07-17 Thread GitHub
Branch: refs/heads/master Home: https://github.com/Linaro/odp Commit: 9bb623dfe97590991dfe3ab04e1dcfb9ff745169 https://github.com/Linaro/odp/commit/9bb623dfe97590991dfe3ab04e1dcfb9ff745169 Author: Dmitry Eremin-Solenikov Date: 2017-07-18

[lng-odp] [Linaro/odp] c65cfd: linux-gen: packet: fix odp_packet_reset() implemen...

2017-07-17 Thread GitHub
Branch: refs/heads/master Home: https://github.com/Linaro/odp Commit: c65cfd73c6103d02f33a62099391a98cf60d098f https://github.com/Linaro/odp/commit/c65cfd73c6103d02f33a62099391a98cf60d098f Author: Matias Elo Date: 2017-07-18 (Tue, 18 Jul 2017) Changed

Re: [lng-odp] [PATCHv3] linux-gen: scheduler: clean up odp_scheduler_if.h

2017-07-17 Thread Bill Fischofer
On Mon, Jul 17, 2017 at 4:23 AM, Elo, Matias (Nokia - FI/Espoo) < matias@nokia.com> wrote: > Does this patch fix some real problem? At leas for me it only makes the > scheduler interface harder to follow by spreading the functions into > multiple headers. > Is this perhaps related to Yi's

Re: [lng-odp] [API-NEXT PATCH] api: ipsec: add warning status event

2017-07-17 Thread Bala Manoharan
Reviewed-by: Balasubramanian Manoharan On 14 July 2017 at 18:13, Petri Savolainen wrote: > Add status ID for warning messages. Outbound inline soft lifetime > expiration is currently the only source of these events. API spec > keeps

Re: [lng-odp] [PATCHv3] linux-gen: scheduler: clean up odp_scheduler_if.h

2017-07-17 Thread Elo, Matias (Nokia - FI/Espoo)
Does this patch fix some real problem? At leas for me it only makes the scheduler interface harder to follow by spreading the functions into multiple headers. -Matias > On 17 Jul 2017, at 10:26, Joyce Kong wrote: > > The modular scheduler interface in odp_schedule_if.h

Re: [lng-odp] [API-NEXT PATCH v1 1/1] pktio APIs to set the MAC address and MTU size.

2017-07-17 Thread Bogdan Pricope
Hi, In DPDK case, default MTU is 1500: /* * Set the default MTU. */ eth_dev->data->mtu = ETHER_MTU; where: #define ETHER_MTU \ (ETHER_MAX_LEN - ETHER_HDR_LEN - ETHER_CRC_LEN) /**< Ethernet MTU. */ So, if you need to jumbo, you have to set MTU yourself (I guess dpdk will

[lng-odp] [PATCHv3] linux-gen: scheduler: clean up odp_scheduler_if.h

2017-07-17 Thread Joyce Kong
The modular scheduler interface in odp_schedule_if.h includes functions from pktio and queue. It needs to be cleaned up. Signed-off-by: Joyce Kong --- platform/linux-generic/Makefile.am | 2 ++ platform/linux-generic/include/odp_packet_io_if.h | 23