Parcourir la source

qcacld-3.0: Use msleep instead of mdelay in cds_drop_rxpkt_by_staid

Currently mdelay is used which leads to busy wait blocking CPU from
running other process, so use msleep which yields cpu for other tasks.

Change-Id: Ia7c76cfb1c950e78008f6fe19825733cbc261e50
CRs-Fixed: 2888309
Karthik Kantamneni il y a 4 ans
Parent
commit
ff20d99b98
1 fichiers modifiés avec 5 ajouts et 2 suppressions
  1. 5 2
      core/cds/src/cds_sched.c

+ 5 - 2
core/cds/src/cds_sched.c

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014-2020 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2014-2021 The Linux Foundation. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -748,7 +748,10 @@ void cds_drop_rxpkt_by_staid(p_cds_sched_context pSchedContext, uint16_t staId)
 
 	while (pSchedContext->active_staid == staId &&
 	       timeout <= CDS_ACTIVE_STAID_CLEANUP_TIMEOUT) {
-		qdf_mdelay(CDS_ACTIVE_STAID_CLEANUP_DELAY);
+		if (qdf_in_interrupt())
+			qdf_mdelay(CDS_ACTIVE_STAID_CLEANUP_DELAY);
+		else
+			qdf_sleep(CDS_ACTIVE_STAID_CLEANUP_DELAY);
 		timeout += CDS_ACTIVE_STAID_CLEANUP_DELAY;
 	}