Lines Matching refs:tx_buffers

4418 	priv->tx_buffers = kmalloc_array(TX_PENDED_QUEUE_LENGTH,  in ipw2100_tx_allocate()
4421 if (!priv->tx_buffers) { in ipw2100_tx_allocate()
4438 priv->tx_buffers[i].type = DATA; in ipw2100_tx_allocate()
4439 priv->tx_buffers[i].info.d_struct.data = in ipw2100_tx_allocate()
4441 priv->tx_buffers[i].info.d_struct.data_phys = p; in ipw2100_tx_allocate()
4442 priv->tx_buffers[i].info.d_struct.txb = NULL; in ipw2100_tx_allocate()
4451 priv->tx_buffers[j].info.d_struct.data, in ipw2100_tx_allocate()
4452 priv->tx_buffers[j].info.d_struct.data_phys); in ipw2100_tx_allocate()
4455 kfree(priv->tx_buffers); in ipw2100_tx_allocate()
4456 priv->tx_buffers = NULL; in ipw2100_tx_allocate()
4484 if (priv->tx_buffers[i].info.d_struct.txb) { in ipw2100_tx_initialize()
4485 libipw_txb_free(priv->tx_buffers[i].info.d_struct. in ipw2100_tx_initialize()
4487 priv->tx_buffers[i].info.d_struct.txb = NULL; in ipw2100_tx_initialize()
4490 list_add_tail(&priv->tx_buffers[i].list, &priv->tx_free_list); in ipw2100_tx_initialize()
4519 if (!priv->tx_buffers) in ipw2100_tx_free()
4523 if (priv->tx_buffers[i].info.d_struct.txb) { in ipw2100_tx_free()
4524 libipw_txb_free(priv->tx_buffers[i].info.d_struct. in ipw2100_tx_free()
4526 priv->tx_buffers[i].info.d_struct.txb = NULL; in ipw2100_tx_free()
4528 if (priv->tx_buffers[i].info.d_struct.data) in ipw2100_tx_free()
4531 priv->tx_buffers[i].info.d_struct.data, in ipw2100_tx_free()
4532 priv->tx_buffers[i].info.d_struct.data_phys); in ipw2100_tx_free()
4535 kfree(priv->tx_buffers); in ipw2100_tx_free()
4536 priv->tx_buffers = NULL; in ipw2100_tx_free()