Lines Matching refs:str
540 static int __init reboot_setup(char *str)
552 if (!strncmp(str, "panic_", 6)) {
554 str += 6;
559 switch (*str) {
573 if (isdigit(*(str + 1))) {
574 reboot_cpu = simple_strtoul(str + 1, NULL, 0);
575 } else if (str[1] == 'm' && str[2] == 'p' && isdigit(*(str + 3))) {
576 reboot_cpu = simple_strtoul(str + 3, NULL, 0);
599 reboot_type = *str;
607 str = strchr(str, ',');
608 if (str) {
609 str++;