Module Name: src Committed By: christos Date: Fri Nov 8 02:23:52 UTC 2013
Modified Files: src/sys/arch/xen/x86: x86_xpmap.c Log Message: fix unused variable warnings To generate a diff of this commit: cvs rdiff -u -r1.50 -r1.51 src/sys/arch/xen/x86/x86_xpmap.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/xen/x86/x86_xpmap.c diff -u src/sys/arch/xen/x86/x86_xpmap.c:1.50 src/sys/arch/xen/x86/x86_xpmap.c:1.51 --- src/sys/arch/xen/x86/x86_xpmap.c:1.50 Wed Nov 6 01:23:15 2013 +++ src/sys/arch/xen/x86/x86_xpmap.c Thu Nov 7 21:23:52 2013 @@ -1,4 +1,4 @@ -/* $NetBSD: x86_xpmap.c,v 1.50 2013/11/06 06:23:15 mrg Exp $ */ +/* $NetBSD: x86_xpmap.c,v 1.51 2013/11/08 02:23:52 christos Exp $ */ /* * Copyright (c) 2006 Mathieu Ropert <m...@adviseo.fr> @@ -69,7 +69,7 @@ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: x86_xpmap.c,v 1.50 2013/11/06 06:23:15 mrg Exp $"); +__KERNEL_RCSID(0, "$NetBSD: x86_xpmap.c,v 1.51 2013/11/08 02:23:52 christos Exp $"); #include "opt_xen.h" #include "opt_ddb.h" @@ -1044,6 +1044,7 @@ xen_bootstrap_tables (vaddr_t old_pgd, v cpu_info_primary.ci_kpm_pdirpa = ((paddr_t) bt_cpu_pgd - KERNBASE); } #endif + __USE(pdtpe); /* Now we can safely reclaim space taken by old tables */