diff options
author | Matias Zabaljauregui | 2008-09-29 06:40:07 +0200 |
---|---|---|
committer | Rusty Russell | 2008-12-29 23:56:11 +0100 |
commit | 58a24566449892dda409b9ad92c2e56c76c5670c (patch) | |
tree | 4dfe2305dfd078c71d949ea8cc6c9cc6e2679494 /include | |
parent | kvm-s390: implement config_changed for virtio on s390 (diff) | |
download | kernel-qcow2-linux-58a24566449892dda409b9ad92c2e56c76c5670c.tar.gz kernel-qcow2-linux-58a24566449892dda409b9ad92c2e56c76c5670c.tar.xz kernel-qcow2-linux-58a24566449892dda409b9ad92c2e56c76c5670c.zip |
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 bd0eba760522..a53407a4165c 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) */ |