Module Name: src Committed By: skrll Date: Sun Apr 19 08:50:54 UTC 2020
Modified Files: src/sys/arch/arm/arm32: pmap.c Log Message: Fix typo in UVMHIST_LOG To generate a diff of this commit: cvs rdiff -u -r1.408 -r1.409 src/sys/arch/arm/arm32/pmap.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/arm/arm32/pmap.c diff -u src/sys/arch/arm/arm32/pmap.c:1.408 src/sys/arch/arm/arm32/pmap.c:1.409 --- src/sys/arch/arm/arm32/pmap.c:1.408 Sat Apr 18 10:46:32 2020 +++ src/sys/arch/arm/arm32/pmap.c Sun Apr 19 08:50:54 2020 @@ -1,4 +1,4 @@ -/* $NetBSD: pmap.c,v 1.408 2020/04/18 10:46:32 skrll Exp $ */ +/* $NetBSD: pmap.c,v 1.409 2020/04/19 08:50:54 skrll Exp $ */ /* * Copyright 2003 Wasabi Systems, Inc. @@ -192,7 +192,7 @@ #endif #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.408 2020/04/18 10:46:32 skrll Exp $"); +__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.409 2020/04/19 08:50:54 skrll Exp $"); #include <sys/atomic.h> #include <sys/param.h> @@ -2760,7 +2760,7 @@ pmap_flush_page(struct vm_page_md *md, p KASSERT(!(md->pvh_attrs & PVF_NC)); - UVMHIST_LOg(maphist, "md %#jx (attrs=%#jx)",(uintptr_t)md, + UVMHIST_LOG(maphist, "md %#jx (attrs=%#jx)",(uintptr_t)md, md->pvh_attrs); const size_t scache_line_size = arm_scache.dcache_line_size;