···305306307#ifdef CONFIG_X86_32308-. = ASSERT((_end - LOAD_OFFSET <= KERNEL_IMAGE_SIZE),309- "kernel image bigger than KERNEL_IMAGE_SIZE");310#else311/*312 * Per-cpu symbols which need to be offset from __per_cpu_load···319/*320 * Build-time check on the image size:321 */322-. = ASSERT((_end - _text <= KERNEL_IMAGE_SIZE),323- "kernel image bigger than KERNEL_IMAGE_SIZE");324325#ifdef CONFIG_SMP326-. = ASSERT((per_cpu__irq_stack_union == 0),327- "irq_stack_union is not at start of per-cpu area");328#endif329330#endif /* CONFIG_X86_32 */···332#ifdef CONFIG_KEXEC333#include <asm/kexec.h>334335-. = ASSERT(kexec_control_code_size <= KEXEC_CONTROL_CODE_MAX_SIZE,336- "kexec control code size is too big");337#endif338-
···305306307#ifdef CONFIG_X86_32308+ASSERT((_end - LOAD_OFFSET <= KERNEL_IMAGE_SIZE),309+ "kernel image bigger than KERNEL_IMAGE_SIZE");310#else311/*312 * Per-cpu symbols which need to be offset from __per_cpu_load···319/*320 * Build-time check on the image size:321 */322+ASSERT((_end - _text <= KERNEL_IMAGE_SIZE),323+ "kernel image bigger than KERNEL_IMAGE_SIZE");324325#ifdef CONFIG_SMP326+ASSERT((per_cpu__irq_stack_union == 0),327+ "irq_stack_union is not at start of per-cpu area");328#endif329330#endif /* CONFIG_X86_32 */···332#ifdef CONFIG_KEXEC333#include <asm/kexec.h>334335+ASSERT(kexec_control_code_size <= KEXEC_CONTROL_CODE_MAX_SIZE,336+ "kexec control code size is too big");337#endif0