Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCyrill Gorcunov <gorcunov@gmail.com>2018-06-19 22:52:21 +0300
committerAndrei Vagin <avagin@virtuozzo.com>2018-06-20 21:20:43 +0300
commit120b233a6dfea458501fca25b7f4bccae0890bea (patch)
treeac135db931a1aa4c942023244516899accff89fd
parent06c6867bfdeb9ddf2f4543921a2421d97c1f81f3 (diff)
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: Cyrill Gorcunov <gorcunov@gmail.com> Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
-rw-r--r--criu/arch/x86/cpu.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/criu/arch/x86/cpu.c b/criu/arch/x86/cpu.c
index 11a81863f..d5d879e79 100644
--- a/criu/arch/x86/cpu.c
+++ b/criu/arch/x86/cpu.c
@@ -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;