Lines Matching refs:tx_buffers

4443 	priv->tx_buffers = kmalloc_array(TX_PENDED_QUEUE_LENGTH,  in ipw2100_tx_allocate()
4446 if (!priv->tx_buffers) { in ipw2100_tx_allocate()
4463 priv->tx_buffers[i].type = DATA; in ipw2100_tx_allocate()
4464 priv->tx_buffers[i].info.d_struct.data = in ipw2100_tx_allocate()
4466 priv->tx_buffers[i].info.d_struct.data_phys = p; in ipw2100_tx_allocate()
4467 priv->tx_buffers[i].info.d_struct.txb = NULL; in ipw2100_tx_allocate()
4476 priv->tx_buffers[j].info.d_struct.data, in ipw2100_tx_allocate()
4477 priv->tx_buffers[j].info.d_struct. in ipw2100_tx_allocate()
4481 kfree(priv->tx_buffers); in ipw2100_tx_allocate()
4482 priv->tx_buffers = NULL; in ipw2100_tx_allocate()
4510 if (priv->tx_buffers[i].info.d_struct.txb) { in ipw2100_tx_initialize()
4511 libipw_txb_free(priv->tx_buffers[i].info.d_struct. in ipw2100_tx_initialize()
4513 priv->tx_buffers[i].info.d_struct.txb = NULL; in ipw2100_tx_initialize()
4516 list_add_tail(&priv->tx_buffers[i].list, &priv->tx_free_list); in ipw2100_tx_initialize()
4545 if (!priv->tx_buffers) in ipw2100_tx_free()
4549 if (priv->tx_buffers[i].info.d_struct.txb) { in ipw2100_tx_free()
4550 libipw_txb_free(priv->tx_buffers[i].info.d_struct. in ipw2100_tx_free()
4552 priv->tx_buffers[i].info.d_struct.txb = NULL; in ipw2100_tx_free()
4554 if (priv->tx_buffers[i].info.d_struct.data) in ipw2100_tx_free()
4557 priv->tx_buffers[i].info.d_struct. in ipw2100_tx_free()
4559 priv->tx_buffers[i].info.d_struct. in ipw2100_tx_free()
4563 kfree(priv->tx_buffers); in ipw2100_tx_free()
4564 priv->tx_buffers = NULL; in ipw2100_tx_free()