mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
arm64: set SCTLR_UCI bit in SCTLR_EL1
some application such as openjdk will excute DC CVAU at el0, if SCTLR_UCI is not set, it will trap to EL1 which will cause panic. Signed-off-by: Min Le <lemin.lm@antgroup.com>
This commit is contained in:
@@ -47,8 +47,9 @@
|
||||
#define SCTLR_C 1 << 2
|
||||
#define SCTLR_I 1 << 12
|
||||
#define SCTLR_UCT 1 << 15
|
||||
#define SCTLR_UCI 1 << 26
|
||||
|
||||
#define SCTLR_EL1_DEFAULT (SCTLR_M | SCTLR_C | SCTLR_I | SCTLR_UCT)
|
||||
#define SCTLR_EL1_DEFAULT (SCTLR_M | SCTLR_C | SCTLR_I | SCTLR_UCT | SCTLR_UCI)
|
||||
|
||||
// cntkctl_el1: counter-timer kernel control register el1.
|
||||
#define CNTKCTL_EL0PCTEN 1 << 0
|
||||
|
||||
Reference in New Issue
Block a user