Home
last modified time | relevance | path

Searched refs:XENSTORE_RING_SIZE (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/contrib/xen/io/
H A Dxs_wire.h117 #define XENSTORE_RING_SIZE 1024 macro
119 #define MASK_XENSTORE_IDX(idx) ((idx) & (XENSTORE_RING_SIZE-1))
121 char req[XENSTORE_RING_SIZE]; /* Requests to xenstore daemon. */
122 char rsp[XENSTORE_RING_SIZE]; /* Replies and async watch events. */
/freebsd/sys/dev/xen/xenstore/
H A Dxenstore.c390 return ((prod - cons) <= XENSTORE_RING_SIZE); in xs_check_indexes()
409 *len = XENSTORE_RING_SIZE - MASK_XENSTORE_IDX(prod); in xs_get_output_chunk()
410 if ((XENSTORE_RING_SIZE - (prod - cons)) < *len) in xs_get_output_chunk()
411 *len = XENSTORE_RING_SIZE - (prod - cons); in xs_get_output_chunk()
431 *len = XENSTORE_RING_SIZE - MASK_XENSTORE_IDX(cons); in xs_get_input_chunk()
467 if ((prod - cons) == XENSTORE_RING_SIZE) { in xs_write_store()