Module Name:    src
Committed By:   skrll
Date:           Mon Mar 23 10:35:56 UTC 2020

Modified Files:
        src/sys/uvm: uvm_fault.c

Log Message:
Fix UVMHIST build


To generate a diff of this commit:
cvs rdiff -u -r1.223 -r1.224 src/sys/uvm/uvm_fault.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/uvm/uvm_fault.c
diff -u src/sys/uvm/uvm_fault.c:1.223 src/sys/uvm/uvm_fault.c:1.224
--- src/sys/uvm/uvm_fault.c:1.223	Mon Mar 23 10:35:08 2020
+++ src/sys/uvm/uvm_fault.c	Mon Mar 23 10:35:56 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: uvm_fault.c,v 1.223 2020/03/23 10:35:08 skrll Exp $	*/
+/*	$NetBSD: uvm_fault.c,v 1.224 2020/03/23 10:35:56 skrll Exp $	*/
 
 /*
  * Copyright (c) 1997 Charles D. Cranor and Washington University.
@@ -32,7 +32,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uvm_fault.c,v 1.223 2020/03/23 10:35:08 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvm_fault.c,v 1.224 2020/03/23 10:35:56 skrll Exp $");
 
 #include "opt_uvmhist.h"
 
@@ -1219,6 +1219,7 @@ static inline int
 uvm_fault_upper_upgrade(struct uvm_faultinfo *ufi, struct uvm_faultctx *flt,
     struct vm_amap *amap, struct uvm_object *uobj)
 {
+	UVMHIST_FUNC(__func__); UVMHIST_CALLED(maphist);
 
 	KASSERT(amap != NULL);
 	KASSERT(flt->upper_lock_type == rw_lock_op(amap->am_lock));
@@ -1788,6 +1789,8 @@ uvm_fault_lower_upgrade(struct uvm_fault
     struct vm_amap *amap, struct uvm_object *uobj, struct vm_page *uobjpage)
 {
 
+	UVMHIST_FUNC(__func__); UVMHIST_CALLED(maphist);
+
 	KASSERT(uobj != NULL);
 	KASSERT(flt->lower_lock_type == rw_lock_op(uobj->vmobjlock));
 

Reply via email to