mirror of
https://github.com/opnsense/src.git
synced 2026-04-22 14:49:36 -04:00
Don't write-back the cachelines if we really just want to invalidate them.
Spotted out by: Ian Lepore <freebsd at damnhippie DOT dyndns dot org>
This commit is contained in:
parent
0c04d1850f
commit
e892db8fc3
1 changed files with 1 additions and 1 deletions
|
|
@ -1095,7 +1095,7 @@ _bus_dmamap_fix_user(vm_offset_t buf, bus_size_t len,
|
|||
#else
|
||||
#define l2cache_wb_range(va, pa, size) cpu_l2cache_wb_range(va, size)
|
||||
#define l2cache_wbinv_range(va, pa, size) cpu_l2cache_wbinv_range(va, size)
|
||||
#define l2cache_inv_range(va, pa, size) cpu_l2cache_wbinv_range(va, size)
|
||||
#define l2cache_inv_range(va, pa, size) cpu_l2cache_inv_range(va, size)
|
||||
#endif
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Reference in a new issue