瀏覽代碼

Merge "Revert "qcacld-3.0: Set PF_WAKE_UP_IDLE flag in the IPA Rx exception callback"" into wlan-cld3.driver.lnx.2.0

CNSS_WLAN Service 7 年之前
父節點
當前提交
da52068904
共有 1 個文件被更改,包括 0 次插入15 次删除
  1. 0 15
      core/hdd/src/wlan_hdd_ipa.c

+ 0 - 15
core/hdd/src/wlan_hdd_ipa.c

@@ -4125,7 +4125,6 @@ static void hdd_ipa_send_skb_to_network(qdf_nbuf_t skb,
 	int result;
 	struct hdd_ipa_priv *hdd_ipa = ghdd_ipa;
 	unsigned int cpu_index;
-	uint32_t enabled;
 
 	if (!adapter || adapter->magic != WLAN_HDD_ADAPTER_MAGIC) {
 		HDD_IPA_LOG(QDF_TRACE_LEVEL_DEBUG, "Invalid adapter: 0x%pK",
@@ -4141,14 +4140,6 @@ static void hdd_ipa_send_skb_to_network(qdf_nbuf_t skb,
 		return;
 	}
 
-	/*
-	 * Set PF_WAKE_UP_IDLE flag in the task structure
-	 * This task and any task woken by this will be waken to idle CPU
-	 */
-	enabled = sched_get_wake_up_idle(current);
-	if (!enabled)
-		sched_set_wake_up_idle(current, true);
-
 	skb->destructor = hdd_ipa_uc_rt_debug_destructor;
 	skb->dev = adapter->dev;
 	skb->protocol = eth_type_trans(skb, skb->dev);
@@ -4164,12 +4155,6 @@ static void hdd_ipa_send_skb_to_network(qdf_nbuf_t skb,
 		++adapter->hdd_stats.tx_rx_stats.rx_refused[cpu_index];
 
 	hdd_ipa->ipa_rx_net_send_count++;
-
-	/*
-	 * Restore PF_WAKE_UP_IDLE flag in the task structure
-	 */
-	if (!enabled)
-		sched_set_wake_up_idle(current, false);
 }
 
 /**