From b62e66eb1fba1fbfb7f8462f66239861d36df736 Mon Sep 17 00:00:00 2001 From: Olivier Houchard Date: Sun, 5 Dec 2004 22:46:30 +0000 Subject: [PATCH] Remove an unused field from the struct pv_entry. While I'm there, fix style. --- sys/arm/include/pmap.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/sys/arm/include/pmap.h b/sys/arm/include/pmap.h index fc870c9cdbde..2080da31e054 100644 --- a/sys/arm/include/pmap.h +++ b/sys/arm/include/pmap.h @@ -160,10 +160,9 @@ extern pmap_t kernel_pmap; * mappings of that page. An entry is a pv_entry_t, the list is pv_table. */ typedef struct pv_entry { - pmap_t pv_pmap; /* pmap where mapping lies */ - vm_offset_t pv_va; /* virtual address for mapping */ - TAILQ_ENTRY(pv_entry) pv_list; - vm_page_t pv_ptem; /* VM page for pte */ + pmap_t pv_pmap; /* pmap where mapping lies */ + vm_offset_t pv_va; /* virtual address for mapping */ + TAILQ_ENTRY(pv_entry) pv_list; int pv_flags; /* flags (wired, etc...) */ } *pv_entry_t;