]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
vsock/virtio: mark an internal function static
authorMichael S. Tsirkin <mst@redhat.com>
Tue, 6 Dec 2016 04:06:06 +0000 (06:06 +0200)
committerMichael S. Tsirkin <mst@redhat.com>
Thu, 15 Dec 2016 04:59:19 +0000 (06:59 +0200)
virtio_transport_alloc_pkt is only used locally, make it static.

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

index 687e9fdb3d672b9e2a36c0255e5dae51ce2d03a0..6fd923eaeba9a41ae12439f5c037463d72ed0640 100644 (file)
@@ -32,7 +32,7 @@ static const struct virtio_transport *virtio_transport_get_ops(void)
        return container_of(t, struct virtio_transport, transport);
 }
 
-struct virtio_vsock_pkt *
+static struct virtio_vsock_pkt *
 virtio_transport_alloc_pkt(struct virtio_vsock_pkt_info *info,
                           size_t len,
                           u32 src_cid,
@@ -82,7 +82,6 @@ out_pkt:
        kfree(pkt);
        return NULL;
 }
-EXPORT_SYMBOL_GPL(virtio_transport_alloc_pkt);
 
 static int virtio_transport_send_pkt_info(struct vsock_sock *vsk,
                                          struct virtio_vsock_pkt_info *info)