On 11 January 2018 at 05:59, gengdongjiu <gengdongjiu@xxxxxxxxxx> wrote: > Hi Peter. > > On 2018/1/10 1:30, Peter Maydell wrote: >> On 28 December 2017 at 05:54, Dongjiu Geng <gengdongjiu@xxxxxxxxxx> wrote: >>> + >>> + /* This exception comes from lower or current exception level. */ >>> + if ((cpsr & 0xf) == PSTATE_MODE_EL0t) { >> >> This looks like it'll be wrong for AArch32 guests (which you can >> still have with KVM with a 64-bit host), and even for AArch32 >> userspace in a 64-bit guest. The correct way to find out what the >> current EL is is to use arm_current_el(). > sorry, in the OS(include guest OS), for software error recovery, > we only support AArch64 kernel, not support AArch32 > kernel or AArch32 user space. Nope, you must handle AArch32 EL1 correctly in some way, even if that is only "this guest CPU doesn't support RAS notification and we will not notify it". And you must absolutely support AArch32 EL0, that's a requirement for getting this merged. It's not difficult. thanks -- PMM