Re: [PATCH v2 5/5] VSOCK: batch sending rx buffer to increase bandwidth

2018-12-17 Thread jiangyiwen
On 2018/12/13 23:17, Stefan Hajnoczi wrote:
> On Wed, Dec 12, 2018 at 05:35:27PM +0800, jiangyiwen wrote:
>> Batch sending rx buffer can improve total bandwidth.
>>
>> Signed-off-by: Yiwen Jiang 
>> ---
> 
> Please send patches with git-send-email --thread --no-chain-reply-to so
> that your patch series email thread looks like this:
> 
>   * [PATCH 00/NN] My feature
>   +-- [PATCH 01/NN] First patch
>   +-- [PATCH 02/NN] Second patch
>   .
>   .
>   .
>   +-- [PATCH NN/NN] Last patch
> 
> This way it's much easier to view the entire series.  At the moment you
> are sending each patch as an independent email and there is no
> relationship between the emails.
> 
> Thanks,
> Stefan
> 

Thanks Stefan, I have not send a series of patches before, and
I will use email thread form in the later version.

Thanks again,
Yiwen.


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


Re: [PATCH v2 5/5] VSOCK: batch sending rx buffer to increase bandwidth

2018-12-16 Thread Stefan Hajnoczi
On Wed, Dec 12, 2018 at 05:35:27PM +0800, jiangyiwen wrote:
> Batch sending rx buffer can improve total bandwidth.
> 
> Signed-off-by: Yiwen Jiang 
> ---

Please send patches with git-send-email --thread --no-chain-reply-to so
that your patch series email thread looks like this:

  * [PATCH 00/NN] My feature
  +-- [PATCH 01/NN] First patch
  +-- [PATCH 02/NN] Second patch
  .
  .
  .
  +-- [PATCH NN/NN] Last patch

This way it's much easier to view the entire series.  At the moment you
are sending each patch as an independent email and there is no
relationship between the emails.

Thanks,
Stefan


signature.asc
Description: PGP signature
___
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization

[PATCH v2 5/5] VSOCK: batch sending rx buffer to increase bandwidth

2018-12-12 Thread jiangyiwen
Batch sending rx buffer can improve total bandwidth.

Signed-off-by: Yiwen Jiang 
---
 drivers/vhost/vsock.c | 24 +---
 1 file changed, 17 insertions(+), 7 deletions(-)

diff --git a/drivers/vhost/vsock.c b/drivers/vhost/vsock.c
index 9600133..a4bf0a1 100644
--- a/drivers/vhost/vsock.c
+++ b/drivers/vhost/vsock.c
@@ -151,9 +151,11 @@ static int get_rx_bufs(struct vhost_virtqueue *vq,
struct vhost_virtqueue *vq)
 {
struct vhost_virtqueue *tx_vq = >vqs[VSOCK_VQ_TX];
-   bool added = false;
bool restart_tx = false;
size_t vsock_hlen;
+   int batch_count = 0;
+
+#define VHOST_VSOCK_BATCH 16

mutex_lock(>mutex);

@@ -194,8 +196,9 @@ static int get_rx_bufs(struct vhost_virtqueue *vq,
list_del_init(>list);
spin_unlock_bh(>send_pkt_list_lock);

-   headcount = get_rx_bufs(vq, vq->heads, vsock_hlen + pkt->len,
-   , likely(vsock->mergeable) ? UIO_MAXIOV : 1);
+   headcount = get_rx_bufs(vq, vq->heads + batch_count,
+   vsock_hlen + pkt->len, ,
+   likely(vsock->mergeable) ? UIO_MAXIOV : 1);
if (headcount <= 0) {
spin_lock_bh(>send_pkt_list_lock);
list_add(>list, >send_pkt_list);
@@ -238,8 +241,12 @@ static int get_rx_bufs(struct vhost_virtqueue *vq,
remain_len -= tmp_len;
}

-   vhost_add_used_n(vq, vq->heads, headcount);
-   added = true;
+   batch_count += headcount;
+   if (batch_count > VHOST_VSOCK_BATCH) {
+   vhost_add_used_and_signal_n(>dev, vq,
+   vq->heads, batch_count);
+   batch_count = 0;
+   }

if (pkt->reply) {
int val;
@@ -258,8 +265,11 @@ static int get_rx_bufs(struct vhost_virtqueue *vq,

virtio_transport_free_pkt(pkt);
}
-   if (added)
-   vhost_signal(>dev, vq);
+
+   if (batch_count) {
+   vhost_add_used_and_signal_n(>dev, vq,
+   vq->heads, batch_count);
+   }

 out:
mutex_unlock(>mutex);
-- 
1.8.3.1


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