Searched refs:txb (Results 1 - 10 of 10) sorted by relevance

/osnet-11/usr/src/grub/grub-0.97/netboot/
H A Ddavicom.c141 static unsigned char txb[BUFLEN] __attribute__ ((aligned(4))); variable
441 txd[i].buf1addr = (void *)virt_to_bus(&txb[0]); /* Used same TX buffer */
451 for (i=0; i<192; i++) txb[i] = 0xFF;
452 txb[0] = nic->node_addr[0];
453 txb[1] = nic->node_addr[1];
454 txb[4] = nic->node_addr[2];
455 txb[5] = nic->node_addr[3];
456 txb[8] = nic->node_addr[4];
457 txb[9] = nic->node_addr[5];
557 memcpy(&txb[
[all...]
H A Dr8169.c296 static unsigned char txb[NUM_TX_DESC * RX_BUF_SIZE]; variable
512 /* point to the current txb incase multiple tx_rings are used */
622 tpc->Tx_skbuff[i] = &txb[i];
673 txb[i] = 0xFF;
675 txb[0] = nic->node_addr[0];
676 txb[1] = nic->node_addr[1];
677 txb[2] = nic->node_addr[2];
678 txb[3] = nic->node_addr[3];
679 txb[4] = nic->node_addr[4];
680 txb[
[all...]
H A Dsundance.c258 static unsigned char txb[PKT_BUF_SZ * TX_RING_SIZE]; variable
372 tx_ring[0].addr = virt_to_bus(&txb[0]);
377 tx_ring[1].addr = 0; /*virt_to_bus(&txb[0]); */
429 txb[i] = 0xFF;
431 txb[0] = nic->node_addr[0];
432 txb[1] = nic->node_addr[1];
433 txb[2] = nic->node_addr[2];
434 txb[3] = nic->node_addr[3];
435 txb[4] = nic->node_addr[4];
436 txb[
[all...]
H A Dnatsemi.c208 static unsigned char txb[TX_BUF_SIZE] __attribute__ ((aligned(4))); variable
509 txd.bufptr = virt_to_bus(&txb[0]);
621 memcpy(txb, d, ETH_ALEN);
622 memcpy(txb + ETH_ALEN, nic->node_addr, ETH_ALEN);
624 memcpy(txb + 2 * ETH_ALEN, (char*)&nstype, 2);
625 memcpy(txb + ETH_HLEN, p, s);
635 txb[s++] = '\0';
638 txd.bufptr = virt_to_bus(&txb[0]);
H A Dsis900.c66 static unsigned char txb[TX_BUF_SIZE]; variable
700 txd.bufptr = virt_to_bus(&txb[0]);
1090 memcpy(txb, d, ETH_ALEN);
1091 memcpy(txb + ETH_ALEN, nic->node_addr, ETH_ALEN);
1093 memcpy(txb + 2 * ETH_ALEN, (char*)&nstype, 2);
1094 memcpy(txb + ETH_HLEN, p, s);
1104 txb[s++] = '\0';
1107 txd.bufptr = virt_to_bus(&txb[0]);
H A Dns83820.c380 static unsigned char txb[NR_TX_DESC * REAL_RX_BUF_SIZE]; variable
730 /* point to the current txb incase multiple tx_rings are used */
731 memcpy(txb, d, ETH_ALEN);
732 memcpy(txb + ETH_ALEN, nic->node_addr, ETH_ALEN);
734 memcpy(txb + 2 * ETH_ALEN, (u8 *) & nstype, 2);
735 memcpy(txb + ETH_HLEN, p, s);
739 txb[s++] = '\0';
745 tx_ring[cur_tx].bufptr = virt_to_le32desc(&txb);
H A Dtulip.c399 static unsigned char txb[BUFLEN] __attribute__ ((aligned(4))); variable
921 tx_ring[0].buffer1 = virt_to_le32desc(&txb[0]);
927 tx_ring[1].buffer1 = virt_to_le32desc(&txb[0]);
1020 txb[i] = 0xFF;
1021 txb[0] = nic->node_addr[0];
1022 txb[1] = nic->node_addr[1];
1023 txb[4] = nic->node_addr[2];
1024 txb[5] = nic->node_addr[3];
1025 txb[8] = nic->node_addr[4];
1026 txb[
[all...]
H A Dtlan.c199 static unsigned char txb[TLAN_MAX_FRAME_SIZE * TLAN_NUM_TX_LISTS]; variable
285 list->buffer[0].address = virt_to_bus(txb +
651 tail_buffer = txb + (priv->txTail * TLAN_MAX_FRAME_SIZE);
H A Dforcedeth.c299 static unsigned char txb[TX_RING * RX_NIC_BUFSIZE]; variable
848 /* point to the current txb incase multiple tx_rings are used */
849 ptxb = txb + (nr * RX_NIC_BUFSIZE);
H A Dpcnet32.c188 static unsigned char txb[PKT_BUF_SZ * TX_RING_SIZE]; variable
594 /* point to the current txb incase multiple tx_rings are used */
595 ptxb = txb + (lp->cur_tx * PKT_BUF_SZ);
628 /* Stop pointing at the current txb

Completed in 42 milliseconds