Re: [dpdk-dev] [PATCH v3 2/2] common/octeontx2: add polling based response mbox message

2019-12-17 Thread Gavin Hu (Arm Technology China)
Hi Sunil, > -Original Message- > From: dev On Behalf Of Sunil Kumar Kori > Sent: Monday, December 16, 2019 6:40 PM > To: jer...@marvell.com; Nithin Dabilpuram ; > Vamsi Attunuru > Cc: dev@dpdk.org; Sunil Kumar Kori ; Harman Kalra > > Subject: [dpdk-dev] [PATCH v3 2/2] common/octeontx2:

Re: [dpdk-dev] checkpatch failing on map change

2019-12-17 Thread David Marchand
Hello, On Tue, Dec 17, 2019 at 8:36 AM Liron Himi wrote: > One of our drivers is using the rte_cfgfile and meson is failing on > 'rte_cfgfile_section_num_entries_by_index' which is undefined. > > After a few debug cycles, I found out that this function is missing from the > .map file. > > So I

Re: [dpdk-dev] [EXT] Re: checkpatch failing on map change

2019-12-17 Thread Liron Himi
Great. Thanks. Will send it soon Regards, Liron -Original Message- From: David Marchand Sent: Tuesday, 17 December 2019 10:15 To: Liron Himi ; Cristian Dumitrescu Cc: dpdk-dev ; Thomas Monjalon ; nhor...@tuxdriver.com; step...@networkplumber.org Subject: [EXT] Re: [dpdk-dev] checkpat

Re: [dpdk-dev] [RFC v2 2/2] net/vhost_dma: add vHost DMA driver

2019-12-17 Thread Maxime Coquelin
Hi Jiayu, On 11/1/19 9:54 AM, Jiayu Hu wrote: > This patch introduces a new PMD for DMA accelerated vhost-user, which > provides basic functionality of packet reception and transmission. This > PMD leverages librte_vhost to handle vhost messages, but it implements > own vring's enqueue and dequeue

[dpdk-dev] [PATCH] lib/cfgfile: update map file

2019-12-17 Thread lironh
From: Liron Himi rte_cfgfile_section_num_entries_by_index was missing from the map file. meson build failed when calling this function Signed-off-by: Liron Himi --- lib/librte_cfgfile/rte_cfgfile_version.map | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_cfgfile/rte_cfgfile_ver

Re: [dpdk-dev] [PATCH] net/mlx5: fix multiple flow table hash list

2019-12-17 Thread Matan Azrad
> From: Xiaoyu Min > The eth devices which share one ibv device only need one hash list of flow > table. > > Currently, flow table hash list is created per each eth device whatever > whether they share one ibv device or not. > > If the devices share one ibv device, the previously created hash

Re: [dpdk-dev] [PATCH] lib/cfgfile: update map file

2019-12-17 Thread David Marchand
Comment on the patch title, we never prefix titles with lib/. This is implicit and just makes the title longer. Please look at the dpdk git history. I would go with the 'cfgfile: ' prefix. On Tue, Dec 17, 2019 at 9:28 AM wrote: > > From: Liron Himi > > rte_cfgfile_section_num_entries_by_index

[dpdk-dev] [PATCH v2] cfgfile: update map file

2019-12-17 Thread lironh
From: Liron Himi rte_cfgfile_section_num_entries_by_index was missing from the map file. meson build failed when calling this function, due to linking a binary to cfgfile built as a shared library Fixes: 85ff364f3b ("build: align symbols with global ABI version") Signed-off-by: Liron Himi ---

[dpdk-dev] [PATCH v2 01/10] app/testpmd: parse flow command line for ESP

2019-12-17 Thread Bernard Iremonger
add ITEM_ESP add ITEM_ESP_SPI add debug to cmdline_flow.c Signed-off-by: Bernard Iremonger --- app/test-pmd/cmdline_flow.c | 37 ++--- 1 file changed, 34 insertions(+), 3 deletions(-) diff --git a/app/test-pmd/cmdline_flow.c b/app/test-pmd/cmdline_flow.c index 99

[dpdk-dev] [PATCH v2 04/10] net/i40e: improve RSS debug

2019-12-17 Thread Bernard Iremonger
improve RSS debug in i40e_ethdev.c Signed-off-by: Bernard Iremonger --- drivers/net/i40e/i40e_ethdev.c | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/drivers/net/i40e/i40e_ethdev.c b/drivers/net/i40e/i40e_ethdev.c index 5999c96..5f1cf8a 100644 --- a/drivers/net/i40e/

[dpdk-dev] [PATCH v2 00/10] net/i40e: ESP support

2019-12-17 Thread Bernard Iremonger
Add support for ESP flows to testpmd. Improve debug information in testpmd and the i40e PMD. Process ESP flows on the i40e Flow Director and RSS. Changes in V2: -- Moved change in app/test-pmd/config.c to a seperate patch. Added extra parameter to fill_ip6_head() in i40e_fdir.c set is_

[dpdk-dev] [PATCH v2 06/10] net/i40e: process ESP flows

2019-12-17 Thread Bernard Iremonger
Process ESP flows on Flow Director and RSS. add eth/ipv4/esp and eth/ipv6/esp patterns add eth/ipv4/udp/esp and eth/ipv6/esp/udp patterns update i40e_flow_parse_fdir_filter() add fill_ip6_head() add oip_type in filter add is_udp in filter use tenant_id in filter for spi handle ESP and AH pctypes i

[dpdk-dev] [PATCH v2 07/10] net/i40e: display Flow Director packet

2019-12-17 Thread Bernard Iremonger
call rte_hexdump in i40e_flow_fdir_construct_pkt() in i40e_fdir.c Signed-off-by: Bernard Iremonger --- drivers/net/i40e/i40e_fdir.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/net/i40e/i40e_fdir.c b/drivers/net/i40e/i40e_fdir.c index 410e5e7..7e70cab 100644 ---

[dpdk-dev] [PATCH v2 03/10] app/testpmd: dump Rx and Tx mbuf

2019-12-17 Thread Bernard Iremonger
add call to rte_pktmbuf_dump() in dump_pkt_burst in util.c Signed-off-by: Bernard Iremonger --- app/test-pmd/util.c | 1 + 1 file changed, 1 insertion(+) diff --git a/app/test-pmd/util.c b/app/test-pmd/util.c index b514be5..bf03873 100644 --- a/app/test-pmd/util.c +++ b/app/test-pmd/util.c @@ -

[dpdk-dev] [PATCH v2 02/10] app/testpmd: improve debug code

2019-12-17 Thread Bernard Iremonger
improve debug code in config.c Signed-off-by: Bernard Iremonger --- app/test-pmd/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test-pmd/config.c b/app/test-pmd/config.c index d599682..2753ec5 100644 --- a/app/test-pmd/config.c +++ b/app/test-pmd/config.c @@ -13

[dpdk-dev] [PATCH v2 08/10] librte_ethdev: add ESP and AH flow types to RSS

2019-12-17 Thread Bernard Iremonger
Add flow types for the following PCTYPE's in the DDP ipsec profile: 14: IPV6 ESP 15: IPV4 ESP 16: IPV6 AH 17: IPV4 AH 18: IPV6 UDP ESP 19: IPV4 UDP ESP Add the following RSS macros for IPsec: ETH_RSS_ESP ETH_RSS_AH ETH_RSS_IPSEC Signed-off-by: Bernard Iremonger --- lib/librte_ethdev/rte_ethdev.

[dpdk-dev] [PATCH v2 09/10] doc: release note for ESP

2019-12-17 Thread Bernard Iremonger
Release note for ESP support on the i40e PMD. Release note for ESP support on testpmd. Signed-off-by: Bernard Iremonger --- doc/guides/rel_notes/release_20_02.rst | 9 + 1 file changed, 9 insertions(+) diff --git a/doc/guides/rel_notes/release_20_02.rst b/doc/guides/rel_notes/release_2

[dpdk-dev] [PATCH v2 05/10] net/i40e: handle ESP tunnel

2019-12-17 Thread Bernard Iremonger
handle ESP tunnel in rte_pmd_i40e.c Signed-off-by: Bernard Iremonger --- drivers/net/i40e/rte_pmd_i40e.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/net/i40e/rte_pmd_i40e.c b/drivers/net/i40e/rte_pmd_i40e.c index fdcb1a4..b987346 100644 --- a/drivers/net/i40e/rt

[dpdk-dev] [PATCH v2 10/10] doc: update i40e user guide

2019-12-17 Thread Bernard Iremonger
Update the i40e user guide with ESP information. Signed-off-by: Bernard Iremonger --- doc/guides/nics/i40e.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/guides/nics/i40e.rst b/doc/guides/nics/i40e.rst index 38acf59..5cf34d9 100644 --- a/doc/guides/nics/i40e.rst +

Re: [dpdk-dev] [RFC v2 2/2] net/vhost_dma: add vHost DMA driver

2019-12-17 Thread Maxime Coquelin
On 12/17/19 9:27 AM, Maxime Coquelin wrote: > Hi Jiayu, > > On 11/1/19 9:54 AM, Jiayu Hu wrote: >> This patch introduces a new PMD for DMA accelerated vhost-user, which >> provides basic functionality of packet reception and transmission. This >> PMD leverages librte_vhost to handle vhost messa

[dpdk-dev] [PATCH v4 1/2] eal: add API to check if its interrupt context

2019-12-17 Thread Sunil Kumar Kori
From: Harman Kalra Added an API to check if current execution is in interrupt context. This will be helpful to handle nested interrupt cases. Signed-off-by: Harman Kalra Signed-off-by: Sunil Kumar Kori --- v3: - API Comment is updated as per man page. - Scope updated within the library/drive

[dpdk-dev] [PATCH v4 2/2] common/octeontx2: add polling based response mbox message

2019-12-17 Thread Sunil Kumar Kori
Currently otx2_mbox_get_rsp_xxx get response once AF driver interrupts after completion. But this funciton will get into deadlock if called in another interrupt context. To avoid it, implemented another version of this function which polls on dedicated memory for a given timeout. Also after clear

Re: [dpdk-dev] [EXT] Re: [PATCH] bus/pci: restricted bus scanning to allowed devices

2019-12-17 Thread Sunil Kumar Kori
Regards Sunil Kumar Kori >-Original Message- >From: Stephen Hemminger >Sent: Monday, December 16, 2019 9:43 PM >To: Sunil Kumar Kori >Cc: dev@dpdk.org >Subject: [EXT] Re: [dpdk-dev] [PATCH] bus/pci: restricted bus scanning to >allowed devices > >External Email > >-

Re: [dpdk-dev] [PATCH v2] cfgfile: update map file

2019-12-17 Thread Dumitrescu, Cristian
> -Original Message- > From: lir...@marvell.com > Sent: Tuesday, December 17, 2019 11:52 AM > To: dev@dpdk.org > Cc: Dumitrescu, Cristian ; sta...@dpdk.org; > Liron Himi > Subject: [PATCH v2] cfgfile: update map file > > From: Liron Himi > > rte_cfgfile_section_num_entries_by_index

[dpdk-dev] [PATCH] event/dsw: immediately flush buffers on zero-sized enqueue

2019-12-17 Thread Mattias Rönnblom
Fix DSW's rte_event_enqueue_burst(), so that a call with a zero-sized event array immediately flushes the port's output buffers. Prior to this patch, the flush operation would be deferred to the next enqueue or dequeue call, which is inconsistent with DSW documentation. Fixes: 1c8e3caa3bfb ("event

Re: [dpdk-dev] [PATCH v3 2/2] common/octeontx2: add polling based response mbox message

2019-12-17 Thread Jerin Jacob
> > +mbox_poll(struct otx2_mbox *mbox, uint32_t wait) > > +{ > > + uint32_t timeout = 0, sleep = 1; > > + uint64_t rsp_reg = 0; > > + uintptr_t reg_addr; > > + > > + reg_addr = mbox->reg_base + mbox->intr_offset; > > + while (!rsp_reg) { > The first iteration of (!rsp_reg) alway

Re: [dpdk-dev] [EXT] Re: [PATCH] ethdev: allow multiple security sessions to use one rte flow

2019-12-17 Thread Medvedkin, Vladimir
Hi Anoob, On 16/12/2019 16:16, Anoob Joseph wrote: Hi Vladimir, Please see inline. Thanks, Anoob -Original Message- From: Medvedkin, Vladimir Sent: Monday, December 16, 2019 9:29 PM To: Anoob Joseph ; Ananyev, Konstantin ; Akhil Goyal ; Adrien Mazarguil ; Doherty, Declan ; Yigit, Fe

[dpdk-dev] [PATCH] ci: update travis to use bionic

2019-12-17 Thread Kevin Laatz
Currently, the Travis CI is using Ubuntu 16.04 LTS (Xenial) which is becoming increasingly outdated. This patch updates Travis to use Ubuntu 18.04 LTS (Bionic) which will give us the benefit of more up-to-date packages being availble and the newer features that come with them. Signed-off-by: Kevin

Re: [dpdk-dev] [PATCH] net/mlx5: fix multiple flow table hash list

2019-12-17 Thread Raslan Darawsheh
Hi, > -Original Message- > From: dev On Behalf Of Xiaoyu Min > Sent: Monday, December 16, 2019 11:28 AM > To: Ori Kam ; Matan Azrad ; > Shahaf Shuler ; Slava Ovsiienko > > Cc: dev@dpdk.org; sta...@dpdk.org; Zhike Wang > Subject: [dpdk-dev] [PATCH] net/mlx5: fix multiple flow table hash

Re: [dpdk-dev] [PATCH v2] cryptodev: add chacha20-poly1305 aead algorithm

2019-12-17 Thread Kusztal, ArkadiuszX
> -Original Message- > From: Trahe, Fiona > Sent: Friday, December 6, 2019 7:17 PM > To: Kusztal, ArkadiuszX ; dev@dpdk.org > Cc: akhil.go...@nxp.com; Trahe, Fiona > Subject: RE: [PATCH v2] cryptodev: add chacha20-poly1305 aead algorithm > > > > > -Original Message- > > From

[dpdk-dev] [PATCH] meter: move RFC4115 trTCM APIs as none experimental

2019-12-17 Thread Eelco Chaudron
Moved RFC4115 APIs to none experimental as they have been there since 19.02. Also, these APIs are the same as the none RFC4115 APIs. Signed-off-by: Eelco Chaudron --- lib/librte_meter/rte_meter.h |6 -- lib/librte_meter/rte_meter_version.map |4 ++-- 2 files changed, 2 inse

[dpdk-dev] Master compilation failures in Intel CI

2019-12-17 Thread David Marchand
Hello, Can someone from Intel look at the build failures happening since 12/12 ? http://mails.dpdk.org/archives/test-report/2019-December/110768.html Thanks. -- David Marchand

Re: [dpdk-dev] [PATCH v2] net/i40e: always re-program promiscuous mode on VF interface

2019-12-17 Thread Eelco Chaudron
Trying again? On 4 Dec 2019, at 16:18, Eelco Chaudron wrote: Any update on this patch? On 19 Nov 2019, at 14:45, Eelco Chaudron wrote: During a kernel PF reset, this event is propagated to the VF. The DPDK VF PMD will execute the reset task before the PF is done with his. This results in th

Re: [dpdk-dev] [PATCH] meter: move RFC4115 trTCM APIs as none experimental

2019-12-17 Thread Dumitrescu, Cristian
> -Original Message- > From: Eelco Chaudron > Sent: Tuesday, December 17, 2019 1:08 PM > To: Dumitrescu, Cristian > Cc: sta...@dpdk.org; dev@dpdk.org > Subject: [PATCH] meter: move RFC4115 trTCM APIs as none experimental > > Moved RFC4115 APIs to none experimental as they have been the

[dpdk-dev] [PATCH] build: explicitly enable SSE4 for x86 meson builds

2019-12-17 Thread Bruce Richardson
If the compiler does not recognise the specific CPU when building with the default "native" machine type, SSE4.2 instructions can be missing, causing a build error. Rather than advising the user to change the machine type, we can just turn on SSE4.2 directly. This can prevent issues with running au

Re: [dpdk-dev] [EXT] Re: [PATCH] ethdev: allow multiple security sessions to use one rte flow

2019-12-17 Thread Anoob Joseph
Hi Vladimir, Please see inline. Thanks, Anoob > -Original Message- > From: Medvedkin, Vladimir > Sent: Tuesday, December 17, 2019 4:51 PM > To: Anoob Joseph ; Ananyev, Konstantin > ; Akhil Goyal ; Adrien > Mazarguil ; Doherty, Declan > ; Yigit, Ferruh ; Jerin > Jacob > Kollanukkaran ;

Re: [dpdk-dev] [PATCH] ci: update travis to use bionic

2019-12-17 Thread Aaron Conole
Kevin Laatz writes: > Currently, the Travis CI is using Ubuntu 16.04 LTS (Xenial) which is > becoming increasingly outdated. This patch updates Travis to use Ubuntu > 18.04 LTS (Bionic) which will give us the benefit of more up-to-date > packages being availble and the newer features that come wi

Re: [dpdk-dev] [PATCH] ci: update travis to use bionic

2019-12-17 Thread Laatz, Kevin
On 17/12/2019 14:44, Aaron Conole wrote: Kevin Laatz writes: Currently, the Travis CI is using Ubuntu 16.04 LTS (Xenial) which is becoming increasingly outdated. This patch updates Travis to use Ubuntu 18.04 LTS (Bionic) which will give us the benefit of more up-to-date packages being availble

Re: [dpdk-dev] [PATCH] ci: update travis to use bionic

2019-12-17 Thread Andrzej Ostruszka
On 12/17/19 12:42 PM, Kevin Laatz wrote: > Currently, the Travis CI is using Ubuntu 16.04 LTS (Xenial) which is > becoming increasingly outdated. This patch updates Travis to use Ubuntu > 18.04 LTS (Bionic) which will give us the benefit of more up-to-date > packages being availble and the newer fe

[dpdk-dev] BCM57414 VF Mode: max_rx_em_flows value is inconsistent

2019-12-17 Thread Christophe Grosse
Thank you for your answer. On 12/11/19 6:45 PM, Ajit Khaparde wrote: On master, I see that the new calculation for the number of L2 context has been restricted to Whitney chip family. Anyone knows if the chip/FW I am using is compatible with this new calculation ? By the way, I tried to u

Re: [dpdk-dev] checkpatch failing on map change

2019-12-17 Thread Stephen Hemminger
On Tue, 17 Dec 2019 07:36:20 + Liron Himi wrote: > Hi, > > > One of our drivers is using the rte_cfgfile and meson is failing on > 'rte_cfgfile_section_num_entries_by_index' which is undefined. > > After a few debug cycles, I found out that this function is missing from the > .map file.

[dpdk-dev] [PATCH v4 2/2] common/octeontx2: add polling based response mbox message

2019-12-17 Thread Sunil Kumar Kori
Currently otx2_mbox_get_rsp_xxx get response once AF driver interrupts after completion. But this funciton will get into deadlock if called in another interrupt context. To avoid it, implemented another version of this function which polls on dedicated memory for a given timeout. Also after clear

[dpdk-dev] [PATCH v4 1/2] eal: add API to check if its interrupt context

2019-12-17 Thread Sunil Kumar Kori
From: Harman Kalra Added an API to check if current execution is in interrupt context. This will be helpful to handle nested interrupt cases. Signed-off-by: Harman Kalra Signed-off-by: Sunil Kumar Kori --- v3: - API Comment is updated as per man page. - Scope updated within the library/drive

Re: [dpdk-dev] [EXT] Re: [PATCH] ethdev: allow multiple security sessions to use one rte flow

2019-12-17 Thread Medvedkin, Vladimir
Hi Anoob, On 17/12/2019 14:24, Anoob Joseph wrote: Hi Vladimir, Please see inline. Thanks, Anoob -Original Message- From: Medvedkin, Vladimir Sent: Tuesday, December 17, 2019 4:51 PM To: Anoob Joseph ; Ananyev, Konstantin ; Akhil Goyal ; Adrien Mazarguil ; Doherty, Declan ; Yigit, F

Re: [dpdk-dev] [PATCH] ci: update travis to use bionic

2019-12-17 Thread Aaron Conole
"Laatz, Kevin" writes: > On 17/12/2019 14:44, Aaron Conole wrote: >> Kevin Laatz writes: >> >>> Currently, the Travis CI is using Ubuntu 16.04 LTS (Xenial) which is >>> becoming increasingly outdated. This patch updates Travis to use Ubuntu >>> 18.04 LTS (Bionic) which will give us the benefit o

Re: [dpdk-dev] [PATCH v3 02/17] net/ionic: add hardware structures definitions

2019-12-17 Thread Alfredo Cardigliano
I will add "BSD-3-Clause" to ionic_if.h with the next V4 patch-set coming soon. I will keep "GPL-2.0 OR BSD-3-Clause" for the other files as in my understanding that seems to work. Thank you Alfredo > On 13 Dec 2019, at 11:25, Hemant Agrawal wrote: > > Hi Ferruh > >> -Original Message-

[dpdk-dev] [PATCH] rte_flow: fix docbook comment

2019-12-17 Thread Stephen Hemminger
Missing asterisk so that comment is not seen by doxygen. Fixes: 9a2f44c76207 ("ethdev: add flow tag") Cc: viachesl...@mellanox.com Cc: sta...@dpdk.org Signed-off-by: Stephen Hemminger --- lib/librte_ethdev/rte_flow.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_

Re: [dpdk-dev] [PATCH v2] net/i40e: always re-program promiscuous mode on VF interface

2019-12-17 Thread Zhang, Xiao
> -Original Message- > From: Eelco Chaudron [mailto:echau...@redhat.com] > Sent: Tuesday, November 19, 2019 9:45 PM > To: Xing, Beilei ; Zhang, Qi Z > Cc: Zhang, Xiao ; dev@dpdk.org > Subject: [PATCH v2] net/i40e: always re-program promiscuous mode on VF > interface > > During a kernel P

Re: [dpdk-dev] [PATCH] net/iavf: add TSO offload use basic path

2019-12-17 Thread Zhang, Qi Z
> -Original Message- > From: dev On Behalf Of taox@intel.com > Sent: Tuesday, December 3, 2019 11:28 PM > To: Wu, Jingjing ; Lu, Wenzhuo > > Cc: dev@dpdk.org; Zhu, TaoX > Subject: [dpdk-dev] [PATCH] net/iavf: add TSO offload use basic path > > From: Zhu Tao > > IAVF choices VEC

Re: [dpdk-dev] [PATCH] net/i40e: fix port close in FreeBSD

2019-12-17 Thread Ye Xiaolong
On 12/11, Chenxu Di wrote: >FreeBSD OS doesn't support igb_uio interrupt, so it will fail when >unregister the interrupt callback in port close. We can fix the issue by >passing -ENOENT when check the return value of unregister interrupt >callback function. > >Fixes: ac89d46096d5 ("net/i40e: releas

Re: [dpdk-dev] [PATCH] net/iavf: add TSO offload use basic path

2019-12-17 Thread Ye Xiaolong
On 12/18, Zhang, Qi Z wrote: > > >> -Original Message- >> From: dev On Behalf Of taox@intel.com >> Sent: Tuesday, December 3, 2019 11:28 PM >> To: Wu, Jingjing ; Lu, Wenzhuo >> >> Cc: dev@dpdk.org; Zhu, TaoX >> Subject: [dpdk-dev] [PATCH] net/iavf: add TSO offload use basic path >>

[dpdk-dev] [PATCH v3] net/virtio-user: fix packed ring server mode

2019-12-17 Thread Xuan Ding
This patch fixes the situation where datapath does not work properly when vhost reconnects to virtio in server mode with packed ring. Currently, virtio and vhost share memory of vring. For split ring, vhost can read the status of discriptors directly from the available ring and the used ring durin

Re: [dpdk-dev] [PATCH v3] net/virtio-user: fix packed ring server mode

2019-12-17 Thread Ding, Xuan
> -Original Message- > From: Ye, Xiaolong > Sent: Wednesday, December 18, 2019 10:25 AM > To: Ding, Xuan > Cc: maxime.coque...@redhat.com; Bie, Tiwei ; Wang, > Zhihong ; Liu, Yong ; > dev@dpdk.org; sta...@dpdk.org > Subject: Re: [dpdk-dev] [PATCH v3] net/virtio-user: fix packed ring se

Re: [dpdk-dev] [PATCH] net/ixgbe: fix ixgbevf link status

2019-12-17 Thread Ye Xiaolong
On 12/17, Lunyuan Cui wrote: >The link status for ixgbevf is not correct when PF link up. >IXGBE_ESDP register is only used when media type is fiber. > >Fixes: 1ca05831b9be ("net/ixgbe: fix link status") >Cc: sta...@dpdk.org > >Signed-off-by: Lunyuan Cui >--- > drivers/net/ixgbe/ixgbe_ethdev.c | 8

Re: [dpdk-dev] [PATCH v3 2/2] common/octeontx2: add polling based response mbox message

2019-12-17 Thread Gavin Hu
Hi Jerin, > -Original Message- > From: Jerin Jacob > Sent: Tuesday, December 17, 2019 7:14 PM > To: Gavin Hu > Cc: Sunil Kumar Kori ; jer...@marvell.com; Nithin > Dabilpuram ; Vamsi Attunuru > ; dev@dpdk.org; Harman Kalra > ; Honnappa Nagarahalli > ; nd > Subject: Re: [dpdk-dev] [PATCH

Re: [dpdk-dev] [RFC v2 2/2] net/vhost_dma: add vHost DMA driver

2019-12-17 Thread Hu, Jiayu
Hi Maxime, Thanks for your suggestions. Replies are inline. > -Original Message- > From: Maxime Coquelin > Sent: Tuesday, December 17, 2019 6:20 PM > To: Hu, Jiayu ; dev@dpdk.org > Cc: Bie, Tiwei ; Wang, Zhihong > ; Richardson, Bruce > ; Honnappa Nagarahalli > ; Hemant Agrawal > ; jer...

Re: [dpdk-dev] [PATCH v3] net/ixgbe: fix port can not link up in FreeBSD

2019-12-17 Thread Ye Xiaolong
On 12/16, Lunyuan Cui wrote: >In FreeBSD environment, nic_uio drivers do not support interrupts, >rte_intr_callback_register() will fail to register interrupts. >We can not make link status to change from down to up by interrupt >callback. So we need to wait for the controller to acquire link >when

Re: [dpdk-dev] [PATCH v4 2/2] common/octeontx2: add polling based response mbox message

2019-12-17 Thread Gavin Hu
Hi Sunil, > -Original Message- > From: dev On Behalf Of Sunil Kumar Kori > Sent: Wednesday, December 18, 2019 12:53 AM > To: jer...@marvell.com; Nithin Dabilpuram ; > Vamsi Attunuru > Cc: dev@dpdk.org; Sunil Kumar Kori ; Harman Kalra > > Subject: [dpdk-dev] [PATCH v4 2/2] common/octeont

Re: [dpdk-dev] [PATCH v2] net/i40e: always re-program promiscuous mode on VF interface

2019-12-17 Thread Ye Xiaolong
On 12/18, Zhang, Xiao wrote: > >> -Original Message- >> From: Eelco Chaudron [mailto:echau...@redhat.com] >> Sent: Tuesday, November 19, 2019 9:45 PM >> To: Xing, Beilei ; Zhang, Qi Z >> Cc: Zhang, Xiao ; dev@dpdk.org >> Subject: [PATCH v2] net/i40e: always re-program promiscuous mode on V

Re: [dpdk-dev] [RFC v2 2/2] net/vhost_dma: add vHost DMA driver

2019-12-17 Thread Hu, Jiayu
Hi Maxime, Replies are inline. > -Original Message- > From: Maxime Coquelin > Sent: Tuesday, December 17, 2019 4:27 PM > To: Hu, Jiayu ; dev@dpdk.org > Cc: Bie, Tiwei ; Wang, Zhihong > ; Richardson, Bruce > > Subject: Re: [RFC v2 2/2] net/vhost_dma: add vHost DMA driver > > Hi Jiayu, >

Re: [dpdk-dev] [EXT] Re: [PATCH] ethdev: allow multiple security sessions to use one rte flow

2019-12-17 Thread Anoob Joseph
Hi Vladimir, Please see inline. Thanks, Anoob > -Original Message- > From: Medvedkin, Vladimir > Sent: Tuesday, December 17, 2019 11:14 PM > To: Anoob Joseph ; Ananyev, Konstantin > ; Akhil Goyal ; > Adrien Mazarguil ; Doherty, Declan > ; Yigit, Ferruh ; Jerin > Jacob Kollanukkaran ; Th

[dpdk-dev] [PATCH 0/2] add travis ci support for aarch64

2019-12-17 Thread Ruifeng Wang
This patch set is to enable native aarch64 build in Travis CI. It leverages Travis CI multi arch support. As the first step, compilation jobs are added. Unit test is not added for now due to service limitation. We are planning to run unit test with no-huge in future. Ruifeng Wang (2): ci: add

[dpdk-dev] [PATCH 2/2] devtools: add path to additional shared object files

2019-12-17 Thread Ruifeng Wang
librte_mempool_ring.so and librte_pmd_null.so are in 'drivers' folder. Add 'drivers' into LD_LIBRARY_PATH so that testpmd can find and make use of these shared libraries. Signed-off-by: Ruifeng Wang Reviewed-by: Gavin Hu --- devtools/test-null.sh | 2 +- 1 file changed, 1 insertion(+), 1 deleti

[dpdk-dev] [PATCH 1/2] ci: add travis ci support for aarch64

2019-12-17 Thread Ruifeng Wang
Add Travis compilation jobs for aarch64. gcc/clang compilations for static/shared libraries are added. Some limitations for current aarch64 Travis support: 1. Container is used. Huge page is not available due to security reason. 2. Missing kernel header package in Xenial distribution. Solutions t

[dpdk-dev] [PATCH v1] net/ice: add new device IDs

2019-12-17 Thread Ting Xu
This patch added new device IDs for C822N. Signed-off-by: Ting Xu --- drivers/net/ice/ice_ethdev.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/net/ice/ice_ethdev.c b/drivers/net/ice/ice_ethdev.c index de189daba..2cbd82c94 100644 --- a/drivers/net/ice/ice_ethdev.c +++ b/drivers

[dpdk-dev] [PATCH v6 2/6] test/bitops: add bit operation test case

2019-12-17 Thread Joyce Kong
Add test cases for set bit, clear bit, test and set bit, test and clear bit operations. Signed-off-by: Joyce Kong Reviewed-by: Gavin Hu Reviewed-by: Phil Yang --- app/test/Makefile | 1 + app/test/autotest_data.py | 6 + app/test/meson.build | 2 + app/test/test_bitops.c

[dpdk-dev] [PATCH v6 1/6] lib/eal: implement the family of rte bit operation APIs

2019-12-17 Thread Joyce Kong
There are a lot functions of bit operations scattered and duplicated in PMDs, consolidating them into a common API family is necessary. Furthermore, when the bit operation is applied to the IO devices, use __ATOMIC_ACQ_REL to ensure the ordering for io bit operation. Signed-off-by: Joyce Kong Rev

[dpdk-dev] [PATCH v6 3/6] net/axgbe: use common rte bit operation APIs instead

2019-12-17 Thread Joyce Kong
Remove its own bit operation APIs and use the common one, this can reduce the code duplication largely. Signed-off-by: Joyce Kong Reviewed-by: Gavin Hu --- drivers/net/axgbe/axgbe_common.h | 29 + drivers/net/axgbe/axgbe_ethdev.c | 14 +++--- drivers/net/axgb

[dpdk-dev] [PATCH v6 4/6] net/bnx2x: use common rte bit operation APIs instead

2019-12-17 Thread Joyce Kong
Remove its own bit operation APIs and use the common one, this can reduce the code duplication largely. Signed-off-by: Joyce Kong Reviewed-by: Gavin Hu --- drivers/net/bnx2x/bnx2x.c| 232 +++ drivers/net/bnx2x/bnx2x.h| 10 +- drivers/net/bnx2x/ec

[dpdk-dev] [PATCH v6 0/6] implement common rte bit operation APIs in PMDs

2019-12-17 Thread Joyce Kong
There are a lot functions of bit operations scattered in PMDs, consolidate them into a common API family and applied in different PMDs to reduce code duplication. v6: Trim 'unsigned long' in PMDs down to 'uint32_t', as on mainstream 64-bit OS, 'unsigned long' is 64-bit in size, but the 32-bit OS

[dpdk-dev] [PATCH v6 5/6] net/qede: use common rte bit operation APIs instead

2019-12-17 Thread Joyce Kong
Remove its own bit operation APIs and use the common one, this can reduce the code duplication largely. Signed-off-by: Joyce Kong Reviewed-by: Gavin Hu --- drivers/net/qede/base/bcm_osal.c | 22 +- drivers/net/qede/base/bcm_osal.h | 14 +--- drivers/net

[dpdk-dev] [PATCH v6 6/6] net/hinic: use common rte bit operation APIs instead

2019-12-17 Thread Joyce Kong
Remove its own bit operation APIs and use the common one, this can reduce the code duplication largely. Signed-off-by: Joyce Kong Reviewed-by: Gavin Hu --- drivers/net/hinic/Makefile| 1 + drivers/net/hinic/base/hinic_compat.h | 33 + drivers/net/hin

Re: [dpdk-dev] [PATCH] net/ixgbe: enable jumbo frame for VF

2019-12-17 Thread Zhao1, Wei
Acked-by: Wei Zhao > -Original Message- > From: dev On Behalf Of Junyu Jiang > Sent: Tuesday, December 3, 2019 4:03 AM > To: dev@dpdk.org > Cc: Lu, Wenzhuo ; Yang, Qiming > ; Jiang, JunyuX > Subject: [dpdk-dev] [PATCH] net/ixgbe: enable jumbo frame for VF > > Enable jumbo frame for VF

Re: [dpdk-dev] [PATCH v3] vhost: add config change slave msg support

2019-12-17 Thread Li Feng
Thanks. Tiwei Bie 于2019年12月16日周一 下午1:05写道: > > On Thu, Dec 05, 2019 at 01:38:33PM +0800, Li Feng wrote: > > This msg is used to notify qemu that should get the config of backend. > > > > For example, vhost-user-blk uses this msg to notify guest os the > > compacity of backend has changed. > > cap

Re: [dpdk-dev] [PATCH] rte_flow: fix docbook comment

2019-12-17 Thread Slava Ovsiienko
Acked-by: Viacheslav Ovsiienko Thanks, Slava > -Original Message- > From: Stephen Hemminger > Sent: Wednesday, December 18, 2019 3:13 > To: dev@dpdk.org > Cc: Stephen Hemminger ; Slava Ovsiienko > ; sta...@dpdk.org > Subject: [PATCH] rte_flow: fix docbook comment > > Missing asterisk s

Re: [dpdk-dev] [PATCH v6 0/6] implement common rte bit operation APIs in PMDs

2019-12-17 Thread Gavin Hu
Hi Maintainers, This series of patches is to consolidate the rte bitops APIs(to reduce duplication) and aim for use by all PMDs. In this stage, a few of PMDs you maintained were piloted to stabilize the APIs. Before expansion to all PMDs, could you please shout out your opinions? The APIs hav

[dpdk-dev] [PATCH v5 2/2] common/octeontx2: add polling based response mbox message

2019-12-17 Thread Sunil Kumar Kori
Currently otx2_mbox_get_rsp_xxx get response once AF driver interrupts after completion. But this funciton will get into deadlock if called in another interrupt context. To avoid it, implemented another version of this function which polls on dedicated memory for a given timeout. Also after clear

[dpdk-dev] [PATCH v5 1/2] eal: add API to check if its interrupt context

2019-12-17 Thread Sunil Kumar Kori
From: Harman Kalra Added an API to check if current execution is in interrupt context. This will be helpful to handle nested interrupt cases. Signed-off-by: Harman Kalra Signed-off-by: Sunil Kumar Kori --- v5: - Fix shared library compilation error v4: - No changes. v3: - API Comment is upd

Re: [dpdk-dev] [PATCH v3] net/virtio-user: fix packed ring server mode

2019-12-17 Thread Ye Xiaolong
Hi, Xuan On 12/18, Xuan Ding wrote: >This patch fixes the situation where datapath does not work properly when >vhost reconnects to virtio in server mode with packed ring. > >Currently, virtio and vhost share memory of vring. For split ring, vhost >can read the status of discriptors directly from

[dpdk-dev] [PATCH] net/mlx5: remove redundant define of LRO masks

2019-12-17 Thread Dekel Peled
Bit-masks MLX5_FLOW_LAYER_IPV4_LRO and MLX5_FLOW_LAYER_IPV6_LRO were added during work on LRO. They are not used anywhere in current code. This patch removes these redundant definitions. Signed-off-by: Dekel Peled Acked-by: Matan Azrad --- drivers/net/mlx5/mlx5_flow.h | 6 -- 1 file chang

[dpdk-dev] [PATCH] net/mlx5: add define of LRO segment chunk size

2019-12-17 Thread Dekel Peled
Maximal size of coalesced LRO segment is set in TIR attributes as number of chunks of size 256 bytes each. Current implementation uses the hardcoded value 256 in several places. This patch adds a definition for this value, and uses this definition in all relevant places. A debug message is added t