mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-09 23:39:18 +00:00
xtensa: ISS: don't allocate memory in platform_setup
Memory allocator is not initialized at that point yet, use static array instead. Cc: stable@vger.kernel.org Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
This commit is contained in:
parent
57361846b5
commit
ef439d49e0
@ -78,12 +78,16 @@ static struct notifier_block iss_panic_block = {
|
|||||||
|
|
||||||
void __init platform_setup(char **p_cmdline)
|
void __init platform_setup(char **p_cmdline)
|
||||||
{
|
{
|
||||||
|
static void *argv[COMMAND_LINE_SIZE / sizeof(void *)] __initdata;
|
||||||
|
static char cmdline[COMMAND_LINE_SIZE] __initdata;
|
||||||
int argc = simc_argc();
|
int argc = simc_argc();
|
||||||
int argv_size = simc_argv_size();
|
int argv_size = simc_argv_size();
|
||||||
|
|
||||||
if (argc > 1) {
|
if (argc > 1) {
|
||||||
void **argv = alloc_bootmem(argv_size);
|
if (argv_size > sizeof(argv)) {
|
||||||
char *cmdline = alloc_bootmem(argv_size);
|
pr_err("%s: command line too long: argv_size = %d\n",
|
||||||
|
__func__, argv_size);
|
||||||
|
} else {
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
cmdline[0] = 0;
|
cmdline[0] = 0;
|
||||||
@ -96,6 +100,7 @@ void __init platform_setup(char **p_cmdline)
|
|||||||
}
|
}
|
||||||
*p_cmdline = cmdline;
|
*p_cmdline = cmdline;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
atomic_notifier_chain_register(&panic_notifier_list, &iss_panic_block);
|
atomic_notifier_chain_register(&panic_notifier_list, &iss_panic_block);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user