2024-02-08 09:44:12

by zhaoyang.huang

[permalink] [raw]
Subject: [PATCH 1/3] sched: fix compiling error on kernel/sched/sched.h

From: Zhaoyang Huang <[email protected]>

Below compiling error reported. fix it.

block/../kernel/sched/sched.h: In function ‘update_current_exec_runtime’:
block/../kernel/sched/sched.h:3287:2: error: implicit declaration of function ‘account_group_exec_runtime’; did you mean ‘sched_group_rt_runtime’? [-Werror=implicit-function-declaration]
account_group_exec_runtime(curr, delta_exec);

Signed-off-by: Zhaoyang Huang <[email protected]>
---
kernel/sched/sched.h | 1 +
1 file changed, 1 insertion(+)

diff --git a/kernel/sched/sched.h b/kernel/sched/sched.h
index 04846272409c..b0cffc9c0f0d 100644
--- a/kernel/sched/sched.h
+++ b/kernel/sched/sched.h
@@ -20,6 +20,7 @@
#include <linux/sched/task_flags.h>
#include <linux/sched/task.h>
#include <linux/sched/topology.h>
+#include <linux/sched/cputime.h>

#include <linux/atomic.h>
#include <linux/bitmap.h>
--
2.25.1