diff options
author | jhb <jhb@FreeBSD.org> | 2010-08-11 23:22:53 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2010-08-11 23:22:53 +0000 |
commit | 1c3734f021a7d3355bb5398297134824bae01846 (patch) | |
tree | 249552957600878d34538b3e89363e53ac6d8b92 /sys/sparc64/include/pmap.h | |
parent | c320859512bcf34cce7e9d6a7d7ce616b7c6a950 (diff) | |
download | FreeBSD-src-1c3734f021a7d3355bb5398297134824bae01846.zip FreeBSD-src-1c3734f021a7d3355bb5398297134824bae01846.tar.gz |
Update various places that store or manipulate CPU masks to use cpumask_t
instead of int or u_int. Since cpumask_t is currently u_int on all
platforms this should just be a cosmetic change.
Diffstat (limited to 'sys/sparc64/include/pmap.h')
-rw-r--r-- | sys/sparc64/include/pmap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sparc64/include/pmap.h b/sys/sparc64/include/pmap.h index 388f751..91e15cb 100644 --- a/sys/sparc64/include/pmap.h +++ b/sys/sparc64/include/pmap.h @@ -61,7 +61,7 @@ struct pmap { struct mtx pm_mtx; struct tte *pm_tsb; vm_object_t pm_tsb_obj; - u_int pm_active; + cpumask_t pm_active; uint32_t pm_gen_count; /* generation count (pmap lock dropped) */ u_int pm_retries; u_int pm_context[MAXCPU]; |