diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2013-05-06 13:29:36 +0300 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2013-05-06 14:04:06 +0300 |
commit | 7542a6b0d273ba4338028d39bc0e6e8cbfc68898 (patch) | |
tree | 3f5744c642cff2c4b5eaa75e78f4cebcb54531ab | |
parent | fe729a57c8d85b6b38d62b64215d5f064e682940 (diff) | |
download | linux-3.10-7542a6b0d273ba4338028d39bc0e6e8cbfc68898.tar.gz linux-3.10-7542a6b0d273ba4338028d39bc0e6e8cbfc68898.tar.bz2 linux-3.10-7542a6b0d273ba4338028d39bc0e6e8cbfc68898.zip |
vhost: drop virtio_net.h dependency
There's no net specific code in vhost.c anymore,
don't include the virtio_net.h header.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
-rw-r--r-- | drivers/vhost/vhost.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/vhost/vhost.c b/drivers/vhost/vhost.c index de9441a1b15..beee7f5787e 100644 --- a/drivers/vhost/vhost.c +++ b/drivers/vhost/vhost.c @@ -13,7 +13,7 @@ #include <linux/eventfd.h> #include <linux/vhost.h> -#include <linux/virtio_net.h> +#include <linux/socket.h> /* memcpy_fromiovec */ #include <linux/mm.h> #include <linux/mmu_context.h> #include <linux/miscdevice.h> |