Searched refs:txf (Results 1 – 9 of 9) sorted by relevance
| /freebsd/sys/dev/xen/netback/ |
| H A D | netback_unit_tests.c | 186 netif_tx_front_ring_t txf; member 351 FRONT_RING_INIT(&xnb_unit_pvt.txf, xnb_unit_pvt.txs, PAGE_SIZE); in setup_pvt_data() 411 req = RING_GET_REQUEST(&xnb_unit_pvt.txf, in xnb_ring2pkt_1req() 412 xnb_unit_pvt.txf.req_prod_pvt); in xnb_ring2pkt_1req() 416 xnb_unit_pvt.txf.req_prod_pvt++; in xnb_ring2pkt_1req() 418 RING_PUSH_REQUESTS(&xnb_unit_pvt.txf); in xnb_ring2pkt_1req() 441 RING_IDX start_idx = xnb_unit_pvt.txf.req_prod_pvt; in xnb_ring2pkt_2req() 443 req = RING_GET_REQUEST(&xnb_unit_pvt.txf, in xnb_ring2pkt_2req() 444 xnb_unit_pvt.txf.req_prod_pvt); in xnb_ring2pkt_2req() 447 xnb_unit_pvt.txf.req_prod_pvt++; in xnb_ring2pkt_2req() [all …]
|
| /freebsd/sys/dev/iwm/ |
| H A D | if_iwm_mac_ctxt.c | 343 uint8_t txf = iwm_ac_to_tx_fifo[i]; in iwm_mac_ctxt_cmd_common() local 345 cmd->ac[txf].cw_min = htole16(ivp->queue_params[i].cw_min); in iwm_mac_ctxt_cmd_common() 346 cmd->ac[txf].cw_max = htole16(ivp->queue_params[i].cw_max); in iwm_mac_ctxt_cmd_common() 347 cmd->ac[txf].edca_txop = in iwm_mac_ctxt_cmd_common() 349 cmd->ac[txf].aifsn = ivp->queue_params[i].aifsn; in iwm_mac_ctxt_cmd_common() 350 cmd->ac[txf].fifos_mask = (1 << txf); in iwm_mac_ctxt_cmd_common()
|
| /freebsd/sys/contrib/dev/iwlwifi/mvm/ |
| H A D | ops.c | 967 struct iwl_mvm_frob_txf_data *txf = data; in iwl_mvm_frob_txf_key_iter() local 986 memset(txf->buf, 0xBB, txf->buflen); in iwl_mvm_frob_txf_key_iter() 994 for (i = 0; i < txf->buflen; i++) { in iwl_mvm_frob_txf_key_iter() 995 if (txf->buf[i] != keydata[match]) { in iwl_mvm_frob_txf_key_iter() 1001 memset(txf->buf + i - keylen, 0xAA, keylen); in iwl_mvm_frob_txf_key_iter() 1009 if (txf->buf[i] != keydata[match]) in iwl_mvm_frob_txf_key_iter() 1013 memset(txf->buf, 0xAA, i + 1); in iwl_mvm_frob_txf_key_iter() 1014 memset(txf->buf + txf->buflen - matchend, 0xAA, in iwl_mvm_frob_txf_key_iter() 1023 struct iwl_mvm_frob_txf_data txf = { in iwl_mvm_frob_txf() local 1034 ieee80211_iter_keys_rcu(mvm->hw, NULL, iwl_mvm_frob_txf_key_iter, &txf); in iwl_mvm_frob_txf()
|
| H A D | tx.c | 880 unsigned int txf; in iwl_mvm_max_amsdu_size() local 888 txf = iwl_mvm_mac_ac_to_tx_fifo(mvm, ac); in iwl_mvm_max_amsdu_size() 920 mvm->fwrt.smem_cfg.lmac[lmac].txfifo_size[txf] - 256); in iwl_mvm_max_amsdu_size() 927 mvm->fwrt.smem_cfg.lmac[lmac].txfifo_size[txf] - 256); in iwl_mvm_max_amsdu_size()
|
| H A D | mac-ctxt.c | 488 u8 txf = iwl_mvm_mac_ac_to_tx_fifo(mvm, i); in iwl_mvm_set_fw_qos_params() local 498 ac[ucode_ac].fifos_mask = BIT(txf); in iwl_mvm_set_fw_qos_params()
|
| /freebsd/sys/opencrypto/ |
| H A D | cryptosoft.c | 1271 const struct enc_xform *txf; in swcr_setup_cipher() local 1275 txf = crypto_cipher(csp); in swcr_setup_cipher() 1277 if (txf->ctxsize != 0) { in swcr_setup_cipher() 1278 swe->sw_ctx = malloc(txf->ctxsize, M_CRYPTO_DATA, in swcr_setup_cipher() 1283 error = txf->setkey(swe->sw_ctx, in swcr_setup_cipher() 1288 swe->sw_exf = txf; in swcr_setup_cipher() 1456 const struct enc_xform *txf; in swcr_cipher_supported() local 1458 txf = crypto_cipher(csp); in swcr_cipher_supported() 1459 if (txf == NULL) in swcr_cipher_supported() 1462 txf->ivsize != csp->csp_ivlen) in swcr_cipher_supported()
|
| /freebsd/sys/contrib/dev/iwlwifi/mld/ |
| H A D | tlc.c | 582 u8 ac, txf, lmac; in iwl_mld_get_amsdu_size_of_tid() local 601 txf = iwl_mld_mac80211_ac_to_fw_tx_fifo(ac); in iwl_mld_get_amsdu_size_of_tid() 621 mld->fwrt.smem_cfg.lmac[lmac].txfifo_size[txf] - 256); in iwl_mld_get_amsdu_size_of_tid() 629 mld->fwrt.smem_cfg.lmac[lmac].txfifo_size[txf] - 256); in iwl_mld_get_amsdu_size_of_tid()
|
| H A D | link.c | 201 u8 txf = iwl_mld_mac80211_ac_to_fw_tx_fifo(mac_ac); in iwl_mld_fill_qos_params() local 211 ac[fw_ac].fifos_mask = BIT(txf); in iwl_mld_fill_qos_params()
|
| /freebsd/sys/dev/iwx/ |
| H A D | if_iwx.c | 6878 int txf = iwx_ac_to_tx_fifo[i]; in iwx_mac_ctxt_cmd_common() local 6879 cmd->ac[txf].cw_min = IWX_EXP2(chp.cap_wmeParams[i].wmep_logcwmin); in iwx_mac_ctxt_cmd_common() 6880 cmd->ac[txf].cw_max = IWX_EXP2(chp.cap_wmeParams[i].wmep_logcwmax); in iwx_mac_ctxt_cmd_common() 6881 cmd->ac[txf].aifsn = chp.cap_wmeParams[i].wmep_aifsn; in iwx_mac_ctxt_cmd_common() 6882 cmd->ac[txf].fifos_mask = (1 << txf); in iwx_mac_ctxt_cmd_common() 6883 cmd->ac[txf].edca_txop = chp.cap_wmeParams[i].wmep_txopLimit; in iwx_mac_ctxt_cmd_common() 6885 cmd->ac[txf].edca_txop = htole16(chp.cap_wmeParams[i].wmep_txopLimit * 32); in iwx_mac_ctxt_cmd_common()
|