* [dpdk-dev] [PATCH] [18.02-rc2] net/qede: remove VF Tx switch option
@ 2017-11-08 0:41 Thomas Monjalon
2018-01-11 17:50 ` Ferruh Yigit
0 siblings, 1 reply; 4+ messages in thread
From: Thomas Monjalon @ 2017-11-08 0:41 UTC (permalink / raw)
To: Rasesh Mody, Harish Patil; +Cc: ferruh.yigit, dev
The compile-time option CONFIG_RTE_LIBRTE_QEDE_VF_TX_SWITCH
has been added just before the 17.11 release.
Such new options are forbidden and must be replaced by a run-time option.
If it is not replaced in 18.02-rc1, this removal will be applied.
Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
---
config/common_base | 1 -
drivers/net/qede/qede_ethdev.c | 2 --
2 files changed, 3 deletions(-)
diff --git a/config/common_base b/config/common_base
index 34f04a9fe..9ae5ec30f 100644
--- a/config/common_base
+++ b/config/common_base
@@ -415,7 +415,6 @@ CONFIG_RTE_LIBRTE_QEDE_DEBUG_INFO=n
CONFIG_RTE_LIBRTE_QEDE_DEBUG_DRIVER=n
CONFIG_RTE_LIBRTE_QEDE_DEBUG_TX=n
CONFIG_RTE_LIBRTE_QEDE_DEBUG_RX=n
-CONFIG_RTE_LIBRTE_QEDE_VF_TX_SWITCH=n
#Provides abs path/name of the firmware file.
#Empty string denotes driver will use default firmware
CONFIG_RTE_LIBRTE_QEDE_FW=""
diff --git a/drivers/net/qede/qede_ethdev.c b/drivers/net/qede/qede_ethdev.c
index 883214515..0de3a2760 100644
--- a/drivers/net/qede/qede_ethdev.c
+++ b/drivers/net/qede/qede_ethdev.c
@@ -453,12 +453,10 @@ int qede_activate_vport(struct rte_eth_dev *eth_dev, bool flg)
params.update_vport_active_tx_flg = 1;
params.vport_active_rx_flg = flg;
params.vport_active_tx_flg = flg;
-#ifndef RTE_LIBRTE_QEDE_VF_TX_SWITCH
if (IS_VF(edev)) {
params.update_tx_switching_flg = 1;
params.tx_switching_flg = !flg;
}
-#endif
for_each_hwfn(edev, i) {
p_hwfn = &edev->hwfns[i];
params.opaque_fid = p_hwfn->hw_info.opaque_fid;
--
2.14.2
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [PATCH] [18.02-rc2] net/qede: remove VF Tx switch option
2017-11-08 0:41 [dpdk-dev] [PATCH] [18.02-rc2] net/qede: remove VF Tx switch option Thomas Monjalon
@ 2018-01-11 17:50 ` Ferruh Yigit
2018-01-11 19:03 ` Mody, Rasesh
0 siblings, 1 reply; 4+ messages in thread
From: Ferruh Yigit @ 2018-01-11 17:50 UTC (permalink / raw)
To: Thomas Monjalon, Rasesh Mody, Harish Patil; +Cc: dev
On 11/8/2017 12:41 AM, Thomas Monjalon wrote:
> The compile-time option CONFIG_RTE_LIBRTE_QEDE_VF_TX_SWITCH
> has been added just before the 17.11 release.
> Such new options are forbidden and must be replaced by a run-time option.
> If it is not replaced in 18.02-rc1, this removal will be applied.
I hope this is not forgotten!
>
> Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
> ---
> config/common_base | 1 -
> drivers/net/qede/qede_ethdev.c | 2 --
> 2 files changed, 3 deletions(-)
>
> diff --git a/config/common_base b/config/common_base
> index 34f04a9fe..9ae5ec30f 100644
> --- a/config/common_base
> +++ b/config/common_base
> @@ -415,7 +415,6 @@ CONFIG_RTE_LIBRTE_QEDE_DEBUG_INFO=n
> CONFIG_RTE_LIBRTE_QEDE_DEBUG_DRIVER=n
> CONFIG_RTE_LIBRTE_QEDE_DEBUG_TX=n
> CONFIG_RTE_LIBRTE_QEDE_DEBUG_RX=n
> -CONFIG_RTE_LIBRTE_QEDE_VF_TX_SWITCH=n
> #Provides abs path/name of the firmware file.
> #Empty string denotes driver will use default firmware
> CONFIG_RTE_LIBRTE_QEDE_FW=""
> diff --git a/drivers/net/qede/qede_ethdev.c b/drivers/net/qede/qede_ethdev.c
> index 883214515..0de3a2760 100644
> --- a/drivers/net/qede/qede_ethdev.c
> +++ b/drivers/net/qede/qede_ethdev.c
> @@ -453,12 +453,10 @@ int qede_activate_vport(struct rte_eth_dev *eth_dev, bool flg)
> params.update_vport_active_tx_flg = 1;
> params.vport_active_rx_flg = flg;
> params.vport_active_tx_flg = flg;
> -#ifndef RTE_LIBRTE_QEDE_VF_TX_SWITCH
> if (IS_VF(edev)) {
> params.update_tx_switching_flg = 1;
> params.tx_switching_flg = !flg;
> }
> -#endif
> for_each_hwfn(edev, i) {
> p_hwfn = &edev->hwfns[i];
> params.opaque_fid = p_hwfn->hw_info.opaque_fid;
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [PATCH] [18.02-rc2] net/qede: remove VF Tx switch option
2018-01-11 17:50 ` Ferruh Yigit
@ 2018-01-11 19:03 ` Mody, Rasesh
2018-01-12 22:00 ` Mody, Rasesh
0 siblings, 1 reply; 4+ messages in thread
From: Mody, Rasesh @ 2018-01-11 19:03 UTC (permalink / raw)
To: Ferruh Yigit, Thomas Monjalon, Patil, Harish; +Cc: dev
Hi Ferruh,
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Ferruh Yigit
> Sent: Thursday, January 11, 2018 9:50 AM
>
> On 11/8/2017 12:41 AM, Thomas Monjalon wrote:
> > The compile-time option CONFIG_RTE_LIBRTE_QEDE_VF_TX_SWITCH
> > has been added just before the 17.11 release.
> > Such new options are forbidden and must be replaced by a run-time
> option.
> > If it is not replaced in 18.02-rc1, this removal will be applied.
>
> I hope this is not forgotten!
We'll submit this shortly.
Thanks!
-Rasesh
>
> >
> > Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
> > ---
> > config/common_base | 1 -
> > drivers/net/qede/qede_ethdev.c | 2 --
> > 2 files changed, 3 deletions(-)
> >
> > diff --git a/config/common_base b/config/common_base index
> > 34f04a9fe..9ae5ec30f 100644
> > --- a/config/common_base
> > +++ b/config/common_base
> > @@ -415,7 +415,6 @@ CONFIG_RTE_LIBRTE_QEDE_DEBUG_INFO=n
> > CONFIG_RTE_LIBRTE_QEDE_DEBUG_DRIVER=n
> > CONFIG_RTE_LIBRTE_QEDE_DEBUG_TX=n
> > CONFIG_RTE_LIBRTE_QEDE_DEBUG_RX=n
> > -CONFIG_RTE_LIBRTE_QEDE_VF_TX_SWITCH=n
> > #Provides abs path/name of the firmware file.
> > #Empty string denotes driver will use default firmware
> > CONFIG_RTE_LIBRTE_QEDE_FW=""
> > diff --git a/drivers/net/qede/qede_ethdev.c
> > b/drivers/net/qede/qede_ethdev.c index 883214515..0de3a2760 100644
> > --- a/drivers/net/qede/qede_ethdev.c
> > +++ b/drivers/net/qede/qede_ethdev.c
> > @@ -453,12 +453,10 @@ int qede_activate_vport(struct rte_eth_dev
> *eth_dev, bool flg)
> > params.update_vport_active_tx_flg = 1;
> > params.vport_active_rx_flg = flg;
> > params.vport_active_tx_flg = flg;
> > -#ifndef RTE_LIBRTE_QEDE_VF_TX_SWITCH
> > if (IS_VF(edev)) {
> > params.update_tx_switching_flg = 1;
> > params.tx_switching_flg = !flg;
> > }
> > -#endif
> > for_each_hwfn(edev, i) {
> > p_hwfn = &edev->hwfns[i];
> > params.opaque_fid = p_hwfn->hw_info.opaque_fid;
> >
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [PATCH] [18.02-rc2] net/qede: remove VF Tx switch option
2018-01-11 19:03 ` Mody, Rasesh
@ 2018-01-12 22:00 ` Mody, Rasesh
0 siblings, 0 replies; 4+ messages in thread
From: Mody, Rasesh @ 2018-01-12 22:00 UTC (permalink / raw)
To: Ferruh Yigit, Thomas Monjalon, Patil, Harish; +Cc: dev
> From: Mody, Rasesh
> Sent: Thursday, January 11, 2018 11:03 AM
> To: 'Ferruh Yigit' <ferruh.yigit@intel.com>; Thomas Monjalon
> <thomas@monjalon.net>; Patil, Harish <Harish.Patil@cavium.com>
> Cc: dev@dpdk.org
> Subject: RE: [dpdk-dev] [PATCH] [18.02-rc2] net/qede: remove VF Tx switch
> option
>
> Hi Ferruh,
>
> > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Ferruh Yigit
> > Sent: Thursday, January 11, 2018 9:50 AM
> >
> > On 11/8/2017 12:41 AM, Thomas Monjalon wrote:
> > > The compile-time option CONFIG_RTE_LIBRTE_QEDE_VF_TX_SWITCH
> > > has been added just before the 17.11 release.
> > > Such new options are forbidden and must be replaced by a run-time
> > option.
> > > If it is not replaced in 18.02-rc1, this removal will be applied.
> >
> > I hope this is not forgotten!
>
> We'll submit this shortly.
Please check the patch link below that introduces a run-time driver option and replaces compile time option. It supersedes a patch, submitted by Thomas earlier, that only removes compile time option.
https://dpdk.org/dev/patchwork/patch/33696/
Thanks!
-Rasesh
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-01-12 22:00 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-08 0:41 [dpdk-dev] [PATCH] [18.02-rc2] net/qede: remove VF Tx switch option Thomas Monjalon
2018-01-11 17:50 ` Ferruh Yigit
2018-01-11 19:03 ` Mody, Rasesh
2018-01-12 22:00 ` Mody, Rasesh
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).