mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-21 01:06:58 +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:
parent
8bcb885877
commit
c32845ef60
1 changed files with 2 additions and 2 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue