RE: [PATCH] net/cpfl: reset devargs during the first probe

2023-10-11 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Thursday, October 12, 2023 12:47 AM > To: Wu, Jingjing > Cc: dev@dpdk.org; Xing, Beilei > Subject: [PATCH] net/cpfl: reset devargs during the first probe > > From: Beilei Xing > Reset devargs during

RE: [PATCH v2] net/cpfl: update CP channel API

2023-10-18 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Thursday, October 19, 2023 6:58 PM > To: Wu, Jingjing ; Zhang, Yuying > > Cc: dev@dpdk.org; Xing, Beilei > Subject: [PATCH v2] net/cpfl: update CP channel API > > From: Beilei Xing > > Update the c

RE: [PATCH v4 07/15] common/idpf: add irq map/unmap

2023-01-31 Thread Wu, Jingjing
> @@ -247,8 +247,21 @@ idpf_vport_init(struct idpf_vport *vport, > goto err_rss_lut; > } > > + /* recv_vectors is used for VIRTCHNL2_OP_ALLOC_VECTORS response, > + * reserve maximum size for it now, may need optimization in future. > + */ > + vport->recv_vecto

RE: [PATCH v4 09/15] common/idpf: add vport info initialization

2023-01-31 Thread Wu, Jingjing
> +int > +idpf_create_vport_info_init(struct idpf_vport *vport, > + struct virtchnl2_create_vport *vport_info) > +{ > + struct idpf_adapter *adapter = vport->adapter; > + > + vport_info->vport_type = rte_cpu_to_le_16(VIRTCHNL2_VPORT_TYPE_DEFAULT); > + if (adapter

RE: [PATCH v3 1/6] common/idpf: add hw statistics

2023-02-01 Thread Wu, Jingjing
> @@ -327,6 +407,11 @@ idpf_dev_start(struct rte_eth_dev *dev) > goto err_vport; > } > > + if (idpf_dev_stats_reset(dev)) { > + PMD_DRV_LOG(ERR, "Failed to reset stats"); > + goto err_vport; If stats reset fails, will block the start process and rol

RE: [PATCH v3 2/6] common/idpf: add RSS set/get ops

2023-02-01 Thread Wu, Jingjing
> +static int idpf_config_rss_hf(struct idpf_vport *vport, uint64_t rss_hf) > +{ > + uint64_t hena = 0, valid_rss_hf = 0; According to the coding style, only the last variable on a line should be initialized. > + int ret = 0; > + uint16_t i; > + > + /** > + * RTE_ETH_RSS_IPV4

RE: [PATCH v3 3/6] common/idpf: support single q scatter RX datapath

2023-02-01 Thread Wu, Jingjing
> > +uint16_t > +idpf_singleq_recv_scatter_pkts(void *rx_queue, struct rte_mbuf **rx_pkts, > +uint16_t nb_pkts) > +{ > + struct idpf_rx_queue *rxq = rx_queue; > + volatile union virtchnl2_rx_desc *rx_ring = rxq->rx_ring; > + volatile union virtchnl2_rx_desc

RE: [PATCH v3 5/6] common/idpf: add alarm to support handle vchnl message

2023-02-01 Thread Wu, Jingjing
> @@ -83,12 +84,49 @@ static int > idpf_dev_link_update(struct rte_eth_dev *dev, >__rte_unused int wait_to_complete) > { > + struct idpf_vport *vport = dev->data->dev_private; > struct rte_eth_link new_link; > > memset(&new_link, 0, sizeof(new_link)); > > -

RE: [PATCH v3 5/6] common/idpf: add alarm to support handle vchnl message

2023-02-02 Thread Wu, Jingjing
> > > + > > > new_link.link_duplex = RTE_ETH_LINK_FULL_DUPLEX; > > > + new_link.link_status = vport->link_up ? RTE_ETH_LINK_UP : > > > + RTE_ETH_LINK_DOWN; > > > new_link.link_autoneg = !(dev->data->dev_conf.link_speeds & > > > RTE_ETH_LINK_SPEED_FIXED); > >

RE: [PATCH v4 02/10] net/cpfl: introduce interface structure

2023-09-08 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Friday, September 8, 2023 7:17 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; Liu, Mingxia ; Xing, Beilei > ; Zhang, Qi Z > Subject: [PATCH v4 02/10] net/cpfl: introduce interface structure > > From: Beile

RE: [PATCH v4 03/10] net/cpfl: refine handle virtual channel message

2023-09-08 Thread Wu, Jingjing
> -static struct idpf_vport * > +static struct cpfl_vport * > cpfl_find_vport(struct cpfl_adapter_ext *adapter, uint32_t vport_id) > { > - struct idpf_vport *vport = NULL; > + struct cpfl_vport *vport = NULL; > int i; > > for (i = 0; i < adapter->cur_vport_nb; i++) { > -

RE: [PATCH v4 08/10] net/cpfl: support vport list/info get

2023-09-08 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Friday, September 8, 2023 7:17 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; Liu, Mingxia ; Xing, Beilei > > Subject: [PATCH v4 08/10] net/cpfl: support vport list/info get > > From: Beilei Xing

RE: [PATCH v4 09/10] net/cpfl: create port representor

2023-09-08 Thread Wu, Jingjing
> + /* warning if no match vport detected */ > + if (!matched) > + PMD_INIT_LOG(WARNING, "No matched vport for > representor %s " > + "creation will be deferred when > vport is detected", > +

RE: [PATCH v4 10/10] net/cpfl: support link update for representor

2023-09-08 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Friday, September 8, 2023 7:17 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; Liu, Mingxia ; Xing, Beilei > > Subject: [PATCH v4 10/10] net/cpfl: support link update for representor > > From: Beilei Xing &

RE: [PATCH v3 1/9] net/cpfl: parse flow parser file in devargs

2023-09-10 Thread Wu, Jingjing
> -Original Message- > From: Qiao, Wenjing > Sent: Wednesday, September 6, 2023 5:34 PM > To: Zhang, Yuying ; dev@dpdk.org; Zhang, Qi Z > ; Wu, Jingjing ; Xing, Beilei > > Cc: Liu, Mingxia ; Qiao, Wenjing > > Subject: [PATCH v3 1/9] net/cpfl: parse

RE: [PATCH v3 2/9] net/cpfl: add flow json parser

2023-09-10 Thread Wu, Jingjing
> +static int > +cpfl_json_object_to_int(json_object *object, const char *name, int *value) > +{ > + json_object *subobject; > + > + if (!object) { > + PMD_DRV_LOG(ERR, "object doesn't exist."); > + return -EINVAL; > + } > + subobject = json_object_object_get

RE: [PATCH v3 4/9] net/cpfl: setup ctrl path

2023-09-10 Thread Wu, Jingjing
> -Original Message- > From: Qiao, Wenjing > Sent: Wednesday, September 6, 2023 5:34 PM > To: Zhang, Yuying ; dev@dpdk.org; Zhang, Qi Z > ; Wu, Jingjing ; Xing, Beilei > > Cc: Liu, Mingxia ; Qiao, Wenjing > > Subject: [PATCH v3 4/9] net/cpfl: setup ctrl

RE: [PATCH v6 00/10] net/cpfl: support port representor

2023-09-12 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Wednesday, September 13, 2023 1:30 AM > To: Wu, Jingjing > Cc: dev@dpdk.org; Liu, Mingxia ; Xing, Beilei > > Subject: [PATCH v6 00/10] net/cpfl: support port representor > > From: Beilei Xing Acked-by: Jingjing Wu

RE: [PATCH] raw/ntb: add support for 5th and 6th Gen Intel Xeon

2023-09-15 Thread Wu, Jingjing
> -Original Message- > From: Guo, Junfeng > Sent: Friday, September 15, 2023 3:08 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; Guo, Junfeng > Subject: [PATCH] raw/ntb: add support for 5th and 6th Gen Intel Xeon > > Add support for 5th and 6th Gen Intel Xeon S

RE: [PATCH v2] raw/ntb: add PPD status check for SPR

2022-07-01 Thread Wu, Jingjing
> -Original Message- > From: Guo, Junfeng > Sent: Thursday, June 30, 2022 4:56 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; Guo, Junfeng > Subject: [PATCH v2] raw/ntb: add PPD status check for SPR > > Add PPD (PCIe Port Definition) status check for SPR (Sapphire

RE: [PATCH v3] raw/ntb: clear all valid DB bits when DB init

2022-02-09 Thread Wu, Jingjing
> -Original Message- > From: Guo, Junfeng > Sent: Wednesday, February 9, 2022 12:47 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; sta...@dpdk.org; Guo, Junfeng > Subject: [PATCH v3] raw/ntb: clear all valid DB bits when DB init > > Before registering the do

RE: [PATCH] raw/ntb: add check for DB intr handler registering

2022-02-09 Thread Wu, Jingjing
> -Original Message- > From: Guo, Junfeng > Sent: Thursday, February 10, 2022 2:29 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; sta...@dpdk.org; Guo, Junfeng > Subject: [PATCH] raw/ntb: add check for DB intr handler registering > > The callback registering of do

RE: [PATCH v4] raw/ntb: clear all valid DB bits when DB init

2022-02-09 Thread Wu, Jingjing
> -Original Message- > From: Guo, Junfeng > Sent: Thursday, February 10, 2022 3:07 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; sta...@dpdk.org; Guo, Junfeng > Subject: [PATCH v4] raw/ntb: clear all valid DB bits when DB init > > Before registering the do

Re: [dpdk-dev] [PATCH v8 6/7] net/iavf: add watchdog for VFLR

2021-10-17 Thread Wu, Jingjing
> -Original Message- > From: Nicolau, Radu > Sent: Friday, October 15, 2021 6:15 PM > To: Wu, Jingjing ; Xing, Beilei > Cc: dev@dpdk.org; Doherty, Declan ; Sinha, Abhijit > ; Zhang, Qi Z ; Richardson, > Bruce > ; Ananyev, Konstantin > ; > Nicolau, Radu

Re: [dpdk-dev] [PATCH v2 2/4] net/iavf: add iAVF IPsec inline crypto support

2021-09-17 Thread Wu, Jingjing
In general, the patch is too big to review. Patch split would help a lot! [...] > +static const struct rte_cryptodev_symmetric_capability * > +get_capability(struct iavf_security_ctx *iavf_sctx, > + uint32_t algo, uint32_t type) > +{ > + const struct rte_cryptodev_capabilities *capability;

Re: [dpdk-dev] Not able to start IAVF PMD with dpdk 20.11.3

2021-09-23 Thread Wu, Jingjing
Could you have a try to switch from uio_pci_generic to vfio_pci? From: Dey, Souvik Sent: Thursday, September 23, 2021 11:29 PM To: dev@dpdk.org; Xing, Beilei ; Wu, Jingjing Subject: Not able to start IAVF PMD with dpdk 20.11.3 Hi All, Trying to test E810 Sr-IOV based nic card with

Re: [dpdk-dev] [PATCH] net/iavf: remove interrupt handler

2021-08-12 Thread Wu, Jingjing
> > -Original Message- > > From: Zhang, RobinX > > Sent: Friday, July 23, 2021 3:47 PM > > To: dev@dpdk.org > > Cc: Wu, Jingjing ; Xing, Beilei > > ; Zhang, Qi Z ; Guo, > > Junfeng ; Yang, SteveX > ; > > Zhang, RobinX > > Subjec

RE: [PATCH v6 0/6] add idpf pmd enhancement features

2023-02-07 Thread Wu, Jingjing
> -Original Message- > From: Liu, Mingxia > Sent: Tuesday, February 7, 2023 6:17 PM > To: dev@dpdk.org; Zhang, Qi Z ; Wu, Jingjing > ; Xing, Beilei > Cc: Liu, Mingxia > Subject: [PATCH v6 0/6] add idpf pmd enhancement features > > This patchset add seve

RE: [PATCH] common/idpf: fix Rx queue configuration

2023-02-22 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Thursday, February 23, 2023 11:17 AM > To: Wu, Jingjing > Cc: dev@dpdk.org; Xing, Beilei ; sta...@dpdk.org > Subject: [PATCH] common/idpf: fix Rx queue configuration > > From: Beilei Xing > > IDPF

RE: [PATCH v3 02/10] net/cpfl: support hairpin queue capbility get

2023-05-24 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Friday, May 19, 2023 3:31 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; Liu, Mingxia ; Xing, Beilei > ; Wang, Xiao W > Subject: [PATCH v3 02/10] net/cpfl: support hairpin queue capbility get > > From: Beilei

RE: [PATCH v3 04/10] net/cpfl: add haipin queue group during vport init

2023-05-24 Thread Wu, Jingjing
> static int > cpfl_dev_vport_init(struct rte_eth_dev *dev, void *init_params) > { > @@ -1306,6 +1414,8 @@ cpfl_dev_vport_init(struct rte_eth_dev *dev, void > *init_params) > struct cpfl_adapter_ext *adapter = param->adapter; > /* for sending create vport virtchnl msg prepare */ >

RE: [PATCH v3 05/10] net/cpfl: support hairpin queue setup and release

2023-05-24 Thread Wu, Jingjing
> > +static int > +cpfl_rx_hairpin_bufq_setup(struct rte_eth_dev *dev, struct idpf_rx_queue > *bufq, > +uint16_t logic_qid, uint16_t nb_desc) > +{ > + struct cpfl_vport *cpfl_vport = > + (struct cpfl_vport *)dev->data->dev_private; > + struct idpf_vport *vp

RE: [PATCH v3 07/10] net/cpfl: support hairpin queue start/stop

2023-05-24 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Friday, May 19, 2023 3:31 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; Liu, Mingxia ; Xing, Beilei > ; Wang, Xiao W > Subject: [PATCH v3 07/10] net/cpfl: support hairpin queue start/stop > > From: Beilei Xin

RE: [PATCH v3 08/10] net/cpfl: enable write back based on ITR expire

2023-05-24 Thread Wu, Jingjing
> idpf_vport_irq_unmap_config(struct idpf_vport *vport, uint16_t nb_rx_queues) > { > diff --git a/drivers/common/idpf/idpf_common_device.h > b/drivers/common/idpf/idpf_common_device.h > index 112367dae8..f767ea7cec 100644 > --- a/drivers/common/idpf/idpf_common_device.h > +++ b/drivers/common/idp

RE: [PATCH v3 09/10] net/cpfl: support peer ports get

2023-05-24 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Friday, May 19, 2023 3:31 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; Liu, Mingxia ; Xing, Beilei > ; Wang, Xiao W > Subject: [PATCH v3 09/10] net/cpfl: support peer ports get > > From: Beilei Xing > >

RE: [PATCH v2] net/i40e: fix FDIR Rxq receives broadcast packets

2023-07-20 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Friday, July 21, 2023 1:35 PM > To: Wu, Jingjing ; Zhang, Yuying > > Cc: dev@dpdk.org; Xing, Beilei ; sta...@dpdk.org > Subject: [PATCH v2] net/i40e: fix FDIR Rxq receives broadcast packets > > From: Be

RE: [PATCH] graph: fix head move when graph walk in mcore dispatch

2024-03-19 Thread Wu, Jingjing
> > /* skip the src nodes which not bind with current worker */ > > if ((int32_t)head < 0 && node->dispatch.lcore_id != graph- > > >dispatch.lcore_id) > > continue; > > - > > + head++; > If current src node not bind with current core, It will

RE: [PATCH] graph: fix head move when graph walk in mcore dispatch

2024-03-20 Thread Wu, Jingjing
> -Original Message- > From: Yan, Zhirun > Sent: Wednesday, March 20, 2024 4:43 PM > To: Wu, Jingjing ; dev@dpdk.org > Cc: jer...@marvell.com; pbhagavat...@marvell.com; sta...@dpdk.org > Subject: RE: [PATCH] graph: fix head move when graph walk

RE: [PATCH v4 1/2] common/idpf: move PF specific functions from common init

2023-04-23 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Thursday, April 6, 2023 3:43 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; Xing, Beilei > Subject: [PATCH v4 1/2] common/idpf: move PF specific functions from common > init > > From: Beilei Xing >

RE: [PATCH] net/idpf: refine devargs parse functions

2023-04-23 Thread Wu, Jingjing
> -Original Message- > From: Liu, Mingxia > Sent: Friday, April 21, 2023 3:15 PM > To: dev@dpdk.org > Cc: Wu, Jingjing ; Xing, Beilei > ; Liu, Mingxia > > Subject: [PATCH] net/idpf: refine devargs parse functions > > This patch refines devargs p

RE: [PATCH v4] net/idpf: add VF support

2023-04-25 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Monday, April 24, 2023 8:45 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; Xing, Beilei > Subject: [PATCH v4] net/idpf: add VF support > > From: Beilei Xing > > Support VF whose device id is 0x145c. &

RE: [PATCH v5] common/idpf: refine capability get

2023-04-25 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Monday, April 24, 2023 4:08 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; Xing, Beilei > Subject: [PATCH v5] common/idpf: refine capability get > > From: Beilei Xing > > Initialize required

RE: [PATCH v8 03/14] net/cpfl: add haipin queue group during vport init

2023-06-05 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Monday, June 5, 2023 2:17 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; Liu, Mingxia ; Xing, Beilei > > Subject: [PATCH v8 03/14] net/cpfl: add haipin queue group during vport init > > From: Beilei Xing >

RE: [PATCH v8 12/14] net/cpfl: support peer ports get

2023-06-05 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Monday, June 5, 2023 2:17 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; Liu, Mingxia ; Xing, Beilei > ; Wang, Xiao W > Subject: [PATCH v8 12/14] net/cpfl: support peer ports get > > From: Beilei Xing > >

RE: [PATCH v10 00/14] net/cpfl: add hairpin queue support

2023-06-05 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Tuesday, June 6, 2023 6:03 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; Liu, Mingxia ; Xing, Beilei > > Subject: [PATCH v10 00/14] net/cpfl: add hairpin queue support > > From: Beilei Xing > > This pa

RE: [PATCH] net/cpfl: fix fail to re-configure RSS

2023-06-16 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Friday, June 16, 2023 8:00 PM > To: Wu, Jingjing ; Zhang, Yuying > > Cc: dev@dpdk.org; Xing, Beilei > Subject: [PATCH] net/cpfl: fix fail to re-configure RSS > > From: Beilei Xing > > Currently

RE: [PATCH] doc: update release notes for Intel IPU

2023-07-02 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Wednesday, June 28, 2023 11:39 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; Xing, Beilei > Subject: [PATCH] doc: update release notes for Intel IPU > > From: Beilei Xing > > Update release no

RE: [PATCH v2] raw/ntb: add check for disabling interrupt in dev close ops

2023-07-02 Thread Wu, Jingjing
> -Original Message- > From: Guo, Junfeng > Sent: Wednesday, June 28, 2023 5:12 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; sta...@dpdk.org; He, Xingguang ; > Laatz, Kevin > ; Guo, Junfeng > Subject: [PATCH v2] raw/ntb: add check for disabling interrupt in dev

RE: [PATCH] net/cpfl: fix RSS lookup table configuration

2023-07-03 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Monday, July 3, 2023 7:28 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; Xing, Beilei > Subject: [PATCH] net/cpfl: fix RSS lookup table configuration > > From: Beilei Xing > > Ethdev Rx queues includes

RE: [PATCH] doc: update BIOS setting and supported HW list for NTB

2023-07-03 Thread Wu, Jingjing
> -Original Message- > From: Guo, Junfeng > Sent: Monday, July 3, 2023 5:25 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; sta...@dpdk.org; Guo, Junfeng > Subject: [PATCH] doc: update BIOS setting and supported HW list for NTB > > Update BIOS settings and supported

Re: [dpdk-dev] [PATCH v4 2/6] net/iavf: rework tx path

2021-10-03 Thread Wu, Jingjing
> -Original Message- > From: Nicolau, Radu > Sent: Friday, October 1, 2021 5:51 PM > To: Wu, Jingjing ; Xing, Beilei > ; Richardson, > Bruce ; Ananyev, Konstantin > > Cc: dev@dpdk.org; Doherty, Declan ; Sinha, Abhijit > ; Zhang, Qi Z ; Nicolau, Radu >

Re: [dpdk-dev] [PATCH v4 3/6] net/iavf: add support for asynchronous virt channel messages

2021-10-03 Thread Wu, Jingjing
> -Original Message- > From: Nicolau, Radu > Sent: Friday, October 1, 2021 5:51 PM > To: Wu, Jingjing ; Xing, Beilei > Cc: dev@dpdk.org; Doherty, Declan ; Sinha, Abhijit > ; Zhang, Qi Z ; Richardson, > Bruce > ; Ananyev, Konstantin > ; > Nicolau, Radu

Re: [dpdk-dev] [PATCH v4 4/6] net/iavf: add iAVF IPsec inline crypto support

2021-10-03 Thread Wu, Jingjing
> -Original Message- > From: Nicolau, Radu > Sent: Friday, October 1, 2021 5:51 PM > To: Wu, Jingjing ; Xing, Beilei > ; Ray Kinsella > > Cc: dev@dpdk.org; Doherty, Declan ; Sinha, Abhijit > ; Zhang, Qi Z ; Richardson, > Bruce > ; Ananyev, Konstantin

Re: [dpdk-dev] [PATCH v4 5/6] net/iavf: add xstats support for inline IPsec crypto

2021-10-03 Thread Wu, Jingjing
> -Original Message- > From: Nicolau, Radu > Sent: Friday, October 1, 2021 5:51 PM > To: Wu, Jingjing ; Xing, Beilei > Cc: dev@dpdk.org; Doherty, Declan ; Sinha, Abhijit > ; Zhang, Qi Z ; Richardson, > Bruce > ; Ananyev, Konstantin > ; > Nicolau, Radu

Re: [dpdk-dev] [PATCH v4 6/6] net/iavf: add watchdog for VFLR

2021-10-03 Thread Wu, Jingjing
> -Original Message- > From: Nicolau, Radu > Sent: Friday, October 1, 2021 5:52 PM > To: Wu, Jingjing ; Xing, Beilei > Cc: dev@dpdk.org; Doherty, Declan ; Sinha, Abhijit > ; Zhang, Qi Z ; Richardson, > Bruce > ; Ananyev, Konstantin > ; > Nicolau, Radu

Re: [dpdk-dev] [PATCH v4 6/6] net/iavf: add watchdog for VFLR

2021-10-07 Thread Wu, Jingjing
> > Besides checking VFGEN_RSTAT, there is a process to handle > VIRTCHNL_OP_EVENT from PF. What is the change for? Any scenario which > VIRTCHNL_OP_EVENT doesn't cover? > > And how is the 500us been determined? > > Hi Jingjing, thanks for reviewing, I think this can be handled with the > VIRTCH

RE: [PATCH v2] net/idpf: fix crash when launching l3fwd

2022-11-17 Thread Wu, Jingjing
> - > if (conf->txmode.mq_mode != RTE_ETH_MQ_TX_NONE) { > PMD_INIT_LOG(ERR, "Multi-queue TX mode %d is not supported", >conf->txmode.mq_mode); > diff --git a/drivers/net/idpf/idpf_vchnl.c b/drivers/net/idpf/idpf_vchnl.c > index ac6486d4ef..88770447f8

RE: [PATCH] net/idpf: add supported ptypes get

2022-11-17 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Friday, November 18, 2022 11:51 AM > To: Wu, Jingjing > Cc: dev@dpdk.org; Peng, Yuan ; Xing, Beilei > > Subject: [PATCH] net/idpf: add supported ptypes get > > From: Beilei Xing > > Failed to laun

RE: Building DPDK with IOVA_AS_VA

2022-12-06 Thread Wu, Jingjing
I guess driver may not handle the attribute enable_iova_as_pa well right now. Maybe you can have a try by disabling idpf driver by adding "-Ddisable_drivers=net/idpf". > -Original Message- > From: Morten Brørup > Sent: Wednesday, December 7, 2022 2:55 AM > To:

RE: Building DPDK with IOVA_AS_VA

2022-12-06 Thread Wu, Jingjing
Yes, thanks for the suggestion. > -Original Message- > From: Shijith Thotton > Sent: Wednesday, December 7, 2022 3:16 PM > To: Wu, Jingjing ; Xing, Beilei > Cc: dev@dpdk.org; Morten Brørup ; Richardson, > Bruce > > Subject: RE: Building DPDK with IOVA_AS_VA &g

RE: [PATCH] net/iavf:fix slow memory allocation

2022-12-08 Thread Wu, Jingjing
> -Original Message- > From: You, KaisenX > Sent: Thursday, November 17, 2022 2:57 PM > To: dev@dpdk.org > Cc: sta...@dpdk.org; Yang, Qiming ; Zhou, YidingX > ; You, KaisenX ; Wu, Jingjing > ; Xing, Beilei ; Zhang, Qi Z > > Subject: [PATCH] net/iavf:fix slo

Re: [dpdk-dev] [PATCH] net/iavf: fix Rx issue for scalar Rx functions

2021-05-31 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Tuesday, June 1, 2021 1:10 PM > To: Wu, Jingjing ; Zhang, Qi Z > Cc: dev@dpdk.org; Xing, Beilei ; sta...@dpdk.org > Subject: [PATCH] net/iavf: fix Rx issue for scalar Rx functions > > From: Beilei Xing >

[dpdk-dev] [PATCH][PMD][GENERIC_FILTER] add NIC filters support for generic filter feature

2014-05-20 Thread Wu, Jingjing
Fine, I will split it. -Original Message- From: Thomas Monjalon [mailto:thomas.monja...@6wind.com] Sent: Monday, May 19, 2014 6:17 PM To: Wu, Jingjing Cc: dev at dpdk.org Subject: Re: [dpdk-dev] [PATCH][PMD][GENERIC_FILTER] add NIC filters support for generic filter feature Hi Jingjing

[dpdk-dev] [PATCH v2 0/4] NIC filters support for generic filter

2014-05-28 Thread Wu, Jingjing
These NIC filters implemented in this patch are first step. Even without generic, it also provides a way to configure these NIC filters to hardware in DPDK PMD. -Original Message- From: Thomas Monjalon [mailto:thomas.monja...@6wind.com] Sent: Wednesday, May 28, 2014 7:22 AM To: Wu, Jingji

[dpdk-dev] [PATCH v2 0/4] NIC filters support for generic filter

2014-05-28 Thread Wu, Jingjing
matter the NIC is 82580, i350, 82576 or 82599. We think these NICs may be most common used. -Original Message- From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Wu, Jingjing Sent: Wednesday, May 28, 2014 8:53 AM To: Thomas Monjalon Cc: dev at dpdk.org Subject: Re: [dpdk-dev] [PATCH v2

Re: [dpdk-dev] [RFC PATCH] i40e: fix setting of default MAC address

2016-12-01 Thread Wu, Jingjing
Hi, Igor Thanks for your contribute, my comments are in below, thanks. > -Original Message- > From: Igor Ryzhov [mailto:iryz...@nfware.com] > Sent: Thursday, November 24, 2016 8:35 PM > To: dev@dpdk.org > Cc: Zhang, Helin ; Wu, Jingjing > > Subject: [RFC PATCH]

[dpdk-dev] Signature filter for virtual function

2014-08-15 Thread Wu, Jingjing
Hi Flow director is not supported on VF now. I think this may be the reason why ENOTSUP is returned. > -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Ilan Borenshtein > Sent: Thursday, August 14, 2014 8:34 PM > To: dev at dpdk.org > Subject: [dpdk-dev] Signa

[dpdk-dev] Signature filter for virtual function

2014-08-18 Thread Wu, Jingjing
ch way can be used instead. > -Original Message- > From: Ilan Borenshtein [mailto:ilan at asocstech.com] > Sent: Sunday, August 17, 2014 3:34 PM > To: Wu, Jingjing; dev at dpdk.org > Subject: RE: Signature filter for virtual function > > Hi, > > Is there any

[dpdk-dev] Signature filter for virtual function

2014-08-19 Thread Wu, Jingjing
com] > Sent: Monday, August 18, 2014 3:17 PM > To: Wu, Jingjing; dev at dpdk.org > Subject: RE: Signature filter for virtual function > > Looking for director packet to different queues in a VF. > Will it be implemented in future releases ? > > -----Original Message- >

[dpdk-dev] [PATCH v2 1/7] i40e: flow director resource reserve and initialize on i40e

2014-08-28 Thread Wu, Jingjing
arate them. > -Original Message- > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Wednesday, August 27, 2014 10:18 PM > To: Wu, Jingjing > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH v2 1/7] i40e: flow director resource reserve > and initia

[dpdk-dev] [PATCH v2 3/7] i40e: function implement in i40e for flow director filter programming

2014-08-28 Thread Wu, Jingjing
Hi, Thomas I will rework on it. > -Original Message- > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Wednesday, August 27, 2014 10:25 PM > To: Wu, Jingjing > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH v2 3/7] i40e: function implement i

[dpdk-dev] [PATCH v2 2/7] ethdev: define new ethdev API rx_classification_filter_ctl

2014-08-28 Thread Wu, Jingjing
-Original Message- > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Wednesday, August 27, 2014 10:23 PM > To: Wu, Jingjing > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH v2 2/7] ethdev: define new ethdev API > rx_classification_filter_ctl > >

[dpdk-dev] [PATCH v2 5/7] fix the Marco conflict

2014-08-28 Thread Wu, Jingjing
om] > Sent: Wednesday, August 27, 2014 10:28 PM > To: Wu, Jingjing > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH v2 5/7] fix the Marco conflict > > 2014-08-27 10:13, Jingjing Wu: > > fix the Marco conflict between rte_ip.h and netinet/in.h > > Who i

[dpdk-dev] [PATCH v2 7/7]app/testpmd: add commands and config functions for i40e flow director support

2014-08-28 Thread Wu, Jingjing
Hi, Thomas > -Original Message- > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Wednesday, August 27, 2014 10:36 PM > To: Wu, Jingjing > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH v2 7/7]app/testpmd: add commands and config > func

[dpdk-dev] [PATCH v2 7/7]app/testpmd: add commands and config functions for i40e flow director support

2014-08-28 Thread Wu, Jingjing
at I did before. But will the i40e specific structures become visible be acceptable? > -Original Message- > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Thursday, August 28, 2014 4:51 PM > To: Wu, Jingjing > Cc: dev at dpdk.org > Subject: Re: [dp

[dpdk-dev] [PATCH v2 2/7] ethdev: define new ethdev API rx_classification_filter_ctl

2014-08-28 Thread Wu, Jingjing
Hi, Thomas Please see my comments below. Thanks a lot. > -Original Message- > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Thursday, August 28, 2014 6:56 PM > To: Wu, Jingjing > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH v2 2/7]

[dpdk-dev] [PATCH v2 2/7] ethdev: define new ethdev API rx_classification_filter_ctl

2014-08-28 Thread Wu, Jingjing
Hi, Konstantin Thanks a lot. > -Original Message- > From: Ananyev, Konstantin > Sent: Thursday, August 28, 2014 7:49 PM > To: Thomas Monjalon; Wu, Jingjing > Cc: dev at dpdk.org > Subject: RE: [dpdk-dev] [PATCH v2 2/7] ethdev: define new ethdev API > rx_clas

[dpdk-dev] [PATCH v2 2/7] ethdev: define new ethdev API rx_classification_filter_ctl

2014-08-28 Thread Wu, Jingjing
> -Original Message- > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Thursday, August 28, 2014 10:21 PM > To: Wu, Jingjing > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH v2 2/7] ethdev: define new ethdev API > rx_classification_filter_c

[dpdk-dev] [PATCH v2 5/7] fix the Marco conflict

2014-08-28 Thread Wu, Jingjing
> -Original Message- > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Thursday, August 28, 2014 4:56 PM > To: Wu, Jingjing > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH v2 5/7] fix the Marco conflict > > 2014-08-28 03:39, Wu, Jin

[dpdk-dev] [PATCH v2] i40e: fix of compile error

2014-12-03 Thread Wu, Jingjing
> -Original Message- > From: Zhang, Helin > Sent: Wednesday, December 03, 2014 9:13 AM > To: dev at dpdk.org > Cc: Cao, Waterman; Cao, Min; Wu, Jingjing; Zhang, Helin > Subject: [PATCH v2] i40e: fix of compile error > > The compile error will

[dpdk-dev] [PATCH 0/4] Integrate ethertype filter in igb/ixgbe driver to new API

2014-12-25 Thread Wu, Jingjing
ed to integrate filter to this new API to make the APIs generic for different types of NICs. Jingjing > -Original Message- > From: Qiu, Michael > Sent: Thursday, December 25, 2014 11:27 AM > To: Wu, Jingjing; dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH 0/4] Integrate

[dpdk-dev] [PATCH v6 5/6] enicpmd: DPDK-ENIC PMD interface

2014-12-29 Thread Wu, Jingjing
Hi, ssujith > + .tx_queue_release = enicpmd_dev_tx_queue_release, > + .dev_led_on = NULL, > + .dev_led_off = NULL, > + .flow_ctrl_get= NULL, > + .flow_ctrl_set= NULL, > + .priority_flow_ctrl_set = NULL, > + .mac_addr_add =

[dpdk-dev] symbol conflicts between netinet/in.h, arpa/inet.h, and rte_ip.h

2014-07-25 Thread Wu, Jingjing
Hello, We also notice these conflicts, we just planned to fix it in our new feature development. The proposal is like: #ifndef _NETINET_IN_H #ifndef _NETINET_IN_H_ #define IPPROTO_IP 0 ... ... #define IPPROTO_MAX 256 #endif #endif Do you think it is a good idea? > -Original Messag

[dpdk-dev] [PATCH v2 0/6] Support configuring hash functions

2014-07-29 Thread Wu, Jingjing
Reviewed-by: Jingjing Wu > -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Helin Zhang > Sent: Monday, July 28, 2014 4:26 PM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH v2 0/6] Support configuring hash functions > > These pathches mainly support config

[dpdk-dev] [PATCH v2 0/4] NIC filters support for generic filter

2014-06-12 Thread Wu, Jingjing
1:45 PM To: Wu, Jingjing Cc: dev at dpdk.org; Vladimir Medvedkin Subject: Re: [dpdk-dev] [PATCH v2 0/4] NIC filters support for generic filter Hi Jingjing, Please reply below the question. 2014-05-28 01:12, Wu, Jingjing: > You are discussing whether the APIs provide for NIC filters is generic &g

[dpdk-dev] [PATCH v2 0/4] NIC filters support for generic filter

2014-06-13 Thread Wu, Jingjing
it and integrate the change to patch in new version. Do your agree my proposal? From: Vladimir Medvedkin [mailto:medvedk...@gmail.com] Sent: Friday, June 13, 2014 7:52 PM To: Thomas Monjalon Cc: Wu, Jingjing; dev at dpdk.org Subject: Re: [dpdk-dev] [PATCH v2 0/4] NIC filters support for

[dpdk-dev] [PATCH v2 0/4] NIC filters support for generic filter

2014-06-14 Thread Wu, Jingjing
. Thank you! Jingjing From: Vladimir Medvedkin [mailto:medvedk...@gmail.com] Sent: Saturday, June 14, 2014 12:19 AM To: Wu, Jingjing Cc: Thomas Monjalon; dev at dpdk.org Subject: Re: [dpdk-dev] [PATCH v2 0/4] NIC filters support for generic filter Hi Jingjing, Yes, I agree. I have one more remark. It

[dpdk-dev] enable mirror functionality in i40e driver

2015-05-13 Thread Wu, Jingjing
Due to the PATCH prefix is missed in the cover-letter, I will resend the patch set. Please just ignore this one. > -Original Message- > From: Wu, Jingjing > Sent: Wednesday, May 13, 2015 4:38 PM > To: dev at dpdk.org > Cc: Wu, Jingjing; Jiajia, SunX; Zhang, Helin; Liu, Ji

[dpdk-dev] filter_ctl PMD API idea

2014-09-04 Thread Wu, Jingjing
Hi, all When we develop filters feature in i40e driver for Intel? Ethernet Controller XL710/X710 [Fortville] (For both 10G/40G), we found that there are lots of new filters, there are also some changes on the existing filters, comparing to ixgbe. If we keep the way to add new ops in rte_eth_de

[dpdk-dev] filter_ctl PMD API idea

2014-09-08 Thread Wu, Jingjing
Any comments or advises? Thanks! Fortville Filter features' development will be started based on this design this week. > -Original Message- > From: Wu, Jingjing > Sent: Thursday, September 4, 2014 8:05 PM > To: dev at dpdk.org > Cc: stephen at networkplumber.or

[dpdk-dev] [RFC PATCH] ethdev: remove old flow director API

2015-04-20 Thread Wu, Jingjing
> -Original Message- > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Monday, April 20, 2015 10:12 PM > To: Wu, Jingjing > Cc: dev at dpdk.org > Subject: [RFC PATCH] ethdev: remove old flow director API > > It's time to remove this old

[dpdk-dev] [RFC PATCH] ethdev: remove old flow director API

2015-04-22 Thread Wu, Jingjing
> -Original Message- > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Monday, April 20, 2015 11:00 PM > To: Wu, Jingjing > Cc: dev at dpdk.org > Subject: Re: [RFC PATCH] ethdev: remove old flow director API > > 2015-04-20 14:32, Wu, Ji

Re: [dpdk-dev] [PATCH v7 05/27] net/i40e: set Tx loopback from PF

2017-01-05 Thread Wu, Jingjing
Is the Tx lookback meaning as VEB mode ore VEPA mode? If so, how about change the API's name to set_switch_mode? Another comment is: you removed all mac vlan filters before changing The mode, and restore them after changing. How about vlan filters? The Patch for vlan anti-spoof enables it, correct

Re: [dpdk-dev] [PATCH v7 06/27] net/i40e: set VF unicast promisc mode from PF

2017-01-05 Thread Wu, Jingjing
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Wenzhuo Lu > Sent: Tuesday, January 3, 2017 2:54 PM > To: dev@dpdk.org > Cc: Lu, Wenzhuo > Subject: [dpdk-dev] [PATCH v7 06/27] net/i40e: set VF unicast promisc mode > from PF > > Support enabling/disabling VF u

Re: [dpdk-dev] [PATCH v7 10/27] net/i40e: set VF MAC from PF support

2017-01-05 Thread Wu, Jingjing
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Wenzhuo Lu > Sent: Tuesday, January 3, 2017 2:55 PM > To: dev@dpdk.org > Cc: Yigit, Ferruh > Subject: [dpdk-dev] [PATCH v7 10/27] net/i40e: set VF MAC from PF support > > From: Ferruh Yigit > > Support setting

Re: [dpdk-dev] [PATCH v7 03/27] net/i40e: set VF MAC anti-spoofing from PF

2017-01-05 Thread Wu, Jingjing
> + > + vsi->info.valid_sections = > cpu_to_le16(I40E_AQ_VSI_PROP_SECURITY_VALID); > + if (on) > + vsi->info.sec_flags |= > I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK; > + else > + vsi->info.sec_flags &= > ~I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK; > + > + memset(&ctxt,

Re: [dpdk-dev] [PATCH v7 14/27] net/i40e: set VF VLAN insertion from PF

2017-01-05 Thread Wu, Jingjing
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Wenzhuo Lu > Sent: Tuesday, January 3, 2017 2:55 PM > To: dev@dpdk.org > Cc: Iremonger, Bernard > Subject: [dpdk-dev] [PATCH v7 14/27] net/i40e: set VF VLAN insertion from PF > > From: Bernard Iremonger > > Su

Re: [dpdk-dev] [PATCH v7 17/27] net/i40e: set VF VLAN filter from PF

2017-01-05 Thread Wu, Jingjing
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Wenzhuo Lu > Sent: Tuesday, January 3, 2017 2:55 PM > To: dev@dpdk.org > Cc: Iremonger, Bernard > Subject: [dpdk-dev] [PATCH v7 17/27] net/i40e: set VF VLAN filter from PF > > From: Bernard Iremonger > > add r

Re: [dpdk-dev] [PATCH v7 18/27] app/testpmd: use VFD APIs on i40e

2017-01-05 Thread Wu, Jingjing
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Wenzhuo Lu > Sent: Tuesday, January 3, 2017 2:55 PM > To: dev@dpdk.org > Cc: Lu, Wenzhuo ; Chen, Jing D > ; Iremonger, Bernard > Subject: [dpdk-dev] [PATCH v7 18/27] app/testpmd: use VFD APIs on i40e > > The new

Re: [dpdk-dev] [PATCH v7 19/27] app/testpmd: use unicast promiscuous mode on i40e

2017-01-05 Thread Wu, Jingjing
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Wenzhuo Lu > Sent: Tuesday, January 3, 2017 2:55 PM > To: dev@dpdk.org > Cc: Lu, Wenzhuo > Subject: [dpdk-dev] [PATCH v7 19/27] app/testpmd: use unicast promiscuous > mode on i40e > > Add testpmd CLI to set VF u

  1   2   3   4   5   6   7   >