Parcourir la source

qcacld-3.0: Enable need idle functionality for 5.10 kernel

On 5.10 kernel need idle” functionality is moved from
<linux/sched.h> to walt (<Linux/sched/walt.h>), Replace
“PF_WAKE_UP_IDLE” checks with “IS_ENABLED(CONFIG_SCHED_WALT)”.

Change-Id: Icb89b0e6e9862ed5b82680379a1d2630c9b2b4d9
CRs-Fixed: 2970666
Manjunathappa Prakash il y a 3 ans
Parent
commit
790df9073a
1 fichiers modifiés avec 5 ajouts et 1 suppressions
  1. 5 1
      core/hdd/src/wlan_hdd_ipa.c

+ 5 - 1
core/hdd/src/wlan_hdd_ipa.c

@@ -30,6 +30,9 @@
 #include <wlan_hdd_softap_tx_rx.h>
 #include <linux/inetdevice.h>
 #include <qdf_trace.h>
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 10, 0)
+#include <linux/sched/walt.h>
+#endif
 
 void hdd_ipa_set_tx_flow_info(void)
 {
@@ -321,7 +324,8 @@ void hdd_ipa_set_tx_flow_info(void)
 	}
 }
 
-#if defined(QCA_CONFIG_SMP) && defined(PF_WAKE_UP_IDLE)
+#if (defined(QCA_CONFIG_SMP) && defined(PF_WAKE_UP_IDLE)) ||\
+	IS_ENABLED(CONFIG_SCHED_WALT)
 /**
  * hdd_ipa_get_wake_up_idle() - Get PF_WAKE_UP_IDLE flag in the task structure
  *