DPDK patches and discussions
 help / color / mirror / Atom feed
* Re: [dpdk-dev] [PATCH] ethdev: fixed device info get issue
  2018-05-15 16:10 [dpdk-dev] [PATCH] ethdev: fixed device info get issue Qiming Yang
@ 2018-05-15  8:41 ` Andrew Rybchenko
  2018-05-15 11:30   ` [dpdk-dev] [dpdk-stable] " Ferruh Yigit
  2018-05-16  6:55   ` [dpdk-dev] " Yang, Qiming
  0 siblings, 2 replies; 5+ messages in thread
From: Andrew Rybchenko @ 2018-05-15  8:41 UTC (permalink / raw)
  To: Qiming Yang, dev; +Cc: stable

On 05/15/2018 07:10 PM, Qiming Yang wrote:
> This patch fixed error function call order in rte_eth_dev_configure.
> This wrong order makes user can't get correct device informations,
> and cause DCB configure issue.
>
> Fixes: 3be82f5cc5e3 ("ethdev: support PMD-tuned Tx/Rx parameters")
>
> Signed-off-by: Qiming Yang <qiming.yang@intel.com>
> ---
>   lib/librte_ethdev/rte_ethdev.c | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/lib/librte_ethdev/rte_ethdev.c b/lib/librte_ethdev/rte_ethdev.c
> index b3ed821..97316f3 100644
> --- a/lib/librte_ethdev/rte_ethdev.c
> +++ b/lib/librte_ethdev/rte_ethdev.c
> @@ -1053,6 +1053,9 @@ rte_eth_dev_configure(uint16_t port_id, uint16_t nb_rx_q, uint16_t nb_tx_q,
>   	RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_infos_get, -ENOTSUP);
>   	RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_configure, -ENOTSUP);
>   
> +	/* Copy the dev_conf parameter into the dev structure */
> +	memcpy(&dev->data->dev_conf, &local_conf, sizeof(dev->data->dev_conf));
> +
>   	rte_eth_dev_info_get(port_id, &dev_info);
>   
>   	/* If number of queues specified by application for both Rx and Tx is
> @@ -1098,9 +1101,6 @@ rte_eth_dev_configure(uint16_t port_id, uint16_t nb_rx_q, uint16_t nb_tx_q,
>   		rte_eth_convert_rx_offload_bitfield(
>   				&dev_conf->rxmode, &local_conf.rxmode.offloads);
>   
> -	/* Copy the dev_conf parameter into the dev structure */
> -	memcpy(&dev->data->dev_conf, &local_conf, sizeof(dev->data->dev_conf));
> -

As I understand the goal of this copy is to pickup offloads fill in done 
three lines
above. The patch breaks it.

>   	/*
>   	 * Check that the numbers of RX and TX queues are not greater
>   	 * than the maximum number of RX and TX queues supported by the

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-dev] [dpdk-stable] [PATCH] ethdev: fixed device info get issue
  2018-05-15  8:41 ` Andrew Rybchenko
@ 2018-05-15 11:30   ` Ferruh Yigit
  2018-05-16  6:53     ` Yang, Qiming
  2018-05-16  6:55   ` [dpdk-dev] " Yang, Qiming
  1 sibling, 1 reply; 5+ messages in thread
From: Ferruh Yigit @ 2018-05-15 11:30 UTC (permalink / raw)
  To: Andrew Rybchenko, Qiming Yang, dev; +Cc: stable

On 5/15/2018 9:41 AM, Andrew Rybchenko wrote:
> On 05/15/2018 07:10 PM, Qiming Yang wrote:
>> This patch fixed error function call order in rte_eth_dev_configure.
>> This wrong order makes user can't get correct device informations,
>> and cause DCB configure issue.
>>
>> Fixes: 3be82f5cc5e3 ("ethdev: support PMD-tuned Tx/Rx parameters")
>>
>> Signed-off-by: Qiming Yang <qiming.yang@intel.com>
>> ---
>>   lib/librte_ethdev/rte_ethdev.c | 6 +++---
>>   1 file changed, 3 insertions(+), 3 deletions(-)
>>
>> diff --git a/lib/librte_ethdev/rte_ethdev.c b/lib/librte_ethdev/rte_ethdev.c
>> index b3ed821..97316f3 100644
>> --- a/lib/librte_ethdev/rte_ethdev.c
>> +++ b/lib/librte_ethdev/rte_ethdev.c
>> @@ -1053,6 +1053,9 @@ rte_eth_dev_configure(uint16_t port_id, uint16_t nb_rx_q, uint16_t nb_tx_q,
>>   	RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_infos_get, -ENOTSUP);
>>   	RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_configure, -ENOTSUP);
>>   
>> +	/* Copy the dev_conf parameter into the dev structure */
>> +	memcpy(&dev->data->dev_conf, &local_conf, sizeof(dev->data->dev_conf));
>> +
>>   	rte_eth_dev_info_get(port_id, &dev_info);
>>   
>>   	/* If number of queues specified by application for both Rx and Tx is
>> @@ -1098,9 +1101,6 @@ rte_eth_dev_configure(uint16_t port_id, uint16_t nb_rx_q, uint16_t nb_tx_q,
>>   		rte_eth_convert_rx_offload_bitfield(
>>   				&dev_conf->rxmode, &local_conf.rxmode.offloads);
>>   
>> -	/* Copy the dev_conf parameter into the dev structure */
>> -	memcpy(&dev->data->dev_conf, &local_conf, sizeof(dev->data->dev_conf));
>> -
> 
> As I understand the goal of this copy is to pickup offloads fill in done 
> three lines
> above. The patch breaks it.

It can be possible to copy only local_conf.rxmode.offloads here:
dev->data->dev_conf.rxmode.offloads = local_conf.rxmode.offloads;

And this assignment can be done within
"if (dev_conf->rxmode.ignore_offload_bitfield == 0)" block

And can you please add a comment to memcpy that it is required for
dev_infos_get() and needs to be called before it.
Also more details into commit log why this is required for DCB configure.

> 
>>   	/*
>>   	 * Check that the numbers of RX and TX queues are not greater
>>   	 * than the maximum number of RX and TX queues supported by the
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [dpdk-dev] [PATCH] ethdev: fixed device info get issue
@ 2018-05-15 16:10 Qiming Yang
  2018-05-15  8:41 ` Andrew Rybchenko
  0 siblings, 1 reply; 5+ messages in thread
From: Qiming Yang @ 2018-05-15 16:10 UTC (permalink / raw)
  To: dev; +Cc: stable, Qiming Yang

This patch fixed error function call order in rte_eth_dev_configure.
This wrong order makes user can't get correct device informations,
and cause DCB configure issue.

Fixes: 3be82f5cc5e3 ("ethdev: support PMD-tuned Tx/Rx parameters")

Signed-off-by: Qiming Yang <qiming.yang@intel.com>
---
 lib/librte_ethdev/rte_ethdev.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/librte_ethdev/rte_ethdev.c b/lib/librte_ethdev/rte_ethdev.c
index b3ed821..97316f3 100644
--- a/lib/librte_ethdev/rte_ethdev.c
+++ b/lib/librte_ethdev/rte_ethdev.c
@@ -1053,6 +1053,9 @@ rte_eth_dev_configure(uint16_t port_id, uint16_t nb_rx_q, uint16_t nb_tx_q,
 	RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_infos_get, -ENOTSUP);
 	RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_configure, -ENOTSUP);
 
+	/* Copy the dev_conf parameter into the dev structure */
+	memcpy(&dev->data->dev_conf, &local_conf, sizeof(dev->data->dev_conf));
+
 	rte_eth_dev_info_get(port_id, &dev_info);
 
 	/* If number of queues specified by application for both Rx and Tx is
@@ -1098,9 +1101,6 @@ rte_eth_dev_configure(uint16_t port_id, uint16_t nb_rx_q, uint16_t nb_tx_q,
 		rte_eth_convert_rx_offload_bitfield(
 				&dev_conf->rxmode, &local_conf.rxmode.offloads);
 
-	/* Copy the dev_conf parameter into the dev structure */
-	memcpy(&dev->data->dev_conf, &local_conf, sizeof(dev->data->dev_conf));
-
 	/*
 	 * Check that the numbers of RX and TX queues are not greater
 	 * than the maximum number of RX and TX queues supported by the
-- 
2.9.5

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-dev] [dpdk-stable] [PATCH] ethdev: fixed device info get issue
  2018-05-15 11:30   ` [dpdk-dev] [dpdk-stable] " Ferruh Yigit
@ 2018-05-16  6:53     ` Yang, Qiming
  0 siblings, 0 replies; 5+ messages in thread
From: Yang, Qiming @ 2018-05-16  6:53 UTC (permalink / raw)
  To: Yigit, Ferruh, Andrew Rybchenko, dev; +Cc: stable

> -----Original Message-----
> From: Yigit, Ferruh
> Sent: Tuesday, May 15, 2018 7:31 PM
> To: Andrew Rybchenko <arybchenko@solarflare.com>; Yang, Qiming
> <qiming.yang@intel.com>; dev@dpdk.org
> Cc: stable@dpdk.org
> Subject: Re: [dpdk-stable] [dpdk-dev] [PATCH] ethdev: fixed device info get issue
> 
> On 5/15/2018 9:41 AM, Andrew Rybchenko wrote:
> > On 05/15/2018 07:10 PM, Qiming Yang wrote:
> >> This patch fixed error function call order in rte_eth_dev_configure.
> >> This wrong order makes user can't get correct device informations,
> >> and cause DCB configure issue.
> >>
> >> Fixes: 3be82f5cc5e3 ("ethdev: support PMD-tuned Tx/Rx parameters")
> >>
> >> Signed-off-by: Qiming Yang <qiming.yang@intel.com>
> >> ---
> >>   lib/librte_ethdev/rte_ethdev.c | 6 +++---
> >>   1 file changed, 3 insertions(+), 3 deletions(-)
> >>
> >> diff --git a/lib/librte_ethdev/rte_ethdev.c
> >> b/lib/librte_ethdev/rte_ethdev.c index b3ed821..97316f3 100644
> >> --- a/lib/librte_ethdev/rte_ethdev.c
> >> +++ b/lib/librte_ethdev/rte_ethdev.c
> >> @@ -1053,6 +1053,9 @@ rte_eth_dev_configure(uint16_t port_id, uint16_t
> nb_rx_q, uint16_t nb_tx_q,
> >>   	RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_infos_get, -
> ENOTSUP);
> >>   	RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_configure, -
> ENOTSUP);
> >>
> >> +	/* Copy the dev_conf parameter into the dev structure */
> >> +	memcpy(&dev->data->dev_conf, &local_conf,
> >> +sizeof(dev->data->dev_conf));
> >> +
> >>   	rte_eth_dev_info_get(port_id, &dev_info);
> >>
> >>   	/* If number of queues specified by application for both Rx and Tx
> >> is @@ -1098,9 +1101,6 @@ rte_eth_dev_configure(uint16_t port_id,
> uint16_t nb_rx_q, uint16_t nb_tx_q,
> >>   		rte_eth_convert_rx_offload_bitfield(
> >>   				&dev_conf->rxmode,
> &local_conf.rxmode.offloads);
> >>
> >> -	/* Copy the dev_conf parameter into the dev structure */
> >> -	memcpy(&dev->data->dev_conf, &local_conf, sizeof(dev->data-
> >dev_conf));
> >> -
> >
> > As I understand the goal of this copy is to pickup offloads fill in
> > done three lines above. The patch breaks it.
> 
> It can be possible to copy only local_conf.rxmode.offloads here:
> dev->data->dev_conf.rxmode.offloads = local_conf.rxmode.offloads;
> 
> And this assignment can be done within
> "if (dev_conf->rxmode.ignore_offload_bitfield == 0)" block
> 
Thanks for the solution.

> And can you please add a comment to memcpy that it is required for
> dev_infos_get() and needs to be called before it.
> Also more details into commit log why this is required for DCB configure.
> 
Sure, I'll add detail comment.

> >
> >>   	/*
> >>   	 * Check that the numbers of RX and TX queues are not greater
> >>   	 * than the maximum number of RX and TX queues supported by the
> >


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-dev] [PATCH] ethdev: fixed device info get issue
  2018-05-15  8:41 ` Andrew Rybchenko
  2018-05-15 11:30   ` [dpdk-dev] [dpdk-stable] " Ferruh Yigit
@ 2018-05-16  6:55   ` Yang, Qiming
  1 sibling, 0 replies; 5+ messages in thread
From: Yang, Qiming @ 2018-05-16  6:55 UTC (permalink / raw)
  To: Andrew Rybchenko, dev; +Cc: stable


From: Andrew Rybchenko [mailto:arybchenko@solarflare.com]
Sent: Tuesday, May 15, 2018 4:42 PM
To: Yang, Qiming <qiming.yang@intel.com>; dev@dpdk.org
Cc: stable@dpdk.org
Subject: Re: [dpdk-dev] [PATCH] ethdev: fixed device info get issue

On 05/15/2018 07:10 PM, Qiming Yang wrote:

This patch fixed error function call order in rte_eth_dev_configure.

This wrong order makes user can't get correct device informations,

and cause DCB configure issue.



Fixes: 3be82f5cc5e3 ("ethdev: support PMD-tuned Tx/Rx parameters")



Signed-off-by: Qiming Yang <qiming.yang@intel.com><mailto:qiming.yang@intel.com>

---

 lib/librte_ethdev/rte_ethdev.c | 6 +++---

 1 file changed, 3 insertions(+), 3 deletions(-)



diff --git a/lib/librte_ethdev/rte_ethdev.c b/lib/librte_ethdev/rte_ethdev.c

index b3ed821..97316f3 100644

--- a/lib/librte_ethdev/rte_ethdev.c

+++ b/lib/librte_ethdev/rte_ethdev.c

@@ -1053,6 +1053,9 @@ rte_eth_dev_configure(uint16_t port_id, uint16_t nb_rx_q, uint16_t nb_tx_q,

  RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_infos_get, -ENOTSUP);

  RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_configure, -ENOTSUP);



+        /* Copy the dev_conf parameter into the dev structure */

+        memcpy(&dev->data->dev_conf, &local_conf, sizeof(dev->data->dev_conf));

+

         rte_eth_dev_info_get(port_id, &dev_info);



         /* If number of queues specified by application for both Rx and Tx is

@@ -1098,9 +1101,6 @@ rte_eth_dev_configure(uint16_t port_id, uint16_t nb_rx_q, uint16_t nb_tx_q,

                rte_eth_convert_rx_offload_bitfield(

                                &dev_conf->rxmode, &local_conf.rxmode.offloads);



-        /* Copy the dev_conf parameter into the dev structure */

-        memcpy(&dev->data->dev_conf, &local_conf, sizeof(dev->data->dev_conf));

-

As I understand the goal of this copy is to pickup offloads fill in done three lines
above. The patch breaks it.

Thanks for your reminder, I don’t know the background before. But Ferruh give a solution to resolve
The conflict. I’ll send a v2 patch later.



         /*

          * Check that the numbers of RX and TX queues are not greater

          * than the maximum number of RX and TX queues supported by the


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-05-16  6:55 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-15 16:10 [dpdk-dev] [PATCH] ethdev: fixed device info get issue Qiming Yang
2018-05-15  8:41 ` Andrew Rybchenko
2018-05-15 11:30   ` [dpdk-dev] [dpdk-stable] " Ferruh Yigit
2018-05-16  6:53     ` Yang, Qiming
2018-05-16  6:55   ` [dpdk-dev] " Yang, Qiming

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).