Symbol: txq_info
drivers/crypto/chelsio/chcr_algo.c
549
struct sge_uld_txq_info *txq_info =
drivers/crypto/chelsio/chcr_algo.c
555
txq = &txq_info->uldtxq[idx];
drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c
2447
struct sge_uld_txq_info *txq_info =
drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c
2450
if (txq_info) {
drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c
2452
struct sge_uld_txq *txq = &txq_info->uldtxq[i];
drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c
2469
struct sge_uld_txq_info *txq_info =
drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c
2472
if (txq_info) {
drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c
2474
struct sge_uld_txq *txq = &txq_info->uldtxq[i];
drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c
2551
struct sge_uld_txq_info *txq_info =
drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c
2553
if (txq_info) {
drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c
2555
struct sge_uld_txq *txq = &txq_info->uldtxq[i];
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
400
free_sge_txq_uld(struct adapter *adap, struct sge_uld_txq_info *txq_info)
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
402
int nq = txq_info->ntxq;
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
406
struct sge_uld_txq *txq = &txq_info->uldtxq[i];
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
421
alloc_sge_txq_uld(struct adapter *adap, struct sge_uld_txq_info *txq_info,
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
425
int nq = txq_info->ntxq;
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
430
struct sge_uld_txq *txq = &txq_info->uldtxq[i];
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
440
free_sge_txq_uld(adap, txq_info);
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
447
struct sge_uld_txq_info *txq_info = NULL;
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
450
txq_info = adap->sge.uld_txq_info[tx_uld_type];
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
452
if (txq_info && atomic_dec_and_test(&txq_info->users)) {
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
453
free_sge_txq_uld(adap, txq_info);
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
454
kfree(txq_info->uldtxq);
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
455
kfree(txq_info);
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
464
struct sge_uld_txq_info *txq_info = NULL;
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
468
txq_info = adap->sge.uld_txq_info[tx_uld_type];
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
470
if ((tx_uld_type == CXGB4_TX_OFLD) && txq_info &&
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
471
(atomic_inc_return(&txq_info->users) > 1))
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
474
txq_info = kzalloc_obj(*txq_info);
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
475
if (!txq_info)
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
480
txq_info->ntxq = rounddown(i, adap->params.nports);
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
481
if (txq_info->ntxq <= 0) {
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
483
kfree(txq_info);
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
489
txq_info->ntxq = roundup(i, adap->params.nports);
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
491
txq_info->uldtxq = kzalloc_objs(struct sge_uld_txq, txq_info->ntxq);
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
492
if (!txq_info->uldtxq) {
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
493
kfree(txq_info);
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
497
if (alloc_sge_txq_uld(adap, txq_info, tx_uld_type)) {
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
498
kfree(txq_info->uldtxq);
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
499
kfree(txq_info);
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
503
atomic_inc(&txq_info->users);
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
504
adap->sge.uld_txq_info[tx_uld_type] = txq_info;
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
513
struct sge_uld_txq_info *txq_info = adap->sge.uld_txq_info[tx_uld_type];
drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
519
lli->ntxq = txq_info->ntxq;
drivers/net/ethernet/chelsio/cxgb4/sge.c
3120
struct sge_uld_txq_info *txq_info;
drivers/net/ethernet/chelsio/cxgb4/sge.c
3131
txq_info = adap->sge.uld_txq_info[tx_uld_type];
drivers/net/ethernet/chelsio/cxgb4/sge.c
3132
if (unlikely(!txq_info)) {
drivers/net/ethernet/chelsio/cxgb4/sge.c
3138
txq = &txq_info->uldtxq[idx];
drivers/net/ethernet/chelsio/cxgb4/sge.c
3250
struct sge_uld_txq_info *txq_info;
drivers/net/ethernet/chelsio/cxgb4/sge.c
3258
txq_info = adap->sge.uld_txq_info[CXGB4_TX_OFLD];
drivers/net/ethernet/chelsio/cxgb4/sge.c
3259
if (unlikely(!txq_info)) {
drivers/net/ethernet/chelsio/cxgb4/sge.c
3264
txq = &txq_info->uldtxq[idx];
drivers/net/ethernet/chelsio/cxgb4/sge.c
5005
struct sge_uld_txq_info *txq_info;
drivers/net/ethernet/chelsio/cxgb4/sge.c
5007
txq_info = adap->sge.uld_txq_info[CXGB4_TX_OFLD];
drivers/net/ethernet/chelsio/cxgb4/sge.c
5008
if (txq_info) {
drivers/net/ethernet/chelsio/cxgb4/sge.c
5009
struct sge_uld_txq *txq = txq_info->uldtxq;
drivers/net/ethernet/chelsio/cxgb4/sge.c
5019
struct sge_uld_txq_info *txq_info;
drivers/net/ethernet/chelsio/cxgb4/sge.c
5021
txq_info = adap->sge.uld_txq_info[CXGB4_TX_CRYPTO];
drivers/net/ethernet/chelsio/cxgb4/sge.c
5022
if (txq_info) {
drivers/net/ethernet/chelsio/cxgb4/sge.c
5023
struct sge_uld_txq *txq = txq_info->uldtxq;
net/mac80211/agg-tx.c
187
struct txq_info *txqi;
net/mac80211/agg-tx.c
206
struct txq_info *txqi;
net/mac80211/cfg.c
5335
struct txq_info *txqi)
net/mac80211/debugfs_netdev.c
620
struct txq_info *txqi;
net/mac80211/debugfs_sta.c
143
struct txq_info *txqi;
net/mac80211/driver-ops.h
1380
struct txq_info *txq)
net/mac80211/driver-ops.h
1398
struct txq_info *txqi)
net/mac80211/ht.c
365
struct txq_info *txqi = to_txq_info(sta->sta.txq[tid]);
net/mac80211/ieee80211_i.h
1932
static inline struct txq_info *to_txq_info(struct ieee80211_txq *txq)
net/mac80211/ieee80211_i.h
1934
return container_of(txq, struct txq_info, txq);
net/mac80211/ieee80211_i.h
1939
struct txq_info *txqi = to_txq_info(txq);
net/mac80211/ieee80211_i.h
2679
struct txq_info *txq, int tid);
net/mac80211/ieee80211_i.h
2681
struct txq_info *txqi);
net/mac80211/ieee80211_i.h
2686
struct txq_info *txqi);
net/mac80211/iface.c
2235
struct txq_info *txqi;
net/mac80211/iface.c
2248
txq_size = sizeof(struct txq_info) +
net/mac80211/iface.c
2272
txqi = (struct txq_info *)((unsigned long)sdata + size);
net/mac80211/iface.c
2284
txq_size += sizeof(struct txq_info) +
net/mac80211/rx.c
1708
struct txq_info *txqi = to_txq_info(txq);
net/mac80211/sta_info.c
121
struct txq_info *txqi;
net/mac80211/sta_info.c
713
size = sizeof(struct txq_info) +
net/mac80211/sta_info.c
721
struct txq_info *txq = txq_data + i * size;
net/mac80211/trace.h
2365
struct txq_info *txq),
net/mac80211/tx.c
1299
static struct txq_info *ieee80211_get_txq(struct ieee80211_local *local,
net/mac80211/tx.c
1373
struct txq_info *txqi;
net/mac80211/tx.c
1394
struct txq_info *txqi;
net/mac80211/tx.c
1408
struct txq_info *txqi;
net/mac80211/tx.c
1414
txqi = container_of(tin, struct txq_info, tin);
net/mac80211/tx.c
1446
struct txq_info *txqi,
net/mac80211/tx.c
1487
struct txq_info *txqi;
net/mac80211/tx.c
1510
struct txq_info *txqi, int tid)
net/mac80211/tx.c
1556
struct txq_info *txqi)
net/mac80211/tx.c
1657
struct txq_info *txqi;
net/mac80211/tx.c
3477
struct txq_info *txqi;
net/mac80211/tx.c
3879
struct txq_info *txqi = container_of(txq, struct txq_info, txq);
net/mac80211/tx.c
4090
ieee80211_txq_set_active(struct txq_info *txqi)
net/mac80211/tx.c
4102
ieee80211_txq_keep_active(struct txq_info *txqi)
net/mac80211/tx.c
4120
struct txq_info *txqi = NULL, *head = NULL;
net/mac80211/tx.c
4130
struct txq_info,
net/mac80211/tx.c
4183
struct txq_info *txqi = to_txq_info(txq);
net/mac80211/tx.c
4255
struct txq_info *txq;
net/mac80211/tx.c
4274
struct txq_info *iter, *tmp, *txqi = to_txq_info(txq);
net/mac80211/util.c
331
struct txq_info *txqi = NULL;
net/mac80211/util.c
350
struct txq_info *sta_txqi;
net/mac80211/util.c
4472
struct txq_info *txqi = to_txq_info(txq);