Home
last modified time | relevance | path

Searched refs:weak_barriers (Results 1 – 6 of 6) sorted by relevance

/linux/include/linux/
H A Dvirtio_ring.h25 static inline void virtio_mb(bool weak_barriers) in virtio_mb() argument
27 if (weak_barriers) in virtio_mb()
33 static inline void virtio_rmb(bool weak_barriers) in virtio_rmb() argument
35 if (weak_barriers) in virtio_rmb()
41 static inline void virtio_wmb(bool weak_barriers) in virtio_wmb() argument
43 if (weak_barriers) in virtio_wmb()
49 #define virtio_store_mb(weak_barriers, p, v) \ argument
51 if (weak_barriers) { \
73 bool weak_barriers,
88 bool weak_barriers,
[all …]
H A Dvringh.h33 bool weak_barriers; member
127 unsigned int num, bool weak_barriers,
189 unsigned int num, bool weak_barriers,
298 unsigned int num, bool weak_barriers,
304 unsigned int num, bool weak_barriers,
/linux/drivers/virtio/
H A Dvirtio_ring.c164 bool weak_barriers; member
229 bool weak_barriers,
692 virtio_wmb(vq->weak_barriers); in virtqueue_add_split()
743 virtio_mb(vq->weak_barriers); in virtqueue_kick_prepare_split()
846 virtio_rmb(vq->weak_barriers); in virtqueue_get_buf_ctx_split()
871 virtio_store_mb(vq->weak_barriers, in virtqueue_get_buf_ctx_split()
960 virtio_store_mb(vq->weak_barriers, in virtqueue_enable_cb_delayed_split()
1146 bool weak_barriers, in vring_create_virtqueue_split() argument
1163 vq = __vring_new_virtqueue(index, &vring_split, vdev, weak_barriers, in vring_create_virtqueue_split()
1356 virtio_wmb(vq->weak_barriers); in virtqueue_add_indirect_packed()
[all …]
/linux/drivers/vhost/
H A Dvringh.c57 virtio_rmb(vrh->weak_barriers); in __vringh_get_head()
483 virtio_wmb(vrh->weak_barriers); in __vringh_complete()
509 virtio_mb(vrh->weak_barriers); in __vringh_need_notify()
570 virtio_mb(vrh->weak_barriers); in __vringh_notify_enable()
657 unsigned int num, bool weak_barriers, in vringh_init_user() argument
670 vrh->weak_barriers = weak_barriers; in vringh_init_user()
931 unsigned int num, bool weak_barriers, in vringh_init_kern() argument
944 vrh->weak_barriers = weak_barriers; in vringh_init_kern()
1407 unsigned int num, bool weak_barriers, in vringh_init_iotlb() argument
1414 return vringh_init_kern(vrh, features, num, weak_barriers, in vringh_init_iotlb()
[all …]
/linux/tools/virtio/linux/
H A Dvirtio.h64 bool weak_barriers,
/linux/tools/virtio/
H A Dvringh_test.c124 virtio_rmb(vrh->weak_barriers); in vringh_get_head()