MFC 196643

Swap the start/end virtual addresses in pmap_invalidate_cache_range().

This fixes the functionality on non SelfSnoop hardware.

Found by:	rnoland
Submitted by:	alc
Reviewed by:	kib
Approved by:	re (rwatson)
This commit is contained in:
rnoland 2009-09-01 16:41:28 +00:00
parent c83e56f187
commit b29642064f
2 changed files with 4 additions and 4 deletions

View File

@ -943,8 +943,8 @@ pmap_invalidate_cache_range(vm_offset_t sva, vm_offset_t eva)
* coherence domain.
*/
mfence();
for (; eva < sva; eva += cpu_clflush_line_size)
clflush(eva);
for (; sva < eva; sva += cpu_clflush_line_size)
clflush(sva);
mfence();
} else {

View File

@ -967,8 +967,8 @@ pmap_invalidate_cache_range(vm_offset_t sva, vm_offset_t eva)
* coherence domain.
*/
mfence();
for (; eva < sva; eva += cpu_clflush_line_size)
clflush(eva);
for (; sva < eva; sva += cpu_clflush_line_size)
clflush(sva);
mfence();
} else {