Home
last modified time | relevance | path

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

/openbmc/qemu/include/standard-headers/linux/
H A Dvhost_types.h36 #define VHOST_VRING_F_LOG 0 macro
/openbmc/linux/include/uapi/linux/
H A Dvhost_types.h36 #define VHOST_VRING_F_LOG 0 macro
/openbmc/linux/drivers/vhost/
H A Dvhost.c1876 if (a.flags & ~(0x1 << VHOST_VRING_F_LOG)) in vhost_vring_set_addr()
1906 a.flags & (0x1 << VHOST_VRING_F_LOG), in vhost_vring_set_addr()
1911 vq->log_used = !!(a.flags & (0x1 << VHOST_VRING_F_LOG)); in vhost_vring_set_addr()
/openbmc/qemu/docs/interop/
H A Dvhost-user.rst532 ``VHOST_USER_SET_VRING_ADDR`` with ``VHOST_VRING_F_LOG`` in ring's
537 ``VHOST_VRING_F_LOG`` is part of ring's flags.
561 ``VHOST_VRING_F_LOG`` is set for this ring), ``log_guest_addr`` should
/openbmc/qemu/hw/virtio/
H A Dvhost.c978 addr.flags = enable_log ? (1 << VHOST_VRING_F_LOG) : 0; in vhost_virtqueue_set_addr()
H A Dvhost-user.c1382 bool wait_for_reply = addr->flags & (1 << VHOST_VRING_F_LOG); in vhost_user_set_vring_addr()