Re: [dpdk-dev] [PATCH] ethdev: force offloading API rules

2018-06-27 Thread Ferruh Yigit
On 6/27/2018 9:31 AM, Ido Goshen wrote: > I guess the error below relates to f52f1a6 ethdev: force offloading API rules Hi Ido, Yes it is related. This specific error is related to the requested DEV_RX_OFFLOAD_CRC_STRIP, and following patch should fix it because it adds to CRC strip capability t

[dpdk-dev] [PATCH] ethdev: force offloading API rules

2018-06-27 Thread Ido Goshen
I guess the error below relates to f52f1a6 ethdev: force offloading API rules cgs@ubuntu:~/dpdk-next-net$ sudo examples/l2fwd/build/l2fwd -c 3 -n1 --no-huge --vdev=eth_pcap0,iface=dummy0 --vdev=eth_pcap1,iface=dummy1 -- -p 3 -T 1 EAL: Detected 4 lcore(s) EAL: Detected 1 NUMA nodes EAL: Multi-pro

Re: [dpdk-dev] [PATCH] ethdev: force offloading API rules

2018-06-14 Thread Ferruh Yigit
On 6/13/2018 4:16 PM, Thomas Monjalon wrote: > 08/06/2018 22:01, Thomas Monjalon: >> 08/06/2018 21:51, Ferruh Yigit: >>> On 5/31/2018 1:44 PM, Ferruh Yigit wrote: The error path was disabled in previous release to let apps to be more flexible. But this release they are enabled,

Re: [dpdk-dev] [PATCH] ethdev: force offloading API rules

2018-06-13 Thread Thomas Monjalon
08/06/2018 22:01, Thomas Monjalon: > 08/06/2018 21:51, Ferruh Yigit: > > On 5/31/2018 1:44 PM, Ferruh Yigit wrote: > > > The error path was disabled in previous release to let apps to be more > > > flexible. > > > > > > But this release they are enabled, applications have to obey offload API > > >

Re: [dpdk-dev] [PATCH] ethdev: force offloading API rules

2018-06-09 Thread Shahaf Shuler
Friday, June 8, 2018 11:02 PM, Stephen Hemminger: > Subject: Re: [dpdk-dev] [PATCH] ethdev: force offloading API rules > > On Thu, 31 May 2018 13:44:30 +0100 > Ferruh Yigit wrote: > > > The error path was disabled in previous release to let apps to be more > > flexibl

Re: [dpdk-dev] [PATCH] ethdev: force offloading API rules

2018-06-09 Thread Andrew Rybchenko
On 06/08/2018 10:51 PM, Ferruh Yigit wrote: On 5/31/2018 1:44 PM, Ferruh Yigit wrote: The error path was disabled in previous release to let apps to be more flexible. But this release they are enabled, applications have to obey offload API rules otherwise they will get errors from following API

Re: [dpdk-dev] [PATCH] ethdev: force offloading API rules

2018-06-08 Thread Stephen Hemminger
On Thu, 31 May 2018 13:44:30 +0100 Ferruh Yigit wrote: > The error path was disabled in previous release to let apps to be more > flexible. > > But this release they are enabled, applications have to obey offload API > rules otherwise they will get errors from following APIs: > rte_eth_dev_confi

Re: [dpdk-dev] [PATCH] ethdev: force offloading API rules

2018-06-08 Thread Thomas Monjalon
08/06/2018 21:51, Ferruh Yigit: > On 5/31/2018 1:44 PM, Ferruh Yigit wrote: > > The error path was disabled in previous release to let apps to be more > > flexible. > > > > But this release they are enabled, applications have to obey offload API > > rules otherwise they will get errors from follow

Re: [dpdk-dev] [PATCH] ethdev: force offloading API rules

2018-06-08 Thread Ferruh Yigit
On 5/31/2018 1:44 PM, Ferruh Yigit wrote: > The error path was disabled in previous release to let apps to be more > flexible. > > But this release they are enabled, applications have to obey offload API > rules otherwise they will get errors from following APIs: > rte_eth_dev_configure > rte_eth_

[dpdk-dev] [PATCH] ethdev: force offloading API rules

2018-05-31 Thread Ferruh Yigit
The error path was disabled in previous release to let apps to be more flexible. But this release they are enabled, applications have to obey offload API rules otherwise they will get errors from following APIs: rte_eth_dev_configure rte_eth_rx_queue_setup rte_eth_tx_queue_setup Signed-off-by: Fe