Add allow_oversubscribe kernel argument

It's not allowed in the default setting.
Execute mcreboot.sh with -O option to allow it.

refs #1072
This commit is contained in:
Masamichi Takagi
2018-03-10 13:08:38 +09:00
parent b1ea6eb82a
commit fe42481d6f
5 changed files with 19 additions and 2 deletions

View File

@ -150,6 +150,12 @@ static void parse_kargs(void)
if (ptr) {
idle_halt = 1;
}
/* allow_oversubscribe option */
ptr = find_command_line("allow_oversubscribe");
if (ptr) {
allow_oversubscribe = 1;
}
}
extern void ihk_mc_get_boot_time(unsigned long *tv_sec, unsigned long *tv_nsec);