| /src/sys/arch/evbppc/virtex/dev/ | 
| if_temac.c | 180 	int 			sc_txsfree;  member in struct:temac_softc 609 	sc->sc_txsfree = TEMAC_TXQLEN;
 674 	KASSERT(sc->sc_txsfree >= 0);
 686 	while (sc->sc_txsfree) {
 757 		sc->sc_txsfree--;
 1013 	while (sc->sc_txsfree != TEMAC_TXQLEN) {
 1027 		sc->sc_txsfree++;
 
 | 
| /src/sys/arch/powerpc/ibm4xx/dev/ | 
| if_emac.c | 209 	int sc_txsfree;			/* number of free Tx jobs */  member in struct:emac_softc 692 		if (sc->sc_txsfree < EMAC_TXQUEUE_GC) {
 694 			if (sc->sc_txsfree == 0) {
 819 		sc->sc_txsfree--;
 916 	sc->sc_txsfree = EMAC_TXQUEUELEN;
 1110 		    sc->sc_txfree, sc->sc_txsfree, sc->sc_txnext);
 1265 	for (i = sc->sc_txsdirty; sc->sc_txsfree != EMAC_TXQUEUELEN;
 1266 	    i = EMAC_NEXTTXS(i), sc->sc_txsfree++) {
 1328 	if (sc->sc_txsfree == EMAC_TXQUEUELEN)
 
 | 
| /src/sys/dev/pci/ | 
| if_dge.c | 310 	int	sc_txsfree;		/* number of free Tx jobs */  member in struct:dge_softc 1213 		if (sc->sc_txsfree < DGE_TXQUEUE_GC) {
 1215 			if (sc->sc_txsfree == 0) {
 1386 		sc->sc_txsfree--;
 1393 	if (sc->sc_txsfree == 0 || sc->sc_txfree <= 2) {
 1422 		    device_xname(sc->sc_dev), sc->sc_txfree, sc->sc_txsfree,
 1598 	for (i = sc->sc_txsdirty; sc->sc_txsfree != DGE_TXQUEUELEN;
 1599 	     i = DGE_NEXTTXS(i), sc->sc_txsfree++) {
 1639 	if (sc->sc_txsfree == DGE_TXQUEUELEN)
 1941 	sc->sc_txsfree = DGE_TXQUEUELEN
 [all...]
 | 
| if_pcn.c | 300 	int sc_txsfree;			/* number of free Tx jobs */  member in struct:pcn_softc 931 	while (sc->sc_txsfree != 0) {
 1109 		sc->sc_txsfree--;
 1140 		    device_xname(sc->sc_dev), sc->sc_txfree, sc->sc_txsfree);
 1306 	for (i = sc->sc_txsdirty; sc->sc_txsfree != PCN_TXQUEUELEN;
 1307 	     i = PCN_NEXTTXS(i), sc->sc_txsfree++) {
 1387 	if (sc->sc_txsfree == PCN_TXQUEUELEN)
 1625 	sc->sc_txsfree = PCN_TXQUEUELEN;
 
 | 
| if_kse.c | 254 	int sc_txsfree;			/* number of free Tx jobs */  member in struct:kse_softc 736 	sc->sc_txsfree = KSE_TXQUEUELEN;
 900 		    sc->sc_txfree, sc->sc_txsfree, sc->sc_txnext);
 939 		if (sc->sc_txsfree < KSE_TXQUEUE_GC) {
 941 			if (sc->sc_txsfree == 0)
 1036 		sc->sc_txsfree--;
 1044 	if (sc->sc_txsfree == 0 || sc->sc_txfree == 0) {
 1297 	for (i = sc->sc_txsdirty; sc->sc_txsfree != KSE_TXQUEUELEN;
 1298 	     i = KSE_NEXTTXS(i), sc->sc_txsfree++) {
 1321 	if (sc->sc_txsfree == KSE_TXQUEUELEN
 [all...]
 | 
| /src/sys/arch/arm/sociox/ | 
| if_scx.c | 487 	int sc_txsfree;			/* number of free Tx jobs */  member in struct:scx_softc 1146 	sc->sc_txsfree = MD_TXQUEUELEN;
 1386 		if (sc->sc_txsfree < MD_TXQUEUE_GC) {
 1388 			if (sc->sc_txsfree == 0)
 1469 		sc->sc_txsfree--;
 1498 		    sc->sc_txfree, sc->sc_txsfree, sc->sc_txnext);
 1571 	for (i = sc->sc_txsdirty; sc->sc_txsfree != MD_TXQUEUELEN;
 1572 	     i = MD_NEXTTXS(i), sc->sc_txsfree++) {
 1594 	if (sc->sc_txsfree == MD_TXQUEUELEN)
 
 |