Home | History | Annotate | Download | only in netboot

Lines Matching refs:txb

143 #define txb ((char *)0x10000 - BUFLEN)
145 static unsigned char txb[BUFLEN] __attribute__ ((aligned(4)));
455 txd[i].buf1addr = &txb[0]; /* Used same TX buffer */
465 for (i=0; i<192; i++) txb[i] = 0xFF;
466 txb[0] = nic->node_addr[0];
467 txb[1] = nic->node_addr[1];
468 txb[4] = nic->node_addr[2];
469 txb[5] = nic->node_addr[3];
470 txb[8] = nic->node_addr[4];
471 txb[9] = nic->node_addr[5];
572 memcpy(&txb[0], d, ETH_ALEN); /* DA 6byte */
573 memcpy(&txb[ETH_ALEN], nic->node_addr, ETH_ALEN); /* SA 6byte*/
574 txb[ETH_ALEN*2] = (t >> 8) & 0xFF; /* Frame type: 2byte */
575 txb[ETH_ALEN*2+1] = t & 0xFF;
576 memcpy(&txb[ETH_HLEN], p, s); /* Frame data */