Commit c32845ef authored by Cyrill Gorcunov's avatar Cyrill Gorcunov

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: 's avatarCyrill Gorcunov <gorcunov@gmail.com>
parent 8bcb8858
...@@ -170,8 +170,8 @@ struct ckpt_arch_entry { ...@@ -170,8 +170,8 @@ struct ckpt_arch_entry {
struct desc_struct tls_array[GDT_ENTRY_TLS_ENTRIES]; struct desc_struct tls_array[GDT_ENTRY_TLS_ENTRIES];
}; };
#define CKPT_ARCH_SIZE (2 * 4096) #define CKPT_ARCH_SIZE (1 * 4096)
#define CKPT_CORE_SIZE (4 * 4096) #define CKPT_CORE_SIZE (2 * 4096)
struct core_entry { struct core_entry {
union { union {
......
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