DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] net/virtio-user: drop attribute "unused" for memory callback
@ 2019-11-19  7:12 Tiwei Bie
  2019-11-21  0:55 ` Maxime Coquelin
  0 siblings, 1 reply; 6+ messages in thread
From: Tiwei Bie @ 2019-11-19  7:12 UTC (permalink / raw)
  To: dev, maxime.coquelin, zhihong.wang; +Cc: stable

The "addr" param has been used since the event callbacks are enabled
for external memory. So the "__rte_unused" should be dropped.

Besides, slightly refine the coding style by consistently assuming
tabs are 8 characters.

Fixes: f32c7c9de961 ("malloc: enable event callbacks for external memory")
Cc: stable@dpdk.org

Signed-off-by: Tiwei Bie <tiwei.bie@intel.com>
---
 drivers/net/virtio/virtio_user/virtio_user_dev.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/net/virtio/virtio_user/virtio_user_dev.c b/drivers/net/virtio/virtio_user/virtio_user_dev.c
index a4400e772..ea016e85d 100644
--- a/drivers/net/virtio/virtio_user/virtio_user_dev.c
+++ b/drivers/net/virtio/virtio_user/virtio_user_dev.c
@@ -315,9 +315,9 @@ virtio_user_fill_intr_handle(struct virtio_user_dev *dev)
 
 static void
 virtio_user_mem_event_cb(enum rte_mem_event type __rte_unused,
-						 const void *addr __rte_unused,
-						 size_t len __rte_unused,
-						 void *arg)
+			 const void *addr,
+			 size_t len __rte_unused,
+			 void *arg)
 {
 	struct virtio_user_dev *dev = arg;
 	struct rte_memseg_list *msl;
-- 
2.23.0


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

* Re: [dpdk-dev] [PATCH] net/virtio-user: drop attribute "unused" for memory callback
  2019-11-19  7:12 [dpdk-dev] [PATCH] net/virtio-user: drop attribute "unused" for memory callback Tiwei Bie
@ 2019-11-21  0:55 ` Maxime Coquelin
  2019-11-21  8:58   ` Ferruh Yigit
  2019-11-21 14:29   ` Ferruh Yigit
  0 siblings, 2 replies; 6+ messages in thread
From: Maxime Coquelin @ 2019-11-21  0:55 UTC (permalink / raw)
  To: Tiwei Bie, dev, zhihong.wang, David Marchand, Ferruh Yigit; +Cc: stable



On 11/19/19 8:12 AM, Tiwei Bie wrote:
> The "addr" param has been used since the event callbacks are enabled
> for external memory. So the "__rte_unused" should be dropped.
> 
> Besides, slightly refine the coding style by consistently assuming
> tabs are 8 characters.
> 
> Fixes: f32c7c9de961 ("malloc: enable event callbacks for external memory")
> Cc: stable@dpdk.org
> 
> Signed-off-by: Tiwei Bie <tiwei.bie@intel.com>
> ---
>  drivers/net/virtio/virtio_user/virtio_user_dev.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/net/virtio/virtio_user/virtio_user_dev.c b/drivers/net/virtio/virtio_user/virtio_user_dev.c
> index a4400e772..ea016e85d 100644
> --- a/drivers/net/virtio/virtio_user/virtio_user_dev.c
> +++ b/drivers/net/virtio/virtio_user/virtio_user_dev.c
> @@ -315,9 +315,9 @@ virtio_user_fill_intr_handle(struct virtio_user_dev *dev)
>  
>  static void
>  virtio_user_mem_event_cb(enum rte_mem_event type __rte_unused,
> -						 const void *addr __rte_unused,
> -						 size_t len __rte_unused,
> -						 void *arg)
> +			 const void *addr,
> +			 size_t len __rte_unused,
> +			 void *arg)
>  {
>  	struct virtio_user_dev *dev = arg;
>  	struct rte_memseg_list *msl;
> 

Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>

David or Ferruh, could you pick it directly?
I don't plan to prepare a branch as I have this single patch for next
-rc.

Thanks,
Maxime


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

* Re: [dpdk-dev] [PATCH] net/virtio-user: drop attribute "unused" for memory callback
  2019-11-21  0:55 ` Maxime Coquelin
@ 2019-11-21  8:58   ` Ferruh Yigit
  2019-11-21 12:09     ` Burakov, Anatoly
  2019-11-21 14:29   ` Ferruh Yigit
  1 sibling, 1 reply; 6+ messages in thread
From: Ferruh Yigit @ 2019-11-21  8:58 UTC (permalink / raw)
  To: Maxime Coquelin, Tiwei Bie, dev, zhihong.wang, David Marchand; +Cc: stable

On 11/21/2019 12:55 AM, Maxime Coquelin wrote:
> 
> 
> On 11/19/19 8:12 AM, Tiwei Bie wrote:
>> The "addr" param has been used since the event callbacks are enabled
>> for external memory. So the "__rte_unused" should be dropped.
>>
>> Besides, slightly refine the coding style by consistently assuming
>> tabs are 8 characters.
>>
>> Fixes: f32c7c9de961 ("malloc: enable event callbacks for external memory")
>> Cc: stable@dpdk.org
>>
>> Signed-off-by: Tiwei Bie <tiwei.bie@intel.com>
>> ---
>>  drivers/net/virtio/virtio_user/virtio_user_dev.c | 6 +++---
>>  1 file changed, 3 insertions(+), 3 deletions(-)
>>
>> diff --git a/drivers/net/virtio/virtio_user/virtio_user_dev.c b/drivers/net/virtio/virtio_user/virtio_user_dev.c
>> index a4400e772..ea016e85d 100644
>> --- a/drivers/net/virtio/virtio_user/virtio_user_dev.c
>> +++ b/drivers/net/virtio/virtio_user/virtio_user_dev.c
>> @@ -315,9 +315,9 @@ virtio_user_fill_intr_handle(struct virtio_user_dev *dev)
>>  
>>  static void
>>  virtio_user_mem_event_cb(enum rte_mem_event type __rte_unused,
>> -						 const void *addr __rte_unused,
>> -						 size_t len __rte_unused,
>> -						 void *arg)
>> +			 const void *addr,
>> +			 size_t len __rte_unused,
>> +			 void *arg)
>>  {
>>  	struct virtio_user_dev *dev = arg;
>>  	struct rte_memseg_list *msl;
>>
> 
> Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>
> 
> David or Ferruh, could you pick it directly?
> I don't plan to prepare a branch as I have this single patch for next
> -rc.

I can get it, but can you please confirm that it is safe to go to rc4, since
already missed rc3?
Also can you please give your review/ack if you already reviewed.

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

* Re: [dpdk-dev] [PATCH] net/virtio-user: drop attribute "unused" for memory callback
  2019-11-21  8:58   ` Ferruh Yigit
@ 2019-11-21 12:09     ` Burakov, Anatoly
  2019-11-21 13:04       ` Ferruh Yigit
  0 siblings, 1 reply; 6+ messages in thread
From: Burakov, Anatoly @ 2019-11-21 12:09 UTC (permalink / raw)
  To: Ferruh Yigit, Maxime Coquelin, Tiwei Bie, dev, zhihong.wang,
	David Marchand
  Cc: stable

On 21-Nov-19 8:58 AM, Ferruh Yigit wrote:
> On 11/21/2019 12:55 AM, Maxime Coquelin wrote:
>>
>>
>> On 11/19/19 8:12 AM, Tiwei Bie wrote:
>>> The "addr" param has been used since the event callbacks are enabled
>>> for external memory. So the "__rte_unused" should be dropped.
>>>
>>> Besides, slightly refine the coding style by consistently assuming
>>> tabs are 8 characters.
>>>
>>> Fixes: f32c7c9de961 ("malloc: enable event callbacks for external memory")
>>> Cc: stable@dpdk.org
>>>
>>> Signed-off-by: Tiwei Bie <tiwei.bie@intel.com>
>>> ---
>>>   drivers/net/virtio/virtio_user/virtio_user_dev.c | 6 +++---
>>>   1 file changed, 3 insertions(+), 3 deletions(-)
>>>
>>> diff --git a/drivers/net/virtio/virtio_user/virtio_user_dev.c b/drivers/net/virtio/virtio_user/virtio_user_dev.c
>>> index a4400e772..ea016e85d 100644
>>> --- a/drivers/net/virtio/virtio_user/virtio_user_dev.c
>>> +++ b/drivers/net/virtio/virtio_user/virtio_user_dev.c
>>> @@ -315,9 +315,9 @@ virtio_user_fill_intr_handle(struct virtio_user_dev *dev)
>>>   
>>>   static void
>>>   virtio_user_mem_event_cb(enum rte_mem_event type __rte_unused,
>>> -						 const void *addr __rte_unused,
>>> -						 size_t len __rte_unused,
>>> -						 void *arg)
>>> +			 const void *addr,
>>> +			 size_t len __rte_unused,
>>> +			 void *arg)
>>>   {
>>>   	struct virtio_user_dev *dev = arg;
>>>   	struct rte_memseg_list *msl;
>>>
>>
>> Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>
>>
>> David or Ferruh, could you pick it directly?
>> I don't plan to prepare a branch as I have this single patch for next
>> -rc.
> 
> I can get it, but can you please confirm that it is safe to go to rc4, since
> already missed rc3?
> Also can you please give your review/ack if you already reviewed.
> 

I don't think there's anything unsafe about removing __rte_unused 
parameter :) The code itself hasn't changed.

-- 
Thanks,
Anatoly

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

* Re: [dpdk-dev] [PATCH] net/virtio-user: drop attribute "unused" for memory callback
  2019-11-21 12:09     ` Burakov, Anatoly
@ 2019-11-21 13:04       ` Ferruh Yigit
  0 siblings, 0 replies; 6+ messages in thread
From: Ferruh Yigit @ 2019-11-21 13:04 UTC (permalink / raw)
  To: Burakov, Anatoly, Maxime Coquelin, Tiwei Bie, dev, zhihong.wang,
	David Marchand
  Cc: stable

On 11/21/2019 12:09 PM, Burakov, Anatoly wrote:
> On 21-Nov-19 8:58 AM, Ferruh Yigit wrote:
>> On 11/21/2019 12:55 AM, Maxime Coquelin wrote:
>>>
>>>
>>> On 11/19/19 8:12 AM, Tiwei Bie wrote:
>>>> The "addr" param has been used since the event callbacks are enabled
>>>> for external memory. So the "__rte_unused" should be dropped.
>>>>
>>>> Besides, slightly refine the coding style by consistently assuming
>>>> tabs are 8 characters.
>>>>
>>>> Fixes: f32c7c9de961 ("malloc: enable event callbacks for external memory")
>>>> Cc: stable@dpdk.org
>>>>
>>>> Signed-off-by: Tiwei Bie <tiwei.bie@intel.com>
>>>> ---
>>>>   drivers/net/virtio/virtio_user/virtio_user_dev.c | 6 +++---
>>>>   1 file changed, 3 insertions(+), 3 deletions(-)
>>>>
>>>> diff --git a/drivers/net/virtio/virtio_user/virtio_user_dev.c b/drivers/net/virtio/virtio_user/virtio_user_dev.c
>>>> index a4400e772..ea016e85d 100644
>>>> --- a/drivers/net/virtio/virtio_user/virtio_user_dev.c
>>>> +++ b/drivers/net/virtio/virtio_user/virtio_user_dev.c
>>>> @@ -315,9 +315,9 @@ virtio_user_fill_intr_handle(struct virtio_user_dev *dev)
>>>>   
>>>>   static void
>>>>   virtio_user_mem_event_cb(enum rte_mem_event type __rte_unused,
>>>> -						 const void *addr __rte_unused,
>>>> -						 size_t len __rte_unused,
>>>> -						 void *arg)
>>>> +			 const void *addr,
>>>> +			 size_t len __rte_unused,
>>>> +			 void *arg)
>>>>   {
>>>>   	struct virtio_user_dev *dev = arg;
>>>>   	struct rte_memseg_list *msl;
>>>>
>>>
>>> Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>
>>>
>>> David or Ferruh, could you pick it directly?
>>> I don't plan to prepare a branch as I have this single patch for next
>>> -rc.
>>
>> I can get it, but can you please confirm that it is safe to go to rc4, since
>> already missed rc3?
>> Also can you please give your review/ack if you already reviewed.
>>
> 
> I don't think there's anything unsafe about removing __rte_unused 
> parameter :) The code itself hasn't changed.
> 

I haven't checked the patch when I write it, agree it looks pretty safe to proceed.

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

* Re: [dpdk-dev] [PATCH] net/virtio-user: drop attribute "unused" for memory callback
  2019-11-21  0:55 ` Maxime Coquelin
  2019-11-21  8:58   ` Ferruh Yigit
@ 2019-11-21 14:29   ` Ferruh Yigit
  1 sibling, 0 replies; 6+ messages in thread
From: Ferruh Yigit @ 2019-11-21 14:29 UTC (permalink / raw)
  To: Maxime Coquelin, Tiwei Bie, dev, zhihong.wang, David Marchand; +Cc: stable

On 11/21/2019 12:55 AM, Maxime Coquelin wrote:
> 
> 
> On 11/19/19 8:12 AM, Tiwei Bie wrote:
>> The "addr" param has been used since the event callbacks are enabled
>> for external memory. So the "__rte_unused" should be dropped.
>>
>> Besides, slightly refine the coding style by consistently assuming
>> tabs are 8 characters.
>>
>> Fixes: f32c7c9de961 ("malloc: enable event callbacks for external memory")
>> Cc: stable@dpdk.org
>>
>> Signed-off-by: Tiwei Bie <tiwei.bie@intel.com>
>> ---
>>  drivers/net/virtio/virtio_user/virtio_user_dev.c | 6 +++---
>>  1 file changed, 3 insertions(+), 3 deletions(-)
>>
>> diff --git a/drivers/net/virtio/virtio_user/virtio_user_dev.c b/drivers/net/virtio/virtio_user/virtio_user_dev.c
>> index a4400e772..ea016e85d 100644
>> --- a/drivers/net/virtio/virtio_user/virtio_user_dev.c
>> +++ b/drivers/net/virtio/virtio_user/virtio_user_dev.c
>> @@ -315,9 +315,9 @@ virtio_user_fill_intr_handle(struct virtio_user_dev *dev)
>>  
>>  static void
>>  virtio_user_mem_event_cb(enum rte_mem_event type __rte_unused,
>> -						 const void *addr __rte_unused,
>> -						 size_t len __rte_unused,
>> -						 void *arg)
>> +			 const void *addr,
>> +			 size_t len __rte_unused,
>> +			 void *arg)
>>  {
>>  	struct virtio_user_dev *dev = arg;
>>  	struct rte_memseg_list *msl;
>>
> 
> Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>
> 

Applied to dpdk-next-net/master, thanks.

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

end of thread, other threads:[~2019-11-21 14:30 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-19  7:12 [dpdk-dev] [PATCH] net/virtio-user: drop attribute "unused" for memory callback Tiwei Bie
2019-11-21  0:55 ` Maxime Coquelin
2019-11-21  8:58   ` Ferruh Yigit
2019-11-21 12:09     ` Burakov, Anatoly
2019-11-21 13:04       ` Ferruh Yigit
2019-11-21 14:29   ` Ferruh Yigit

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