From: "Zhang, Qi Z" <qi.z.zhang@intel.com> To: Ferruh Yigit <ferruh.yigit@xilinx.com>, "Yang, Qiming" <qiming.yang@intel.com>, "Wu, Wenjun1" <wenjun1.wu@intel.com>, "Jiang, YuX" <yux.jiang@intel.com> Cc: "Li, Xiaoyun" <xiaoyun.li@intel.com>, "Singh, Aman Deep" <aman.deep.singh@intel.com>, "Zhang, Yuying" <yuying.zhang@intel.com>, "dev@dpdk.org" <dev@dpdk.org>, David Marchand <david.marchand@redhat.com> Subject: RE: [PATCH v2 3/3] net/ixgbe: move bypass init in a testpmd command Date: Thu, 23 Jun 2022 12:35:36 +0000 Message-ID: <DM4PR11MB5994903C3B5E87732C6D97ECD7B59@DM4PR11MB5994.namprd11.prod.outlook.com> (raw) In-Reply-To: <7a95dafe-bf55-1e2d-9c63-f1fe04de6f4b@xilinx.com> > -----Original Message----- > From: Ferruh Yigit <ferruh.yigit@xilinx.com> > Sent: Tuesday, June 21, 2022 3:04 AM > To: Yang, Qiming <qiming.yang@intel.com>; Wu, Wenjun1 > <wenjun1.wu@intel.com>; Jiang, YuX <yux.jiang@intel.com> > Cc: Li, Xiaoyun <xiaoyun.li@intel.com>; Singh, Aman Deep > <aman.deep.singh@intel.com>; Zhang, Yuying <yuying.zhang@intel.com>; > dev@dpdk.org; David Marchand <david.marchand@redhat.com>; Zhang, Qi Z > <qi.z.zhang@intel.com> > Subject: Re: [PATCH v2 3/3] net/ixgbe: move bypass init in a testpmd command > > On 6/17/2022 6:07 AM, David Marchand wrote: > > Introduce a new command and remove the last part of specific port init > > from testpmd. > > > > Signed-off-by: David Marchand<david.marchand@redhat.com> > > --- > > app/test-pmd/meson.build | 1 - > > app/test-pmd/testpmd.c | 4 -- > > doc/guides/nics/ixgbe.rst | 7 +++ > > drivers/net/ixgbe/ixgbe_testpmd.c | 82 > +++++++++++++++++++++++++++++++ > > 4 files changed, 89 insertions(+), 5 deletions(-) > > > > diff --git a/app/test-pmd/meson.build b/app/test-pmd/meson.build index > > 69c7595a45..d13e98125e 100644 > > --- a/app/test-pmd/meson.build > > +++ b/app/test-pmd/meson.build > > @@ -68,7 +68,6 @@ if dpdk_conf.has('RTE_NET_I40E') > > deps += 'net_i40e' > > endif > > if dpdk_conf.has('RTE_NET_IXGBE') > > - cflags += ['-DRTE_LIBRTE_IXGBE_BYPASS'] > > deps += 'net_ixgbe' > > endif > > if dpdk_conf.has('RTE_NET_DPAA') > > diff --git a/app/test-pmd/testpmd.c b/app/test-pmd/testpmd.c index > > 4e8523f961..e11e2e2cb8 100644 > > --- a/app/test-pmd/testpmd.c > > +++ b/app/test-pmd/testpmd.c > > @@ -3949,10 +3949,6 @@ init_port_config(void) > > if (ret != 0) > > return; > > > > -#if defined RTE_NET_IXGBE && defined RTE_LIBRTE_IXGBE_BYPASS > > - rte_pmd_ixgbe_bypass_init(pid); > > -#endif > > - > > if (lsc_interrupt && (*port->dev_info.dev_flags & > RTE_ETH_DEV_INTR_LSC)) > > port->dev_conf.intr_conf.lsc = 1; > > if (rmv_interrupt && (*port->dev_info.dev_flags & > > RTE_ETH_DEV_INTR_RMV)) diff --git a/doc/guides/nics/ixgbe.rst > > b/doc/guides/nics/ixgbe.rst index ea4684c2dc..d450fc1ca0 100644 > > --- a/doc/guides/nics/ixgbe.rst > > +++ b/doc/guides/nics/ixgbe.rst > > @@ -418,6 +418,13 @@ Set all TCs' TX min relative bandwidth (%) globally > for all PF and VFs:: > > > > testpmd> set tc tx min-bandwidth (port_id) (bw1, bw2, ...) > > > > +port config bypass > > +~~~~~~~~~~~~~~~~~~ > > + > > +Enable/disable bypass feature:: > > + > > + port config bypass (port_id) (on|off) > > + > > Hi Qiming, Wenjun, Yu, > > For me changes looks good but this set changes ixgbe bypass configuration in > testpmd, instead of it being enabled by default, now an explicit command needs > to be issued. This also can affect bypass testing. > > Can you please test/comment on the set for the ixgbe bypass? For both > functional and dts testing perspective? Thanks for capture this, after internal discussion, though we think its low risk but we prefer to hold on this patch merge before get the result of a ixgbe regression test. If we missed RC2, we should be able to capture it in RC3. Thanks Qi > > Thanks, > ferruh
next prev parent reply other threads:[~2022-06-23 12:35 UTC|newest] Thread overview: 63+ messages / expand[flat|nested] mbox.gz Atom feed top 2022-05-13 7:57 [RFC PATCH 0/4] Split driver specific commands out of testpmd David Marchand 2022-05-13 7:57 ` [RFC PATCH 1/4] app/testpmd: register driver specific commands David Marchand 2022-05-13 10:30 ` David Marchand 2022-05-13 7:57 ` [RFC PATCH 2/4] net/bonding: move testpmd commands David Marchand 2022-05-13 10:09 ` Min Hu (Connor) 2022-05-18 17:24 ` David Marchand 2022-05-18 23:25 ` Konstantin Ananyev 2022-05-19 7:40 ` David Marchand 2022-05-19 11:26 ` Thomas Monjalon 2022-05-20 6:59 ` Andrew Rybchenko 2022-05-24 9:40 ` Konstantin Ananyev 2022-05-24 10:15 ` Thomas Monjalon 2022-05-24 22:41 ` Konstantin Ananyev 2022-05-13 7:57 ` [RFC PATCH 3/4] net/i40e: " David Marchand 2022-05-13 7:57 ` [RFC PATCH 4/4] net/ixgbe: " David Marchand 2022-05-18 19:46 ` [RFC PATCH v2 0/5] Split driver specific commands out of testpmd David Marchand 2022-05-18 19:46 ` [RFC PATCH v2 1/5] app/testpmd: mark cmdline symbols as static David Marchand 2022-05-20 6:28 ` Andrew Rybchenko 2022-05-18 19:46 ` [RFC PATCH v2 2/5] app/testpmd: register driver specific commands David Marchand 2022-05-20 6:55 ` Andrew Rybchenko 2022-05-18 19:46 ` [RFC PATCH v2 3/5] net/bonding: move testpmd commands David Marchand 2022-05-20 6:55 ` Andrew Rybchenko 2022-05-18 19:46 ` [RFC PATCH v2 4/5] net/i40e: " David Marchand 2022-05-18 19:46 ` [RFC PATCH v2 5/5] net/ixgbe: " David Marchand 2022-05-20 7:04 ` [RFC PATCH v2 0/5] Split driver specific commands out of testpmd Andrew Rybchenko 2022-05-23 7:10 ` [PATCH 0/6] " David Marchand 2022-05-23 7:10 ` [PATCH 1/6] app/testpmd: mark most cmdline symbols as static David Marchand 2022-05-23 10:19 ` Dumitrescu, Cristian 2022-05-23 18:09 ` Ferruh Yigit 2022-05-23 7:10 ` [PATCH 2/6] app/testpmd: register driver specific commands David Marchand 2022-05-23 18:10 ` Ferruh Yigit 2022-05-24 10:53 ` David Marchand 2022-05-24 11:43 ` Ferruh Yigit 2022-05-24 17:21 ` Thomas Monjalon 2022-05-24 17:44 ` David Marchand 2022-05-24 17:51 ` Thomas Monjalon 2022-05-23 7:10 ` [PATCH 3/6] net/bonding: move testpmd commands David Marchand 2022-05-23 18:10 ` Ferruh Yigit 2022-06-17 5:06 ` [PATCH v2] " David Marchand 2022-06-20 17:53 ` Ferruh Yigit 2022-05-23 7:10 ` [PATCH 4/6] net/i40e: " David Marchand 2022-06-17 5:07 ` [PATCH v2] " David Marchand 2022-06-20 17:53 ` Ferruh Yigit 2022-05-23 7:10 ` [PATCH 5/6] app/testpmd: drop ixgbe bypass commands David Marchand 2022-05-23 18:10 ` Ferruh Yigit 2022-06-17 5:07 ` [PATCH v2 1/3] app/testpmd: restore " David Marchand 2022-06-17 5:07 ` [PATCH v2 2/3] net/ixgbe: move testpmd commands David Marchand 2022-06-17 5:07 ` [PATCH v2 3/3] net/ixgbe: move bypass init in a testpmd command David Marchand 2022-06-20 19:04 ` Ferruh Yigit 2022-06-23 12:35 ` Zhang, Qi Z [this message] 2022-07-21 8:05 ` [PATCH v3 1/3] app/testpmd: restore ixgbe bypass commands David Marchand 2022-07-21 8:05 ` [PATCH v3 2/3] net/ixgbe: move testpmd commands David Marchand 2022-07-21 8:05 ` [PATCH v3 3/3] net/ixgbe: move bypass init in a testpmd command David Marchand 2022-05-23 7:10 ` [PATCH 6/6] net/ixgbe: move testpmd commands David Marchand 2022-05-23 18:09 ` [PATCH 0/6] Split driver specific commands out of testpmd Ferruh Yigit 2022-05-24 20:06 ` [PATCH v2 0/2] " David Marchand 2022-05-24 20:06 ` [PATCH v2 1/2] app/testpmd: mark most cmdline symbols as static David Marchand 2022-05-31 15:15 ` Andrew Rybchenko 2022-05-24 20:06 ` [PATCH v2 2/2] app/testpmd: register driver specific commands David Marchand 2022-05-24 20:28 ` Thomas Monjalon 2022-05-31 15:14 ` Andrew Rybchenko 2022-05-31 15:18 ` David Marchand 2022-05-31 15:18 ` [PATCH v2 0/2] Split driver specific commands out of testpmd Andrew Rybchenko
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=DM4PR11MB5994903C3B5E87732C6D97ECD7B59@DM4PR11MB5994.namprd11.prod.outlook.com \ --to=qi.z.zhang@intel.com \ --cc=aman.deep.singh@intel.com \ --cc=david.marchand@redhat.com \ --cc=dev@dpdk.org \ --cc=ferruh.yigit@xilinx.com \ --cc=qiming.yang@intel.com \ --cc=wenjun1.wu@intel.com \ --cc=xiaoyun.li@intel.com \ --cc=yux.jiang@intel.com \ --cc=yuying.zhang@intel.com \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
DPDK patches and discussions This inbox may be cloned and mirrored by anyone: git clone --mirror http://inbox.dpdk.org/dev/0 dev/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 dev dev/ http://inbox.dpdk.org/dev \ dev@dpdk.org public-inbox-index dev Example config snippet for mirrors. Newsgroup available over NNTP: nntp://inbox.dpdk.org/inbox.dpdk.dev AGPL code for this site: git clone https://public-inbox.org/public-inbox.git