Lines Matching refs:head_list
1373 struct tlan_list *head_list; in tlan_handle_tx_eof() local
1381 head_list = priv->tx_list + priv->tx_head; in tlan_handle_tx_eof()
1383 while (((tmp_c_stat = head_list->c_stat) & TLAN_CSTAT_FRM_CMP) in tlan_handle_tx_eof()
1385 struct sk_buff *skb = tlan_get_skb(head_list); in tlan_handle_tx_eof()
1388 pci_unmap_single(priv->pci_dev, head_list->buffer[0].address, in tlan_handle_tx_eof()
1393 head_list->buffer[8].address = 0; in tlan_handle_tx_eof()
1394 head_list->buffer[9].address = 0; in tlan_handle_tx_eof()
1399 dev->stats.tx_bytes += head_list->frame_size; in tlan_handle_tx_eof()
1401 head_list->c_stat = TLAN_CSTAT_UNUSED; in tlan_handle_tx_eof()
1404 head_list = priv->tx_list + priv->tx_head; in tlan_handle_tx_eof()
1415 head_list = priv->tx_list + priv->tx_head; in tlan_handle_tx_eof()
1418 if ((head_list->c_stat & TLAN_CSTAT_READY) in tlan_handle_tx_eof()
1507 struct tlan_list *head_list; in tlan_handle_rx_eof() local
1515 head_list = priv->rx_list + priv->rx_head; in tlan_handle_rx_eof()
1519 while (((tmp_c_stat = head_list->c_stat) & TLAN_CSTAT_FRM_CMP) in tlan_handle_rx_eof()
1521 dma_addr_t frame_dma = head_list->buffer[0].address; in tlan_handle_rx_eof()
1522 u32 frame_size = head_list->frame_size; in tlan_handle_rx_eof()
1534 skb = tlan_get_skb(head_list); in tlan_handle_rx_eof()
1544 head_list->buffer[0].address = in tlan_handle_rx_eof()
1548 tlan_store_skb(head_list, new_skb); in tlan_handle_rx_eof()
1550 head_list->forward = 0; in tlan_handle_rx_eof()
1551 head_list->c_stat = 0; in tlan_handle_rx_eof()
1557 head_list = priv->rx_list + priv->rx_head; in tlan_handle_rx_eof()
1571 head_list = priv->rx_list + priv->rx_head; in tlan_handle_rx_eof()
1651 struct tlan_list *head_list; in tlan_handle_tx_eoc() local
1660 head_list = priv->tx_list + priv->tx_head; in tlan_handle_tx_eoc()
1663 if ((head_list->c_stat & TLAN_CSTAT_READY) in tlan_handle_tx_eoc()