Commit fb100d78 authored by Rusty Russell's avatar Rusty Russell

lguest: use PGDIR_SHIFT for PAE code to allow different PAGE_OFFSET

We still assume the Guest and Host have the same PAGE_OFFSET settings,
but now we don't assume 0xC0000000.
Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
Cc: Matias Zabaljauregui <zabaljauregui@gmail.com>
parent 4c1ea3dd
...@@ -996,11 +996,9 @@ static unsigned long setup_pagetables(struct lguest *lg, ...@@ -996,11 +996,9 @@ static unsigned long setup_pagetables(struct lguest *lg,
if (copy_to_user(&pgdir[0], &pgd, sizeof(pgd)) != 0) if (copy_to_user(&pgdir[0], &pgd, sizeof(pgd)) != 0)
return -EFAULT; return -EFAULT;
/* /*
* And the third PGD entry (ie. addresses 3G-4G). * And the other PGD entry to make the linear mapping at PAGE_OFFSET
*
* FIXME: This assumes that PAGE_OFFSET for the Guest is 0xC0000000.
*/ */
if (copy_to_user(&pgdir[3], &pgd, sizeof(pgd)) != 0) if (copy_to_user(&pgdir[KERNEL_PGD_BOUNDARY], &pgd, sizeof(pgd)))
return -EFAULT; return -EFAULT;
#else #else
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment