summaryrefslogtreecommitdiff
path: root/kernel/memlayout.h
diff options
context:
space:
mode:
authorFrans Kaashoek <[email protected]>2019-07-19 08:38:51 -0400
committerFrans Kaashoek <[email protected]>2019-07-19 08:38:51 -0400
commit91566327012cad2ca99df47f9321dfc012d8a7ff (patch)
treee9cb082d502a9f56857270264bea254149a3318d /kernel/memlayout.h
parentb924e44f06c9c0882a2cffe6c9215b12c5aee2e6 (diff)
downloadxv6-labs-91566327012cad2ca99df47f9321dfc012d8a7ff.tar.gz
xv6-labs-91566327012cad2ca99df47f9321dfc012d8a7ff.tar.bz2
xv6-labs-91566327012cad2ca99df47f9321dfc012d8a7ff.zip
One way of supporting a guard page below kstack: allocate kstacks in
procinit() and map them high up (below TRAMPOLNE) with an empty mapping below each stack. Never free a kernel stack. Another way would be to allocate and map them dynamically, but then we need to reload page table when switching processes in scheduler() and/or have a kernel pagetable per proc (if we want k->stack to be the same virtual address in each process). One gotcha: kernel addresses are not equal to physical addresses for stack addresses. A stack address must be translated if we need its physical address (e.g., virtio passes a stack address to the disk).
Diffstat (limited to 'kernel/memlayout.h')
-rw-r--r--kernel/memlayout.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/memlayout.h b/kernel/memlayout.h
index 219c308..13d1705 100644
--- a/kernel/memlayout.h
+++ b/kernel/memlayout.h
@@ -53,3 +53,4 @@
// map the trampoline page to the highest address,
// in both user and kernel space.
#define TRAMPOLINE (MAXVA - PGSIZE)
+#define KSTACK(p) ((TRAMPOLINE-PGSIZE)-p*2*PGSIZE)