summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNaveen Rawat <nrawat@qca.qualcomm.com>2014-03-07 11:54:19 -0800
committerNandini Suresh <snandini@qca.qualcomm.com>2014-03-08 23:00:51 -0800
commita614be990cbaa0ffb633b972ae5eae1ef6f500c3 (patch)
treef314e1d71fb9b793a4b8a169576ccdd2051622bd
parent9274f2d63587d38456049389dc2d537200beb81e (diff)
qcacld: fix for iperf stall issue after roaming
whenever tx queue is paused and data transmit request comes from application, kernel uses enqueue function pointer to enqueue packets. This was set to NULL due to setting of tx_queue_length = 0 in hdd driver init code. This was causing network stack to return ENETDOWN error to applications. Reverting this to use default value of 1000. Change-Id: I96cca4e789026739fa2578e60654d372c23fe256 CRs-fixed: 614166
-rw-r--r--CORE/HDD/src/wlan_hdd_main.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/CORE/HDD/src/wlan_hdd_main.c b/CORE/HDD/src/wlan_hdd_main.c
index 70e3c6fe7150..71d33083425d 100644
--- a/CORE/HDD/src/wlan_hdd_main.c
+++ b/CORE/HDD/src/wlan_hdd_main.c
@@ -6346,10 +6346,6 @@ void hdd_set_station_ops( struct net_device *pWlanDev )
pWlanDev->do_ioctl = hdd_ioctl;
pWlanDev->set_mac_address = hdd_set_mac_address;
#endif
-
-#ifdef QCA_WIFI_2_0
- pWlanDev->tx_queue_len = 0;
-#endif
}
static hdd_adapter_t* hdd_alloc_station_adapter( hdd_context_t *pHddCtx, tSirMacAddr macAddr, const char* name )