> -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
> -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
> @@ -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
> +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
> @@ -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
> +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
>
> +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
> @@ -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));
>
> -
> > > +
> > > 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);
> >
> -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
> -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++) {
> -
> -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
> + /* 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",
> +
> -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
&
> -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
> +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
> -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
> -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
> -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
> -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
> -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
> -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
> -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
> -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
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;
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
> > -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
> -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
> -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
> -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
> 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 */
>
>
> +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
> -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
> 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
> -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
>
>
> -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
> > /* 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
> -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
> -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
>
> -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
> -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.
&
> -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
> -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
>
> -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
>
>
> -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
> -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
> -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
> -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
> -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
> -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
> -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
>
> -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
> -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
> -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
> -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
> > 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
> -
> 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
> -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
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:
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
> -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
> -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
>
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
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
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
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]
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
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
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-
>
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
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
-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
>
>
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
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
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
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]
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
> -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
> -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
> -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
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
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 =
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
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
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
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
.
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
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
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
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
> -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
> -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
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
> -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
> -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
> +
> + 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,
> -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
> -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
> -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
> -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 - 100 of 656 matches
Mail list logo