diff --git a/Documentation/criu.txt b/Documentation/criu.txt index 4fc623b20..003d748ce 100644 --- a/Documentation/criu.txt +++ b/Documentation/criu.txt @@ -322,7 +322,7 @@ For example, the command line for the above example should look like this: - *all* for all above set. + -By default the option is set to the combination of *fpu* and *cpu*. +By default the option is set to *fpu* and *ins*. *--cgroup-root* ['controller':]/'newroot':: Change the root for the controller that will be dumped. By default, *criu* diff --git a/criu/include/cr_options.h b/criu/include/cr_options.h index 92a2d364d..c722e3ae2 100644 --- a/criu/include/cr_options.h +++ b/criu/include/cr_options.h @@ -30,7 +30,7 @@ #define CPU_CAP_INS (1u << 2) /* Instructions CPU capability */ #define CPU_CAP_IMAGE (1u << 3) /* Write capability on dump and read on restore*/ #define CPU_CAP_ALL (CPU_CAP_FPU | CPU_CAP_CPU | CPU_CAP_INS) -#define CPU_CAP_DEFAULT (CPU_CAP_FPU | CPU_CAP_CPU) +#define CPU_CAP_DEFAULT (CPU_CAP_FPU | CPU_CAP_INS) struct cg_root_opt { struct list_head node;