Home
last modified time | relevance | path

Searched refs:RING_SIZE (Results 1 – 9 of 9) sorted by relevance

/linux-5.19.10/include/xen/interface/io/
Dring.h163 #define RING_SIZE(_r) \ macro
168 (RING_SIZE(_r) - ((_r)->req_prod_pvt - (_r)->rsp_cons))
182 unsigned int rsp = RING_SIZE(_r) - \
194 (&((_r)->sring->ring[((_idx) & (RING_SIZE(_r) - 1))].req))
197 (&((_r)->sring->ring[((_idx) & (RING_SIZE(_r) - 1))].rsp))
218 (((_cons) - (_r)->rsp_prod_pvt) >= RING_SIZE(_r))
222 (((_prod) - (_r)->rsp_prod_pvt) > RING_SIZE(_r))
226 (((_prod) - (_r)->rsp_cons) > RING_SIZE(_r))
/linux-5.19.10/drivers/crypto/qat/qat_common/
Dadf_transport_access_macros.h48 #define ADF_MAX_INFLIGHTS(RING_SIZE, MSG_SIZE) \ argument
49 ((((1 << (RING_SIZE - 1)) << 3) >> ADF_SIZE_TO_POW(MSG_SIZE)) - 1)
/linux-5.19.10/tools/testing/selftests/bpf/progs/
Dtest_l4lb_noinline.c107 #define RING_SIZE 2 macro
111 #define CH_RINGS_SIZE (MAX_VIPS * RING_SIZE)
216 __u32 key = RING_SIZE * vip_info->vip_num + hash % RING_SIZE; in get_packet_dst()
Dtest_l4lb.c111 #define RING_SIZE 2 macro
115 #define CH_RINGS_SIZE (MAX_VIPS * RING_SIZE)
220 __u32 hash = get_packet_hash(pckt, is_ipv6) % RING_SIZE; in get_packet_dst()
221 __u32 key = RING_SIZE * vip_info->vip_num + hash; in get_packet_dst()
/linux-5.19.10/drivers/net/xen-netback/
Dnetback.c1491 if (req_prod - rsp_prod > RING_SIZE(&queue->tx)) in xenvif_map_frontend_data_rings()
1506 if (req_prod - rsp_prod > RING_SIZE(&queue->rx)) in xenvif_map_frontend_data_rings()
Dinterface.c651 if (req_prod - rsp_prod > RING_SIZE(&vif->ctrl)) in xenvif_connect_ctrl()
/linux-5.19.10/Documentation/networking/
Daf_xdp.rst512 *item = ring->desc[*ring->consumer & (RING_SIZE - 1)];
519 u32 free_entries = RING_SIZE - (*ring->producer - *ring->consumer);
524 ring->desc[*ring->producer & (RING_SIZE - 1)] = *item;
/linux-5.19.10/drivers/xen/
Dpvcalls-front.c127 *req_id = bedata->ring.req_prod_pvt & (RING_SIZE(&bedata->ring) - 1); in get_request()
/linux-5.19.10/drivers/net/
Dxen-netfront.c418 if (id >= RING_SIZE(&queue->tx)) { in xennet_tx_buf_gc()