Lines Matching refs:tx_buffers

4429 	priv->tx_buffers = kmalloc_array(TX_PENDED_QUEUE_LENGTH,  in ipw2100_tx_allocate()
4432 if (!priv->tx_buffers) { in ipw2100_tx_allocate()
4449 priv->tx_buffers[i].type = DATA; in ipw2100_tx_allocate()
4450 priv->tx_buffers[i].info.d_struct.data = in ipw2100_tx_allocate()
4452 priv->tx_buffers[i].info.d_struct.data_phys = p; in ipw2100_tx_allocate()
4453 priv->tx_buffers[i].info.d_struct.txb = NULL; in ipw2100_tx_allocate()
4462 priv->tx_buffers[j].info.d_struct.data, in ipw2100_tx_allocate()
4463 priv->tx_buffers[j].info.d_struct. in ipw2100_tx_allocate()
4467 kfree(priv->tx_buffers); in ipw2100_tx_allocate()
4468 priv->tx_buffers = NULL; in ipw2100_tx_allocate()
4496 if (priv->tx_buffers[i].info.d_struct.txb) { in ipw2100_tx_initialize()
4497 libipw_txb_free(priv->tx_buffers[i].info.d_struct. in ipw2100_tx_initialize()
4499 priv->tx_buffers[i].info.d_struct.txb = NULL; in ipw2100_tx_initialize()
4502 list_add_tail(&priv->tx_buffers[i].list, &priv->tx_free_list); in ipw2100_tx_initialize()
4531 if (!priv->tx_buffers) in ipw2100_tx_free()
4535 if (priv->tx_buffers[i].info.d_struct.txb) { in ipw2100_tx_free()
4536 libipw_txb_free(priv->tx_buffers[i].info.d_struct. in ipw2100_tx_free()
4538 priv->tx_buffers[i].info.d_struct.txb = NULL; in ipw2100_tx_free()
4540 if (priv->tx_buffers[i].info.d_struct.data) in ipw2100_tx_free()
4543 priv->tx_buffers[i].info.d_struct. in ipw2100_tx_free()
4545 priv->tx_buffers[i].info.d_struct. in ipw2100_tx_free()
4549 kfree(priv->tx_buffers); in ipw2100_tx_free()
4550 priv->tx_buffers = NULL; in ipw2100_tx_free()