Symbol: RGE_SEND_SLOTS
usr/src/uts/common/io/rge/rge.h
330
if ((slot) == (RGE_SEND_SLOTS -1)) { \
usr/src/uts/common/io/rge/rge_chip.c
1440
((int_status & TX_OK_INT) && rgep->tx_free < RGE_SEND_SLOTS/8)) {
usr/src/uts/common/io/rge/rge_chip.c
1636
if (rgep->tx_free < RGE_SEND_SLOTS)
usr/src/uts/common/io/rge/rge_main.c
258
txdescsize = RGE_SEND_SLOTS * sizeof (rge_bd_t);
usr/src/uts/common/io/rge/rge_main.c
318
for (slot = 0; slot < RGE_SEND_SLOTS; slot++) {
usr/src/uts/common/io/rge/rge_main.c
324
if (slot == (RGE_SEND_SLOTS - 1))
usr/src/uts/common/io/rge/rge_main.c
334
rgep->tx_free = RGE_SEND_SLOTS;
usr/src/uts/common/io/rge/rge_main.c
400
for (slot = 0; slot < RGE_SEND_SLOTS; ++slot) {
usr/src/uts/common/io/rge/rge_main.c
405
kmem_free(rgep->sw_sbds, RGE_SEND_SLOTS * sizeof (sw_sbd_t));
usr/src/uts/common/io/rge/rge_main.c
480
ssbdp = kmem_zalloc(RGE_SEND_SLOTS*sizeof (*ssbdp), KM_SLEEP);
usr/src/uts/common/io/rge/rge_main.c
491
for (slot = 0; slot < RGE_SEND_SLOTS; slot++) {
usr/src/uts/common/io/rge/rge_rxtx.c
371
next = NEXT(slot, RGE_SEND_SLOTS);
usr/src/uts/common/io/rge/rge_rxtx.c
383
ASSERT(slot < RGE_SEND_SLOTS);
usr/src/uts/common/io/rge/rge_rxtx.c
384
ASSERT(next < RGE_SEND_SLOTS);
usr/src/uts/common/io/rge/rge_rxtx.c
410
tc_tail = LAST(tc_tail, RGE_SEND_SLOTS);
usr/src/uts/common/io/rge/rge_rxtx.c
432
rgep->tc_next = NEXT(tc_tail, RGE_SEND_SLOTS);
usr/src/uts/common/io/rge/rge_rxtx.c
435
n += RGE_SEND_SLOTS;
usr/src/uts/common/io/rge/rge_rxtx.c
438
ASSERT(rgep->tx_free <= RGE_SEND_SLOTS);
usr/src/uts/common/io/rge/rge_rxtx.c
616
ASSERT(rgep->tx_free < RGE_SEND_SLOTS);
usr/src/uts/common/io/rge/rge_rxtx.c
643
if (rgep->chipid.is_pcie && rgep->tx_free != RGE_SEND_SLOTS) {