Lines Matching refs:head
240 /* Get the address of a packet buffer corresponding to a given buffer head */
241 #define PKTBUF_ADDR(head) (((unsigned char *)(MEM)) + (head)->base)
778 struct lance_tx_head *head;
815 head = &(MEM->tx_head[entry]);
822 head->length = -len;
823 head->misc = 0;
824 lp->memcpy_f( PKTBUF_ADDR(head), (void *)skb->data, skb->len );
825 head->flag = TMD1_OWN_CHIP | TMD1_ENP | TMD1_STP;
972 struct lance_rx_head *head = &(MEM->rx_head[entry]);
973 int status = head->flag;
986 head->flag &= (RMD1_ENP|RMD1_STP);
989 short pkt_len = head->msg_length & 0xfff;
1006 head->flag |= RMD1_OWN_CHIP;
1013 u_char *data = PKTBUF_ADDR(head);
1023 lp->memcpy_f( skb->data, PKTBUF_ADDR(head), pkt_len );
1031 head->flag |= RMD1_OWN_CHIP;