Searched refs:ptxb (Results 1 – 4 of 4) sorted by relevance
/external/syslinux/gpxe/src/drivers/net/ |
D | dmfe.c | 405 u8 *ptxb; in dmfe_transmit() local 407 ptxb = &txb[db->cur_tx]; in dmfe_transmit() 411 memcpy(ptxb, dest, ETH_ALEN); in dmfe_transmit() 412 memcpy(ptxb + ETH_ALEN, nic->node_addr, ETH_ALEN); in dmfe_transmit() 414 memcpy(ptxb + 2 * ETH_ALEN, (u8 *) & nstype, 2); in dmfe_transmit() 415 memcpy(ptxb + ETH_HLEN, packet, size); in dmfe_transmit() 419 ptxb[size++] = '\0'; in dmfe_transmit() 630 u8 *ptxb; in send_filter_frame() local 635 ptxb = &txb[db->cur_tx]; in send_filter_frame() 640 ptxb[i] = 0xFF; in send_filter_frame() [all …]
|
D | pcnet32.c | 580 u8 *ptxb; in pcnet32_transmit() local 587 ptxb = pcnet32_bufs.txb[lp->cur_tx]; in pcnet32_transmit() 590 memcpy(ptxb, d, ETH_ALEN); /* dst */ in pcnet32_transmit() 591 memcpy(ptxb + ETH_ALEN, nic->node_addr, ETH_ALEN); /* src */ in pcnet32_transmit() 593 memcpy(ptxb + 2 * ETH_ALEN, (u8 *) & nstype, 2); /* type */ in pcnet32_transmit() 594 memcpy(ptxb + ETH_HLEN, p, s); in pcnet32_transmit() 598 ptxb[s++] = '\0'; in pcnet32_transmit() 602 pcnet32_bufs.tx_ring[entry].base = (u32) virt_to_le32desc(ptxb); in pcnet32_transmit()
|
D | via-velocity.c | 521 u8 *ptxb; in velocity_transmit() local 529 ptxb = vptr->txb + (entry * PKT_BUF_SZ); in velocity_transmit() 530 memcpy(ptxb, dest, ETH_ALEN); /* Destination */ in velocity_transmit() 531 memcpy(ptxb + ETH_ALEN, nic->node_addr, ETH_ALEN); /* Source */ in velocity_transmit() 533 memcpy(ptxb + 2 * ETH_ALEN, (u8 *) & nstype, 2); /* Type */ in velocity_transmit() 534 memcpy(ptxb + ETH_HLEN, packet, size); in velocity_transmit() 542 ptxb[size++] = '\0'; in velocity_transmit() 548 memset(ptxb + size, 0, ETH_ZLEN - size); in velocity_transmit() 551 vptr->td_rings[entry].td_buf[0].pa_low = virt_to_bus(ptxb); in velocity_transmit() 560 td_ptr->td_buf[0].pa_low = virt_to_bus(ptxb); in velocity_transmit()
|
D | forcedeth.c | 1125 u8 *ptxb; in forcedeth_transmit() local 1131 ptxb = txb + (nr * RX_NIC_BUFSIZE); in forcedeth_transmit() 1135 memcpy(ptxb, d, ETH_ALEN); /* dst */ in forcedeth_transmit() 1136 memcpy(ptxb + ETH_ALEN, nic->node_addr, ETH_ALEN); /* src */ in forcedeth_transmit() 1138 memcpy(ptxb + 2 * ETH_ALEN, (u8 *) & nstype, 2); /* type */ in forcedeth_transmit() 1139 memcpy(ptxb + ETH_HLEN, p, s); in forcedeth_transmit() 1143 ptxb[s++] = '\0'; in forcedeth_transmit() 1145 tx_ring[nr].PacketBuffer = (u32) virt_to_le32desc(ptxb); in forcedeth_transmit()
|