summaryrefslogtreecommitdiffstats
path: root/sys/amd64/include/pmap.h
diff options
context:
space:
mode:
authorkib <kib@FreeBSD.org>2010-07-09 20:05:56 +0000
committerkib <kib@FreeBSD.org>2010-07-09 20:05:56 +0000
commit5e9badadafc232a66f795183716dc2ec221a1038 (patch)
treeb4ff0d315f57ea5cc351fd958106a75e3a3d98dc /sys/amd64/include/pmap.h
parent7c09dc242c035943fb8ed54909fd0a8461cb99ba (diff)
downloadFreeBSD-src-5e9badadafc232a66f795183716dc2ec221a1038.zip
FreeBSD-src-5e9badadafc232a66f795183716dc2ec221a1038.tar.gz
For both i386 and amd64 pmap,
- change the type of pm_active to cpumask_t, which it is; - in pmap_remove_pages(), compare with PCPU(curpmap), instead of dereferencing the long chain of pointers [1]. For amd64 pmap, remove the unneeded checks for validity of curpmap in pmap_activate(), since curpmap should be always valid after r209789. Submitted by: alc [1] Reviewed by: alc MFC after: 3 weeks
Diffstat (limited to 'sys/amd64/include/pmap.h')
-rw-r--r--sys/amd64/include/pmap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/amd64/include/pmap.h b/sys/amd64/include/pmap.h
index 6f0b188..53a4d63 100644
--- a/sys/amd64/include/pmap.h
+++ b/sys/amd64/include/pmap.h
@@ -244,7 +244,7 @@ struct pmap {
struct mtx pm_mtx;
pml4_entry_t *pm_pml4; /* KVA of level 4 page table */
TAILQ_HEAD(,pv_chunk) pm_pvchunk; /* list of mappings in pmap */
- u_int pm_active; /* active on cpus */
+ cpumask_t pm_active; /* active on cpus */
uint32_t pm_gen_count; /* generation count (pmap lock dropped) */
u_int pm_retries;
/* spare u_int here due to padding */
OpenPOWER on IntegriCloud