diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2012-07-03 15:15:41 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2012-07-03 15:15:41 +0000 |
| commit | 7dcc1b85ddf7fa621e24c5f57d1ed3e35a1f24cb (patch) | |
| tree | dd56b2e0c2aacafd2555ee71f42696c7cee1320f /sys | |
| parent | ae88a6d9aca844b6d8973d001a883ba6ac566170 (diff) | |
Notes
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/dev/virtio/balloon/virtio_balloon.h | 2 | ||||
| -rw-r--r-- | sys/dev/virtio/block/virtio_blk.h | 2 | ||||
| -rw-r--r-- | sys/dev/virtio/network/virtio_net.h | 2 | ||||
| -rw-r--r-- | sys/dev/virtio/virtio.h | 2 | ||||
| -rw-r--r-- | sys/dev/virtio/virtio_ring.h | 2 | ||||
| -rw-r--r-- | sys/dev/virtio/virtqueue.h | 2 |
6 files changed, 0 insertions, 12 deletions
diff --git a/sys/dev/virtio/balloon/virtio_balloon.h b/sys/dev/virtio/balloon/virtio_balloon.h index 1a5273359569..f143341572cd 100644 --- a/sys/dev/virtio/balloon/virtio_balloon.h +++ b/sys/dev/virtio/balloon/virtio_balloon.h @@ -31,8 +31,6 @@ #ifndef _VIRTIO_BALLOON_H #define _VIRTIO_BALLOON_H -#include <sys/types.h> - /* Feature bits. */ #define VIRTIO_BALLOON_F_MUST_TELL_HOST 0x1 /* Tell before reclaiming pages */ #define VIRTIO_BALLOON_F_STATS_VQ 0x2 /* Memory stats virtqueue */ diff --git a/sys/dev/virtio/block/virtio_blk.h b/sys/dev/virtio/block/virtio_blk.h index f26c6498372c..fdac9e5e5f89 100644 --- a/sys/dev/virtio/block/virtio_blk.h +++ b/sys/dev/virtio/block/virtio_blk.h @@ -31,8 +31,6 @@ #ifndef _VIRTIO_BLK_H #define _VIRTIO_BLK_H -#include <sys/types.h> - /* Feature bits */ #define VIRTIO_BLK_F_BARRIER 0x0001 /* Does host support barriers? */ #define VIRTIO_BLK_F_SIZE_MAX 0x0002 /* Indicates maximum segment size */ diff --git a/sys/dev/virtio/network/virtio_net.h b/sys/dev/virtio/network/virtio_net.h index 058f29f7ad0a..15a73ccbb8e2 100644 --- a/sys/dev/virtio/network/virtio_net.h +++ b/sys/dev/virtio/network/virtio_net.h @@ -31,8 +31,6 @@ #ifndef _VIRTIO_NET_H #define _VIRTIO_NET_H -#include <sys/types.h> - /* The feature bitmap for virtio net */ #define VIRTIO_NET_F_CSUM 0x00001 /* Host handles pkts w/ partial csum */ #define VIRTIO_NET_F_GUEST_CSUM 0x00002 /* Guest handles pkts w/ partial csum*/ diff --git a/sys/dev/virtio/virtio.h b/sys/dev/virtio/virtio.h index 00d2d5fd7826..e0ecfb9c0dd9 100644 --- a/sys/dev/virtio/virtio.h +++ b/sys/dev/virtio/virtio.h @@ -31,8 +31,6 @@ #ifndef _VIRTIO_H_ #define _VIRTIO_H_ -#include <sys/types.h> - struct vq_alloc_info; /* VirtIO device IDs. */ diff --git a/sys/dev/virtio/virtio_ring.h b/sys/dev/virtio/virtio_ring.h index 52580856a864..0d0001334aa6 100644 --- a/sys/dev/virtio/virtio_ring.h +++ b/sys/dev/virtio/virtio_ring.h @@ -33,8 +33,6 @@ #ifndef VIRTIO_RING_H #define VIRTIO_RING_H -#include <sys/types.h> - /* This marks a buffer as continuing via the next field. */ #define VRING_DESC_F_NEXT 1 /* This marks a buffer as write-only (otherwise read-only). */ diff --git a/sys/dev/virtio/virtqueue.h b/sys/dev/virtio/virtqueue.h index eab57b22a23d..a84d7a144698 100644 --- a/sys/dev/virtio/virtqueue.h +++ b/sys/dev/virtio/virtqueue.h @@ -29,8 +29,6 @@ #ifndef _VIRTIO_VIRTQUEUE_H #define _VIRTIO_VIRTQUEUE_H -#include <sys/types.h> - struct virtqueue; struct sglist; |
