Lines Matching refs:tx_buffers
4438 priv->tx_buffers = kmalloc_array(TX_PENDED_QUEUE_LENGTH, in ipw2100_tx_allocate()
4441 if (!priv->tx_buffers) { in ipw2100_tx_allocate()
4458 priv->tx_buffers[i].type = DATA; in ipw2100_tx_allocate()
4459 priv->tx_buffers[i].info.d_struct.data = in ipw2100_tx_allocate()
4461 priv->tx_buffers[i].info.d_struct.data_phys = p; in ipw2100_tx_allocate()
4462 priv->tx_buffers[i].info.d_struct.txb = NULL; in ipw2100_tx_allocate()
4471 priv->tx_buffers[j].info.d_struct.data, in ipw2100_tx_allocate()
4472 priv->tx_buffers[j].info.d_struct. in ipw2100_tx_allocate()
4476 kfree(priv->tx_buffers); in ipw2100_tx_allocate()
4477 priv->tx_buffers = NULL; in ipw2100_tx_allocate()
4505 if (priv->tx_buffers[i].info.d_struct.txb) { in ipw2100_tx_initialize()
4506 libipw_txb_free(priv->tx_buffers[i].info.d_struct. in ipw2100_tx_initialize()
4508 priv->tx_buffers[i].info.d_struct.txb = NULL; in ipw2100_tx_initialize()
4511 list_add_tail(&priv->tx_buffers[i].list, &priv->tx_free_list); in ipw2100_tx_initialize()
4540 if (!priv->tx_buffers) in ipw2100_tx_free()
4544 if (priv->tx_buffers[i].info.d_struct.txb) { in ipw2100_tx_free()
4545 libipw_txb_free(priv->tx_buffers[i].info.d_struct. in ipw2100_tx_free()
4547 priv->tx_buffers[i].info.d_struct.txb = NULL; in ipw2100_tx_free()
4549 if (priv->tx_buffers[i].info.d_struct.data) in ipw2100_tx_free()
4552 priv->tx_buffers[i].info.d_struct. in ipw2100_tx_free()
4554 priv->tx_buffers[i].info.d_struct. in ipw2100_tx_free()
4558 kfree(priv->tx_buffers); in ipw2100_tx_free()
4559 priv->tx_buffers = NULL; in ipw2100_tx_free()