Lines Matching refs:head_list

1349 	struct tlan_list	*head_list;  in tlan_handle_tx_eof()  local
1357 head_list = priv->tx_list + priv->tx_head; in tlan_handle_tx_eof()
1359 while (((tmp_c_stat = head_list->c_stat) & TLAN_CSTAT_FRM_CMP) in tlan_handle_tx_eof()
1361 struct sk_buff *skb = tlan_get_skb(head_list); in tlan_handle_tx_eof()
1365 head_list->buffer[0].address, in tlan_handle_tx_eof()
1369 head_list->buffer[8].address = 0; in tlan_handle_tx_eof()
1370 head_list->buffer[9].address = 0; in tlan_handle_tx_eof()
1375 dev->stats.tx_bytes += head_list->frame_size; in tlan_handle_tx_eof()
1377 head_list->c_stat = TLAN_CSTAT_UNUSED; in tlan_handle_tx_eof()
1380 head_list = priv->tx_list + priv->tx_head; in tlan_handle_tx_eof()
1391 head_list = priv->tx_list + priv->tx_head; in tlan_handle_tx_eof()
1394 if ((head_list->c_stat & TLAN_CSTAT_READY) in tlan_handle_tx_eof()
1482 struct tlan_list *head_list; in tlan_handle_rx_eof() local
1490 head_list = priv->rx_list + priv->rx_head; in tlan_handle_rx_eof()
1494 while (((tmp_c_stat = head_list->c_stat) & TLAN_CSTAT_FRM_CMP) in tlan_handle_rx_eof()
1496 dma_addr_t frame_dma = head_list->buffer[0].address; in tlan_handle_rx_eof()
1497 u32 frame_size = head_list->frame_size; in tlan_handle_rx_eof()
1509 skb = tlan_get_skb(head_list); in tlan_handle_rx_eof()
1519 head_list->buffer[0].address = in tlan_handle_rx_eof()
1523 tlan_store_skb(head_list, new_skb); in tlan_handle_rx_eof()
1525 head_list->forward = 0; in tlan_handle_rx_eof()
1526 head_list->c_stat = 0; in tlan_handle_rx_eof()
1532 head_list = priv->rx_list + priv->rx_head; in tlan_handle_rx_eof()
1546 head_list = priv->rx_list + priv->rx_head; in tlan_handle_rx_eof()
1625 struct tlan_list *head_list; in tlan_handle_tx_eoc() local
1633 head_list = priv->tx_list + priv->tx_head; in tlan_handle_tx_eoc()
1636 if ((head_list->c_stat & TLAN_CSTAT_READY) in tlan_handle_tx_eoc()