Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
LoongArch: Load vmlinux.efi to the link address
Currently, kexec loads vmlinux.efi to address 0 instead of the link address. This causes kexec to fail to boot the new vmlinux.efi on qemu. pei_loongarch_load: kernel_segment: 0000000000000000 pei_loongarch_load: kernel_entry: 00000000013f1000 pei_loongarch_load: image_size: 0000000001ca0000 pei_loongarch_load: text_offset: 0000000000200000 pei_loongarch_load: phys_offset: 0000000000000000 pei_loongarch_load: PE format: yes loongarch_load_other_segments:333: command_line: kexec console=ttyS0,115200 kexec_load: entry = 0x13f1000 flags = 0x1020000 nr_segments = 2 segment[0].buf = 0x7fffeea38010 segment[0].bufsz = 0x1b55200 segment[0].mem = (nil) segment[0].memsz = 0x1ca0000 segment[1].buf = 0x5555570940b0 segment[1].bufsz = 0x200 segment[1].mem = 0x1ca0000 segment[1].memsz = 0x4000 This patch constrains the range of the kernel segment by `hole_min` and `hole_max` to place vmlinux.efi exactly at the link address. pei_loongarch_load: kernel_segment: 0000000000200000 pei_loongarch_load: kernel_entry: 00000000013f1000 pei_loongarch_load: image_size: 0000000001ca0000 pei_loongarch_load: text_offset: 0000000000200000 pei_loongarch_load: phys_offset: 0000000000000000 pei_loongarch_load: PE format: yes loongarch_load_other_segments:339: command_line: kexec console=ttyS0,115200 kexec_load: entry = 0x13f1000 flags = 0x1020000 nr_segments = 2 segment[0].buf = 0x7ffff2028010 segment[0].bufsz = 0x1b55200 segment[0].mem = 0x200000 segment[0].memsz = 0x1ca0000 segment[1].buf = 0x555557498098 segment[1].bufsz = 0x200 segment[1].mem = 0x1ea0000 segment[1].memsz = 0x4000 Signed-off-by: WANG Rui <[email protected]> Signed-off-by: Simon Horman <[email protected]>
- Loading branch information