Commit 3ac35279 authored by Tejun Heo's avatar Tejun Heo
Browse files

sched_ext: Add missing static to scx_dump_data



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

Signed-off-by: default avatarTejun Heo <tj@kernel.org>
Reported-by: default avatarkernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202409070218.RB5WsQ07-lkp@intel.com/
parent 02e65e1c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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,
};