diff options
author | Asias He <asias@redhat.com> | 2013-05-06 16:38:20 +0800 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2013-05-06 13:21:00 +0300 |
commit | 8570a6e72c5bfb1aee8225b8c4814cdc28417a20 (patch) | |
tree | 2bb6af290c85226eda2a56a17b44c3192f3fd51c /drivers/vhost/vhost.h | |
parent | b1ad8496c9f47d8b545ed4e948ab4271627c8bcf (diff) | |
download | talos-obmc-linux-8570a6e72c5bfb1aee8225b8c4814cdc28417a20.tar.gz talos-obmc-linux-8570a6e72c5bfb1aee8225b8c4814cdc28417a20.zip |
vhost: Move VHOST_NET_FEATURES to net.c
vhost.h should not depend on device specific marcos like
VHOST_NET_F_VIRTIO_NET_HDR and VIRTIO_NET_F_MRG_RXBUF.
Signed-off-by: Asias He <asias@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'drivers/vhost/vhost.h')
-rw-r--r-- | drivers/vhost/vhost.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/vhost/vhost.h b/drivers/vhost/vhost.h index cc23bc456d15..08ebf58dfcf4 100644 --- a/drivers/vhost/vhost.h +++ b/drivers/vhost/vhost.h @@ -178,9 +178,6 @@ enum { (1ULL << VIRTIO_RING_F_INDIRECT_DESC) | (1ULL << VIRTIO_RING_F_EVENT_IDX) | (1ULL << VHOST_F_LOG_ALL), - VHOST_NET_FEATURES = VHOST_FEATURES | - (1ULL << VHOST_NET_F_VIRTIO_NET_HDR) | - (1ULL << VIRTIO_NET_F_MRG_RXBUF), }; static inline int vhost_has_feature(struct vhost_dev *dev, int bit) |