diff mbox series

sched/uclamp: fix building without cgroup

Message ID 20190918195957.2220297-1-arnd@arndb.de
State New
Headers show
Series sched/uclamp: fix building without cgroup | expand

Commit Message

Arnd Bergmann Sept. 18, 2019, 7:59 p.m. UTC
The css_task_iter interfaces are defined conditionally and
cause build failures when used in other configurations:

kernel/sched/core.c:1081:23: error: variable has incomplete type 'struct css_task_iter'
kernel/sched/core.c:1084:2: error: implicit declaration of function 'css_task_iter_start' [-Werror,-Wimplicit-function-declaration]
kernel/sched/core.c:1085:14: error: implicit declaration of function 'css_task_iter_next' [-Werror,-Wimplicit-function-declaration]
kernel/sched/core.c:1091:2: error: implicit declaration of function 'css_task_iter_end' [-Werror,-Wimplicit-function-declaration]

As this code is unused anyway in that configuration, just put
it into the same #ifdef. This also avoids possible warnings
about unused inline functions.

Fixes: babbe170e053 ("sched/uclamp: Update CPU's refcount on TG's clamp changes")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>

---
 kernel/sched/core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
2.20.0

Comments

Valentin Schneider Sept. 18, 2019, 8:38 p.m. UTC | #1
Hi Arnd,

On 18/09/2019 20:59, Arnd Bergmann wrote:
> The css_task_iter interfaces are defined conditionally and

> cause build failures when used in other configurations:

> 

> kernel/sched/core.c:1081:23: error: variable has incomplete type 'struct css_task_iter'

> kernel/sched/core.c:1084:2: error: implicit declaration of function 'css_task_iter_start' [-Werror,-Wimplicit-function-declaration]

> kernel/sched/core.c:1085:14: error: implicit declaration of function 'css_task_iter_next' [-Werror,-Wimplicit-function-declaration]

> kernel/sched/core.c:1091:2: error: implicit declaration of function 'css_task_iter_end' [-Werror,-Wimplicit-function-declaration]

> 

> As this code is unused anyway in that configuration, just put

> it into the same #ifdef. This also avoids possible warnings

> about unused inline functions.

> 

> Fixes: babbe170e053 ("sched/uclamp: Update CPU's refcount on TG's clamp changes")

> Signed-off-by: Arnd Bergmann <arnd@arndb.de>


Patrick's submitted the same thing at:

  https://lkml.kernel.org/r/8736gv2gbv.fsf@arm.com

so you may want to holler in that thread. Those kind of things really should
get caught by the 0day bot but it seems it's been on sick leave lately :/

> ---

>  kernel/sched/core.c | 2 +-

>  1 file changed, 1 insertion(+), 1 deletion(-)

> 

> diff --git a/kernel/sched/core.c b/kernel/sched/core.c

> index f9a1346a5fa9..f25e3949a5ba 100644

> --- a/kernel/sched/core.c

> +++ b/kernel/sched/core.c

> @@ -1043,6 +1043,7 @@ static inline void uclamp_rq_dec(struct rq *rq, struct task_struct *p)

>  		uclamp_rq_dec_id(rq, p, clamp_id);

>  }

>  

> +#ifdef CONFIG_UCLAMP_TASK_GROUP

>  static inline void

>  uclamp_update_active(struct task_struct *p, enum uclamp_id clamp_id)

>  {

> @@ -1091,7 +1092,6 @@ uclamp_update_active_tasks(struct cgroup_subsys_state *css,

>  	css_task_iter_end(&it);

>  }

>  

> -#ifdef CONFIG_UCLAMP_TASK_GROUP

>  static void cpu_util_update_eff(struct cgroup_subsys_state *css);

>  static void uclamp_update_root_tg(void)

>  {

>
diff mbox series

Patch

diff --git a/kernel/sched/core.c b/kernel/sched/core.c
index f9a1346a5fa9..f25e3949a5ba 100644
--- a/kernel/sched/core.c
+++ b/kernel/sched/core.c
@@ -1043,6 +1043,7 @@  static inline void uclamp_rq_dec(struct rq *rq, struct task_struct *p)
 		uclamp_rq_dec_id(rq, p, clamp_id);
 }
 
+#ifdef CONFIG_UCLAMP_TASK_GROUP
 static inline void
 uclamp_update_active(struct task_struct *p, enum uclamp_id clamp_id)
 {
@@ -1091,7 +1092,6 @@  uclamp_update_active_tasks(struct cgroup_subsys_state *css,
 	css_task_iter_end(&it);
 }
 
-#ifdef CONFIG_UCLAMP_TASK_GROUP
 static void cpu_util_update_eff(struct cgroup_subsys_state *css);
 static void uclamp_update_root_tg(void)
 {