diff options
author | jake <jake@FreeBSD.org> | 2002-03-17 00:56:41 +0000 |
---|---|---|
committer | jake <jake@FreeBSD.org> | 2002-03-17 00:56:41 +0000 |
commit | 34dcf8975d103d034d7e8b6788c0645cc93af254 (patch) | |
tree | 8cbe6dabf99b708d371412e48b9c89cb8897e02b /sys/fs/ntfs | |
parent | 80729196189279faca005d50e34c4dfc09122e3c (diff) | |
download | FreeBSD-src-34dcf8975d103d034d7e8b6788c0645cc93af254.zip FreeBSD-src-34dcf8975d103d034d7e8b6788c0645cc93af254.tar.gz |
Convert all pmap_kenter/pmap_kremove pairs in MI code to use pmap_qenter/
pmap_qremove. pmap_kenter is not safe to use in MI code because it is not
guaranteed to flush the mapping from the tlb on all cpus. If the process
in question is preempted and migrates cpus between the call to pmap_kenter
and pmap_kremove, the original cpu will be left with stale mappings in its
tlb. This is currently not a problem for i386 because we do not use PG_G on
SMP, and thus all mappings are flushed from the tlb on context switches, not
just user mappings. This is not the case on all architectures, and if PG_G
is to be used with SMP on i386 it will be a problem. This was committed by
peter earlier as part of his fine grained tlb shootdown work for i386, which
was backed out for other reasons.
Reviewed by: peter
Diffstat (limited to 'sys/fs/ntfs')
0 files changed, 0 insertions, 0 deletions