mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] init/Kconfig: Fix dependency for SCHED_AUTOGROUP
@ 2012-01-10  1:01 Fabio Estevam
  2012-01-10  9:05 ` Ingo Molnar
  2012-01-10 10:46 ` [PATCH v2] init/Kconfig: Fix dependency for CGROUP_SCHED Fabio Estevam
  0 siblings, 2 replies; 4+ messages in thread
From: Fabio Estevam @ 2012-01-10  1:01 UTC (permalink / raw)
  To: linux-kernel; +Cc: akpm, mingo, a.p.zijlstra, Fabio Estevam, Fabio Estevam

Fix the following build warning:

warning: (SCHED_AUTOGROUP) selects CGROUP_SCHED which has unmet direct dependencies (CGROUPS && EXPERIMENTAL)

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 init/Kconfig |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/init/Kconfig b/init/Kconfig
index 34f6d0c..b5cae89 100644
--- a/init/Kconfig
+++ b/init/Kconfig
@@ -850,6 +850,7 @@ endif # NAMESPACES
 
 config SCHED_AUTOGROUP
 	bool "Automatic process group scheduling"
+	depends on EXPERIMENTAL
 	select EVENTFD
 	select CGROUPS
 	select CGROUP_SCHED
-- 
1.7.1


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

* Re: [PATCH] init/Kconfig: Fix dependency for SCHED_AUTOGROUP
  2012-01-10  1:01 [PATCH] init/Kconfig: Fix dependency for SCHED_AUTOGROUP Fabio Estevam
@ 2012-01-10  9:05 ` Ingo Molnar
  2012-01-10 10:46 ` [PATCH v2] init/Kconfig: Fix dependency for CGROUP_SCHED Fabio Estevam
  1 sibling, 0 replies; 4+ messages in thread
From: Ingo Molnar @ 2012-01-10  9:05 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: linux-kernel, akpm, a.p.zijlstra, Fabio Estevam


* Fabio Estevam <festevam@gmail.com> wrote:

> Fix the following build warning:
> 
> warning: (SCHED_AUTOGROUP) selects CGROUP_SCHED which has unmet direct dependencies (CGROUPS && EXPERIMENTAL)
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---
>  init/Kconfig |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/init/Kconfig b/init/Kconfig
> index 34f6d0c..b5cae89 100644
> --- a/init/Kconfig
> +++ b/init/Kconfig
> @@ -850,6 +850,7 @@ endif # NAMESPACES
>  
>  config SCHED_AUTOGROUP
>  	bool "Automatic process group scheduling"
> +	depends on EXPERIMENTAL
>  	select EVENTFD
>  	select CGROUPS
>  	select CGROUP_SCHED

I think this should rather be solved by removing the 
EXPERIMENTAL dependency from CGORUP_SCHED.

Thanks,

	Ingo

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

* [PATCH v2] init/Kconfig: Fix dependency for CGROUP_SCHED
  2012-01-10  1:01 [PATCH] init/Kconfig: Fix dependency for SCHED_AUTOGROUP Fabio Estevam
  2012-01-10  9:05 ` Ingo Molnar
@ 2012-01-10 10:46 ` Fabio Estevam
  2012-01-11  7:25   ` [tip:sched/urgent] sched: Fix CONFIG_CGROUP_SCHED dependency tip-bot for Fabio Estevam
  1 sibling, 1 reply; 4+ messages in thread
From: Fabio Estevam @ 2012-01-10 10:46 UTC (permalink / raw)
  To: linux-kernel; +Cc: akpm, mingo, a.p.zijlstra, Fabio Estevam, Fabio Estevam

Fix the following build warning:

warning: (SCHED_AUTOGROUP) selects CGROUP_SCHED which has unmet direct dependencies (CGROUPS && EXPERIMENTAL)

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
Changes since v1:
- Fix the warning by removing EXPERIMENTAL dependency from CGROUP_SCHED

 init/Kconfig |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/init/Kconfig b/init/Kconfig
index 34f6d0c..6ac2236 100644
--- a/init/Kconfig
+++ b/init/Kconfig
@@ -713,7 +713,6 @@ config CGROUP_PERF
 
 menuconfig CGROUP_SCHED
 	bool "Group CPU scheduler"
-	depends on EXPERIMENTAL
 	default n
 	help
 	  This feature lets CPU scheduler recognize task groups and control CPU
-- 
1.7.1


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

* [tip:sched/urgent] sched: Fix CONFIG_CGROUP_SCHED dependency
  2012-01-10 10:46 ` [PATCH v2] init/Kconfig: Fix dependency for CGROUP_SCHED Fabio Estevam
@ 2012-01-11  7:25   ` tip-bot for Fabio Estevam
  0 siblings, 0 replies; 4+ messages in thread
From: tip-bot for Fabio Estevam @ 2012-01-11  7:25 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: linux-kernel, hpa, mingo, fabio.estevam, tglx, mingo, festevam

Commit-ID:  6db9dc150eabce7053c8df2a2146aa0d6748ec42
Gitweb:     http://git.kernel.org/tip/6db9dc150eabce7053c8df2a2146aa0d6748ec42
Author:     Fabio Estevam <festevam@gmail.com>
AuthorDate: Tue, 10 Jan 2012 08:46:23 -0200
Committer:  Ingo Molnar <mingo@elte.hu>
CommitDate: Tue, 10 Jan 2012 13:44:50 +0100

sched: Fix CONFIG_CGROUP_SCHED dependency

The dependency bug was pointed out by this build warning:

 warning: (SCHED_AUTOGROUP) selects CGROUP_SCHED which has unmet direct dependencies (CGROUPS && EXPERIMENTAL)

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Cc: a.p.zijlstra@chello.nl
Cc: Fabio Estevam <festevam@gmail.com>
Link: http://lkml.kernel.org/r/1326192383-5113-1-git-send-email-festevam@gmail.com
Signed-off-by: Ingo Molnar <mingo@elte.hu>
---
 init/Kconfig |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/init/Kconfig b/init/Kconfig
index 82b6a4c..a34cd17 100644
--- a/init/Kconfig
+++ b/init/Kconfig
@@ -702,7 +702,6 @@ config CGROUP_PERF
 
 menuconfig CGROUP_SCHED
 	bool "Group CPU scheduler"
-	depends on EXPERIMENTAL
 	default n
 	help
 	  This feature lets CPU scheduler recognize task groups and control CPU

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

end of thread, other threads:[~2012-01-11  7:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-01-10  1:01 [PATCH] init/Kconfig: Fix dependency for SCHED_AUTOGROUP Fabio Estevam
2012-01-10  9:05 ` Ingo Molnar
2012-01-10 10:46 ` [PATCH v2] init/Kconfig: Fix dependency for CGROUP_SCHED Fabio Estevam
2012-01-11  7:25   ` [tip:sched/urgent] sched: Fix CONFIG_CGROUP_SCHED dependency tip-bot for Fabio Estevam

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

Powered by JetHome