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: 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/
This commit is contained in:
Tejun Heo 2024-09-07 08:11:25 -10:00
parent 02e65e1c12
commit 3ac352797c

View File

@ -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,
};