Module Name: src
Committed By: ad
Date: Thu Jan 2 21:17:14 UTC 2020
Modified Files:
src/sys/arch/x86/x86: pmap.c
Log Message:
Remove unused argment to pmap_remove_pv().
To generate a diff of this commit:
cvs rdiff -u -r1.350 -r1.351 src/sys/arch/x86/x86/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/x86/x86/pmap.c
diff -u src/sys/arch/x86/x86/pmap.c:1.350 src/sys/arch/x86/x86/pmap.c:1.351
--- src/sys/arch/x86/x86/pmap.c:1.350 Thu Jan 2 19:20:02 2020
+++ src/sys/arch/x86/x86/pmap.c Thu Jan 2 21:17:13 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap.c,v 1.350 2020/01/02 19:20:02 ad Exp $ */
+/* $NetBSD: pmap.c,v 1.351 2020/01/02 21:17:13 ad Exp $ */
/*
* Copyright (c) 2008, 2010, 2016, 2017, 2019 The NetBSD Foundation, Inc.
@@ -130,7 +130,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.350 2020/01/02 19:20:02 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.351 2020/01/02 21:17:13 ad Exp $");
#include "opt_user_ldt.h"
#include "opt_lockdebug.h"
@@ -1972,8 +1972,7 @@ pmap_enter_pv(struct pmap_page *pp, stru
* => we return the removed pve
*/
static struct pv_entry *
-pmap_remove_pv(struct pmap *pmap, struct pmap_page *pp, struct vm_page *ptp,
- vaddr_t va)
+pmap_remove_pv(struct pmap_page *pp, struct vm_page *ptp, vaddr_t va)
{
struct pv_entry **hh;
struct pv_entry *pve;