Module Name: src
Committed By: kre
Date: Sat May 4 11:15:49 UTC 2019
Modified Files:
src/sys/arch/xen/x86: xenfunc.c
Log Message:
More of maxv's "switch to proper types" - hopefully unbreak i386 build.
To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 src/sys/arch/xen/x86/xenfunc.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/xenfunc.c
diff -u src/sys/arch/xen/x86/xenfunc.c:1.25 src/sys/arch/xen/x86/xenfunc.c:1.26
--- src/sys/arch/xen/x86/xenfunc.c:1.25 Sat May 4 07:20:22 2019
+++ src/sys/arch/xen/x86/xenfunc.c Sat May 4 11:15:49 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: xenfunc.c,v 1.25 2019/05/04 07:20:22 maxv Exp $ */
+/* $NetBSD: xenfunc.c,v 1.26 2019/05/04 11:15:49 kre Exp $ */
/*
* Copyright (c) 2004 Christian Limpach.
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: xenfunc.c,v 1.25 2019/05/04 07:20:22 maxv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: xenfunc.c,v 1.26 2019/05/04 11:15:49 kre Exp $");
#include <sys/param.h>
@@ -138,7 +138,7 @@ rcr0(void)
#ifndef __x86_64__
void
-lcr3(vaddr_t val)
+lcr3(register_t val)
{
int s = splvm(); /* XXXSMP */
xpq_queue_pt_switch(xpmap_ptom_masked(val));