Commit 39a2602f authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Andrei Vagin

x86: cpu -- Proceed even if xsavec detected for dev reason

Andrew reported that previously he been able to c/r even
on the machine with xsavec enabled, so allow to process
for now.

P.S.I'm investigating the problem and to not block testing
process lets permit passing with xsaves bit present.
Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@gmail.com>
Signed-off-by: 's avatarAndrei Vagin <avagin@virtuozzo.com>
parent bda25876
......@@ -36,8 +36,9 @@ static int cpu_has_unsupported_features(void)
* exit early if present.
*/
if (compel_cpu_has_feature(X86_FEATURE_XSAVES)) {
pr_err("Unsupported compact xsave frame on runtime cpu present\n");
return 1;
pr_warn("Unsupported compact xsave frame on runtime cpu present\n");
pr_warn("FIXME: Dazen and confused, but proceed for development reason\n");
return 0;
}
return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment