[PATCH sched_ext/for-6.12] sched_ext; Add missing static to scx_dump_data

Tejun Heo posted 1 patch 2 months, 3 weeks ago
kernel/sched/ext.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH sched_ext/for-6.12] sched_ext; Add missing static to scx_dump_data
Posted by Tejun Heo 2 months, 3 weeks ago
From 9d547798509340cb4f3fd95accaf78178ee353ae Mon Sep 17 00:00:00 2001
From: Tejun Heo <tj@kernel.org>
Date: Sat, 7 Sep 2024 08:11:25 -1000

scx_dump_data is only used inside ext.c but doesn't have static. Add it.

Signed-off-by: Tejun Heo <tj@kernel.org>
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202409070218.RB5WsQ07-lkp@intel.com/
---
Applied to sched_ext/for-6.12.

Thanks.

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

diff --git a/kernel/sched/ext.c b/kernel/sched/ext.c
index 02cc45f7d81b..d9b6882760d9 100644
--- a/kernel/sched/ext.c
+++ b/kernel/sched/ext.c
@@ -968,7 +968,7 @@ struct scx_dump_data {
 	struct scx_bstr_buf	buf;
 };
 
-struct scx_dump_data scx_dump_data = {
+static struct scx_dump_data scx_dump_data = {
 	.cpu			= -1,
 };
 
-- 
2.46.0