mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Reduce the size of the array used to store the TLB mappings for the kernel
stack from 3 to 2. We only map in 2 pages for the kernel stack. Approved by: imp (mentor)
This commit is contained in:
parent
676e6574a1
commit
ae50475f5d
1 changed files with 1 additions and 1 deletions
|
|
@ -44,7 +44,7 @@
|
|||
*/
|
||||
struct mdthread {
|
||||
int md_flags; /* machine-dependent flags */
|
||||
int md_upte[KSTACK_PAGES]; /* ptes for mapping u pcb */
|
||||
int md_upte[KSTACK_PAGES - 1]; /* ptes for mapping u pcb */
|
||||
int md_ss_addr; /* single step address for ptrace */
|
||||
int md_ss_instr; /* single step instruction for ptrace */
|
||||
register_t md_saved_intr;
|
||||
|
|
|
|||
Loading…
Reference in a new issue