Browse Source

qcacmn: Make sure int_timer is initialized in monitor mode

During vdev attachment in monitor mode, the ini_timer is not
initialzied which will cause FW assertion. Make sure int_timer
is initialized properly.

CRs-Fixed: 2359908
Change-Id: I48c97161345b17a0eb3e8a939499eabeae683bd2
chenguo 6 years ago
parent
commit
d22ed62ec8
1 changed files with 7 additions and 7 deletions
  1. 7 7
      dp/wifi3.0/dp_main.c

+ 7 - 7
dp/wifi3.0/dp_main.c

@@ -4142,6 +4142,13 @@ static struct cdp_vdev *dp_vdev_attach_wifi3(struct cdp_pdev *txrx_pdev,
 
 	TAILQ_INIT(&vdev->peer_list);
 
+	if ((soc->intr_mode == DP_INTR_POLL) &&
+	    wlan_cfg_get_num_contexts(soc->wlan_cfg_ctx) != 0) {
+		if ((pdev->vdev_count == 0) ||
+		    (wlan_op_mode_monitor == vdev->opmode))
+			qdf_timer_mod(&soc->int_timer, DP_INTR_POLL_TIMER_MS);
+	}
+
 	if (wlan_op_mode_monitor == vdev->opmode) {
 		pdev->monitor_vdev = vdev;
 		return (struct cdp_vdev *)vdev;
@@ -4161,13 +4168,6 @@ static struct cdp_vdev *dp_vdev_attach_wifi3(struct cdp_pdev *txrx_pdev,
 
 	dp_tx_vdev_attach(vdev);
 
-
-	if ((soc->intr_mode == DP_INTR_POLL) &&
-			wlan_cfg_get_num_contexts(soc->wlan_cfg_ctx) != 0) {
-		if (pdev->vdev_count == 1)
-			qdf_timer_mod(&soc->int_timer, DP_INTR_POLL_TIMER_MS);
-	}
-
 	if (pdev->vdev_count == 1)
 		dp_lro_hash_setup(soc, pdev);