public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Trivial update: option for default ondemand cpufreq governor
@ 2004-11-18  0:43 Pedro Venda
  2004-11-18  2:32 ` Dmitry Torokhov
  0 siblings, 1 reply; 3+ messages in thread
From: Pedro Venda @ 2004-11-18  0:43 UTC (permalink / raw)
  To: davej; +Cc: linux-kernel

This is a trivial patch that adds a Kconfig option to select the
*ondemand* cpufreq governor as the *default cpufreq governor*.

It seemed as useful as the other default governor options, and since
nobody else did it, here it is.

Feedback would be very appreciated. Also, please note that this is my first patch.

Applies cleanly to 2.6.10-rc2, 2.6.10-rc2-bk2 and 2.6.10-rc2-mm1.
Applies to 2.6.9 sources with line offset errors only.

Signed-off-by; Pedro Venda <pjlv@mega.ist.utl.pt>

diff -uprN linux-2.6.10-rc2-original/drivers/cpufreq/Kconfig linux-2.6.10-rc2/drivers/cpufreq/Kconfig
--- linux-2.6.10-rc2-original/drivers/cpufreq/Kconfig	2004-11-17 23:37:48.000000000 +0000
+++ linux-2.6.10-rc2/drivers/cpufreq/Kconfig	2004-11-17 23:52:32.153215407 +0000
@@ -65,6 +65,15 @@ config CPU_FREQ_DEFAULT_GOV_USERSPACE
  	  program shall be able to set the CPU dynamically without having
  	  to enable the userspace governor manually.

+config CPU_FREQ_DEFAULT_GOV_ONDEMAND
+	bool "ondemand"
+	select CPU_FREQ_GOV_ONDEMAND
+	help
+	  Use the CPUFreq governor 'ondemand' as default. This uses a
+	  polling mechanism to dynamically change frequency based on
+	  the CPU utilization. The desired functioning of this governor
+	  depends on the CPU capability to do fast frequency switching.
+	
  endchoice

  config CPU_FREQ_GOV_PERFORMANCE
diff -uprN linux-2.6.10-rc2-original/include/linux/cpufreq.h linux-2.6.10-rc2/include/linux/cpufreq.h
--- linux-2.6.10-rc2-original/include/linux/cpufreq.h	2004-11-17 23:38:07.000000000 +0000
+++ linux-2.6.10-rc2/include/linux/cpufreq.h	2004-11-17 23:53:48.000000000 +0000
@@ -323,6 +323,9 @@ extern struct cpufreq_governor cpufreq_g
  #elif defined(CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE)
  extern struct cpufreq_governor cpufreq_gov_userspace;
  #define CPUFREQ_DEFAULT_GOVERNOR	&cpufreq_gov_userspace
+#elif defined(CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND)
+extern struct cpufreq_governor cpufreq_gov_dbs;
+#define CPUFREQ_DEFAULT_GOVERNOR	&cpufreq_gov_dbs
  #endif



-- 

Pedro João Lopes Venda
email: pjlv@mega.ist.utl.pt
http://arrakis.dhis.org




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2004-11-18 13:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-11-18  0:43 [PATCH] Trivial update: option for default ondemand cpufreq governor Pedro Venda
2004-11-18  2:32 ` Dmitry Torokhov
2004-11-18 13:25   ` Pedro Venda

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox