Home
last modified time | relevance | path

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

/illumos-gate/usr/src/grub/grub-0.97/netboot/
H A Depic100.c18 #define RX_RING_SIZE 2 macro
85 static struct epic_rx_desc rx_ring[RX_RING_SIZE]
89 static unsigned char rx_packet[PKT_BUF_SZ * RX_RING_SIZE];
268 for (i = 0; i < RX_RING_SIZE; i++) { in epic100_init_ring()
373 entry = cur_rx % RX_RING_SIZE; in epic100_poll()
H A Dw89c840.c111 #define RX_RING_SIZE 2 macro
231 struct w840_rx_desc rx_ring[RX_RING_SIZE];
261 static char rx_packet[PKT_BUF_SZ * RX_RING_SIZE];
393 int entry = w840private.cur_rx % RX_RING_SIZE; in w89c840_poll()
473 entry = (++w840private.cur_rx) % RX_RING_SIZE; in w89c840_poll()
921 for (i = 0; i < RX_RING_SIZE; i++) { in init_ring()
934 w840private.dirty_rx = (unsigned int)(i - RX_RING_SIZE); in init_ring()
H A Dsundance.c119 #define RX_RING_SIZE 4 macro
261 static struct netdev_desc rx_ring[RX_RING_SIZE];
265 static unsigned char rxb[RX_RING_SIZE * PKT_BUF_SZ];
353 for (i = 0; i < RX_RING_SIZE; i++) { in init_ring()
363 for (i = 0; i < RX_RING_SIZE; i++) { in init_ring()
473 int entry = sdc->cur_rx % RX_RING_SIZE; in sundance_poll()
506 sdc->cur_rx = entry % RX_RING_SIZE; in sundance_poll()
H A Dvia-rhine.c417 #define RX_RING_SIZE 2 macro
633 char *rx_buffs[RX_RING_SIZE];
680 for (i = 0; i < RX_RING_SIZE; i++) in rhine_init_ring()
1103 static char buf1[RX_RING_SIZE * PKT_BUF_SZ + 32]; in rhine_reset()
1104 static char buf2[RX_RING_SIZE * PKT_BUF_SZ + 32]; in rhine_reset()
1139 for (i = 0; i < RX_RING_SIZE; i++) in rhine_reset()
1238 tp->cur_rx = tp->cur_rx % RX_RING_SIZE; in rhine_poll()
H A Dpcnet32.c164 #define RX_RING_SIZE (1 << (PCNET32_LOG_RX_BUFFERS)) macro
165 #define RX_RING_MOD_MASK (RX_RING_SIZE - 1)
194 static unsigned char rxb[RX_RING_SIZE * PKT_BUF_SZ];
242 static struct pcnet32_rx_head rx_ring[RX_RING_SIZE]
263 struct sk_buff *rx_skbuff[RX_RING_SIZE];
411 for (i = 0; i < RX_RING_SIZE; i++) { in pcnet32_init_ring()
H A Dtulip.c401 #define RX_RING_SIZE 4 macro
402 static struct tulip_rx_desc rx_ring[RX_RING_SIZE] __attribute__ ((aligned(4)));
403 static unsigned char rxb[RX_RING_SIZE * BUFLEN] __attribute__ ((aligned(4)));
907 for (i = 0; i < RX_RING_SIZE; i++) { in tulip_init_ring()
1153 tp->cur_rx = (++tp->cur_rx) % RX_RING_SIZE; in tulip_poll()
1162 tp->cur_rx = (++tp->cur_rx) % RX_RING_SIZE; in tulip_poll()
/illumos-gate/usr/src/uts/intel/io/amd8111s/
H A Damd8111s_main.h309 unsigned long FreeQ[2 * RX_RING_SIZE];
H A Damd8111s_hw.h105 #define RX_RING_SIZE (1 << (RX_RING_LEN_BITS)) macro
106 #define RX_RING_MOD_MASK (RX_RING_SIZE - 1)
H A Damd8111s_hw.c704 pMdl->RxRingSize = RX_RING_SIZE; in mdlSetResources()
1884 RxRingSize = RX_RING_SIZE; /* 128 */ in milRequestResources()
1950 RxRingSize = RX_RING_SIZE; in milSetResources()
H A Damd8111s_main.c631 while (numOfPkts < RX_RING_SIZE) { in amd8111s_receive()
784 length = sizeof (struct rx_desc) * RX_RING_SIZE + ALIGNMENT; in amd8111s_allocate_descriptors()
1088 RX_RING_SIZE, RX_BUF_SIZE) == B_FALSE) { in amd8111s_allocate_buffers()
/illumos-gate/usr/src/uts/common/io/sfe/
H A Dsfe.c100 #ifndef RX_RING_SIZE
101 #define RX_RING_SIZE RX_BUF_SIZE macro
2108 gcp->gc_rx_ring_size = RX_RING_SIZE; in sfeattach()