qcacld-3.0: Log TX net queue state for tx timeout
Currently in case of net tx timeout there is no information which net tx queue is paused. So log the information of all net tx queue state in case of tx timeout. Change-Id: I0b92bd98ad68afcaba9b0f3babb135466bdfa503 CRs-Fixed: 2335572
This commit is contained in:
parent
13402e185c
commit
887e89ebe0
@ -1231,13 +1231,12 @@ static void __hdd_tx_timeout(struct net_device *dev)
|
||||
|
||||
for (i = 0; i < NUM_TX_QUEUES; i++) {
|
||||
txq = netdev_get_tx_queue(dev, i);
|
||||
QDF_TRACE(QDF_MODULE_ID_HDD_DATA, QDF_TRACE_LEVEL_DEBUG,
|
||||
"Queue: %d status: %d txq->trans_start: %lu",
|
||||
i, netif_tx_queue_stopped(txq), txq->trans_start);
|
||||
hdd_info("Queue: %d status: %d txq->trans_start: %lu",
|
||||
i, netif_tx_queue_stopped(txq), txq->trans_start);
|
||||
}
|
||||
|
||||
QDF_TRACE(QDF_MODULE_ID_HDD_DATA, QDF_TRACE_LEVEL_DEBUG,
|
||||
"carrier state: %d", netif_carrier_ok(dev));
|
||||
hdd_info("carrier state: %d", netif_carrier_ok(dev));
|
||||
|
||||
hdd_ctx = WLAN_HDD_GET_CTX(adapter);
|
||||
wlan_hdd_display_netif_queue_history(hdd_ctx,
|
||||
QDF_STATS_VERBOSITY_LEVEL_HIGH);
|
||||
|
Loading…
Reference in New Issue
Block a user