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:
@ -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);
|
||||
|
||||
Reference in New Issue
Block a user