Lines Matching refs:head_list
1350 struct tlan_list *head_list; in tlan_handle_tx_eof() local
1358 head_list = priv->tx_list + priv->tx_head; in tlan_handle_tx_eof()
1360 while (((tmp_c_stat = head_list->c_stat) & TLAN_CSTAT_FRM_CMP) in tlan_handle_tx_eof()
1362 struct sk_buff *skb = tlan_get_skb(head_list); in tlan_handle_tx_eof()
1366 head_list->buffer[0].address, in tlan_handle_tx_eof()
1370 head_list->buffer[8].address = 0; in tlan_handle_tx_eof()
1371 head_list->buffer[9].address = 0; in tlan_handle_tx_eof()
1376 dev->stats.tx_bytes += head_list->frame_size; in tlan_handle_tx_eof()
1378 head_list->c_stat = TLAN_CSTAT_UNUSED; in tlan_handle_tx_eof()
1381 head_list = priv->tx_list + priv->tx_head; in tlan_handle_tx_eof()
1392 head_list = priv->tx_list + priv->tx_head; in tlan_handle_tx_eof()
1395 if ((head_list->c_stat & TLAN_CSTAT_READY) in tlan_handle_tx_eof()
1483 struct tlan_list *head_list; in tlan_handle_rx_eof() local
1491 head_list = priv->rx_list + priv->rx_head; in tlan_handle_rx_eof()
1495 while (((tmp_c_stat = head_list->c_stat) & TLAN_CSTAT_FRM_CMP) in tlan_handle_rx_eof()
1497 dma_addr_t frame_dma = head_list->buffer[0].address; in tlan_handle_rx_eof()
1498 u32 frame_size = head_list->frame_size; in tlan_handle_rx_eof()
1510 skb = tlan_get_skb(head_list); in tlan_handle_rx_eof()
1520 head_list->buffer[0].address = in tlan_handle_rx_eof()
1524 tlan_store_skb(head_list, new_skb); in tlan_handle_rx_eof()
1526 head_list->forward = 0; in tlan_handle_rx_eof()
1527 head_list->c_stat = 0; in tlan_handle_rx_eof()
1533 head_list = priv->rx_list + priv->rx_head; in tlan_handle_rx_eof()
1547 head_list = priv->rx_list + priv->rx_head; in tlan_handle_rx_eof()
1626 struct tlan_list *head_list; in tlan_handle_tx_eoc() local
1634 head_list = priv->tx_list + priv->tx_head; in tlan_handle_tx_eoc()
1637 if ((head_list->c_stat & TLAN_CSTAT_READY) in tlan_handle_tx_eoc()