diff options
author | Matias Zabaljauregui <zabaljauregui@gmail.com> | 2008-09-29 01:40:07 -0300 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2008-12-30 09:26:11 +1030 |
commit | 58a24566449892dda409b9ad92c2e56c76c5670c (patch) | |
tree | 4dfe2305dfd078c71d949ea8cc6c9cc6e2679494 /include | |
parent | be3c5832d51174ef7f21cefd6ad612dabdcb62fd (diff) | |
download | kernel_samsung_espresso10-58a24566449892dda409b9ad92c2e56c76c5670c.zip kernel_samsung_espresso10-58a24566449892dda409b9ad92c2e56c76c5670c.tar.gz kernel_samsung_espresso10-58a24566449892dda409b9ad92c2e56c76c5670c.tar.bz2 |
lguest: move the initial guest page table creation code to the host
This patch moves the initial guest page table creation code to the host,
so the launcher keeps working with PAE enabled configs.
Signed-off-by: Matias Zabaljauregui <zabaljauregui@gmail.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/lguest_launcher.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/lguest_launcher.h b/include/linux/lguest_launcher.h index bd0eba7..a53407a 100644 --- a/include/linux/lguest_launcher.h +++ b/include/linux/lguest_launcher.h @@ -54,7 +54,7 @@ struct lguest_vqconfig { /* Write command first word is a request. */ enum lguest_req { - LHREQ_INITIALIZE, /* + base, pfnlimit, pgdir, start */ + LHREQ_INITIALIZE, /* + base, pfnlimit, start */ LHREQ_GETDMA, /* No longer used */ LHREQ_IRQ, /* + irq */ LHREQ_BREAK, /* + on/off flag (on blocks until someone does off) */ |