mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 17:22:46 -04:00
Fix r217688. We need to call init_param1() before we use msgbufsize,
now that the size of the message buffer is a tunable.
This commit is contained in:
parent
4cdbe2b967
commit
b2b953afee
1 changed files with 3 additions and 1 deletions
|
|
@ -434,6 +434,9 @@ initarm(void *mdp, void *unused __unused)
|
|||
valloc_pages(abtstack, ABT_STACK_SIZE);
|
||||
valloc_pages(undstack, UND_STACK_SIZE);
|
||||
valloc_pages(kernelstack, KSTACK_PAGES);
|
||||
|
||||
init_param1();
|
||||
|
||||
valloc_pages(msgbufpv, round_page(msgbufsize) / PAGE_SIZE);
|
||||
|
||||
/*
|
||||
|
|
@ -591,7 +594,6 @@ initarm(void *mdp, void *unused __unused)
|
|||
physmap_init();
|
||||
|
||||
/* Do basic tuning, hz etc */
|
||||
init_param1();
|
||||
init_param2(physmem);
|
||||
kdb_init();
|
||||
return ((void *)(kernelstack.pv_va + USPACE_SVC_STACK_TOP -
|
||||
|
|
|
|||
Loading…
Reference in a new issue