RGE_RECV_SLOTS
if ((slot) == (RGE_RECV_SLOTS -1)) { \
rxdescsize = RGE_RECV_SLOTS * sizeof (rge_bd_t);
for (slot = 0; slot < RGE_RECV_SLOTS; slot++) {
if (slot == (RGE_RECV_SLOTS - 1))
for (slot = 0; slot < RGE_RECV_SLOTS; ++srbdp, ++slot) {
kmem_free(rgep->sw_rbds, RGE_RECV_SLOTS * sizeof (sw_rbd_t));
srbdp = kmem_zalloc(RGE_RECV_SLOTS*sizeof (*srbdp), KM_SLEEP);
for (slot = 0; slot < RGE_RECV_SLOTS; slot++) {
slot = NEXT(slot, RGE_RECV_SLOTS);