All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] vhost-vdpa: fix indentation in vdpa_ops
@ 2020-09-16 15:26 Stefano Garzarella
  2020-09-16 15:40 ` Li Qiang
  2020-09-16 15:48 ` Laurent Vivier
  0 siblings, 2 replies; 4+ messages in thread
From: Stefano Garzarella @ 2020-09-16 15:26 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, lulu, Michael S. Tsirkin

This patch fixes wrong indentation of some vdpa_ops fields introduced
with the initial commit 108a64818e ("vhost-vdpa: introduce vhost-vdpa
backend")

Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
---
 hw/virtio/vhost-vdpa.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/hw/virtio/vhost-vdpa.c b/hw/virtio/vhost-vdpa.c
index 4580f3efd8..e123837a55 100644
--- a/hw/virtio/vhost-vdpa.c
+++ b/hw/virtio/vhost-vdpa.c
@@ -469,6 +469,6 @@ const VhostOps vdpa_ops = {
         .vhost_send_device_iotlb_msg = NULL,
         .vhost_dev_start = vhost_vdpa_dev_start,
         .vhost_get_device_id = vhost_vdpa_get_device_id,
-         .vhost_vq_get_addr = vhost_vdpa_vq_get_addr,
-         .vhost_force_iommu = vhost_vdpa_force_iommu,
+        .vhost_vq_get_addr = vhost_vdpa_vq_get_addr,
+        .vhost_force_iommu = vhost_vdpa_force_iommu,
 };
-- 
2.26.2



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

* Re: [PATCH] vhost-vdpa: fix indentation in vdpa_ops
  2020-09-16 15:26 [PATCH] vhost-vdpa: fix indentation in vdpa_ops Stefano Garzarella
@ 2020-09-16 15:40 ` Li Qiang
  2020-09-16 15:48 ` Laurent Vivier
  1 sibling, 0 replies; 4+ messages in thread
From: Li Qiang @ 2020-09-16 15:40 UTC (permalink / raw)
  To: Stefano Garzarella
  Cc: qemu-trivial, Qemu Developers, Cindy Lu, Michael S. Tsirkin

Stefano Garzarella <sgarzare@redhat.com> 于2020年9月16日周三 下午11:27写道:
>
> This patch fixes wrong indentation of some vdpa_ops fields introduced
> with the initial commit 108a64818e ("vhost-vdpa: introduce vhost-vdpa
> backend")
>
> Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>

Reviewed-by: Li Qiang <liq3ea@gmail.com>

> ---
>  hw/virtio/vhost-vdpa.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/hw/virtio/vhost-vdpa.c b/hw/virtio/vhost-vdpa.c
> index 4580f3efd8..e123837a55 100644
> --- a/hw/virtio/vhost-vdpa.c
> +++ b/hw/virtio/vhost-vdpa.c
> @@ -469,6 +469,6 @@ const VhostOps vdpa_ops = {
>          .vhost_send_device_iotlb_msg = NULL,
>          .vhost_dev_start = vhost_vdpa_dev_start,
>          .vhost_get_device_id = vhost_vdpa_get_device_id,
> -         .vhost_vq_get_addr = vhost_vdpa_vq_get_addr,
> -         .vhost_force_iommu = vhost_vdpa_force_iommu,
> +        .vhost_vq_get_addr = vhost_vdpa_vq_get_addr,
> +        .vhost_force_iommu = vhost_vdpa_force_iommu,
>  };
> --
> 2.26.2
>
>


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

* Re: [PATCH] vhost-vdpa: fix indentation in vdpa_ops
  2020-09-16 15:26 [PATCH] vhost-vdpa: fix indentation in vdpa_ops Stefano Garzarella
  2020-09-16 15:40 ` Li Qiang
@ 2020-09-16 15:48 ` Laurent Vivier
  2020-09-23 17:06   ` Laurent Vivier
  1 sibling, 1 reply; 4+ messages in thread
From: Laurent Vivier @ 2020-09-16 15:48 UTC (permalink / raw)
  To: Stefano Garzarella, qemu-devel
  Cc: qemu-trivial, Jason Wang, lulu, Michael S. Tsirkin

Le 16/09/2020 à 17:26, Stefano Garzarella a écrit :
> This patch fixes wrong indentation of some vdpa_ops fields introduced
> with the initial commit 108a64818e ("vhost-vdpa: introduce vhost-vdpa
> backend")
> 
> Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
> ---
>  hw/virtio/vhost-vdpa.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/hw/virtio/vhost-vdpa.c b/hw/virtio/vhost-vdpa.c
> index 4580f3efd8..e123837a55 100644
> --- a/hw/virtio/vhost-vdpa.c
> +++ b/hw/virtio/vhost-vdpa.c
> @@ -469,6 +469,6 @@ const VhostOps vdpa_ops = {
>          .vhost_send_device_iotlb_msg = NULL,
>          .vhost_dev_start = vhost_vdpa_dev_start,
>          .vhost_get_device_id = vhost_vdpa_get_device_id,
> -         .vhost_vq_get_addr = vhost_vdpa_vq_get_addr,
> -         .vhost_force_iommu = vhost_vdpa_force_iommu,
> +        .vhost_vq_get_addr = vhost_vdpa_vq_get_addr,
> +        .vhost_force_iommu = vhost_vdpa_force_iommu,
>  };
> 

Reviewed-by: Laurent Vivier <laurent@vivier.eu>

CC: Jason (he already has a cleanup series for vDPA)


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

* Re: [PATCH] vhost-vdpa: fix indentation in vdpa_ops
  2020-09-16 15:48 ` Laurent Vivier
@ 2020-09-23 17:06   ` Laurent Vivier
  0 siblings, 0 replies; 4+ messages in thread
From: Laurent Vivier @ 2020-09-23 17:06 UTC (permalink / raw)
  To: Stefano Garzarella, qemu-devel
  Cc: qemu-trivial, Jason Wang, lulu, Michael S. Tsirkin

Le 16/09/2020 à 17:48, Laurent Vivier a écrit :
> Le 16/09/2020 à 17:26, Stefano Garzarella a écrit :
>> This patch fixes wrong indentation of some vdpa_ops fields introduced
>> with the initial commit 108a64818e ("vhost-vdpa: introduce vhost-vdpa
>> backend")
>>
>> Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
>> ---
>>  hw/virtio/vhost-vdpa.c | 4 ++--
>>  1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/hw/virtio/vhost-vdpa.c b/hw/virtio/vhost-vdpa.c
>> index 4580f3efd8..e123837a55 100644
>> --- a/hw/virtio/vhost-vdpa.c
>> +++ b/hw/virtio/vhost-vdpa.c
>> @@ -469,6 +469,6 @@ const VhostOps vdpa_ops = {
>>          .vhost_send_device_iotlb_msg = NULL,
>>          .vhost_dev_start = vhost_vdpa_dev_start,
>>          .vhost_get_device_id = vhost_vdpa_get_device_id,
>> -         .vhost_vq_get_addr = vhost_vdpa_vq_get_addr,
>> -         .vhost_force_iommu = vhost_vdpa_force_iommu,
>> +        .vhost_vq_get_addr = vhost_vdpa_vq_get_addr,
>> +        .vhost_force_iommu = vhost_vdpa_force_iommu,
>>  };
>>
> 
> Reviewed-by: Laurent Vivier <laurent@vivier.eu>
> 
> CC: Jason (he already has a cleanup series for vDPA)
> 


Applied to my trivial-patches branch.

Thanks,
Laurent


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

end of thread, other threads:[~2020-09-23 17:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-16 15:26 [PATCH] vhost-vdpa: fix indentation in vdpa_ops Stefano Garzarella
2020-09-16 15:40 ` Li Qiang
2020-09-16 15:48 ` Laurent Vivier
2020-09-23 17:06   ` Laurent Vivier

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.