aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/lguest/lg.h
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2013-04-22 00:40:41 -0400
committerRusty Russell <rusty@rustcorp.com.au>2013-04-22 02:15:02 -0400
commit86935fc4ee4d95efe01b6c91cd5143fa4c38c02b (patch)
treebac296987d1d5fbb756912e643e7faa23c663e1b /drivers/lguest/lg.h
parent3412b6ae2924e068f9932f841bdea0f2d8424502 (diff)
lguest: map Switcher text whenever we allocate a new pagetable.
It's always to same, so no need to put in the PTE every time we're about to run. Keep a flag to track whether the pagetable has the Switcher entries allocated, and when allocating always initialize the Switcher text PTE. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'drivers/lguest/lg.h')
-rw-r--r--drivers/lguest/lg.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/lguest/lg.h b/drivers/lguest/lg.h
index faac9fc6db22..005929a3fd52 100644
--- a/drivers/lguest/lg.h
+++ b/drivers/lguest/lg.h
@@ -16,6 +16,7 @@
16 16
17struct pgdir { 17struct pgdir {
18 unsigned long gpgdir; 18 unsigned long gpgdir;
19 bool switcher_mapped;
19 pgd_t *pgdir; 20 pgd_t *pgdir;
20}; 21};
21 22