Lines Matching refs:fifo_data
2315 * @fifo_data: fifo data pointer
2319 static struct sk_buff *s2io_txdl_getskb(struct fifo_info *fifo_data,
2322 struct s2io_nic *nic = fifo_data->nic;
2328 if (txds->Host_Control == (u64)(long)fifo_data->ufo_in_band_v) {
2337 memset(txdlp, 0, (sizeof(struct TxD) * fifo_data->max_txds));
2354 memset(txdlp, 0, (sizeof(struct TxD) * fifo_data->max_txds));
2986 * @fifo_data : fifo data pointer
2996 static void tx_intr_handler(struct fifo_info *fifo_data)
2998 struct s2io_nic *nic = fifo_data->nic;
3008 if (!spin_trylock_irqsave(&fifo_data->tx_lock, flags))
3011 get_info = fifo_data->tx_curr_get_info;
3012 memcpy(&put_info, &fifo_data->tx_curr_put_info, sizeof(put_info));
3013 txdlp = fifo_data->list_info[get_info.offset].list_virt_addr;
3050 skb = s2io_txdl_getskb(fifo_data, txdlp, get_info.offset);
3052 spin_unlock_irqrestore(&fifo_data->tx_lock, flags);
3066 txdlp = fifo_data->list_info[get_info.offset].list_virt_addr;
3067 fifo_data->tx_curr_get_info.offset = get_info.offset;
3070 s2io_wake_tx_queue(fifo_data, pkt_cnt, nic->config.multiq);
3072 spin_unlock_irqrestore(&fifo_data->tx_lock, flags);