+6
−2
Loading
hulk inclusion category: bugfix bugzilla: https://gitee.com/openeuler/kernel/issues/I8XMTL CVE: NA --------------------------- if the error code returned by the cpu_on interface is not -EPERM, no error information is printed. For instance, => res.a0 = PSCI_RET_DENIED (-3) => arm_smccc_hvc(function_id, arg0, arg1, arg2, 0, 0, 0, 0, &res) => invoke_psci_fn = __invoke_psci_fn_hvc => __psci_cpu_on(PSCI_FN_NATIVE(0_2, CPU_ON), cpuid, entry_point) => psci_0_2_cpu_on => cpu_psci_cpu_boot => bringup_cpu => cpuhp_invoke_callback => __cpuhp_invoke_callback_range => cpuhp_up_callbacks => cpu_up When the value of res.a0 is PSCI_RET_DENIED(-3), no information is displayed, indicating that the CPU fails to go online. Signed-off-by:liwei <liwei728@huawei.com>