mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Switch off explicit broadcasting of the TLB flush operations for PJ4B CPU
Since CPU_MV_PJ4B describes ARMv7 compliant CPU there is no need for sending an IPI each time when TLB is flushed in any way. Tested by: kevlo
This commit is contained in:
parent
e0b4b3a74f
commit
2923b75ea3
1 changed files with 1 additions and 1 deletions
|
|
@ -188,7 +188,7 @@ extern u_int cputype;
|
|||
#else
|
||||
void tlb_broadcast(int);
|
||||
|
||||
#ifdef CPU_CORTEXA
|
||||
#if defined(CPU_CORTEXA) || defined(CPU_MV_PJ4B)
|
||||
#define TLB_BROADCAST /* No need to explicitely send an IPI */
|
||||
#else
|
||||
#define TLB_BROADCAST tlb_broadcast(7)
|
||||
|
|
|
|||
Loading…
Reference in a new issue