Home
last modified time | relevance | path

Searched refs:nq (Results 1 – 25 of 27) sorted by relevance

12

/linux/drivers/net/ethernet/broadcom/bnge/
H A Dbnge_resc.c231 hwr->nq = hw_resc->resv_irqs; in bnge_copy_reserved_rings()
241 return hwr->tx && hwr->rx && hwr->nq && hwr->grp && hwr->vnic && in bnge_rings_ok()
275 u16 nq = bd->nq_nr_rings; in bnge_reserve_rings() local
291 hwr.nq = nq + aux_msix; in bnge_reserve_rings()
293 hwr.nq = bnge_nqs_demand(bd); in bnge_reserve_rings()
326 hwr.nq = min_t(u16, hwr.nq, bd->nq_nr_rings); in bnge_reserve_rings()
329 hwr.nq = min_t(u16, hwr.nq, hwr.stat); in bnge_reserve_rings()
332 rc = bnge_adjust_rings(bd, &rx_rings, &hwr.tx, hwr.nq, sh); in bnge_reserve_rings()
336 hwr.nq = sh ? max_t(u16, tx_cp, rx_rings) : tx_cp + rx_rings; in bnge_reserve_rings()
344 bd->nq_nr_rings = hwr.nq; in bnge_reserve_rings()
[all …]
H A Dbnge_resc.h50 u16 nq; member
H A Dbnge_hwrm_lib.c478 enables |= hwr->nq ? FUNC_CFG_REQ_ENABLES_NUM_MSIX : 0; in __bnge_hwrm_reserve_pf_rings()
486 req->num_msix = cpu_to_le16(hwr->nq); in __bnge_hwrm_reserve_pf_rings()
/linux/drivers/block/null_blk/
H A Dmain.c862 ktime_t kt = cmd->nq->dev->completion_nsec; in null_cmd_end_timer()
1294 struct nullb *nullb = cmd->nq->dev->nullb; in null_handle_data_transfer()
1325 struct nullb_device *dev = cmd->nq->dev; in null_handle_throttled()
1357 struct badblocks *bb = &cmd->nq->dev->badblocks; in null_handle_badblocks()
1358 struct nullb_device *dev = cmd->nq->dev; in null_handle_badblocks()
1366 if (cmd->nq->dev->badblocks_once) in null_handle_badblocks()
1369 if (cmd->nq->dev->badblocks_partial_io) { in null_handle_badblocks()
1383 struct nullb_device *dev = cmd->nq->dev; in null_handle_memory_backed()
1394 struct nullb_device *dev = cmd->nq->dev; in nullb_zero_read_cmd_buffer()
1418 switch (cmd->nq->dev->irqmode) { in nullb_complete_cmd()
[all …]
H A Dzoned.c359 struct nullb_device *dev = cmd->nq->dev; in null_zone_write()
655 struct nullb_device *dev = cmd->nq->dev; in null_zone_mgmt()
733 dev = cmd->nq->dev; in null_process_zoned_cmd()
/linux/lib/crypto/
H A Dcurve25519-hacl64.c544 ladder_smallloop_cmult_small_loop_step(u64 *nq, u64 *nqpq, u64 *nq2, u64 *nqpq2, in ladder_smallloop_cmult_small_loop_step() argument
549 point_swap_conditional(nq, nqpq, bit0); in ladder_smallloop_cmult_small_loop_step()
550 addanddouble_fmonty(nq2, nqpq2, nq, nqpq, q); in ladder_smallloop_cmult_small_loop_step()
556 ladder_smallloop_cmult_small_loop_double_step(u64 *nq, u64 *nqpq, u64 *nq2, in ladder_smallloop_cmult_small_loop_double_step() argument
560 ladder_smallloop_cmult_small_loop_step(nq, nqpq, nq2, nqpq2, q, byt); in ladder_smallloop_cmult_small_loop_double_step()
562 ladder_smallloop_cmult_small_loop_step(nq2, nqpq2, nq, nqpq, q, byt1); in ladder_smallloop_cmult_small_loop_double_step()
566 ladder_smallloop_cmult_small_loop(u64 *nq, u64 *nqpq, u64 *nq2, u64 *nqpq2, in ladder_smallloop_cmult_small_loop() argument
570 ladder_smallloop_cmult_small_loop_double_step(nq, nqpq, nq2, in ladder_smallloop_cmult_small_loop()
576 static __always_inline void ladder_bigloop_cmult_big_loop(u8 *n1, u64 *nq, in ladder_bigloop_cmult_big_loop() argument
583 ladder_smallloop_cmult_small_loop(nq, nqpq, nq2, nqpq2, q, in ladder_bigloop_cmult_big_loop()
[all …]
/linux/drivers/net/vmxnet3/
H A Dvmxnet3_xdp.c210 struct netdev_queue *nq; in vmxnet3_xdp_xmit_back() local
217 nq = netdev_get_tx_queue(adapter->netdev, tq->qid); in vmxnet3_xdp_xmit_back()
219 __netif_tx_lock(nq, smp_processor_id()); in vmxnet3_xdp_xmit_back()
221 __netif_tx_unlock(nq); in vmxnet3_xdp_xmit_back()
233 struct netdev_queue *nq; in vmxnet3_xdp_xmit() local
245 nq = netdev_get_tx_queue(adapter->netdev, tq->qid); in vmxnet3_xdp_xmit()
247 __netif_tx_lock(nq, smp_processor_id()); in vmxnet3_xdp_xmit()
255 __netif_tx_unlock(nq); in vmxnet3_xdp_xmit()
/linux/lib/crypto/x86/
H A Dcurve25519.h972 u64 *nq = p01_tmp1; in point_add_and_double() local
976 u64 *x2 = nq; in point_add_and_double()
977 u64 *z2 = nq + (u32)4U; in point_add_and_double()
1019 fmul2(nq, dc1, ab1, tmp2); in point_add_and_double()
1023 static void point_double(u64 *nq, u64 *tmp1, u64 *tmp2) in point_double() argument
1025 u64 *x2 = nq; in point_double()
1026 u64 *z2 = nq + (u32)4U; in point_double()
1043 fmul2(nq, dc, ab, tmp2); in point_double()
/linux/drivers/net/ethernet/engleder/
H A Dtsnep_main.c349 struct netdev_queue *nq; in tsnep_tx_enable() local
351 nq = netdev_get_tx_queue(tx->adapter->netdev, tx->queue_index); in tsnep_tx_enable()
353 __netif_tx_lock_bh(nq); in tsnep_tx_enable()
354 netif_tx_wake_queue(nq); in tsnep_tx_enable()
355 __netif_tx_unlock_bh(nq); in tsnep_tx_enable()
360 struct netdev_queue *nq; in tsnep_tx_disable() local
363 nq = netdev_get_tx_queue(tx->adapter->netdev, tx->queue_index); in tsnep_tx_disable()
365 __netif_tx_lock_bh(nq); in tsnep_tx_disable()
366 netif_tx_stop_queue(nq); in tsnep_tx_disable()
367 __netif_tx_unlock_bh(nq); in tsnep_tx_disable()
[all …]
/linux/drivers/net/ethernet/pensando/ionic/
H A Dionic_txrx.c402 struct netdev_queue *nq; in ionic_xdp_xmit() local
423 nq = netdev_get_tx_queue(netdev, txq->index); in ionic_xdp_xmit()
424 __netif_tx_lock(nq, cpu); in ionic_xdp_xmit()
425 txq_trans_cond_update(nq); in ionic_xdp_xmit()
427 if (netif_tx_queue_stopped(nq) || in ionic_xdp_xmit()
431 __netif_tx_unlock(nq); in ionic_xdp_xmit()
453 __netif_tx_unlock(nq); in ionic_xdp_xmit()
480 struct netdev_queue *nq; in ionic_run_xdp() local
560 nq = netdev_get_tx_queue(netdev, txq->index); in ionic_run_xdp()
561 __netif_tx_lock(nq, smp_processor_id()); in ionic_run_xdp()
[all …]
/linux/drivers/net/ethernet/intel/igc/
H A Digc_tsn.c96 struct netdev_queue *nq; in igc_fpe_xmit_smd_frame() local
102 nq = txring_txq(ring); in igc_fpe_xmit_smd_frame()
110 __netif_tx_lock(nq, cpu); in igc_fpe_xmit_smd_frame()
117 __netif_tx_unlock(nq); in igc_fpe_xmit_smd_frame()
121 __netif_tx_unlock(nq); in igc_fpe_xmit_smd_frame()
H A Digc_main.c2492 struct netdev_queue *nq; in igc_xdp_xmit_back() local
2500 nq = txring_txq(ring); in igc_xdp_xmit_back()
2502 __netif_tx_lock(nq, cpu); in igc_xdp_xmit_back()
2504 txq_trans_cond_update(nq); in igc_xdp_xmit_back()
2506 __netif_tx_unlock(nq); in igc_xdp_xmit_back()
2572 struct netdev_queue *nq; in igc_finalize_xdp() local
2577 nq = txring_txq(ring); in igc_finalize_xdp()
2579 __netif_tx_lock(nq, cpu); in igc_finalize_xdp()
2581 __netif_tx_unlock(nq); in igc_finalize_xdp()
3037 struct netdev_queue *nq = txring_txq(ring); in igc_xdp_xmit_zc() local
[all …]
/linux/drivers/net/ethernet/chelsio/cxgb4/
H A Dcxgb4_uld.c111 unsigned int nq = rxq_info->nrxq + rxq_info->nciq; in alloc_uld_rxqs() local
125 for (i = 0; i < nq; i++, q++) { in alloc_uld_rxqs()
402 int nq = txq_info->ntxq; in free_sge_txq_uld() local
405 for (i = 0; i < nq; i++) { in free_sge_txq_uld()
425 int nq = txq_info->ntxq; in alloc_sge_txq_uld() local
428 j = nq / adap->params.nports; in alloc_sge_txq_uld()
429 for (i = 0; i < nq; i++) { in alloc_sge_txq_uld()
H A Dt4_hw.c5161 int nq = min(n, 32); in t4_config_rss_range() local
5164 cmd.niqid = cpu_to_be16(nq); in t4_config_rss_range()
5167 start += nq; in t4_config_rss_range()
5168 n -= nq; in t4_config_rss_range()
5170 while (nq > 0) { in t4_config_rss_range()
5184 nq -= 3; in t4_config_rss_range()
/linux/drivers/infiniband/hw/bng_re/
H A Dbng_re.h46 struct bng_re_nq nq[BNG_RE_MAX_MSIX]; member
/linux/drivers/net/ethernet/marvell/
H A Dmvneta.c1870 struct netdev_queue *nq, bool napi) in mvneta_txq_bufs_free() argument
1909 netdev_tx_completed_queue(nq, pkts_compl, bytes_compl); in mvneta_txq_bufs_free()
1916 struct netdev_queue *nq = netdev_get_tx_queue(pp->dev, txq->id); in mvneta_txq_done() local
1923 mvneta_txq_bufs_free(pp, txq, tx_done, nq, true); in mvneta_txq_done()
1927 if (netif_tx_queue_stopped(nq)) { in mvneta_txq_done()
1929 netif_tx_wake_queue(nq); in mvneta_txq_done()
2178 struct netdev_queue *nq; in mvneta_xdp_xmit_back() local
2189 nq = netdev_get_tx_queue(pp->dev, txq->id); in mvneta_xdp_xmit_back()
2191 __netif_tx_lock(nq, cpu); in mvneta_xdp_xmit_back()
2206 __netif_tx_unlock(nq); in mvneta_xdp_xmit_back()
[all …]
/linux/tools/testing/selftests/drivers/net/
H A Dshaper.py240 nq = _require_queues(cfg, 1)
267 'handle': {'scope': 'queue', 'id': nq},
820 nq = _require_queues(cfg, 3)
858 while queue_id < nq:
1242 nq = _require_queues(cfg, 4)
/linux/drivers/net/ethernet/chelsio/cxgb4vf/
H A Dt4vf_hw.c1272 int nq = min(n, 32); in t4vf_config_rss_range() local
1279 cmd.niqid = cpu_to_be16(nq); in t4vf_config_rss_range()
1285 start += nq; in t4vf_config_rss_range()
1286 n -= nq; in t4vf_config_rss_range()
1293 while (nq > 0) { in t4vf_config_rss_range()
1302 int nqbuf = min(3, nq); in t4vf_config_rss_range()
1304 nq -= nqbuf; in t4vf_config_rss_range()
/linux/drivers/net/
H A Dtap.c127 struct tap_queue *nq; in tap_disable_queue() local
138 nq = rtnl_dereference(tap->taps[tap->numvtaps - 1]); in tap_disable_queue()
139 nq->queue_index = index; in tap_disable_queue()
141 rcu_assign_pointer(tap->taps[index], nq); in tap_disable_queue()
/linux/drivers/net/ethernet/intel/idpf/
H A Didpf_txrx.c2284 struct netdev_queue *nq; in idpf_tx_clean_complq() local
2294 nq = netdev_get_tx_queue(tx_q->netdev, tx_q->idx); in idpf_tx_clean_complq()
2299 __netif_txq_completed_wake(nq, tx_q->cleaned_pkts, tx_q->cleaned_bytes, in idpf_tx_clean_complq()
2477 struct netdev_queue *nq; in idpf_tx_buf_hw_update() local
2479 nq = netdev_get_tx_queue(tx_q->netdev, tx_q->idx); in idpf_tx_buf_hw_update()
2490 if (netif_xmit_stopped(nq) || !xmit_more) in idpf_tx_buf_hw_update()
2650 struct netdev_queue *nq; in idpf_tx_splitq_map() local
2807 nq = netdev_get_tx_queue(tx_q->netdev, tx_q->idx); in idpf_tx_splitq_map()
2808 netdev_tx_sent_queue(nq, first->bytes); in idpf_tx_splitq_map()
/linux/drivers/net/ethernet/intel/igb/
H A Digb_main.c2961 struct netdev_queue *nq; in igb_xdp_xmit_back() local
2975 nq = txring_txq(tx_ring); in igb_xdp_xmit_back()
2976 __netif_tx_lock(nq, cpu); in igb_xdp_xmit_back()
2978 txq_trans_cond_update(nq); in igb_xdp_xmit_back()
2980 __netif_tx_unlock(nq); in igb_xdp_xmit_back()
2991 struct netdev_queue *nq; in igb_xdp_xmit() local
3012 nq = txring_txq(tx_ring); in igb_xdp_xmit()
3013 __netif_tx_lock(nq, cpu); in igb_xdp_xmit()
3016 txq_trans_cond_update(nq); in igb_xdp_xmit()
3031 __netif_tx_unlock(nq); in igb_xdp_xmit()
[all …]
/linux/net/sched/
H A Dsch_api.c322 struct netdev_queue *nq; in qdisc_lookup_rcu() local
331 nq = dev_ingress_queue_rcu(dev); in qdisc_lookup_rcu()
332 if (nq) in qdisc_lookup_rcu()
333 q = qdisc_match_from_root(rcu_dereference(nq->qdisc_sleeping), in qdisc_lookup_rcu()
/linux/drivers/net/ethernet/stmicro/stmmac/
H A Dstmmac_main.c2683 struct netdev_queue *nq = netdev_get_tx_queue(priv->dev, queue); in stmmac_xdp_xmit_zc() local
2695 txq_trans_cond_update(nq); in stmmac_xdp_xmit_zc()
5269 struct netdev_queue *nq; in stmmac_xdp_xmit_back() local
5277 nq = netdev_get_tx_queue(priv->dev, queue); in stmmac_xdp_xmit_back()
5279 __netif_tx_lock(nq, cpu); in stmmac_xdp_xmit_back()
5281 txq_trans_cond_update(nq); in stmmac_xdp_xmit_back()
5296 __netif_tx_unlock(nq); in stmmac_xdp_xmit_back()
6952 struct netdev_queue *nq; in stmmac_xdp_xmit() local
6963 nq = netdev_get_tx_queue(priv->dev, queue); in stmmac_xdp_xmit()
6965 __netif_tx_lock(nq, cpu); in stmmac_xdp_xmit()
[all …]
/linux/drivers/net/ethernet/freescale/dpaa2/
H A Ddpaa2-eth.c1404 struct netdev_queue *nq; in __dpaa2_eth_tx() local
1485 nq = netdev_get_tx_queue(net_dev, queue_mapping); in __dpaa2_eth_tx()
1486 netdev_tx_sent_queue(nq, fd_len); in __dpaa2_eth_tx()
1508 netdev_tx_completed_queue(nq, 1, fd_len); in __dpaa2_eth_tx()
1949 struct netdev_queue *nq; in dpaa2_eth_poll() local
2036 nq = netdev_get_tx_queue(priv->net_dev, txc_fq->flowid); in dpaa2_eth_poll()
2037 netdev_tx_completed_queue(nq, txc_fq->dq_frames, in dpaa2_eth_poll()
/linux/drivers/net/ethernet/broadcom/bnx2x/
H A Dbnx2x_cmn.c63 int nq = bnx2x_num_queues ? : netif_get_num_default_rss_queues(); in bnx2x_calc_num_queues() local
67 nq = 1; in bnx2x_calc_num_queues()
69 nq = clamp(nq, 1, BNX2X_MAX_QUEUES(bp)); in bnx2x_calc_num_queues()
70 return nq; in bnx2x_calc_num_queues()

12