aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/vhost
diff options
context:
space:
mode:
authorMichael S. Tsirkin <mst@redhat.com>2010-03-08 23:24:22 +0200
committerMichael S. Tsirkin <mst@redhat.com>2010-03-17 16:44:20 +0200
commit0e255572121180c900e24e33b87047abd8153cce (patch)
treef28e91b088f7a751ef8349a226e7d7c4c7046756 /drivers/vhost
parentvhost: fix error path in vhost_net_set_backend (diff)
downloadlinux-dev-0e255572121180c900e24e33b87047abd8153cce.tar.xz
linux-dev-0e255572121180c900e24e33b87047abd8153cce.zip
vhost: fix interrupt mitigation with raw sockets
A thinko in code means we never trigger interrupt mitigation. Fix this. Reported-by: Juan Quintela <quintela@redhat.com> Reported-by: Unai Uribarri <unai.uribarri@optenet.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'drivers/vhost')
-rw-r--r--drivers/vhost/net.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/vhost/net.c b/drivers/vhost/net.c
index fcafb6b170fb..a6a88dfd5029 100644
--- a/drivers/vhost/net.c
+++ b/drivers/vhost/net.c
@@ -125,7 +125,7 @@ static void handle_tx(struct vhost_net *net)
mutex_lock(&vq->mutex);
vhost_disable_notify(vq);
- if (wmem < sock->sk->sk_sndbuf * 2)
+ if (wmem < sock->sk->sk_sndbuf / 2)
tx_poll_stop(net);
hdr_size = vq->hdr_size;