diff options
author | Eric Paris <eparis@redhat.com> | 2014-03-07 11:41:32 -0500 |
---|---|---|
committer | Eric Paris <eparis@redhat.com> | 2014-03-07 11:41:32 -0500 |
commit | b7d3622a39fde7658170b7f3cf6c6889bb8db30d (patch) | |
tree | 64f4e781ecb2a85d675e234072b988560bcd25f1 /include/linux/virtio.h | |
parent | f3411cb2b2e396a41ed3a439863f028db7140a34 (diff) | |
parent | d8ec26d7f8287f5788a494f56e8814210f0e64be (diff) |
Merge tag 'v3.13' into for-3.15
Linux 3.13
Conflicts:
include/net/xfrm.h
Simple merge where v3.13 removed 'extern' from definitions and the audit
tree did s/u32/unsigned int/ to the same definitions.
Diffstat (limited to 'include/linux/virtio.h')
-rw-r--r-- | include/linux/virtio.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/linux/virtio.h b/include/linux/virtio.h index 36d36cc89329..e4abb84199be 100644 --- a/include/linux/virtio.h +++ b/include/linux/virtio.h | |||
@@ -51,11 +51,11 @@ int virtqueue_add_sgs(struct virtqueue *vq, | |||
51 | void *data, | 51 | void *data, |
52 | gfp_t gfp); | 52 | gfp_t gfp); |
53 | 53 | ||
54 | void virtqueue_kick(struct virtqueue *vq); | 54 | bool virtqueue_kick(struct virtqueue *vq); |
55 | 55 | ||
56 | bool virtqueue_kick_prepare(struct virtqueue *vq); | 56 | bool virtqueue_kick_prepare(struct virtqueue *vq); |
57 | 57 | ||
58 | void virtqueue_notify(struct virtqueue *vq); | 58 | bool virtqueue_notify(struct virtqueue *vq); |
59 | 59 | ||
60 | void *virtqueue_get_buf(struct virtqueue *vq, unsigned int *len); | 60 | void *virtqueue_get_buf(struct virtqueue *vq, unsigned int *len); |
61 | 61 | ||
@@ -73,6 +73,8 @@ void *virtqueue_detach_unused_buf(struct virtqueue *vq); | |||
73 | 73 | ||
74 | unsigned int virtqueue_get_vring_size(struct virtqueue *vq); | 74 | unsigned int virtqueue_get_vring_size(struct virtqueue *vq); |
75 | 75 | ||
76 | bool virtqueue_is_broken(struct virtqueue *vq); | ||
77 | |||
76 | /** | 78 | /** |
77 | * virtio_device - representation of a device using virtio | 79 | * virtio_device - representation of a device using virtio |
78 | * @index: unique position on the virtio bus | 80 | * @index: unique position on the virtio bus |