Browse Source

qcacld-3.0: Flush vdev active commands during vdev delete

Currently, active commands are not being flushed during vdev delete.
This will cause issue when vdev is logically being deleted before
response comes for this active comand.

To resolve this, flush vdev active commands also along with pending
commands.

Change-Id: Ie31936132a389685ff4ff55b43ccbb4102e65830
CRs-Fixed: 2664624
Bapiraju Alla 5 years ago
parent
commit
d83451abb3
1 changed files with 2 additions and 7 deletions
  1. 2 7
      core/sme/src/csr/csr_api_roam.c

+ 2 - 7
core/sme/src/csr/csr_api_roam.c

@@ -17120,13 +17120,8 @@ QDF_STATUS csr_prepare_vdev_delete(struct mac_context *mac_ctx,
 					 vdev_id);
 	}
 
-	/*
-	 * Flush only scan commands. Non scan commands should go in sequence
-	 * as expected by firmware and should not be flushed.
-	 */
-	csr_purge_vdev_all_scan_ser_cmd_list(mac_ctx, vdev_id);
-	/* Flush all the pending commands */
-	csr_purge_vdev_pending_ser_cmd_list(mac_ctx, vdev_id);
+	/* Flush all the commands for vdev */
+	wlan_serialization_purge_all_cmd_by_vdev_id(mac_ctx->pdev, vdev_id);
 	if (!mac_ctx->session_close_cb) {
 		sme_err("no close session callback registered");
 		return QDF_STATUS_E_FAILURE;