* [dpdk-dev] [PATCH] ixgbe: fix ixgbevf RX/TX function assignment
@ 2016-02-28 15:07 Zhe Tao
2016-03-04 5:30 ` Wu, Jingjing
2016-03-08 8:49 ` [dpdk-dev] [PATCH v2] " Zhe Tao
0 siblings, 2 replies; 7+ messages in thread
From: Zhe Tao @ 2016-02-28 15:07 UTC (permalink / raw)
To: dev
For the secondary process of DPDK to initialize ixgbevf, it will always
use the simple RX function or LRO RX function, and this behavior is not
the same RX/TX function selection logic as it is for the primary process,
so use the ixgbe_set_tx_function and ixgbe_set_rx_function to select the
RX/TX function when secondary process call the init function for eth dev.
Signed-off-by: Zhe Tao <zhe.tao@intel.com>
---
drivers/net/ixgbe/ixgbe_ethdev.c | 17 +++++++++++++++--
1 file changed, 15 insertions(+), 2 deletions(-)
diff --git a/drivers/net/ixgbe/ixgbe_ethdev.c b/drivers/net/ixgbe/ixgbe_ethdev.c
index 3e6fe86..0f9d048 100644
--- a/drivers/net/ixgbe/ixgbe_ethdev.c
+++ b/drivers/net/ixgbe/ixgbe_ethdev.c
@@ -1278,8 +1278,21 @@ eth_ixgbevf_dev_init(struct rte_eth_dev *eth_dev)
* has already done this work. Only check we don't need a different
* RX function */
if (rte_eal_process_type() != RTE_PROC_PRIMARY){
- if (eth_dev->data->scattered_rx)
- eth_dev->rx_pkt_burst = ixgbe_recv_pkts_lro_single_alloc;
+ struct ixgbe_tx_queue *txq;
+ /* TX queue function in primary, set by last queue initialized
+ * Tx queue may not initialized by primary process
+ */
+ if (eth_dev->data->tx_queues) {
+ txq = eth_dev->data->tx_queues[eth_dev->data->nb_tx_queues-1];
+ ixgbe_set_tx_function(eth_dev, txq);
+ } else {
+ /* Use default TX function if we get here */
+ PMD_INIT_LOG(NOTICE, "No TX queues configured yet. "
+ "Using default TX function.");
+ }
+
+ ixgbe_set_rx_function(eth_dev);
+
return 0;
}
--
2.1.4
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [dpdk-dev] [PATCH] ixgbe: fix ixgbevf RX/TX function assignment
2016-02-28 15:07 [dpdk-dev] [PATCH] ixgbe: fix ixgbevf RX/TX function assignment Zhe Tao
@ 2016-03-04 5:30 ` Wu, Jingjing
2016-03-08 8:49 ` [dpdk-dev] [PATCH v2] " Zhe Tao
1 sibling, 0 replies; 7+ messages in thread
From: Wu, Jingjing @ 2016-03-04 5:30 UTC (permalink / raw)
To: Tao, Zhe, dev
> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Zhe Tao
> Sent: Sunday, February 28, 2016 11:08 PM
> To: dev@dpdk.org
> Subject: [dpdk-dev] [PATCH] ixgbe: fix ixgbevf RX/TX function assignment
>
> For the secondary process of DPDK to initialize ixgbevf, it will always
> use the simple RX function or LRO RX function, and this behavior is not
> the same RX/TX function selection logic as it is for the primary process,
> so use the ixgbe_set_tx_function and ixgbe_set_rx_function to select the
> RX/TX function when secondary process call the init function for eth dev.
Fixes line is missing here.
^ permalink raw reply [flat|nested] 7+ messages in thread
* [dpdk-dev] [PATCH v2] ixgbe: fix ixgbevf RX/TX function assignment
2016-02-28 15:07 [dpdk-dev] [PATCH] ixgbe: fix ixgbevf RX/TX function assignment Zhe Tao
2016-03-04 5:30 ` Wu, Jingjing
@ 2016-03-08 8:49 ` Zhe Tao
2016-03-10 15:20 ` Bruce Richardson
2016-03-10 15:26 ` [dpdk-dev] [PATCH v3] " Bruce Richardson
1 sibling, 2 replies; 7+ messages in thread
From: Zhe Tao @ 2016-03-08 8:49 UTC (permalink / raw)
To: dev
For the secondary process of DPDK to initialize ixgbevf, it will always
use the simple RX function or LRO RX function, and this behavior is not
the same RX/TX function selection logic as it is for the primary process,
so use the ixgbe_set_tx_function and ixgbe_set_rx_function to select the
RX/TX function when secondary process call the init function for eth dev.
Fixes: abf7275bbaa2918 (ixgbe: move to drivers/net/)
V2:add fixes line
Signed-off-by: Zhe Tao <zhe.tao@intel.com>
---
drivers/net/ixgbe/ixgbe_ethdev.c | 17 +++++++++++++++--
1 file changed, 15 insertions(+), 2 deletions(-)
diff --git a/drivers/net/ixgbe/ixgbe_ethdev.c b/drivers/net/ixgbe/ixgbe_ethdev.c
index 3e6fe86..0f9d048 100644
--- a/drivers/net/ixgbe/ixgbe_ethdev.c
+++ b/drivers/net/ixgbe/ixgbe_ethdev.c
@@ -1278,8 +1278,21 @@ eth_ixgbevf_dev_init(struct rte_eth_dev *eth_dev)
* has already done this work. Only check we don't need a different
* RX function */
if (rte_eal_process_type() != RTE_PROC_PRIMARY){
- if (eth_dev->data->scattered_rx)
- eth_dev->rx_pkt_burst = ixgbe_recv_pkts_lro_single_alloc;
+ struct ixgbe_tx_queue *txq;
+ /* TX queue function in primary, set by last queue initialized
+ * Tx queue may not initialized by primary process
+ */
+ if (eth_dev->data->tx_queues) {
+ txq = eth_dev->data->tx_queues[eth_dev->data->nb_tx_queues-1];
+ ixgbe_set_tx_function(eth_dev, txq);
+ } else {
+ /* Use default TX function if we get here */
+ PMD_INIT_LOG(NOTICE, "No TX queues configured yet. "
+ "Using default TX function.");
+ }
+
+ ixgbe_set_rx_function(eth_dev);
+
return 0;
}
--
2.1.4
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [dpdk-dev] [PATCH v2] ixgbe: fix ixgbevf RX/TX function assignment
2016-03-08 8:49 ` [dpdk-dev] [PATCH v2] " Zhe Tao
@ 2016-03-10 15:20 ` Bruce Richardson
2016-03-10 15:26 ` [dpdk-dev] [PATCH v3] " Bruce Richardson
1 sibling, 0 replies; 7+ messages in thread
From: Bruce Richardson @ 2016-03-10 15:20 UTC (permalink / raw)
To: Zhe Tao; +Cc: dev
On Tue, Mar 08, 2016 at 04:49:41PM +0800, Zhe Tao wrote:
> For the secondary process of DPDK to initialize ixgbevf, it will always
> use the simple RX function or LRO RX function, and this behavior is not
> the same RX/TX function selection logic as it is for the primary process,
> so use the ixgbe_set_tx_function and ixgbe_set_rx_function to select the
> RX/TX function when secondary process call the init function for eth dev.
>
> Fixes: abf7275bbaa2918 (ixgbe: move to drivers/net/)
That doesn't look to be the commit that actually introduced the bug.
>
> V2:add fixes line
>
> Signed-off-by: Zhe Tao <zhe.tao@intel.com>
>
Checkpatch flags two minor issues with this:
CHECK:SPACING: spaces preferred around that '-' (ctx:VxV)
#33: FILE: drivers/net/ixgbe/ixgbe_ethdev.c:1299:
+ txq = eth_dev->data->tx_queues[eth_dev->data->nb_tx_queues-1];
^
WARNING:SPLIT_STRING: quoted string split across lines
#38: FILE: drivers/net/ixgbe/ixgbe_ethdev.c:1304:
+ PMD_INIT_LOG(NOTICE, "No TX queues configured yet. "
+ "Using default TX function.");
total: 0 errors, 1 warnings, 1 checks, 23 lines checked
/Bruce
^ permalink raw reply [flat|nested] 7+ messages in thread
* [dpdk-dev] [PATCH v3] ixgbe: fix ixgbevf RX/TX function assignment
2016-03-08 8:49 ` [dpdk-dev] [PATCH v2] " Zhe Tao
2016-03-10 15:20 ` Bruce Richardson
@ 2016-03-10 15:26 ` Bruce Richardson
2016-03-10 15:29 ` Zhang, Helin
1 sibling, 1 reply; 7+ messages in thread
From: Bruce Richardson @ 2016-03-10 15:26 UTC (permalink / raw)
To: dev, zhe.tao
From: Zhe Tao <zhe.tao@intel.com>
For the secondary process of DPDK to initialize ixgbevf, it will always
use the simple RX function or LRO RX function, and this behavior is not
the same RX/TX function selection logic as it is for the primary process.
Use the ixgbe_set_tx_function and ixgbe_set_rx_function to select the
RX/TX function when secondary process calls the init function for eth dev.
Fixes: 9d8a92628f21 ("ixgbe: remove simple scalar scattered Rx method")
Signed-off-by: Zhe Tao <zhe.tao@intel.com>
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
---
V3: fixed spacing and string splitting issues flagged by checkpatch.pl
adjusted the fixes line to show original commit to introduce the bug
V2: add fixes line
---
drivers/net/ixgbe/ixgbe_ethdev.c | 17 +++++++++++++++--
1 file changed, 15 insertions(+), 2 deletions(-)
diff --git a/drivers/net/ixgbe/ixgbe_ethdev.c b/drivers/net/ixgbe/ixgbe_ethdev.c
index 891be50..a9a1583 100644
--- a/drivers/net/ixgbe/ixgbe_ethdev.c
+++ b/drivers/net/ixgbe/ixgbe_ethdev.c
@@ -1291,8 +1291,21 @@ eth_ixgbevf_dev_init(struct rte_eth_dev *eth_dev)
* has already done this work. Only check we don't need a different
* RX function */
if (rte_eal_process_type() != RTE_PROC_PRIMARY){
- if (eth_dev->data->scattered_rx)
- eth_dev->rx_pkt_burst = ixgbe_recv_pkts_lro_single_alloc;
+ struct ixgbe_tx_queue *txq;
+ /* TX queue function in primary, set by last queue initialized
+ * Tx queue may not initialized by primary process
+ */
+ if (eth_dev->data->tx_queues) {
+ txq = eth_dev->data->tx_queues[eth_dev->data->nb_tx_queues - 1];
+ ixgbe_set_tx_function(eth_dev, txq);
+ } else {
+ /* Use default TX function if we get here */
+ PMD_INIT_LOG(NOTICE,
+ "No TX queues configured yet. Using default TX function.");
+ }
+
+ ixgbe_set_rx_function(eth_dev);
+
return 0;
}
--
2.5.0
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [dpdk-dev] [PATCH v3] ixgbe: fix ixgbevf RX/TX function assignment
2016-03-10 15:26 ` [dpdk-dev] [PATCH v3] " Bruce Richardson
@ 2016-03-10 15:29 ` Zhang, Helin
2016-03-10 15:33 ` Bruce Richardson
0 siblings, 1 reply; 7+ messages in thread
From: Zhang, Helin @ 2016-03-10 15:29 UTC (permalink / raw)
To: Richardson, Bruce, dev, Tao, Zhe
> -----Original Message-----
> From: Richardson, Bruce
> Sent: Thursday, March 10, 2016 11:26 PM
> To: dev@dpdk.org; Tao, Zhe <zhe.tao@intel.com>
> Cc: Zhang, Helin <helin.zhang@intel.com>; Richardson, Bruce
> <bruce.richardson@intel.com>
> Subject: [PATCH v3] ixgbe: fix ixgbevf RX/TX function assignment
>
> From: Zhe Tao <zhe.tao@intel.com>
Acked-by: Helin Zhang <helin.zhang@intel.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [dpdk-dev] [PATCH v3] ixgbe: fix ixgbevf RX/TX function assignment
2016-03-10 15:29 ` Zhang, Helin
@ 2016-03-10 15:33 ` Bruce Richardson
0 siblings, 0 replies; 7+ messages in thread
From: Bruce Richardson @ 2016-03-10 15:33 UTC (permalink / raw)
To: Zhang, Helin; +Cc: dev
On Thu, Mar 10, 2016 at 03:29:13PM +0000, Zhang, Helin wrote:
>
>
> > -----Original Message-----
> > From: Richardson, Bruce
> > Sent: Thursday, March 10, 2016 11:26 PM
> > To: dev@dpdk.org; Tao, Zhe <zhe.tao@intel.com>
> > Cc: Zhang, Helin <helin.zhang@intel.com>; Richardson, Bruce
> > <bruce.richardson@intel.com>
> > Subject: [PATCH v3] ixgbe: fix ixgbevf RX/TX function assignment
> >
> > From: Zhe Tao <zhe.tao@intel.com>
> Acked-by: Helin Zhang <helin.zhang@intel.com>
>
Applied to dpdk-next-net/rel_16_04
/Bruce
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2016-03-10 15:33 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-28 15:07 [dpdk-dev] [PATCH] ixgbe: fix ixgbevf RX/TX function assignment Zhe Tao
2016-03-04 5:30 ` Wu, Jingjing
2016-03-08 8:49 ` [dpdk-dev] [PATCH v2] " Zhe Tao
2016-03-10 15:20 ` Bruce Richardson
2016-03-10 15:26 ` [dpdk-dev] [PATCH v3] " Bruce Richardson
2016-03-10 15:29 ` Zhang, Helin
2016-03-10 15:33 ` Bruce Richardson
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).