From c32845ef60f00f45b329b47a2d34df66a3fb7dc2 Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Tue, 25 Oct 2011 13:53:16 +0400 Subject: [PATCH] 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 --- include/image.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/image.h b/include/image.h index 6063e8fe9..8a9f24bb3 100644 --- a/include/image.h +++ b/include/image.h @@ -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 {