git: f8b05837c606 - stable/13 - arm64, riscv: removed unused struct pv_addr

From: Mitchell Horne <mhorne_at_FreeBSD.org>
Date: Thu, 06 Jun 2024 15:54:59 UTC
The branch stable/13 has been updated by mhorne:

URL: https://cgit.FreeBSD.org/src/commit/?id=f8b05837c606a0d4244245bb17a86323cb4c8122

commit f8b05837c606a0d4244245bb17a86323cb4c8122
Author:     Mitchell Horne <mhorne@FreeBSD.org>
AuthorDate: 2024-05-24 13:53:14 +0000
Commit:     Mitchell Horne <mhorne@FreeBSD.org>
CommitDate: 2024-06-06 15:54:35 +0000

    arm64, riscv: removed unused struct pv_addr
    
    No functional change.
    
    Reviewed by:    markj
    MFC after:      3 days
    Sponsored by:   The FreeBSD Foundation
    Differential Revision:  https://reviews.freebsd.org/D45322
    
    (cherry picked from commit b5e17840de65ff196b2398211b68ce96d6919f2c)
---
 sys/arm64/include/pmap.h | 10 ----------
 sys/riscv/include/pmap.h | 10 ----------
 2 files changed, 20 deletions(-)

diff --git a/sys/arm64/include/pmap.h b/sys/arm64/include/pmap.h
index a8e1041163be..ebbc6e25c415 100644
--- a/sys/arm64/include/pmap.h
+++ b/sys/arm64/include/pmap.h
@@ -64,16 +64,6 @@ struct md_page {
 	vm_memattr_t		pv_memattr;
 };
 
-/*
- * This structure is used to hold a virtual<->physical address
- * association and is used mostly by bootstrap code
- */
-struct pv_addr {
-	SLIST_ENTRY(pv_addr) pv_list;
-	vm_offset_t	pv_va;
-	vm_paddr_t	pv_pa;
-};
-
 enum pmap_stage {
 	PM_INVALID,
 	PM_STAGE1,
diff --git a/sys/riscv/include/pmap.h b/sys/riscv/include/pmap.h
index b93117b97ba8..1bc08855ee98 100644
--- a/sys/riscv/include/pmap.h
+++ b/sys/riscv/include/pmap.h
@@ -66,16 +66,6 @@ struct md_page {
 	vm_memattr_t		pv_memattr;
 };
 
-/*
- * This structure is used to hold a virtual<->physical address
- * association and is used mostly by bootstrap code
- */
-struct pv_addr {
-	SLIST_ENTRY(pv_addr) pv_list;
-	vm_offset_t	pv_va;
-	vm_paddr_t	pv_pa;
-};
-
 struct pmap {
 	struct mtx		pm_mtx;
 	struct pmap_statistics	pm_stats;	/* pmap statictics */