vhost: fix typos in comment
authorJason Wang <jasowang@redhat.com>
Mon, 29 Nov 2010 05:48:40 +0000 (13:48 +0800)
committerMichael S. Tsirkin <mst@redhat.com>
Thu, 9 Dec 2010 13:39:15 +0000 (15:39 +0200)
Signed-off-by: Jason Wang <jasowang@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
drivers/vhost/net.c
drivers/vhost/vhost.h

index d10da28..14fc189 100644 (file)
@@ -452,7 +452,7 @@ static void handle_rx_mergeable(struct vhost_net *net)
                        move_iovec_hdr(vq->iov, vq->hdr, vhost_hlen, in);
                else
                        /* Copy the header for use in VIRTIO_NET_F_MRG_RXBUF:
-                        * needed because sendmsg can modify msg_iov. */
+                        * needed because recvmsg can modify msg_iov. */
                        copy_iovec_hdr(vq->iov, vq->hdr, sock_hlen, in);
                msg.msg_iovlen = in;
                err = sock->ops->recvmsg(NULL, sock, &msg,
index 073d06a..2af44b7 100644 (file)
@@ -102,7 +102,7 @@ struct vhost_virtqueue {
         * flush the vhost_work instead of synchronize_rcu. Therefore readers do
         * not need to call rcu_read_lock/rcu_read_unlock: the beginning of
         * vhost_work execution acts instead of rcu_read_lock() and the end of
-        * vhost_work execution acts instead of rcu_read_lock().
+        * vhost_work execution acts instead of rcu_read_unlock().
         * Writers use virtqueue mutex. */
        void __rcu *private_data;
        /* Log write descriptors */