Module Name: src
Committed By: skrll
Date: Sat Aug 22 13:59:16 UTC 2020
Modified Files:
src/sys/uvm/pmap: pmap_segtab.c
Log Message:
Trailing whitespace
To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 src/sys/uvm/pmap/pmap_segtab.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/pmap/pmap_segtab.c
diff -u src/sys/uvm/pmap/pmap_segtab.c:1.20 src/sys/uvm/pmap/pmap_segtab.c:1.21
--- src/sys/uvm/pmap/pmap_segtab.c:1.20 Thu Aug 20 23:36:45 2020
+++ src/sys/uvm/pmap/pmap_segtab.c Sat Aug 22 13:59:16 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap_segtab.c,v 1.20 2020/08/20 23:36:45 mrg Exp $ */
+/* $NetBSD: pmap_segtab.c,v 1.21 2020/08/22 13:59:16 skrll Exp $ */
/*-
* Copyright (c) 1998, 2001 The NetBSD Foundation, Inc.
@@ -67,7 +67,7 @@
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap_segtab.c,v 1.20 2020/08/20 23:36:45 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap_segtab.c,v 1.21 2020/08/22 13:59:16 skrll Exp $");
/*
* Manages physical address maps.
@@ -132,7 +132,7 @@ struct pmap_segtab_info {
kmutex_t pmap_segtab_lock __cacheline_aligned;
/*
- * Check that a seg_tab[] array is empty.
+ * Check that a seg_tab[] array is empty.
*
* This is used when allocating or freeing a pmap_segtab_t. The stp
* should be unused -- meaning, none of the seg_tab[] pointers are
@@ -182,7 +182,7 @@ pmap_check_ptes(pt_entry_t *pte, const c
if (!pte_zero_p(pte[j]))
UVMHIST_LOG(pmapsegtabhist,
"pte[%zu] = %#"PRIxPTE,
- j, pte_value(pte[j]), 0, 0);
+ j, pte_value(pte[j]), 0, 0);
#endif
panic("%s: pte[%zu] entry at %p not 0 (%#"PRIxPTE")",
caller, i, &pte[i], pte_value(pte[i]));
@@ -281,7 +281,7 @@ pmap_segtab_release(pmap_t pmap, pmap_se
pt_entry_t *pte = stp->seg_tab[i];
if (pte == NULL)
continue;
- pmap_check_ptes(pte, __func__);
+ pmap_check_ptes(pte, __func__);
#if defined(__mips_n64) && PAGE_SIZE == 8192
/*