search for: bffbeeb

Displaying 2 results from an estimated 2 matches for "bffbeeb".

Did you mean: beffbeed
2017 Feb 07
0
[PATCH] vhost: try avoiding avail index access when getting descriptor
...n test show about 3% improvement on rx pps. Signed-off-by: Jason Wang <jasowang at redhat.com> --- drivers/vhost/vhost.c | 39 +++++++++++++++++++++++---------------- 1 file changed, 23 insertions(+), 16 deletions(-) diff --git a/drivers/vhost/vhost.c b/drivers/vhost/vhost.c index 9f11838..bffbeeb 100644 --- a/drivers/vhost/vhost.c +++ b/drivers/vhost/vhost.c @@ -1932,25 +1932,32 @@ int vhost_get_vq_desc(struct vhost_virtqueue *vq, /* Check it isn't doing very strange things with descriptor numbers. */ last_avail_idx = vq->last_avail_idx; - if (unlikely(vhost_get_user(vq, avail_...
2017 Feb 07
0
[PATCH] vhost: try avoiding avail index access when getting descriptor
...n test show about 3% improvement on rx pps. Signed-off-by: Jason Wang <jasowang at redhat.com> --- drivers/vhost/vhost.c | 39 +++++++++++++++++++++++---------------- 1 file changed, 23 insertions(+), 16 deletions(-) diff --git a/drivers/vhost/vhost.c b/drivers/vhost/vhost.c index 9f11838..bffbeeb 100644 --- a/drivers/vhost/vhost.c +++ b/drivers/vhost/vhost.c @@ -1932,25 +1932,32 @@ int vhost_get_vq_desc(struct vhost_virtqueue *vq, /* Check it isn't doing very strange things with descriptor numbers. */ last_avail_idx = vq->last_avail_idx; - if (unlikely(vhost_get_user(vq, avail_...