• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/sys/xen/interface/

Lines Matching defs:ring

36 /* The maximum size of an Argo ring is defined to be: 16MB (0x1000000 bytes). */
81 * Header space reserved for later use. Align the start of the ring to a
85 uint8_t ring[XEN_FLEX_ARRAY_DIM];
103 /* Messages on the ring are padded to a multiple of this size. */
117 /* Insufficient ring size for space_required bytes */
119 /* Too many domains waiting for available space signals for this ring */
124 struct xen_argo_addr ring;
153 * Register a ring using the guest-supplied memory pages.
154 * Also used to reregister an existing ring (eg. after resume from hibernate).
156 * The first argument struct indicates the port number for the ring to register
157 * and the partner domain, if any, that is to be allowed to send to the ring.
160 * any domain (XSM notwithstanding) to send to the ring.
175 * If set, reject attempts to (re)register an existing established ring.
176 * If clear, reregistration occurs if the ring exists, with the new ring
189 * Unregister a previously-registered ring, ending communication.
204 * for the message being sent, which are used to find the destination ring:
205 * Xen first looks for a most-specific match with a registered ring with
210 * For each iov entry, send iov_len bytes from iov_base to the destination ring.
211 * If insufficient space exists in the destination ring, it will return -EAGAIN
229 * ent->ring is the xen_argo_addr_t of the ring you want information on.
230 * Uses the same ring matching rules as XEN_ARGO_OP_sendv.
233 * that there is space in the destination ring for this many bytes of payload.
234 * If the ring is too small for the requested space_required, it will set the
237 * and CANCEL any pending notification for that ent->ring; otherwise it
241 * XEN_ARGO_RING_EXISTS ring exists
242 * XEN_ARGO_RING_SHARED ring is registered for wildcard partner
243 * XEN_ARGO_RING_EMPTY ring is empty
245 * XEN_ARGO_RING_EMSGSIZE space_required is too large for the ring size