Sfoglia il codice sorgente

qcacld-3.0: During peer unmap wait for dp thread processing

Currently dp thread and peer cleanup execution is done in
different context due to this there is possiblity of dp thread
processing packets which doesn't have active peer and vdev.

To fix this during peer unmap wait for current peer packets
which are processed in dp thread to complete.

Change-Id: I5a2b1568b961be257c4ce058a63e5c0e61d27f2b
CRs-Fixed: 2797316
Karthik Kantamneni 4 anni fa
parent
commit
1b3e987a50
2 ha cambiato i file con 19 aggiunte e 0 eliminazioni
  1. 6 0
      core/cds/inc/cds_sched.h
  2. 13 0
      core/cds/src/cds_sched.c

+ 6 - 0
core/cds/inc/cds_sched.h

@@ -54,6 +54,9 @@
 ** OL Rx thread.
 */
 #define CDS_MAX_OL_RX_PKT 4000
+
+#define CDS_ACTIVE_STAID_CLEANUP_DELAY	10
+#define CDS_ACTIVE_STAID_CLEANUP_TIMEOUT	200
 #endif
 
 typedef void (*cds_ol_rx_thread_cb)(void *context,
@@ -140,6 +143,9 @@ typedef struct _cds_sched_context {
 	/* affinity requied during uplink traffic*/
 	bool rx_affinity_required;
 	uint8_t conf_rx_thread_ul_affinity;
+
+	/* sta id packets under processing in thread context*/
+	uint16_t active_staid;
 #endif
 } cds_sched_context, *p_cds_sched_context;
 

+ 13 - 0
core/cds/src/cds_sched.c

@@ -507,6 +507,7 @@ QDF_STATUS cds_sched_open(void *p_cds_context,
 	mutex_init(&pSchedContext->affinity_lock);
 	pSchedContext->high_throughput_required = false;
 	pSchedContext->rx_affinity_required = false;
+	pSchedContext->active_staid = OL_TXRX_INVALID_LOCAL_PEER_ID;
 #endif
 	gp_cds_sched_context = pSchedContext;
 
@@ -719,6 +720,7 @@ void cds_drop_rxpkt_by_staid(p_cds_sched_context pSchedContext, uint16_t staId)
 	struct list_head local_list;
 	struct cds_ol_rx_pkt *pkt, *tmp;
 	qdf_nbuf_t buf, next_buf;
+	uint32_t timeout = 0;
 
 	INIT_LIST_HEAD(&local_list);
 	spin_lock_bh(&pSchedContext->ol_rx_queue_lock);
@@ -743,6 +745,15 @@ void cds_drop_rxpkt_by_staid(p_cds_sched_context pSchedContext, uint16_t staId)
 		}
 		cds_free_ol_rx_pkt(pSchedContext, pkt);
 	}
+
+	while (pSchedContext->active_staid == staId &&
+	       timeout <= CDS_ACTIVE_STAID_CLEANUP_TIMEOUT) {
+		qdf_mdelay(CDS_ACTIVE_STAID_CLEANUP_DELAY);
+		timeout += CDS_ACTIVE_STAID_CLEANUP_DELAY;
+	}
+
+	if (pSchedContext->active_staid == staId)
+		cds_err("Failed to cleanup RX packets for staId:%u", staId);
 }
 
 /**
@@ -764,11 +775,13 @@ static void cds_rx_from_queue(p_cds_sched_context pSchedContext)
 		pkt = list_first_entry(&pSchedContext->ol_rx_thread_queue,
 				       struct cds_ol_rx_pkt, list);
 		list_del(&pkt->list);
+		pSchedContext->active_staid = pkt->staId;
 		spin_unlock_bh(&pSchedContext->ol_rx_queue_lock);
 		sta_id = pkt->staId;
 		pkt->callback(pkt->context, pkt->Rxpkt, sta_id);
 		cds_free_ol_rx_pkt(pSchedContext, pkt);
 		spin_lock_bh(&pSchedContext->ol_rx_queue_lock);
+		pSchedContext->active_staid = OL_TXRX_INVALID_LOCAL_PEER_ID;
 	}
 	spin_unlock_bh(&pSchedContext->ol_rx_queue_lock);
 }