Home
last modified time | relevance | path

Searched refs:req_prod (Results 1 – 11 of 11) sorted by relevance

/Linux-v5.10/include/xen/interface/io/
Dring.h84 RING_IDX req_prod, req_event; \
123 (_s)->req_prod = (_s)->rsp_prod = 0; \
166 unsigned int req = (_r)->sring->req_prod - (_r)->req_cons; \
204 (_r)->sring->req_prod = (_r)->req_prod_pvt; \
243 RING_IDX __old = (_r)->sring->req_prod; \
246 (_r)->sring->req_prod = __new; \
Dxs_wire.h88 XENSTORE_RING_IDX req_cons, req_prod; member
/Linux-v5.10/drivers/xen/xenbus/
Dxenbus_comms.c103 return (intf->req_prod - intf->req_cons) != XENSTORE_RING_SIZE && in xb_data_to_write()
126 prod = intf->req_prod; in xb_write()
128 intf->req_cons = intf->req_prod = 0; in xb_write()
150 intf->req_prod += avail; in xb_write()
450 if (intf->req_prod != intf->req_cons) in xb_init_comms()
452 intf->req_cons, intf->req_prod); in xb_init_comms()
/Linux-v5.10/drivers/net/xen-netback/
Dnetback.c820 if (queue->tx.sring->req_prod - queue->tx.req_cons > in xenvif_tx_build_gops()
825 queue->tx.sring->req_prod, queue->tx.req_cons, in xenvif_tx_build_gops()
1467 RING_IDX rsp_prod, req_prod; in xenvif_map_frontend_data_rings() local
1477 req_prod = READ_ONCE(txs->req_prod); in xenvif_map_frontend_data_rings()
1482 if (req_prod - rsp_prod > RING_SIZE(&queue->tx)) in xenvif_map_frontend_data_rings()
1492 req_prod = READ_ONCE(rxs->req_prod); in xenvif_map_frontend_data_rings()
1497 if (req_prod - rsp_prod > RING_SIZE(&queue->rx)) in xenvif_map_frontend_data_rings()
1614 RING_IDX req_prod, req_cons; in xenvif_ctrl_action() local
1616 req_prod = vif->ctrl.sring->req_prod; in xenvif_ctrl_action()
1622 if (req_cons == req_prod) in xenvif_ctrl_action()
[all …]
Drx.c53 prod = queue->rx.sring->req_prod; in xenvif_rx_ring_slots_available()
65 } while (queue->rx.sring->req_prod != prod); in xenvif_rx_ring_slots_available()
487 prod = queue->rx.sring->req_prod; in xenvif_rx_queue_stalled()
500 prod = queue->rx.sring->req_prod; in xenvif_rx_queue_ready()
Dinterface.c633 RING_IDX rsp_prod, req_prod; in xenvif_connect_ctrl() local
643 req_prod = READ_ONCE(shared->req_prod); in xenvif_connect_ctrl()
648 if (req_prod - rsp_prod > RING_SIZE(&vif->ctrl)) in xenvif_connect_ctrl()
Dxenbus.c39 sring->req_prod, in xenvif_read_io_ring()
40 sring->req_prod - sring->rsp_prod, in xenvif_read_io_ring()
66 sring->req_prod, in xenvif_read_io_ring()
67 sring->req_prod - sring->rsp_prod, in xenvif_read_io_ring()
/Linux-v5.10/drivers/block/xen-blkback/
Dxenbus.c193 RING_IDX rsp_prod, req_prod; in xen_blkif_map() local
207 req_prod = READ_ONCE(sring_common->req_prod); in xen_blkif_map()
245 if (req_prod - rsp_prod > size) in xen_blkif_map()
Dblkback.c1087 rp = blk_rings->common.sring->req_prod; in __do_block_io_op()
/Linux-v5.10/drivers/net/
Dxen-netfront.c299 RING_IDX req_prod = queue->rx.req_prod_pvt; in xennet_alloc_rx_buffers() local
306 for (req_prod = queue->rx.req_prod_pvt; in xennet_alloc_rx_buffers()
307 req_prod - queue->rx.rsp_cons < NET_RX_RING_SIZE; in xennet_alloc_rx_buffers()
308 req_prod++) { in xennet_alloc_rx_buffers()
321 id = xennet_rxidx(req_prod); in xennet_alloc_rx_buffers()
332 req = RING_GET_REQUEST(&queue->rx, req_prod); in xennet_alloc_rx_buffers()
341 queue->rx.req_prod_pvt = req_prod; in xennet_alloc_rx_buffers()
348 if (req_prod - queue->rx.rsp_cons < NET_RX_SLOTS_MIN || in xennet_alloc_rx_buffers()
/Linux-v5.10/drivers/xen/
Dxen-scsiback.c699 rp = ring->sring->req_prod; in scsiback_do_cmd_fn()