vhost/net: fix rcu check usage
authorMichael S. Tsirkin <mst@redhat.com>
Sun, 14 Nov 2010 15:31:52 +0000 (17:31 +0200)
committerMichael S. Tsirkin <mst@redhat.com>
Thu, 25 Nov 2010 09:29:16 +0000 (11:29 +0200)
Incorrect rcu check was used as rcu isn't done
under mutex here. Force check to 1 for now,
to stop it from complaining.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
drivers/vhost/net.c

index 4b4da5b..f442668 100644 (file)
@@ -129,8 +129,9 @@ static void handle_tx(struct vhost_net *net)
        size_t hdr_size;
        struct socket *sock;
 
-       sock = rcu_dereference_check(vq->private_data,
-                                    lockdep_is_held(&vq->mutex));
+       /* TODO: check that we are running from vhost_worker?
+        * Not sure it's worth it, it's straight-forward enough. */
+       sock = rcu_dereference_check(vq->private_data, 1);
        if (!sock)
                return;