All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] vhost: Fix vhost_copy_to_user()
@ 2018-04-11 13:30 Eric Auger
  2018-04-11 13:44 ` Jason Wang
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Eric Auger @ 2018-04-11 13:30 UTC (permalink / raw)
  To: eric.auger.pro, eric.auger, linux-kernel, virtualization, netdev,
	kvm, jasowang, mst, kvmarm
  Cc: stefanha

vhost_copy_to_user is used to copy vring used elements to userspace.
We should use VHOST_ADDR_USED instead of VHOST_ADDR_DESC.

Fixes: f88949138058 ("vhost: introduce O(1) vq metadata cache")
Signed-off-by: Eric Auger <eric.auger@redhat.com>

---

This fixes a stall observed when running an aarch64 guest with
virtual smmu
---
 drivers/vhost/vhost.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/vhost/vhost.c b/drivers/vhost/vhost.c
index bec722e..f44aead 100644
--- a/drivers/vhost/vhost.c
+++ b/drivers/vhost/vhost.c
@@ -744,7 +744,7 @@ static int vhost_copy_to_user(struct vhost_virtqueue *vq, void __user *to,
 		struct iov_iter t;
 		void __user *uaddr = vhost_vq_meta_fetch(vq,
 				     (u64)(uintptr_t)to, size,
-				     VHOST_ADDR_DESC);
+				     VHOST_ADDR_USED);
 
 		if (uaddr)
 			return __copy_to_user(uaddr, from, size);
-- 
2.5.5

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

* Re: [PATCH] vhost: Fix vhost_copy_to_user()
  2018-04-11 13:30 [PATCH] vhost: Fix vhost_copy_to_user() Eric Auger
  2018-04-11 13:44 ` Jason Wang
@ 2018-04-11 13:44 ` Jason Wang
  2018-04-11 13:45   ` Auger Eric
  2018-04-11 13:45   ` Auger Eric
  2018-04-11 13:51   ` Michael S. Tsirkin
  2 siblings, 2 replies; 7+ messages in thread
From: Jason Wang @ 2018-04-11 13:44 UTC (permalink / raw)
  To: Eric Auger, eric.auger.pro, linux-kernel, virtualization, netdev,
	kvm, mst, kvmarm
  Cc: stefanha



On 2018年04月11日 21:30, Eric Auger wrote:
> vhost_copy_to_user is used to copy vring used elements to userspace.
> We should use VHOST_ADDR_USED instead of VHOST_ADDR_DESC.
>
> Fixes: f88949138058 ("vhost: introduce O(1) vq metadata cache")
> Signed-off-by: Eric Auger <eric.auger@redhat.com>
>
> ---
>
> This fixes a stall observed when running an aarch64 guest with
> virtual smmu
> ---
>   drivers/vhost/vhost.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/vhost/vhost.c b/drivers/vhost/vhost.c
> index bec722e..f44aead 100644
> --- a/drivers/vhost/vhost.c
> +++ b/drivers/vhost/vhost.c
> @@ -744,7 +744,7 @@ static int vhost_copy_to_user(struct vhost_virtqueue *vq, void __user *to,
>   		struct iov_iter t;
>   		void __user *uaddr = vhost_vq_meta_fetch(vq,
>   				     (u64)(uintptr_t)to, size,
> -				     VHOST_ADDR_DESC);
> +				     VHOST_ADDR_USED);
>   
>   		if (uaddr)
>   			return __copy_to_user(uaddr, from, size);

Acked-by: Jason Wang <jasowang@redhat.com>

Thanks!

Stable material I think.

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

* Re: [PATCH] vhost: Fix vhost_copy_to_user()
  2018-04-11 13:30 [PATCH] vhost: Fix vhost_copy_to_user() Eric Auger
@ 2018-04-11 13:44 ` Jason Wang
  2018-04-11 13:44 ` Jason Wang
  2018-04-11 13:51   ` Michael S. Tsirkin
  2 siblings, 0 replies; 7+ messages in thread
From: Jason Wang @ 2018-04-11 13:44 UTC (permalink / raw)
  To: Eric Auger, eric.auger.pro, linux-kernel, virtualization, netdev,
	kvm, mst, kvmarm
  Cc: stefanha



On 2018年04月11日 21:30, Eric Auger wrote:
> vhost_copy_to_user is used to copy vring used elements to userspace.
> We should use VHOST_ADDR_USED instead of VHOST_ADDR_DESC.
>
> Fixes: f88949138058 ("vhost: introduce O(1) vq metadata cache")
> Signed-off-by: Eric Auger <eric.auger@redhat.com>
>
> ---
>
> This fixes a stall observed when running an aarch64 guest with
> virtual smmu
> ---
>   drivers/vhost/vhost.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/vhost/vhost.c b/drivers/vhost/vhost.c
> index bec722e..f44aead 100644
> --- a/drivers/vhost/vhost.c
> +++ b/drivers/vhost/vhost.c
> @@ -744,7 +744,7 @@ static int vhost_copy_to_user(struct vhost_virtqueue *vq, void __user *to,
>   		struct iov_iter t;
>   		void __user *uaddr = vhost_vq_meta_fetch(vq,
>   				     (u64)(uintptr_t)to, size,
> -				     VHOST_ADDR_DESC);
> +				     VHOST_ADDR_USED);
>   
>   		if (uaddr)
>   			return __copy_to_user(uaddr, from, size);

Acked-by: Jason Wang <jasowang@redhat.com>

Thanks!

Stable material I think.
_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization

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

* Re: [PATCH] vhost: Fix vhost_copy_to_user()
  2018-04-11 13:44 ` Jason Wang
@ 2018-04-11 13:45   ` Auger Eric
  2018-04-11 13:45   ` Auger Eric
  1 sibling, 0 replies; 7+ messages in thread
From: Auger Eric @ 2018-04-11 13:45 UTC (permalink / raw)
  To: Jason Wang, eric.auger.pro, linux-kernel, virtualization, netdev,
	kvm, mst, kvmarm
  Cc: stefanha

Hi Jason,

On 11/04/18 15:44, Jason Wang wrote:
> 
> 
> On 2018年04月11日 21:30, Eric Auger wrote:
>> vhost_copy_to_user is used to copy vring used elements to userspace.
>> We should use VHOST_ADDR_USED instead of VHOST_ADDR_DESC.
>>
>> Fixes: f88949138058 ("vhost: introduce O(1) vq metadata cache")
>> Signed-off-by: Eric Auger <eric.auger@redhat.com>
>>
>> ---
>>
>> This fixes a stall observed when running an aarch64 guest with
>> virtual smmu
>> ---
>>   drivers/vhost/vhost.c | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/vhost/vhost.c b/drivers/vhost/vhost.c
>> index bec722e..f44aead 100644
>> --- a/drivers/vhost/vhost.c
>> +++ b/drivers/vhost/vhost.c
>> @@ -744,7 +744,7 @@ static int vhost_copy_to_user(struct
>> vhost_virtqueue *vq, void __user *to,
>>           struct iov_iter t;
>>           void __user *uaddr = vhost_vq_meta_fetch(vq,
>>                        (u64)(uintptr_t)to, size,
>> -                     VHOST_ADDR_DESC);
>> +                     VHOST_ADDR_USED);
>>             if (uaddr)
>>               return __copy_to_user(uaddr, from, size);
> 
> Acked-by: Jason Wang <jasowang@redhat.com>
> 
> Thanks!
> 
> Stable material I think.

yes I think so.

Thanks

Eric

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

* Re: [PATCH] vhost: Fix vhost_copy_to_user()
  2018-04-11 13:44 ` Jason Wang
  2018-04-11 13:45   ` Auger Eric
@ 2018-04-11 13:45   ` Auger Eric
  1 sibling, 0 replies; 7+ messages in thread
From: Auger Eric @ 2018-04-11 13:45 UTC (permalink / raw)
  To: Jason Wang, eric.auger.pro, linux-kernel, virtualization, netdev,
	kvm, mst, kvmarm
  Cc: stefanha

Hi Jason,

On 11/04/18 15:44, Jason Wang wrote:
> 
> 
> On 2018年04月11日 21:30, Eric Auger wrote:
>> vhost_copy_to_user is used to copy vring used elements to userspace.
>> We should use VHOST_ADDR_USED instead of VHOST_ADDR_DESC.
>>
>> Fixes: f88949138058 ("vhost: introduce O(1) vq metadata cache")
>> Signed-off-by: Eric Auger <eric.auger@redhat.com>
>>
>> ---
>>
>> This fixes a stall observed when running an aarch64 guest with
>> virtual smmu
>> ---
>>   drivers/vhost/vhost.c | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/vhost/vhost.c b/drivers/vhost/vhost.c
>> index bec722e..f44aead 100644
>> --- a/drivers/vhost/vhost.c
>> +++ b/drivers/vhost/vhost.c
>> @@ -744,7 +744,7 @@ static int vhost_copy_to_user(struct
>> vhost_virtqueue *vq, void __user *to,
>>           struct iov_iter t;
>>           void __user *uaddr = vhost_vq_meta_fetch(vq,
>>                        (u64)(uintptr_t)to, size,
>> -                     VHOST_ADDR_DESC);
>> +                     VHOST_ADDR_USED);
>>             if (uaddr)
>>               return __copy_to_user(uaddr, from, size);
> 
> Acked-by: Jason Wang <jasowang@redhat.com>
> 
> Thanks!
> 
> Stable material I think.

yes I think so.

Thanks

Eric
_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization

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

* Re: [PATCH] vhost: Fix vhost_copy_to_user()
  2018-04-11 13:30 [PATCH] vhost: Fix vhost_copy_to_user() Eric Auger
@ 2018-04-11 13:51   ` Michael S. Tsirkin
  2018-04-11 13:44 ` Jason Wang
  2018-04-11 13:51   ` Michael S. Tsirkin
  2 siblings, 0 replies; 7+ messages in thread
From: Michael S. Tsirkin @ 2018-04-11 13:51 UTC (permalink / raw)
  To: Eric Auger
  Cc: eric.auger.pro, linux-kernel, virtualization, netdev, kvm,
	jasowang, kvmarm, stefanha

On Wed, Apr 11, 2018 at 03:30:38PM +0200, Eric Auger wrote:
> vhost_copy_to_user is used to copy vring used elements to userspace.
> We should use VHOST_ADDR_USED instead of VHOST_ADDR_DESC.
> 
> Fixes: f88949138058 ("vhost: introduce O(1) vq metadata cache")
> Signed-off-by: Eric Auger <eric.auger@redhat.com>

Acked-by: Michael S. Tsirkin <mst@redhat.com>

> ---
> 
> This fixes a stall observed when running an aarch64 guest with
> virtual smmu
> ---
>  drivers/vhost/vhost.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/vhost/vhost.c b/drivers/vhost/vhost.c
> index bec722e..f44aead 100644
> --- a/drivers/vhost/vhost.c
> +++ b/drivers/vhost/vhost.c
> @@ -744,7 +744,7 @@ static int vhost_copy_to_user(struct vhost_virtqueue *vq, void __user *to,
>  		struct iov_iter t;
>  		void __user *uaddr = vhost_vq_meta_fetch(vq,
>  				     (u64)(uintptr_t)to, size,
> -				     VHOST_ADDR_DESC);
> +				     VHOST_ADDR_USED);
>  
>  		if (uaddr)
>  			return __copy_to_user(uaddr, from, size);
> -- 
> 2.5.5

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

* Re: [PATCH] vhost: Fix vhost_copy_to_user()
@ 2018-04-11 13:51   ` Michael S. Tsirkin
  0 siblings, 0 replies; 7+ messages in thread
From: Michael S. Tsirkin @ 2018-04-11 13:51 UTC (permalink / raw)
  To: Eric Auger
  Cc: kvm, netdev, linux-kernel, virtualization, stefanha, kvmarm,
	eric.auger.pro

On Wed, Apr 11, 2018 at 03:30:38PM +0200, Eric Auger wrote:
> vhost_copy_to_user is used to copy vring used elements to userspace.
> We should use VHOST_ADDR_USED instead of VHOST_ADDR_DESC.
> 
> Fixes: f88949138058 ("vhost: introduce O(1) vq metadata cache")
> Signed-off-by: Eric Auger <eric.auger@redhat.com>

Acked-by: Michael S. Tsirkin <mst@redhat.com>

> ---
> 
> This fixes a stall observed when running an aarch64 guest with
> virtual smmu
> ---
>  drivers/vhost/vhost.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/vhost/vhost.c b/drivers/vhost/vhost.c
> index bec722e..f44aead 100644
> --- a/drivers/vhost/vhost.c
> +++ b/drivers/vhost/vhost.c
> @@ -744,7 +744,7 @@ static int vhost_copy_to_user(struct vhost_virtqueue *vq, void __user *to,
>  		struct iov_iter t;
>  		void __user *uaddr = vhost_vq_meta_fetch(vq,
>  				     (u64)(uintptr_t)to, size,
> -				     VHOST_ADDR_DESC);
> +				     VHOST_ADDR_USED);
>  
>  		if (uaddr)
>  			return __copy_to_user(uaddr, from, size);
> -- 
> 2.5.5

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

end of thread, other threads:[~2018-04-11 13:51 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-04-11 13:30 [PATCH] vhost: Fix vhost_copy_to_user() Eric Auger
2018-04-11 13:44 ` Jason Wang
2018-04-11 13:44 ` Jason Wang
2018-04-11 13:45   ` Auger Eric
2018-04-11 13:45   ` Auger Eric
2018-04-11 13:51 ` Michael S. Tsirkin
2018-04-11 13:51   ` Michael S. Tsirkin

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.