2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-30 05:48:05 +00:00

dump: Shrink struct core_entry twice

No need to keep it that big. Note from
this patch if we ever deside to use kernel
elf approach -- the image structures are
to be updated in kernel as well.

Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
Cyrill Gorcunov 2011-10-25 13:53:16 +04:00
parent 8bcb885877
commit c32845ef60

View File

@ -170,8 +170,8 @@ struct ckpt_arch_entry {
struct desc_struct tls_array[GDT_ENTRY_TLS_ENTRIES];
};
#define CKPT_ARCH_SIZE (2 * 4096)
#define CKPT_CORE_SIZE (4 * 4096)
#define CKPT_ARCH_SIZE (1 * 4096)
#define CKPT_CORE_SIZE (2 * 4096)
struct core_entry {
union {