Module Name:    src
Committed By:   riastradh
Date:           Sun Aug 21 10:18:11 UTC 2022

Modified Files:
        src/sys/rump/librump/rumpkern/arch/x86: rump_x86_cpu.c

Log Message:
rump/x86: Need x86/cpufunc.h for declaration of wbinvd.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 \
    src/sys/rump/librump/rumpkern/arch/x86/rump_x86_cpu.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/rump/librump/rumpkern/arch/x86/rump_x86_cpu.c
diff -u src/sys/rump/librump/rumpkern/arch/x86/rump_x86_cpu.c:1.4 src/sys/rump/librump/rumpkern/arch/x86/rump_x86_cpu.c:1.5
--- src/sys/rump/librump/rumpkern/arch/x86/rump_x86_cpu.c:1.4	Tue Jan 26 23:12:18 2016
+++ src/sys/rump/librump/rumpkern/arch/x86/rump_x86_cpu.c	Sun Aug 21 10:18:11 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: rump_x86_cpu.c,v 1.4 2016/01/26 23:12:18 pooka Exp $	*/
+/*	$NetBSD: rump_x86_cpu.c,v 1.5 2022/08/21 10:18:11 riastradh Exp $	*/
 
 /*
  * Copyright (c) 2008 Antti Kantee.  All Rights Reserved.
@@ -29,13 +29,15 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rump_x86_cpu.c,v 1.4 2016/01/26 23:12:18 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump_x86_cpu.c,v 1.5 2022/08/21 10:18:11 riastradh Exp $");
 
 #include <sys/param.h>
 #include <sys/kmem.h>
 
 #include <machine/cpu.h>
 
+#include <x86/cpufunc.h>
+
 #include <rump-sys/kern.h>
 
 #include "rump_curlwp.h"

Reply via email to