Re: [dpdk-dev] [PATCH] doc/qos_meter: update application information

2018-10-20 Thread Varghese, Vipin
Hi Cristian, If rewording for 0 to GREEN was required option 'changes requested' would have been set. But since the state is been set to 'Rejected' I am confused what are the comments requesting for GREEN? Thanks Vipin Varghese > -Original Message- > From: Dumitrescu, Cristian > Sent:

[dpdk-dev] [PATCH 2/3] net/enic: add missing Tx offload flags

2018-10-20 Thread Hyong Youb Kim
The following commit has added a number of existing offload flags such as PKT_TX_IPV4 and PKT_TX_IPV6 to PKT_TX_OFFLOAD_MASK defined in rte_mbuf.h. That change breaks the enic driver's Tx prepare handler. commit ef28cfa73822 ("mbuf: fix Tx offload mask") The enic driver keeps the supported offloa

[dpdk-dev] [PATCH 1/3] net/enic: fix supported packet types

2018-10-20 Thread Hyong Youb Kim
The handler for dev_supported_ptypes_get currently returns null when the vectorized Rx handler is used. It is also missing tunnel packet types. Add the missing packet types to the supported list, and return the right list for the vectorized Rx handler. Fixes: 8a6ff33d6d36 ("net/enic: add AVX2 base

[dpdk-dev] [PATCH 3/3] doc: update release notes for the enic driver

2018-10-20 Thread Hyong Youb Kim
Fixes: 8a6ff33d6d36 ("net/enic: add AVX2 based vectorized Rx handler") Fixes: 86df6c4e2fce ("net/enic: support flow counter action") Fixes: 70401fd7784d ("net/enic: add VLAN and csum offloads to simple Tx handler") Fixes: c0aae00d7da0 ("net/enic: enable IOVA mode") Signed-off-by: Hyong Youb Kim

[dpdk-dev] [PATCH 0/3] net/enic: minor bug fixes

2018-10-20 Thread Hyong Youb Kim
Fix a couple bugs found during internal testing, and update the release notes, which was missing in previous patches. The second patch ("net/enic: add missing Tx offload flags") addresses a side effect from the following commit, which adds several previously existing flags (e.g. PKT_TX_IPV4) to PK