diff options
author | Matias Zabaljauregui <matias.zabaljauregui@cern.ch> | 2007-10-21 21:03:33 -0400 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2007-10-23 01:49:53 -0400 |
commit | df29f43e650df29456804dabdb2611de914e7c0f (patch) | |
tree | 2f8de4a2f1b7c4141e710123fc86db266f507d83 /drivers/lguest/hypercalls.c | |
parent | 47aee45ae3c708ab678e09abfba0efaf6ca0e87a (diff) |
Pagetables to use normal kernel types
This is my first step in the migration of page_tables.c to the kernel
types and functions/macros (2.6.23-rc3). Seems to be working OK.
Signed-off-by: Matias Zabaljauregui <matias.zabaljauregui@cern.ch>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'drivers/lguest/hypercalls.c')
-rw-r--r-- | drivers/lguest/hypercalls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/lguest/hypercalls.c b/drivers/lguest/hypercalls.c index 2859a7687288..02d0ae268267 100644 --- a/drivers/lguest/hypercalls.c +++ b/drivers/lguest/hypercalls.c | |||
@@ -83,7 +83,7 @@ static void do_hcall(struct lguest *lg, struct hcall_args *args) | |||
83 | guest_set_stack(lg, args->arg1, args->arg2, args->arg3); | 83 | guest_set_stack(lg, args->arg1, args->arg2, args->arg3); |
84 | break; | 84 | break; |
85 | case LHCALL_SET_PTE: | 85 | case LHCALL_SET_PTE: |
86 | guest_set_pte(lg, args->arg1, args->arg2, mkgpte(args->arg3)); | 86 | guest_set_pte(lg, args->arg1, args->arg2, __pte(args->arg3)); |
87 | break; | 87 | break; |
88 | case LHCALL_SET_PMD: | 88 | case LHCALL_SET_PMD: |
89 | guest_set_pmd(lg, args->arg1, args->arg2); | 89 | guest_set_pmd(lg, args->arg1, args->arg2); |