mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 09:41:03 -04:00
If the L2 cache type is PIPT, pass a physical address for a flush.
While this is technically more correct, I don't think it much matters, because the only thing in the tree that calls cpu_flush_dcache() is md(4) and I'm > 99% sure it's bogus that it does so; md has no ability to do anything that can perturb data cache coherency.
This commit is contained in:
parent
fa28fc04f6
commit
b7c1fc50a4
1 changed files with 4 additions and 0 deletions
|
|
@ -410,7 +410,11 @@ cpu_flush_dcache(void *ptr, size_t len)
|
|||
{
|
||||
|
||||
cpu_dcache_wb_range((uintptr_t)ptr, len);
|
||||
#ifdef ARM_L2_PIPT
|
||||
cpu_l2cache_wb_range((uintptr_t)vtophys(ptr), len);
|
||||
#else
|
||||
cpu_l2cache_wb_range((uintptr_t)ptr, len);
|
||||
#endif
|
||||
}
|
||||
|
||||
/* Get current clock frequency for the given cpu id. */
|
||||
|
|
|
|||
Loading…
Reference in a new issue