aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/mm.c
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-09-14 13:13:10 +0000
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-09-14 13:13:10 +0000
commit79434e94bd5c15cb865a1f7f61b6dc82fd731e4a (patch)
treeefbdd343b52ca044f0069aee15324e081d8345e4 /extras/mini-os/mm.c
parent714ecf5c5b2a3fc3099ce63db28b18a0cba30c84 (diff)
downloadxen-79434e94bd5c15cb865a1f7f61b6dc82fd731e4a.tar.gz
xen-79434e94bd5c15cb865a1f7f61b6dc82fd731e4a.tar.bz2
xen-79434e94bd5c15cb865a1f7f61b6dc82fd731e4a.zip
Get rid of anonymous unions in public header files.
Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'extras/mini-os/mm.c')
-rw-r--r--extras/mini-os/mm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/mini-os/mm.c b/extras/mini-os/mm.c
index 72970bca92..700805723e 100644
--- a/extras/mini-os/mm.c
+++ b/extras/mini-os/mm.c
@@ -432,7 +432,7 @@ void build_pagetable(unsigned long *start_pfn, unsigned long *max_pfn)
/* Pin the page to provide correct protection */
pin_request.cmd = MMUEXT_PIN_L1_TABLE;
- pin_request.mfn = pfn_to_mfn(pt_frame);
+ pin_request.arg1.mfn = pfn_to_mfn(pt_frame);
if(HYPERVISOR_mmuext_op(&pin_request, 1, NULL, DOMID_SELF) < 0)
{
printk("ERROR: pinning failed\n");