Skip to content

Commit 4698f88

Browse files
jpoimboeIngo Molnar
authored and
Ingo Molnar
committed
sched/debug: Fix 'schedstats=enable' cmdline option
The 'schedstats=enable' option doesn't work, and also produces the following warning during boot: WARNING: CPU: 0 PID: 0 at /home/jpoimboe/git/linux/kernel/jump_label.c:61 static_key_slow_inc+0x8c/0xa0 static_key_slow_inc used before call to jump_label_init Modules linked in: CPU: 0 PID: 0 Comm: swapper Not tainted 4.7.0-rc1+ #25 Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.8.1-20150318_183358- 04/01/2014 0000000000000086 3ae3475a4bea95d4 ffffffff81e03da8 ffffffff8143fc83 ffffffff81e03df8 0000000000000000 ffffffff81e03de8 ffffffff810b1ffb 0000003d00000096 ffffffff823514d0 ffff88007ff197c8 0000000000000000 Call Trace: [<ffffffff8143fc83>] dump_stack+0x85/0xc2 [<ffffffff810b1ffb>] __warn+0xcb/0xf0 [<ffffffff810b207f>] warn_slowpath_fmt+0x5f/0x80 [<ffffffff811e9c0c>] static_key_slow_inc+0x8c/0xa0 [<ffffffff810e07c6>] static_key_enable+0x16/0x40 [<ffffffff8216d633>] setup_schedstats+0x29/0x94 [<ffffffff82148a05>] unknown_bootoption+0x89/0x191 [<ffffffff810d8617>] parse_args+0x297/0x4b0 [<ffffffff82148d61>] start_kernel+0x1d8/0x4a9 [<ffffffff8214897c>] ? set_init_arg+0x55/0x55 [<ffffffff82148120>] ? early_idt_handler_array+0x120/0x120 [<ffffffff821482db>] x86_64_start_reservations+0x2f/0x31 [<ffffffff82148427>] x86_64_start_kernel+0x14a/0x16d The problem is that it tries to update the 'sched_schedstats' static key before jump labels have been initialized. Changing jump_label_init() to be called earlier before parse_early_param() wouldn't fix it: it would still fail trying to poke_text() because mm isn't yet initialized. Instead, just create a temporary '__sched_schedstats' variable which can be copied to the static key later during sched_init() after jump labels have been initialized. Signed-off-by: Josh Poimboeuf <[email protected]> Signed-off-by: Peter Zijlstra (Intel) <[email protected]> Cc: Linus Torvalds <[email protected]> Cc: Matt Fleming <[email protected]> Cc: Mel Gorman <[email protected]> Cc: Peter Zijlstra <[email protected]> Cc: Srikar Dronamraju <[email protected]> Cc: Thomas Gleixner <[email protected]> Fixes: cb25176 ("sched/debug: Make schedstats a runtime tunable that is disabled by default") Link: http://lkml.kernel.org/r/453775fe3433bed65731a583e228ccea806d18cd.1465322027.git.jpoimboe@redhat.com Signed-off-by: Ingo Molnar <[email protected]>
1 parent 9c57259 commit 4698f88

File tree

1 file changed

+21
-5
lines changed

1 file changed

+21
-5
lines changed

kernel/sched/core.c

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2253,9 +2253,11 @@ int sysctl_numa_balancing(struct ctl_table *table, int write,
22532253
#endif
22542254
#endif
22552255

2256+
#ifdef CONFIG_SCHEDSTATS
2257+
22562258
DEFINE_STATIC_KEY_FALSE(sched_schedstats);
2259+
static bool __initdata __sched_schedstats = false;
22572260

2258-
#ifdef CONFIG_SCHEDSTATS
22592261
static void set_schedstats(bool enabled)
22602262
{
22612263
if (enabled)
@@ -2278,11 +2280,16 @@ static int __init setup_schedstats(char *str)
22782280
if (!str)
22792281
goto out;
22802282

2283+
/*
2284+
* This code is called before jump labels have been set up, so we can't
2285+
* change the static branch directly just yet. Instead set a temporary
2286+
* variable so init_schedstats() can do it later.
2287+
*/
22812288
if (!strcmp(str, "enable")) {
2282-
set_schedstats(true);
2289+
__sched_schedstats = true;
22832290
ret = 1;
22842291
} else if (!strcmp(str, "disable")) {
2285-
set_schedstats(false);
2292+
__sched_schedstats = false;
22862293
ret = 1;
22872294
}
22882295
out:
@@ -2293,6 +2300,11 @@ static int __init setup_schedstats(char *str)
22932300
}
22942301
__setup("schedstats=", setup_schedstats);
22952302

2303+
static void __init init_schedstats(void)
2304+
{
2305+
set_schedstats(__sched_schedstats);
2306+
}
2307+
22962308
#ifdef CONFIG_PROC_SYSCTL
22972309
int sysctl_schedstats(struct ctl_table *table, int write,
22982310
void __user *buffer, size_t *lenp, loff_t *ppos)
@@ -2313,8 +2325,10 @@ int sysctl_schedstats(struct ctl_table *table, int write,
23132325
set_schedstats(state);
23142326
return err;
23152327
}
2316-
#endif
2317-
#endif
2328+
#endif /* CONFIG_PROC_SYSCTL */
2329+
#else /* !CONFIG_SCHEDSTATS */
2330+
static inline void init_schedstats(void) {}
2331+
#endif /* CONFIG_SCHEDSTATS */
23182332

23192333
/*
23202334
* fork()/clone()-time setup:
@@ -7487,6 +7501,8 @@ void __init sched_init(void)
74877501
#endif
74887502
init_sched_fair_class();
74897503

7504+
init_schedstats();
7505+
74907506
scheduler_running = 1;
74917507
}
74927508

0 commit comments

Comments
 (0)