Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1517800 > unrolled thread
| Started by | Jason Wang <jasowang@redhat.com> |
|---|---|
| First post | 2016-11-09 08:40 +0100 |
| Last post | 2016-11-11 05:20 +0100 |
| Articles | 18 — 3 participants |
Back to article view | Back to linux.kernel
[PATCH 1/3] tuntap: rx batching Jason Wang <jasowang@redhat.com> - 2016-11-09 08:40 +0100
[PATCH 3/3] vhost_net: tx support batching Jason Wang <jasowang@redhat.com> - 2016-11-09 08:40 +0100
Re: [PATCH 3/3] vhost_net: tx support batching "Michael S. Tsirkin" <mst@redhat.com> - 2016-11-09 21:10 +0100
Re: [PATCH 3/3] vhost_net: tx support batching Jason Wang <jasowang@redhat.com> - 2016-11-11 03:30 +0100
[PATCH 2/3] vhost: better detection of available buffers Jason Wang <jasowang@redhat.com> - 2016-11-09 08:40 +0100
Re: [PATCH 2/3] vhost: better detection of available buffers "Michael S. Tsirkin" <mst@redhat.com> - 2016-11-09 21:00 +0100
Re: [PATCH 2/3] vhost: better detection of available buffers Jason Wang <jasowang@redhat.com> - 2016-11-11 03:20 +0100
Re: [PATCH 2/3] vhost: better detection of available buffers "Michael S. Tsirkin" <mst@redhat.com> - 2016-11-11 04:50 +0100
Re: [PATCH 2/3] vhost: better detection of available buffers Jason Wang <jasowang@redhat.com> - 2016-11-11 05:20 +0100
Re: [PATCH 2/3] vhost: better detection of available buffers "Michael S. Tsirkin" <mst@redhat.com> - 2016-11-11 17:30 +0100
Re: [PATCH 1/3] tuntap: rx batching "Michael S. Tsirkin" <mst@redhat.com> - 2016-11-09 17:40 +0100
Re: [PATCH 1/3] tuntap: rx batching Jason Wang <jasowang@redhat.com> - 2016-11-11 03:10 +0100
Re: [PATCH 1/3] tuntap: rx batching "Michael S. Tsirkin" <mst@redhat.com> - 2016-11-11 04:40 +0100
Re: [PATCH 1/3] tuntap: rx batching John Fastabend <john.fastabend@gmail.com> - 2016-11-11 05:20 +0100
Re: [PATCH 1/3] tuntap: rx batching Jason Wang <jasowang@redhat.com> - 2016-11-11 05:30 +0100
Re: [PATCH 1/3] tuntap: rx batching John Fastabend <john.fastabend@gmail.com> - 2016-11-11 05:50 +0100
Re: [PATCH 1/3] tuntap: rx batching "Michael S. Tsirkin" <mst@redhat.com> - 2016-11-11 17:30 +0100
Re: [PATCH 1/3] tuntap: rx batching Jason Wang <jasowang@redhat.com> - 2016-11-11 05:20 +0100
| From | Jason Wang <jasowang@redhat.com> |
|---|---|
| Date | 2016-11-09 08:40 +0100 |
| Subject | [PATCH 1/3] tuntap: rx batching |
| Message-ID | <sBvEd-4gF-3@gated-at.bofh.it> |
Backlog were used for tuntap rx, but it can only process 1 packet at
one time since it was scheduled during sendmsg() synchronously in
process context. This lead bad cache utilization so this patch tries
to do some batching before call rx NAPI. This is done through:
- accept MSG_MORE as a hint from sendmsg() caller, if it was set,
batch the packet temporarily in a linked list and submit them all
once MSG_MORE were cleared.
- implement a tuntap specific NAPI handler for processing this kind of
possible batching. (This could be done by extending backlog to
support skb like, but using a tun specific one looks cleaner and
easier for future extension).
Signed-off-by: Jason Wang <jasowang@redhat.com>
---
drivers/net/tun.c | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++-----
1 file changed, 65 insertions(+), 6 deletions(-)
diff --git a/drivers/net/tun.c b/drivers/net/tun.c
index 1588469..d40583b 100644
--- a/drivers/net/tun.c
+++ b/drivers/net/tun.c
@@ -74,6 +74,7 @@
#include <linux/skb_array.h>
#include <asm/uaccess.h>
+#include <linux/interrupt.h>
/* Uncomment to enable debugging */
/* #define TUN_DEBUG 1 */
@@ -169,6 +170,8 @@ struct tun_file {
struct list_head next;
struct tun_struct *detached;
struct skb_array tx_array;
+ struct napi_struct napi;
+ struct sk_buff_head process_queue;
};
struct tun_flow_entry {
@@ -522,6 +525,8 @@ static void tun_queue_purge(struct tun_file *tfile)
while ((skb = skb_array_consume(&tfile->tx_array)) != NULL)
kfree_skb(skb);
+ skb_queue_purge(&tfile->sk.sk_write_queue);
+ skb_queue_purge(&tfile->process_queue);
skb_queue_purge(&tfile->sk.sk_error_queue);
}
@@ -532,6 +537,11 @@ static void __tun_detach(struct tun_file *tfile, bool clean)
tun = rtnl_dereference(tfile->tun);
+ if (tun && clean) {
+ napi_disable(&tfile->napi);
+ netif_napi_del(&tfile->napi);
+ }
+
if (tun && !tfile->detached) {
u16 index = tfile->queue_index;
BUG_ON(index >= tun->numqueues);
@@ -587,6 +597,7 @@ static void tun_detach_all(struct net_device *dev)
for (i = 0; i < n; i++) {
tfile = rtnl_dereference(tun->tfiles[i]);
+ napi_disable(&tfile->napi);
BUG_ON(!tfile);
tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN;
tfile->socket.sk->sk_data_ready(tfile->socket.sk);
@@ -603,6 +614,7 @@ static void tun_detach_all(struct net_device *dev)
synchronize_net();
for (i = 0; i < n; i++) {
tfile = rtnl_dereference(tun->tfiles[i]);
+ netif_napi_del(&tfile->napi);
/* Drop read queue */
tun_queue_purge(tfile);
sock_put(&tfile->sk);
@@ -618,6 +630,41 @@ static void tun_detach_all(struct net_device *dev)
module_put(THIS_MODULE);
}
+static int tun_poll(struct napi_struct *napi, int budget)
+{
+ struct tun_file *tfile = container_of(napi, struct tun_file, napi);
+ struct sk_buff_head *input_queue =
+ &tfile->socket.sk->sk_write_queue;
+ struct sk_buff *skb;
+ unsigned int received = 0;
+
+ while (1) {
+ while ((skb = __skb_dequeue(&tfile->process_queue))) {
+ netif_receive_skb(skb);
+ if (++received >= budget)
+ return received;
+ }
+
+ spin_lock(&input_queue->lock);
+ if (skb_queue_empty(input_queue)) {
+ spin_unlock(&input_queue->lock);
+ break;
+ }
+ skb_queue_splice_tail_init(input_queue, &tfile->process_queue);
+ spin_unlock(&input_queue->lock);
+ }
+
+ if (received < budget) {
+ napi_complete(napi);
+ if (skb_peek(&tfile->socket.sk->sk_write_queue) &&
+ unlikely(napi_schedule_prep(napi))) {
+ __napi_schedule(napi);
+ }
+ }
+
+ return received;
+}
+
static int tun_attach(struct tun_struct *tun, struct file *file, bool skip_filter)
{
struct tun_file *tfile = file->private_data;
@@ -666,9 +713,11 @@ static int tun_attach(struct tun_struct *tun, struct file *file, bool skip_filte
if (tfile->detached)
tun_enable_queue(tfile);
- else
+ else {
sock_hold(&tfile->sk);
-
+ netif_napi_add(tun->dev, &tfile->napi, tun_poll, 64);
+ napi_enable(&tfile->napi);
+ }
tun_set_real_num_queues(tun);
/* device is allowed to go away first, so no need to hold extra
@@ -1150,7 +1199,7 @@ static struct sk_buff *tun_alloc_skb(struct tun_file *tfile,
/* Get packet from user space buffer */
static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
void *msg_control, struct iov_iter *from,
- int noblock)
+ int noblock, bool more)
{
struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
struct sk_buff *skb;
@@ -1296,7 +1345,13 @@ static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
skb_probe_transport_header(skb, 0);
rxhash = skb_get_hash(skb);
- netif_rx_ni(skb);
+ skb_queue_tail(&tfile->socket.sk->sk_write_queue, skb);
+
+ if (!more) {
+ local_bh_disable();
+ napi_schedule(&tfile->napi);
+ local_bh_enable();
+ }
stats = get_cpu_ptr(tun->pcpu_stats);
u64_stats_update_begin(&stats->syncp);
@@ -1319,7 +1374,8 @@ static ssize_t tun_chr_write_iter(struct kiocb *iocb, struct iov_iter *from)
if (!tun)
return -EBADFD;
- result = tun_get_user(tun, tfile, NULL, from, file->f_flags & O_NONBLOCK);
+ result = tun_get_user(tun, tfile, NULL, from,
+ file->f_flags & O_NONBLOCK, false);
tun_put(tun);
return result;
@@ -1579,7 +1635,8 @@ static int tun_sendmsg(struct socket *sock, struct msghdr *m, size_t total_len)
return -EBADFD;
ret = tun_get_user(tun, tfile, m->msg_control, &m->msg_iter,
- m->msg_flags & MSG_DONTWAIT);
+ m->msg_flags & MSG_DONTWAIT,
+ m->msg_flags & MSG_MORE);
tun_put(tun);
return ret;
}
@@ -2336,6 +2393,8 @@ static int tun_chr_open(struct inode *inode, struct file * file)
file->private_data = tfile;
INIT_LIST_HEAD(&tfile->next);
+ skb_queue_head_init(&tfile->process_queue);
+
sock_set_flag(&tfile->sk, SOCK_ZEROCOPY);
return 0;
--
2.7.4
[toc] | [next] | [standalone]
| From | Jason Wang <jasowang@redhat.com> |
|---|---|
| Date | 2016-11-09 08:40 +0100 |
| Subject | [PATCH 3/3] vhost_net: tx support batching |
| Message-ID | <sBvEd-4gF-11@gated-at.bofh.it> |
| In reply to | #1517800 |
This patch tries to utilize tuntap rx batching by peeking the tx
virtqueue during transmission, if there's more available buffers in
the virtqueue, set MSG_MORE flag for a hint for tuntap to batch the
packets. The maximum number of batched tx packets were specified
through a module parameter: tx_bached.
When use 16 as tx_batched:
Pktgen test shows 16% on tx pps in guest.
Netperf test does not show obvious regression.
For safety, 1 were used as the default value for tx_batched.
Signed-off-by: Jason Wang <jasowang@redhat.com>
---
drivers/vhost/net.c | 15 ++++++++++++++-
drivers/vhost/vhost.c | 1 +
drivers/vhost/vhost.h | 1 +
3 files changed, 16 insertions(+), 1 deletion(-)
diff --git a/drivers/vhost/net.c b/drivers/vhost/net.c
index 5dc128a..51c378e 100644
--- a/drivers/vhost/net.c
+++ b/drivers/vhost/net.c
@@ -35,6 +35,10 @@ module_param(experimental_zcopytx, int, 0444);
MODULE_PARM_DESC(experimental_zcopytx, "Enable Zero Copy TX;"
" 1 -Enable; 0 - Disable");
+static int tx_batched = 1;
+module_param(tx_batched, int, 0444);
+MODULE_PARM_DESC(tx_batched, "Number of patches batched in TX");
+
/* Max number of bytes transferred before requeueing the job.
* Using this limit prevents one virtqueue from starving others. */
#define VHOST_NET_WEIGHT 0x80000
@@ -454,6 +458,16 @@ static void handle_tx(struct vhost_net *net)
msg.msg_control = NULL;
ubufs = NULL;
}
+ total_len += len;
+ if (vq->delayed < tx_batched &&
+ total_len < VHOST_NET_WEIGHT &&
+ !vhost_vq_avail_empty(&net->dev, vq)) {
+ vq->delayed++;
+ msg.msg_flags |= MSG_MORE;
+ } else {
+ vq->delayed = 0;
+ msg.msg_flags &= ~MSG_MORE;
+ }
/* TODO: Check specific error and bomb out unless ENOBUFS? */
err = sock->ops->sendmsg(sock, &msg, len);
if (unlikely(err < 0)) {
@@ -472,7 +486,6 @@ static void handle_tx(struct vhost_net *net)
vhost_add_used_and_signal(&net->dev, vq, head, 0);
else
vhost_zerocopy_signal_used(net, vq);
- total_len += len;
vhost_net_tx_packet(net);
if (unlikely(total_len >= VHOST_NET_WEIGHT)) {
vhost_poll_queue(&vq->poll);
diff --git a/drivers/vhost/vhost.c b/drivers/vhost/vhost.c
index fdf4cdf..bc362c7 100644
--- a/drivers/vhost/vhost.c
+++ b/drivers/vhost/vhost.c
@@ -311,6 +311,7 @@ static void vhost_vq_reset(struct vhost_dev *dev,
vq->busyloop_timeout = 0;
vq->umem = NULL;
vq->iotlb = NULL;
+ vq->delayed = 0;
}
static int vhost_worker(void *data)
diff --git a/drivers/vhost/vhost.h b/drivers/vhost/vhost.h
index 78f3c5f..9f81a94 100644
--- a/drivers/vhost/vhost.h
+++ b/drivers/vhost/vhost.h
@@ -141,6 +141,7 @@ struct vhost_virtqueue {
bool user_be;
#endif
u32 busyloop_timeout;
+ int delayed;
};
struct vhost_msg_node {
--
2.7.4
[toc] | [prev] | [next] | [standalone]
| From | "Michael S. Tsirkin" <mst@redhat.com> |
|---|---|
| Date | 2016-11-09 21:10 +0100 |
| Subject | Re: [PATCH 3/3] vhost_net: tx support batching |
| Message-ID | <sBHm1-3y6-3@gated-at.bofh.it> |
| In reply to | #1517801 |
On Wed, Nov 09, 2016 at 03:38:33PM +0800, Jason Wang wrote:
> This patch tries to utilize tuntap rx batching by peeking the tx
> virtqueue during transmission, if there's more available buffers in
> the virtqueue, set MSG_MORE flag for a hint for tuntap to batch the
> packets. The maximum number of batched tx packets were specified
> through a module parameter: tx_bached.
>
> When use 16 as tx_batched:
When using
>
> Pktgen test shows 16% on tx pps in guest.
> Netperf test does not show obvious regression.
Why doesn't netperf benefit?
> For safety, 1 were used as the default value for tx_batched.
s/were used/is used/
> Signed-off-by: Jason Wang <jasowang@redhat.com>
These tests unfortunately only run a single flow.
The concern would be whether this increases latency when
NIC is busy with other flows, so I think this is what
you need to test.
> ---
> drivers/vhost/net.c | 15 ++++++++++++++-
> drivers/vhost/vhost.c | 1 +
> drivers/vhost/vhost.h | 1 +
> 3 files changed, 16 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/vhost/net.c b/drivers/vhost/net.c
> index 5dc128a..51c378e 100644
> --- a/drivers/vhost/net.c
> +++ b/drivers/vhost/net.c
> @@ -35,6 +35,10 @@ module_param(experimental_zcopytx, int, 0444);
> MODULE_PARM_DESC(experimental_zcopytx, "Enable Zero Copy TX;"
> " 1 -Enable; 0 - Disable");
>
> +static int tx_batched = 1;
> +module_param(tx_batched, int, 0444);
> +MODULE_PARM_DESC(tx_batched, "Number of patches batched in TX");
> +
> /* Max number of bytes transferred before requeueing the job.
> * Using this limit prevents one virtqueue from starving others. */
> #define VHOST_NET_WEIGHT 0x80000
I think we should do some tests and find a good default.
> @@ -454,6 +458,16 @@ static void handle_tx(struct vhost_net *net)
> msg.msg_control = NULL;
> ubufs = NULL;
> }
> + total_len += len;
> + if (vq->delayed < tx_batched &&
> + total_len < VHOST_NET_WEIGHT &&
> + !vhost_vq_avail_empty(&net->dev, vq)) {
> + vq->delayed++;
> + msg.msg_flags |= MSG_MORE;
> + } else {
> + vq->delayed = 0;
> + msg.msg_flags &= ~MSG_MORE;
> + }
> /* TODO: Check specific error and bomb out unless ENOBUFS? */
> err = sock->ops->sendmsg(sock, &msg, len);
> if (unlikely(err < 0)) {
> @@ -472,7 +486,6 @@ static void handle_tx(struct vhost_net *net)
> vhost_add_used_and_signal(&net->dev, vq, head, 0);
> else
> vhost_zerocopy_signal_used(net, vq);
> - total_len += len;
> vhost_net_tx_packet(net);
> if (unlikely(total_len >= VHOST_NET_WEIGHT)) {
> vhost_poll_queue(&vq->poll);
> diff --git a/drivers/vhost/vhost.c b/drivers/vhost/vhost.c
> index fdf4cdf..bc362c7 100644
> --- a/drivers/vhost/vhost.c
> +++ b/drivers/vhost/vhost.c
> @@ -311,6 +311,7 @@ static void vhost_vq_reset(struct vhost_dev *dev,
> vq->busyloop_timeout = 0;
> vq->umem = NULL;
> vq->iotlb = NULL;
> + vq->delayed = 0;
> }
>
> static int vhost_worker(void *data)
> diff --git a/drivers/vhost/vhost.h b/drivers/vhost/vhost.h
> index 78f3c5f..9f81a94 100644
> --- a/drivers/vhost/vhost.h
> +++ b/drivers/vhost/vhost.h
> @@ -141,6 +141,7 @@ struct vhost_virtqueue {
> bool user_be;
> #endif
> u32 busyloop_timeout;
> + int delayed;
> };
>
> struct vhost_msg_node {
> --
> 2.7.4
[toc] | [prev] | [next] | [standalone]
| From | Jason Wang <jasowang@redhat.com> |
|---|---|
| Date | 2016-11-11 03:30 +0100 |
| Subject | Re: [PATCH 3/3] vhost_net: tx support batching |
| Message-ID | <sC9Lj-6Cw-5@gated-at.bofh.it> |
| In reply to | #1518444 |
On 2016年11月10日 04:05, Michael S. Tsirkin wrote: > On Wed, Nov 09, 2016 at 03:38:33PM +0800, Jason Wang wrote: >> This patch tries to utilize tuntap rx batching by peeking the tx >> virtqueue during transmission, if there's more available buffers in >> the virtqueue, set MSG_MORE flag for a hint for tuntap to batch the >> packets. The maximum number of batched tx packets were specified >> through a module parameter: tx_bached. >> >> When use 16 as tx_batched: > When using > >> Pktgen test shows 16% on tx pps in guest. >> Netperf test does not show obvious regression. > Why doesn't netperf benefit? This is probably because the tests (4VCPU, 1queue, TCP, mlx4) does not produce 100% stress on vhost thread. In pktgen test, 100% stress on vhost thread is achieved easily. > >> For safety, 1 were used as the default value for tx_batched. > s/were used/is used/ > >> Signed-off-by: Jason Wang <jasowang@redhat.com> > These tests unfortunately only run a single flow. > The concern would be whether this increases latency when > NIC is busy with other flows, so I think this is what > you need to test. Multiple flows were tested too, no obvious improvement/regression were found. > > >> --- >> drivers/vhost/net.c | 15 ++++++++++++++- >> drivers/vhost/vhost.c | 1 + >> drivers/vhost/vhost.h | 1 + >> 3 files changed, 16 insertions(+), 1 deletion(-) >> >> diff --git a/drivers/vhost/net.c b/drivers/vhost/net.c >> index 5dc128a..51c378e 100644 >> --- a/drivers/vhost/net.c >> +++ b/drivers/vhost/net.c >> @@ -35,6 +35,10 @@ module_param(experimental_zcopytx, int, 0444); >> MODULE_PARM_DESC(experimental_zcopytx, "Enable Zero Copy TX;" >> " 1 -Enable; 0 - Disable"); >> >> +static int tx_batched = 1; >> +module_param(tx_batched, int, 0444); >> +MODULE_PARM_DESC(tx_batched, "Number of patches batched in TX"); >> + >> /* Max number of bytes transferred before requeueing the job. >> * Using this limit prevents one virtqueue from starving others. */ >> #define VHOST_NET_WEIGHT 0x80000 > I think we should do some tests and find a good default. Ok, will test 4 and 32 to see if there's any difference. (Btw, 16 were chosed since dpdk tends to batch 16 packet during TX). Thanks
[toc] | [prev] | [next] | [standalone]
| From | Jason Wang <jasowang@redhat.com> |
|---|---|
| Date | 2016-11-09 08:40 +0100 |
| Subject | [PATCH 2/3] vhost: better detection of available buffers |
| Message-ID | <sBvEd-4gF-7@gated-at.bofh.it> |
| In reply to | #1517800 |
We should use vq->last_avail_idx instead of vq->avail_idx in the checking of vhost_vq_avail_empty() since latter is the cached avail index from guest but we want to know if there's pending available buffers in the virtqueue. Signed-off-by: Jason Wang <jasowang@redhat.com> --- 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 c6f2d89..fdf4cdf 100644 --- a/drivers/vhost/vhost.c +++ b/drivers/vhost/vhost.c @@ -2230,7 +2230,7 @@ bool vhost_vq_avail_empty(struct vhost_dev *dev, struct vhost_virtqueue *vq) if (r) return false; - return vhost16_to_cpu(vq, avail_idx) == vq->avail_idx; + return vhost16_to_cpu(vq, avail_idx) == vq->last_avail_idx; } EXPORT_SYMBOL_GPL(vhost_vq_avail_empty); -- 2.7.4
[toc] | [prev] | [next] | [standalone]
| From | "Michael S. Tsirkin" <mst@redhat.com> |
|---|---|
| Date | 2016-11-09 21:00 +0100 |
| Subject | Re: [PATCH 2/3] vhost: better detection of available buffers |
| Message-ID | <sBHcl-3eV-19@gated-at.bofh.it> |
| In reply to | #1517803 |
On Wed, Nov 09, 2016 at 03:38:32PM +0800, Jason Wang wrote: > We should use vq->last_avail_idx instead of vq->avail_idx in the > checking of vhost_vq_avail_empty() since latter is the cached avail > index from guest but we want to know if there's pending available > buffers in the virtqueue. > > Signed-off-by: Jason Wang <jasowang@redhat.com> I'm not sure why is this patch here. Is it related to batching somehow? > --- > 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 c6f2d89..fdf4cdf 100644 > --- a/drivers/vhost/vhost.c > +++ b/drivers/vhost/vhost.c > @@ -2230,7 +2230,7 @@ bool vhost_vq_avail_empty(struct vhost_dev *dev, struct vhost_virtqueue *vq) > if (r) > return false; > > - return vhost16_to_cpu(vq, avail_idx) == vq->avail_idx; > + return vhost16_to_cpu(vq, avail_idx) == vq->last_avail_idx; > } > EXPORT_SYMBOL_GPL(vhost_vq_avail_empty); That might be OK for TX but it's probably wrong for RX where the fact that used != avail does not mean we have enough space to store the packet. Maybe we should just rename this to vhost_vq_avail_unchanged to clarify usage. > > -- > 2.7.4
[toc] | [prev] | [next] | [standalone]
| From | Jason Wang <jasowang@redhat.com> |
|---|---|
| Date | 2016-11-11 03:20 +0100 |
| Subject | Re: [PATCH 2/3] vhost: better detection of available buffers |
| Message-ID | <sC9BD-6yN-3@gated-at.bofh.it> |
| In reply to | #1518442 |
On 2016年11月10日 03:57, Michael S. Tsirkin wrote: > On Wed, Nov 09, 2016 at 03:38:32PM +0800, Jason Wang wrote: >> We should use vq->last_avail_idx instead of vq->avail_idx in the >> checking of vhost_vq_avail_empty() since latter is the cached avail >> index from guest but we want to know if there's pending available >> buffers in the virtqueue. >> >> Signed-off-by: Jason Wang <jasowang@redhat.com> > I'm not sure why is this patch here. Is it related to > batching somehow? Yes, we need to know whether or not there's still buffers left in the virtqueue, so need to check last_avail_idx. Otherwise, we're checking if guest has submitted new buffers. > > >> --- >> 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 c6f2d89..fdf4cdf 100644 >> --- a/drivers/vhost/vhost.c >> +++ b/drivers/vhost/vhost.c >> @@ -2230,7 +2230,7 @@ bool vhost_vq_avail_empty(struct vhost_dev *dev, struct vhost_virtqueue *vq) >> if (r) >> return false; >> >> - return vhost16_to_cpu(vq, avail_idx) == vq->avail_idx; >> + return vhost16_to_cpu(vq, avail_idx) == vq->last_avail_idx; >> } >> EXPORT_SYMBOL_GPL(vhost_vq_avail_empty); > That might be OK for TX but it's probably wrong for RX > where the fact that used != avail does not mean > we have enough space to store the packet. Right, but it's no harm since it was just a hint, handle_rx() can handle this situation. > > Maybe we should just rename this to vhost_vq_avail_unchanged > to clarify usage. > Ok. >> >> -- >> 2.7.4
[toc] | [prev] | [next] | [standalone]
| From | "Michael S. Tsirkin" <mst@redhat.com> |
|---|---|
| Date | 2016-11-11 04:50 +0100 |
| Subject | Re: [PATCH 2/3] vhost: better detection of available buffers |
| Message-ID | <sCb0K-7ng-9@gated-at.bofh.it> |
| In reply to | #1519519 |
On Fri, Nov 11, 2016 at 10:18:37AM +0800, Jason Wang wrote: > > > On 2016年11月10日 03:57, Michael S. Tsirkin wrote: > > On Wed, Nov 09, 2016 at 03:38:32PM +0800, Jason Wang wrote: > > > We should use vq->last_avail_idx instead of vq->avail_idx in the > > > checking of vhost_vq_avail_empty() since latter is the cached avail > > > index from guest but we want to know if there's pending available > > > buffers in the virtqueue. > > > > > > Signed-off-by: Jason Wang <jasowang@redhat.com> > > I'm not sure why is this patch here. Is it related to > > batching somehow? > > Yes, we need to know whether or not there's still buffers left in the > virtqueue, so need to check last_avail_idx. Otherwise, we're checking if > guest has submitted new buffers. > > > > > > > > --- > > > 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 c6f2d89..fdf4cdf 100644 > > > --- a/drivers/vhost/vhost.c > > > +++ b/drivers/vhost/vhost.c > > > @@ -2230,7 +2230,7 @@ bool vhost_vq_avail_empty(struct vhost_dev *dev, struct vhost_virtqueue *vq) > > > if (r) > > > return false; > > > - return vhost16_to_cpu(vq, avail_idx) == vq->avail_idx; > > > + return vhost16_to_cpu(vq, avail_idx) == vq->last_avail_idx; > > > } > > > EXPORT_SYMBOL_GPL(vhost_vq_avail_empty); > > That might be OK for TX but it's probably wrong for RX > > where the fact that used != avail does not mean > > we have enough space to store the packet. > > Right, but it's no harm since it was just a hint, handle_rx() can handle > this situation. Means busy polling will cause useless load on the CPU though. > > > > Maybe we should just rename this to vhost_vq_avail_unchanged > > to clarify usage. > > > > Ok. > > > > -- > > > 2.7.4
[toc] | [prev] | [next] | [standalone]
| From | Jason Wang <jasowang@redhat.com> |
|---|---|
| Date | 2016-11-11 05:20 +0100 |
| Subject | Re: [PATCH 2/3] vhost: better detection of available buffers |
| Message-ID | <sCbtL-7PU-15@gated-at.bofh.it> |
| In reply to | #1519549 |
On 2016年11月11日 11:41, Michael S. Tsirkin wrote: > On Fri, Nov 11, 2016 at 10:18:37AM +0800, Jason Wang wrote: >> > >> > >> >On 2016年11月10日 03:57, Michael S. Tsirkin wrote: >>> > >On Wed, Nov 09, 2016 at 03:38:32PM +0800, Jason Wang wrote: >>>> > > >We should use vq->last_avail_idx instead of vq->avail_idx in the >>>> > > >checking of vhost_vq_avail_empty() since latter is the cached avail >>>> > > >index from guest but we want to know if there's pending available >>>> > > >buffers in the virtqueue. >>>> > > > >>>> > > >Signed-off-by: Jason Wang<jasowang@redhat.com> >>> > >I'm not sure why is this patch here. Is it related to >>> > >batching somehow? >> > >> >Yes, we need to know whether or not there's still buffers left in the >> >virtqueue, so need to check last_avail_idx. Otherwise, we're checking if >> >guest has submitted new buffers. >> > >>> > > >>> > > >>>> > > >--- >>>> > > > 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 c6f2d89..fdf4cdf 100644 >>>> > > >--- a/drivers/vhost/vhost.c >>>> > > >+++ b/drivers/vhost/vhost.c >>>> > > >@@ -2230,7 +2230,7 @@ bool vhost_vq_avail_empty(struct vhost_dev *dev, struct vhost_virtqueue *vq) >>>> > > > if (r) >>>> > > > return false; >>>> > > >- return vhost16_to_cpu(vq, avail_idx) == vq->avail_idx; >>>> > > >+ return vhost16_to_cpu(vq, avail_idx) == vq->last_avail_idx; >>>> > > > } >>>> > > > EXPORT_SYMBOL_GPL(vhost_vq_avail_empty); >>> > >That might be OK for TX but it's probably wrong for RX >>> > >where the fact that used != avail does not mean >>> > >we have enough space to store the packet. >> > >> >Right, but it's no harm since it was just a hint, handle_rx() can handle >> >this situation. > Means busy polling will cause useless load on the CPU though. > Right, but,it's not easy to have 100% correct hint here. Needs more thought.
[toc] | [prev] | [next] | [standalone]
| From | "Michael S. Tsirkin" <mst@redhat.com> |
|---|---|
| Date | 2016-11-11 17:30 +0100 |
| Subject | Re: [PATCH 2/3] vhost: better detection of available buffers |
| Message-ID | <sCmSe-6F5-35@gated-at.bofh.it> |
| In reply to | #1519555 |
On Fri, Nov 11, 2016 at 12:18:50PM +0800, Jason Wang wrote: > > > On 2016年11月11日 11:41, Michael S. Tsirkin wrote: > > On Fri, Nov 11, 2016 at 10:18:37AM +0800, Jason Wang wrote: > > > > > > > > > > > >On 2016年11月10日 03:57, Michael S. Tsirkin wrote: > > > > > >On Wed, Nov 09, 2016 at 03:38:32PM +0800, Jason Wang wrote: > > > > > > > >We should use vq->last_avail_idx instead of vq->avail_idx in the > > > > > > > >checking of vhost_vq_avail_empty() since latter is the cached avail > > > > > > > >index from guest but we want to know if there's pending available > > > > > > > >buffers in the virtqueue. > > > > > > > > > > > > > > > >Signed-off-by: Jason Wang<jasowang@redhat.com> > > > > > >I'm not sure why is this patch here. Is it related to > > > > > >batching somehow? > > > > > > > >Yes, we need to know whether or not there's still buffers left in the > > > >virtqueue, so need to check last_avail_idx. Otherwise, we're checking if > > > >guest has submitted new buffers. > > > > > > > > > > > > > > > > > > > > > > > >--- > > > > > > > > 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 c6f2d89..fdf4cdf 100644 > > > > > > > >--- a/drivers/vhost/vhost.c > > > > > > > >+++ b/drivers/vhost/vhost.c > > > > > > > >@@ -2230,7 +2230,7 @@ bool vhost_vq_avail_empty(struct vhost_dev *dev, struct vhost_virtqueue *vq) > > > > > > > > if (r) > > > > > > > > return false; > > > > > > > >- return vhost16_to_cpu(vq, avail_idx) == vq->avail_idx; > > > > > > > >+ return vhost16_to_cpu(vq, avail_idx) == vq->last_avail_idx; > > > > > > > > } > > > > > > > > EXPORT_SYMBOL_GPL(vhost_vq_avail_empty); > > > > > >That might be OK for TX but it's probably wrong for RX > > > > > >where the fact that used != avail does not mean > > > > > >we have enough space to store the packet. > > > > > > > >Right, but it's no harm since it was just a hint, handle_rx() can handle > > > >this situation. > > Means busy polling will cause useless load on the CPU though. > > > > Right, but,it's not easy to have 100% correct hint here. Needs more thought. What's wrong with what we have? It polls until value changes. -- MST
[toc] | [prev] | [next] | [standalone]
| From | "Michael S. Tsirkin" <mst@redhat.com> |
|---|---|
| Date | 2016-11-09 17:40 +0100 |
| Message-ID | <sBE4N-1kU-9@gated-at.bofh.it> |
| In reply to | #1517800 |
On Wed, Nov 09, 2016 at 03:38:31PM +0800, Jason Wang wrote:
> Backlog were used for tuntap rx, but it can only process 1 packet at
> one time since it was scheduled during sendmsg() synchronously in
> process context. This lead bad cache utilization so this patch tries
> to do some batching before call rx NAPI. This is done through:
>
> - accept MSG_MORE as a hint from sendmsg() caller, if it was set,
> batch the packet temporarily in a linked list and submit them all
> once MSG_MORE were cleared.
> - implement a tuntap specific NAPI handler for processing this kind of
> possible batching. (This could be done by extending backlog to
> support skb like, but using a tun specific one looks cleaner and
> easier for future extension).
>
> Signed-off-by: Jason Wang <jasowang@redhat.com>
So why do we need an extra queue? This is not what hardware devices do.
How about adding the packet to queue unconditionally, deferring
signalling until we get sendmsg without MSG_MORE?
> ---
> drivers/net/tun.c | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++-----
> 1 file changed, 65 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/net/tun.c b/drivers/net/tun.c
> index 1588469..d40583b 100644
> --- a/drivers/net/tun.c
> +++ b/drivers/net/tun.c
> @@ -74,6 +74,7 @@
> #include <linux/skb_array.h>
>
> #include <asm/uaccess.h>
> +#include <linux/interrupt.h>
>
> /* Uncomment to enable debugging */
> /* #define TUN_DEBUG 1 */
> @@ -169,6 +170,8 @@ struct tun_file {
> struct list_head next;
> struct tun_struct *detached;
> struct skb_array tx_array;
> + struct napi_struct napi;
> + struct sk_buff_head process_queue;
> };
>
> struct tun_flow_entry {
> @@ -522,6 +525,8 @@ static void tun_queue_purge(struct tun_file *tfile)
> while ((skb = skb_array_consume(&tfile->tx_array)) != NULL)
> kfree_skb(skb);
>
> + skb_queue_purge(&tfile->sk.sk_write_queue);
> + skb_queue_purge(&tfile->process_queue);
> skb_queue_purge(&tfile->sk.sk_error_queue);
> }
>
> @@ -532,6 +537,11 @@ static void __tun_detach(struct tun_file *tfile, bool clean)
>
> tun = rtnl_dereference(tfile->tun);
>
> + if (tun && clean) {
> + napi_disable(&tfile->napi);
> + netif_napi_del(&tfile->napi);
> + }
> +
> if (tun && !tfile->detached) {
> u16 index = tfile->queue_index;
> BUG_ON(index >= tun->numqueues);
> @@ -587,6 +597,7 @@ static void tun_detach_all(struct net_device *dev)
>
> for (i = 0; i < n; i++) {
> tfile = rtnl_dereference(tun->tfiles[i]);
> + napi_disable(&tfile->napi);
> BUG_ON(!tfile);
> tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN;
> tfile->socket.sk->sk_data_ready(tfile->socket.sk);
> @@ -603,6 +614,7 @@ static void tun_detach_all(struct net_device *dev)
> synchronize_net();
> for (i = 0; i < n; i++) {
> tfile = rtnl_dereference(tun->tfiles[i]);
> + netif_napi_del(&tfile->napi);
> /* Drop read queue */
> tun_queue_purge(tfile);
> sock_put(&tfile->sk);
> @@ -618,6 +630,41 @@ static void tun_detach_all(struct net_device *dev)
> module_put(THIS_MODULE);
> }
>
> +static int tun_poll(struct napi_struct *napi, int budget)
> +{
> + struct tun_file *tfile = container_of(napi, struct tun_file, napi);
> + struct sk_buff_head *input_queue =
> + &tfile->socket.sk->sk_write_queue;
> + struct sk_buff *skb;
> + unsigned int received = 0;
> +
> + while (1) {
> + while ((skb = __skb_dequeue(&tfile->process_queue))) {
> + netif_receive_skb(skb);
> + if (++received >= budget)
> + return received;
> + }
> +
> + spin_lock(&input_queue->lock);
> + if (skb_queue_empty(input_queue)) {
> + spin_unlock(&input_queue->lock);
> + break;
> + }
> + skb_queue_splice_tail_init(input_queue, &tfile->process_queue);
> + spin_unlock(&input_queue->lock);
> + }
> +
> + if (received < budget) {
> + napi_complete(napi);
> + if (skb_peek(&tfile->socket.sk->sk_write_queue) &&
> + unlikely(napi_schedule_prep(napi))) {
> + __napi_schedule(napi);
> + }
> + }
> +
> + return received;
> +}
> +
> static int tun_attach(struct tun_struct *tun, struct file *file, bool skip_filter)
> {
> struct tun_file *tfile = file->private_data;
> @@ -666,9 +713,11 @@ static int tun_attach(struct tun_struct *tun, struct file *file, bool skip_filte
>
> if (tfile->detached)
> tun_enable_queue(tfile);
> - else
> + else {
> sock_hold(&tfile->sk);
> -
> + netif_napi_add(tun->dev, &tfile->napi, tun_poll, 64);
> + napi_enable(&tfile->napi);
> + }
> tun_set_real_num_queues(tun);
>
> /* device is allowed to go away first, so no need to hold extra
> @@ -1150,7 +1199,7 @@ static struct sk_buff *tun_alloc_skb(struct tun_file *tfile,
> /* Get packet from user space buffer */
> static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
> void *msg_control, struct iov_iter *from,
> - int noblock)
> + int noblock, bool more)
> {
> struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
> struct sk_buff *skb;
> @@ -1296,7 +1345,13 @@ static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
> skb_probe_transport_header(skb, 0);
>
> rxhash = skb_get_hash(skb);
> - netif_rx_ni(skb);
> + skb_queue_tail(&tfile->socket.sk->sk_write_queue, skb);
> +
> + if (!more) {
> + local_bh_disable();
> + napi_schedule(&tfile->napi);
> + local_bh_enable();
Why do we need to disable bh here? I thought napi_schedule can
be called from any context.
> + }
>
> stats = get_cpu_ptr(tun->pcpu_stats);
> u64_stats_update_begin(&stats->syncp);
> @@ -1319,7 +1374,8 @@ static ssize_t tun_chr_write_iter(struct kiocb *iocb, struct iov_iter *from)
> if (!tun)
> return -EBADFD;
>
> - result = tun_get_user(tun, tfile, NULL, from, file->f_flags & O_NONBLOCK);
> + result = tun_get_user(tun, tfile, NULL, from,
> + file->f_flags & O_NONBLOCK, false);
>
> tun_put(tun);
> return result;
> @@ -1579,7 +1635,8 @@ static int tun_sendmsg(struct socket *sock, struct msghdr *m, size_t total_len)
> return -EBADFD;
>
> ret = tun_get_user(tun, tfile, m->msg_control, &m->msg_iter,
> - m->msg_flags & MSG_DONTWAIT);
> + m->msg_flags & MSG_DONTWAIT,
> + m->msg_flags & MSG_MORE);
> tun_put(tun);
> return ret;
> }
> @@ -2336,6 +2393,8 @@ static int tun_chr_open(struct inode *inode, struct file * file)
> file->private_data = tfile;
> INIT_LIST_HEAD(&tfile->next);
>
> + skb_queue_head_init(&tfile->process_queue);
> +
> sock_set_flag(&tfile->sk, SOCK_ZEROCOPY);
>
> return 0;
> --
> 2.7.4
[toc] | [prev] | [next] | [standalone]
| From | Jason Wang <jasowang@redhat.com> |
|---|---|
| Date | 2016-11-11 03:10 +0100 |
| Message-ID | <sC9rY-6tM-11@gated-at.bofh.it> |
| In reply to | #1518294 |
On 2016年11月10日 00:38, Michael S. Tsirkin wrote:
> On Wed, Nov 09, 2016 at 03:38:31PM +0800, Jason Wang wrote:
>> Backlog were used for tuntap rx, but it can only process 1 packet at
>> one time since it was scheduled during sendmsg() synchronously in
>> process context. This lead bad cache utilization so this patch tries
>> to do some batching before call rx NAPI. This is done through:
>>
>> - accept MSG_MORE as a hint from sendmsg() caller, if it was set,
>> batch the packet temporarily in a linked list and submit them all
>> once MSG_MORE were cleared.
>> - implement a tuntap specific NAPI handler for processing this kind of
>> possible batching. (This could be done by extending backlog to
>> support skb like, but using a tun specific one looks cleaner and
>> easier for future extension).
>>
>> Signed-off-by: Jason Wang <jasowang@redhat.com>
> So why do we need an extra queue?
The idea was borrowed from backlog to allow some kind of bulking and
avoid spinlock on each dequeuing.
> This is not what hardware devices do.
> How about adding the packet to queue unconditionally, deferring
> signalling until we get sendmsg without MSG_MORE?
Then you need touch spinlock when dequeuing each packet.
>
>
>> ---
>> drivers/net/tun.c | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++-----
>> 1 file changed, 65 insertions(+), 6 deletions(-)
>>
[...]
>> rxhash = skb_get_hash(skb);
>> - netif_rx_ni(skb);
>> + skb_queue_tail(&tfile->socket.sk->sk_write_queue, skb);
>> +
>> + if (!more) {
>> + local_bh_disable();
>> + napi_schedule(&tfile->napi);
>> + local_bh_enable();
> Why do we need to disable bh here? I thought napi_schedule can
> be called from any context.
Yes, it's unnecessary. Will remove.
Thanks
[toc] | [prev] | [next] | [standalone]
| From | "Michael S. Tsirkin" <mst@redhat.com> |
|---|---|
| Date | 2016-11-11 04:40 +0100 |
| Message-ID | <sCaR3-7k1-11@gated-at.bofh.it> |
| In reply to | #1519517 |
On Fri, Nov 11, 2016 at 10:07:44AM +0800, Jason Wang wrote:
>
>
> On 2016年11月10日 00:38, Michael S. Tsirkin wrote:
> > On Wed, Nov 09, 2016 at 03:38:31PM +0800, Jason Wang wrote:
> > > Backlog were used for tuntap rx, but it can only process 1 packet at
> > > one time since it was scheduled during sendmsg() synchronously in
> > > process context. This lead bad cache utilization so this patch tries
> > > to do some batching before call rx NAPI. This is done through:
> > >
> > > - accept MSG_MORE as a hint from sendmsg() caller, if it was set,
> > > batch the packet temporarily in a linked list and submit them all
> > > once MSG_MORE were cleared.
> > > - implement a tuntap specific NAPI handler for processing this kind of
> > > possible batching. (This could be done by extending backlog to
> > > support skb like, but using a tun specific one looks cleaner and
> > > easier for future extension).
> > >
> > > Signed-off-by: Jason Wang <jasowang@redhat.com>
> > So why do we need an extra queue?
>
> The idea was borrowed from backlog to allow some kind of bulking and avoid
> spinlock on each dequeuing.
>
> > This is not what hardware devices do.
> > How about adding the packet to queue unconditionally, deferring
> > signalling until we get sendmsg without MSG_MORE?
>
> Then you need touch spinlock when dequeuing each packet.
It runs on the same CPU, right? Otherwise we should use skb_array...
> >
> >
> > > ---
> > > drivers/net/tun.c | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++-----
> > > 1 file changed, 65 insertions(+), 6 deletions(-)
> > >
>
> [...]
>
> > > rxhash = skb_get_hash(skb);
> > > - netif_rx_ni(skb);
> > > + skb_queue_tail(&tfile->socket.sk->sk_write_queue, skb);
> > > +
> > > + if (!more) {
> > > + local_bh_disable();
> > > + napi_schedule(&tfile->napi);
> > > + local_bh_enable();
> > Why do we need to disable bh here? I thought napi_schedule can
> > be called from any context.
>
> Yes, it's unnecessary. Will remove.
>
> Thanks
[toc] | [prev] | [next] | [standalone]
| From | John Fastabend <john.fastabend@gmail.com> |
|---|---|
| Date | 2016-11-11 05:20 +0100 |
| Message-ID | <sCbtL-7PU-1@gated-at.bofh.it> |
| In reply to | #1519541 |
On 16-11-10 07:31 PM, Michael S. Tsirkin wrote:
> On Fri, Nov 11, 2016 at 10:07:44AM +0800, Jason Wang wrote:
>>
>>
>> On 2016年11月10日 00:38, Michael S. Tsirkin wrote:
>>> On Wed, Nov 09, 2016 at 03:38:31PM +0800, Jason Wang wrote:
>>>> Backlog were used for tuntap rx, but it can only process 1 packet at
>>>> one time since it was scheduled during sendmsg() synchronously in
>>>> process context. This lead bad cache utilization so this patch tries
>>>> to do some batching before call rx NAPI. This is done through:
>>>>
>>>> - accept MSG_MORE as a hint from sendmsg() caller, if it was set,
>>>> batch the packet temporarily in a linked list and submit them all
>>>> once MSG_MORE were cleared.
>>>> - implement a tuntap specific NAPI handler for processing this kind of
>>>> possible batching. (This could be done by extending backlog to
>>>> support skb like, but using a tun specific one looks cleaner and
>>>> easier for future extension).
>>>>
>>>> Signed-off-by: Jason Wang <jasowang@redhat.com>
>>> So why do we need an extra queue?
>>
>> The idea was borrowed from backlog to allow some kind of bulking and avoid
>> spinlock on each dequeuing.
>>
>>> This is not what hardware devices do.
>>> How about adding the packet to queue unconditionally, deferring
>>> signalling until we get sendmsg without MSG_MORE?
>>
>> Then you need touch spinlock when dequeuing each packet.
>
Random thought, I have a cmpxchg ring I am using for the qdisc work that
could possibly replace the spinlock implementation. I haven't figured
out the resizing API yet because I did not need it but I assume it could
help here and let you dequeue multiple skbs in one operation.
I can post the latest version if useful or an older version is
somewhere on patchworks as well.
.John
> It runs on the same CPU, right? Otherwise we should use skb_array...
>
>>>
>>>
>>>> ---
>>>> drivers/net/tun.c | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++-----
>>>> 1 file changed, 65 insertions(+), 6 deletions(-)
>>>>
>>
>> [...]
>>
>>>> rxhash = skb_get_hash(skb);
>>>> - netif_rx_ni(skb);
>>>> + skb_queue_tail(&tfile->socket.sk->sk_write_queue, skb);
>>>> +
>>>> + if (!more) {
>>>> + local_bh_disable();
>>>> + napi_schedule(&tfile->napi);
>>>> + local_bh_enable();
>>> Why do we need to disable bh here? I thought napi_schedule can
>>> be called from any context.
>>
>> Yes, it's unnecessary. Will remove.
>>
>> Thanks
[toc] | [prev] | [next] | [standalone]
| From | Jason Wang <jasowang@redhat.com> |
|---|---|
| Date | 2016-11-11 05:30 +0100 |
| Message-ID | <sCbDr-7T1-1@gated-at.bofh.it> |
| In reply to | #1519553 |
On 2016年11月11日 12:17, John Fastabend wrote: > On 16-11-10 07:31 PM, Michael S. Tsirkin wrote: >> >On Fri, Nov 11, 2016 at 10:07:44AM +0800, Jason Wang wrote: >>> >> >>> >> >>> >>On 2016年11月10日 00:38, Michael S. Tsirkin wrote: >>>> >>>On Wed, Nov 09, 2016 at 03:38:31PM +0800, Jason Wang wrote: >>>>> >>>>Backlog were used for tuntap rx, but it can only process 1 packet at >>>>> >>>>one time since it was scheduled during sendmsg() synchronously in >>>>> >>>>process context. This lead bad cache utilization so this patch tries >>>>> >>>>to do some batching before call rx NAPI. This is done through: >>>>> >>>> >>>>> >>>>- accept MSG_MORE as a hint from sendmsg() caller, if it was set, >>>>> >>>> batch the packet temporarily in a linked list and submit them all >>>>> >>>> once MSG_MORE were cleared. >>>>> >>>>- implement a tuntap specific NAPI handler for processing this kind of >>>>> >>>> possible batching. (This could be done by extending backlog to >>>>> >>>> support skb like, but using a tun specific one looks cleaner and >>>>> >>>> easier for future extension). >>>>> >>>> >>>>> >>>>Signed-off-by: Jason Wang<jasowang@redhat.com> >>>> >>>So why do we need an extra queue? >>> >> >>> >>The idea was borrowed from backlog to allow some kind of bulking and avoid >>> >>spinlock on each dequeuing. >>> >> >>>> >>> This is not what hardware devices do. >>>> >>>How about adding the packet to queue unconditionally, deferring >>>> >>>signalling until we get sendmsg without MSG_MORE? >>> >> >>> >>Then you need touch spinlock when dequeuing each packet. >> > > Random thought, I have a cmpxchg ring I am using for the qdisc work that > could possibly replace the spinlock implementation. I haven't figured > out the resizing API yet because I did not need it but I assume it could > help here and let you dequeue multiple skbs in one operation. > > I can post the latest version if useful or an older version is > somewhere on patchworks as well. > > .John > > Look useful here, and I can compare the performance if you post. A question is can we extend the skb_array to support that? Thanks
[toc] | [prev] | [next] | [standalone]
| From | John Fastabend <john.fastabend@gmail.com> |
|---|---|
| Date | 2016-11-11 05:50 +0100 |
| Message-ID | <sCbWN-7Z4-7@gated-at.bofh.it> |
| In reply to | #1519558 |
On 16-11-10 08:28 PM, Jason Wang wrote: > > > On 2016年11月11日 12:17, John Fastabend wrote: >> On 16-11-10 07:31 PM, Michael S. Tsirkin wrote: >>> >On Fri, Nov 11, 2016 at 10:07:44AM +0800, Jason Wang wrote: >>>> >> >>>> >> >>>> >>On 2016年11月10日 00:38, Michael S. Tsirkin wrote: >>>>> >>>On Wed, Nov 09, 2016 at 03:38:31PM +0800, Jason Wang wrote: >>>>>> >>>>Backlog were used for tuntap rx, but it can only process 1 >>>>>> packet at >>>>>> >>>>one time since it was scheduled during sendmsg() synchronously in >>>>>> >>>>process context. This lead bad cache utilization so this patch >>>>>> tries >>>>>> >>>>to do some batching before call rx NAPI. This is done through: >>>>>> >>>> >>>>>> >>>>- accept MSG_MORE as a hint from sendmsg() caller, if it was set, >>>>>> >>>> batch the packet temporarily in a linked list and submit >>>>>> them all >>>>>> >>>> once MSG_MORE were cleared. >>>>>> >>>>- implement a tuntap specific NAPI handler for processing this >>>>>> kind of >>>>>> >>>> possible batching. (This could be done by extending >>>>>> backlog to >>>>>> >>>> support skb like, but using a tun specific one looks >>>>>> cleaner and >>>>>> >>>> easier for future extension). >>>>>> >>>> >>>>>> >>>>Signed-off-by: Jason Wang<jasowang@redhat.com> >>>>> >>>So why do we need an extra queue? >>>> >> >>>> >>The idea was borrowed from backlog to allow some kind of bulking >>>> and avoid >>>> >>spinlock on each dequeuing. >>>> >> >>>>> >>> This is not what hardware devices do. >>>>> >>>How about adding the packet to queue unconditionally, deferring >>>>> >>>signalling until we get sendmsg without MSG_MORE? >>>> >> >>>> >>Then you need touch spinlock when dequeuing each packet. >>> > >> Random thought, I have a cmpxchg ring I am using for the qdisc work that >> could possibly replace the spinlock implementation. I haven't figured >> out the resizing API yet because I did not need it but I assume it could >> help here and let you dequeue multiple skbs in one operation. >> >> I can post the latest version if useful or an older version is >> somewhere on patchworks as well. >> >> .John >> >> > > Look useful here, and I can compare the performance if you post. > > A question is can we extend the skb_array to support that? > > Thanks > Sent out two RFC patches with the implementation, the first has been running on my system for some time the second for multiple packets is only lightly tested and that was awhile back. .John
[toc] | [prev] | [next] | [standalone]
| From | "Michael S. Tsirkin" <mst@redhat.com> |
|---|---|
| Date | 2016-11-11 17:30 +0100 |
| Message-ID | <sCmSd-6F5-7@gated-at.bofh.it> |
| In reply to | #1519558 |
On Fri, Nov 11, 2016 at 12:28:38PM +0800, Jason Wang wrote: > > > On 2016年11月11日 12:17, John Fastabend wrote: > > On 16-11-10 07:31 PM, Michael S. Tsirkin wrote: > > > >On Fri, Nov 11, 2016 at 10:07:44AM +0800, Jason Wang wrote: > > > > >> > > > > >> > > > > >>On 2016年11月10日 00:38, Michael S. Tsirkin wrote: > > > > > >>>On Wed, Nov 09, 2016 at 03:38:31PM +0800, Jason Wang wrote: > > > > > > >>>>Backlog were used for tuntap rx, but it can only process 1 packet at > > > > > > >>>>one time since it was scheduled during sendmsg() synchronously in > > > > > > >>>>process context. This lead bad cache utilization so this patch tries > > > > > > >>>>to do some batching before call rx NAPI. This is done through: > > > > > > >>>> > > > > > > >>>>- accept MSG_MORE as a hint from sendmsg() caller, if it was set, > > > > > > >>>> batch the packet temporarily in a linked list and submit them all > > > > > > >>>> once MSG_MORE were cleared. > > > > > > >>>>- implement a tuntap specific NAPI handler for processing this kind of > > > > > > >>>> possible batching. (This could be done by extending backlog to > > > > > > >>>> support skb like, but using a tun specific one looks cleaner and > > > > > > >>>> easier for future extension). > > > > > > >>>> > > > > > > >>>>Signed-off-by: Jason Wang<jasowang@redhat.com> > > > > > >>>So why do we need an extra queue? > > > > >> > > > > >>The idea was borrowed from backlog to allow some kind of bulking and avoid > > > > >>spinlock on each dequeuing. > > > > >> > > > > > >>> This is not what hardware devices do. > > > > > >>>How about adding the packet to queue unconditionally, deferring > > > > > >>>signalling until we get sendmsg without MSG_MORE? > > > > >> > > > > >>Then you need touch spinlock when dequeuing each packet. > > > > > > Random thought, I have a cmpxchg ring I am using for the qdisc work that > > could possibly replace the spinlock implementation. I haven't figured > > out the resizing API yet because I did not need it but I assume it could > > help here and let you dequeue multiple skbs in one operation. > > > > I can post the latest version if useful or an older version is > > somewhere on patchworks as well. > > > > .John > > > > > > Look useful here, and I can compare the performance if you post. > > A question is can we extend the skb_array to support that? > > Thanks I'd like to start with simple patch adding napi with one queue, then add optimization patches on top. One issue that comes to mind is that write queue limits are byte based, they do not count packets unlike tun rx queue. -- MST
[toc] | [prev] | [next] | [standalone]
| From | Jason Wang <jasowang@redhat.com> |
|---|---|
| Date | 2016-11-11 05:20 +0100 |
| Message-ID | <sCbtL-7PU-17@gated-at.bofh.it> |
| In reply to | #1519541 |
On 2016年11月11日 11:31, Michael S. Tsirkin wrote: > On Fri, Nov 11, 2016 at 10:07:44AM +0800, Jason Wang wrote: >> > >> > >> >On 2016年11月10日 00:38, Michael S. Tsirkin wrote: >>> > >On Wed, Nov 09, 2016 at 03:38:31PM +0800, Jason Wang wrote: >>>> > > >Backlog were used for tuntap rx, but it can only process 1 packet at >>>> > > >one time since it was scheduled during sendmsg() synchronously in >>>> > > >process context. This lead bad cache utilization so this patch tries >>>> > > >to do some batching before call rx NAPI. This is done through: >>>> > > > >>>> > > >- accept MSG_MORE as a hint from sendmsg() caller, if it was set, >>>> > > > batch the packet temporarily in a linked list and submit them all >>>> > > > once MSG_MORE were cleared. >>>> > > >- implement a tuntap specific NAPI handler for processing this kind of >>>> > > > possible batching. (This could be done by extending backlog to >>>> > > > support skb like, but using a tun specific one looks cleaner and >>>> > > > easier for future extension). >>>> > > > >>>> > > >Signed-off-by: Jason Wang<jasowang@redhat.com> >>> > >So why do we need an extra queue? >> > >> >The idea was borrowed from backlog to allow some kind of bulking and avoid >> >spinlock on each dequeuing. >> > >>> > > This is not what hardware devices do. >>> > >How about adding the packet to queue unconditionally, deferring >>> > >signalling until we get sendmsg without MSG_MORE? >> > >> >Then you need touch spinlock when dequeuing each packet. > It runs on the same CPU, right? Otherwise we should use skb_array... > There could be multiple senders technically. Will try skb_array and see if there's any difference. Thanks
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web