Module Name: src
Committed By: kre
Date: Mon Mar 20 04:35:04 UTC 2017
Modified Files:
src/sys/uvm: uvm_bio.c
Log Message:
Perhaps fix printf format for KASSERTMSG (unbreak i386 build maybe).
This can be revisited by anyone who wants to do things better...
To generate a diff of this commit:
cvs rdiff -u -r1.84 -r1.85 src/sys/uvm/uvm_bio.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_bio.c
diff -u src/sys/uvm/uvm_bio.c:1.84 src/sys/uvm/uvm_bio.c:1.85
--- src/sys/uvm/uvm_bio.c:1.84 Sun Mar 19 23:47:46 2017
+++ src/sys/uvm/uvm_bio.c Mon Mar 20 04:35:04 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: uvm_bio.c,v 1.84 2017/03/19 23:47:46 riastradh Exp $ */
+/* $NetBSD: uvm_bio.c,v 1.85 2017/03/20 04:35:04 kre Exp $ */
/*
* Copyright (c) 1998 Chuck Silvers.
@@ -34,7 +34,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uvm_bio.c,v 1.84 2017/03/19 23:47:46 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvm_bio.c,v 1.85 2017/03/20 04:35:04 kre Exp $");
#include "opt_uvmhist.h"
#include "opt_ubc.h"
@@ -348,7 +348,7 @@ ubc_fault(struct uvm_faultinfo *ufi, vad
if ((access_type & VM_PROT_WRITE) != 0) {
KASSERTMSG((trunc_page(umap->writeoff) <= slot_offset),
- "out of range write: slot=0x%lx off=0x%lx",
+ "out of range write: slot=0x%lx off=0x%llx",
slot_offset, umap->writeoff);
KASSERTMSG((slot_offset < umap->writeoff + umap->writelen),
"out of range write: slot=0x%lx off=0x%lx len=0x%lx",