Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 2 | /* |
| 3 | * ld script to make ARM Linux kernel |
| 4 | * taken from the i386 version by Russell King |
| 5 | * Written by Martin Mares <mj@atrey.karlin.mff.cuni.cz> |
| 6 | */ |
| 7 | |
Kees Cook | 19f6bc3 | 2019-10-29 14:13:40 -0700 | [diff] [blame] | 8 | #define RO_EXCEPTION_TABLE_ALIGN 8 |
| 9 | |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 10 | #include <asm-generic/vmlinux.lds.h> |
Ard Biesheuvel | 98fb754 | 2015-12-01 13:20:40 +0100 | [diff] [blame] | 11 | #include <asm/cache.h> |
Suzuki K. Poulose | 87d1587 | 2015-10-19 14:19:27 +0100 | [diff] [blame] | 12 | #include <asm/kernel-pgtable.h> |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 13 | #include <asm/thread_info.h> |
| 14 | #include <asm/memory.h> |
| 15 | #include <asm/page.h> |
Laura Abbott | da14170 | 2015-01-21 17:36:06 -0800 | [diff] [blame] | 16 | #include <asm/pgtable.h> |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 17 | |
Mark Rutland | a2c1d73 | 2014-06-24 16:51:36 +0100 | [diff] [blame] | 18 | #include "image.h" |
| 19 | |
Will Deacon | 07c802b | 2014-11-25 15:26:13 +0000 | [diff] [blame] | 20 | /* .exit.text needed in case of alternative patching */ |
| 21 | #define ARM_EXIT_KEEP(x) x |
| 22 | #define ARM_EXIT_DISCARD(x) |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 23 | |
| 24 | OUTPUT_ARCH(aarch64) |
Geoff Levand | af885f4 | 2014-05-16 18:26:01 +0100 | [diff] [blame] | 25 | ENTRY(_text) |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 26 | |
| 27 | jiffies = jiffies_64; |
| 28 | |
Marc Zyngier | 2240bbb | 2012-12-07 18:40:43 +0000 | [diff] [blame] | 29 | #define HYPERVISOR_TEXT \ |
| 30 | /* \ |
Ard Biesheuvel | 06f75a1 | 2015-03-19 16:42:26 +0000 | [diff] [blame] | 31 | * Align to 4 KB so that \ |
| 32 | * a) the HYP vector table is at its minimum \ |
| 33 | * alignment of 2048 bytes \ |
| 34 | * b) the HYP init code will not cross a page \ |
| 35 | * boundary if its size does not exceed \ |
| 36 | * 4 KB (see related ASSERT() below) \ |
Marc Zyngier | 2240bbb | 2012-12-07 18:40:43 +0000 | [diff] [blame] | 37 | */ \ |
Ard Biesheuvel | 06f75a1 | 2015-03-19 16:42:26 +0000 | [diff] [blame] | 38 | . = ALIGN(SZ_4K); \ |
Masahiro Yamada | 5c636aa | 2018-05-09 16:46:26 +0900 | [diff] [blame] | 39 | __hyp_idmap_text_start = .; \ |
Marc Zyngier | 2240bbb | 2012-12-07 18:40:43 +0000 | [diff] [blame] | 40 | *(.hyp.idmap.text) \ |
Masahiro Yamada | 5c636aa | 2018-05-09 16:46:26 +0900 | [diff] [blame] | 41 | __hyp_idmap_text_end = .; \ |
| 42 | __hyp_text_start = .; \ |
Marc Zyngier | 2240bbb | 2012-12-07 18:40:43 +0000 | [diff] [blame] | 43 | *(.hyp.text) \ |
Masahiro Yamada | 5c636aa | 2018-05-09 16:46:26 +0900 | [diff] [blame] | 44 | __hyp_text_end = .; |
Marc Zyngier | 2240bbb | 2012-12-07 18:40:43 +0000 | [diff] [blame] | 45 | |
Ard Biesheuvel | 5dfe9d7 | 2015-06-01 13:40:33 +0200 | [diff] [blame] | 46 | #define IDMAP_TEXT \ |
| 47 | . = ALIGN(SZ_4K); \ |
Masahiro Yamada | 5c636aa | 2018-05-09 16:46:26 +0900 | [diff] [blame] | 48 | __idmap_text_start = .; \ |
Ard Biesheuvel | 5dfe9d7 | 2015-06-01 13:40:33 +0200 | [diff] [blame] | 49 | *(.idmap.text) \ |
Masahiro Yamada | 5c636aa | 2018-05-09 16:46:26 +0900 | [diff] [blame] | 50 | __idmap_text_end = .; |
Ard Biesheuvel | 5dfe9d7 | 2015-06-01 13:40:33 +0200 | [diff] [blame] | 51 | |
James Morse | 82869ac | 2016-04-27 17:47:12 +0100 | [diff] [blame] | 52 | #ifdef CONFIG_HIBERNATION |
| 53 | #define HIBERNATE_TEXT \ |
| 54 | . = ALIGN(SZ_4K); \ |
Masahiro Yamada | 5c636aa | 2018-05-09 16:46:26 +0900 | [diff] [blame] | 55 | __hibernate_exit_text_start = .; \ |
James Morse | 82869ac | 2016-04-27 17:47:12 +0100 | [diff] [blame] | 56 | *(.hibernate_exit.text) \ |
Masahiro Yamada | 5c636aa | 2018-05-09 16:46:26 +0900 | [diff] [blame] | 57 | __hibernate_exit_text_end = .; |
James Morse | 82869ac | 2016-04-27 17:47:12 +0100 | [diff] [blame] | 58 | #else |
| 59 | #define HIBERNATE_TEXT |
| 60 | #endif |
| 61 | |
Will Deacon | c7b9ada | 2017-11-14 14:07:40 +0000 | [diff] [blame] | 62 | #ifdef CONFIG_UNMAP_KERNEL_AT_EL0 |
| 63 | #define TRAMP_TEXT \ |
| 64 | . = ALIGN(PAGE_SIZE); \ |
Masahiro Yamada | 5c636aa | 2018-05-09 16:46:26 +0900 | [diff] [blame] | 65 | __entry_tramp_text_start = .; \ |
Will Deacon | c7b9ada | 2017-11-14 14:07:40 +0000 | [diff] [blame] | 66 | *(.entry.tramp.text) \ |
| 67 | . = ALIGN(PAGE_SIZE); \ |
Masahiro Yamada | 5c636aa | 2018-05-09 16:46:26 +0900 | [diff] [blame] | 68 | __entry_tramp_text_end = .; |
Will Deacon | c7b9ada | 2017-11-14 14:07:40 +0000 | [diff] [blame] | 69 | #else |
| 70 | #define TRAMP_TEXT |
| 71 | #endif |
| 72 | |
Ard Biesheuvel | a352ea3 | 2014-10-10 18:42:55 +0200 | [diff] [blame] | 73 | /* |
| 74 | * The size of the PE/COFF section that covers the kernel image, which |
| 75 | * runs from stext to _edata, must be a round multiple of the PE/COFF |
| 76 | * FileAlignment, which we set to its minimum value of 0x200. 'stext' |
| 77 | * itself is 4 KB aligned, so padding out _edata to a 0x200 aligned |
| 78 | * boundary should be sufficient. |
| 79 | */ |
| 80 | PECOFF_FILE_ALIGNMENT = 0x200; |
| 81 | |
| 82 | #ifdef CONFIG_EFI |
| 83 | #define PECOFF_EDATA_PADDING \ |
| 84 | .pecoff_edata_padding : { BYTE(0); . = ALIGN(PECOFF_FILE_ALIGNMENT); } |
| 85 | #else |
| 86 | #define PECOFF_EDATA_PADDING |
| 87 | #endif |
| 88 | |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 89 | SECTIONS |
| 90 | { |
| 91 | /* |
| 92 | * XXX: The linker does not define how output sections are |
| 93 | * assigned to input sections when there are multiple statements |
| 94 | * matching the same input section name. There is no documented |
| 95 | * order of matching. |
| 96 | */ |
| 97 | /DISCARD/ : { |
| 98 | ARM_EXIT_DISCARD(EXIT_TEXT) |
| 99 | ARM_EXIT_DISCARD(EXIT_DATA) |
| 100 | EXIT_CALL |
| 101 | *(.discard) |
| 102 | *(.discard.*) |
Ard Biesheuvel | 1e48ef7 | 2016-01-26 09:13:44 +0100 | [diff] [blame] | 103 | *(.interp .dynamic) |
Ard Biesheuvel | 3bbd3db | 2018-12-03 20:58:05 +0100 | [diff] [blame] | 104 | *(.dynsym .dynstr .hash .gnu.hash) |
| 105 | *(.eh_frame) |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 106 | } |
| 107 | |
Ard Biesheuvel | ab893fb | 2016-02-16 13:52:36 +0100 | [diff] [blame] | 108 | . = KIMAGE_VADDR + TEXT_OFFSET; |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 109 | |
| 110 | .head.text : { |
| 111 | _text = .; |
| 112 | HEAD_TEXT |
| 113 | } |
| 114 | .text : { /* Real text segment */ |
| 115 | _stext = .; /* Text and read-only data */ |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 116 | IRQENTRY_TEXT |
Alexander Potapenko | be7635e | 2016-03-25 14:22:05 -0700 | [diff] [blame] | 117 | SOFTIRQENTRY_TEXT |
Pratyush Anand | 888b3c8 | 2016-07-08 12:35:50 -0400 | [diff] [blame] | 118 | ENTRY_TEXT |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 119 | TEXT_TEXT |
| 120 | SCHED_TEXT |
Chris Metcalf | 6727ad9 | 2016-10-07 17:02:55 -0700 | [diff] [blame] | 121 | CPUIDLE_TEXT |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 122 | LOCK_TEXT |
Sandeepa Prabhu | 2dd0e8d | 2016-07-08 12:35:48 -0400 | [diff] [blame] | 123 | KPROBES_TEXT |
Marc Zyngier | 2240bbb | 2012-12-07 18:40:43 +0000 | [diff] [blame] | 124 | HYPERVISOR_TEXT |
Ard Biesheuvel | 5dfe9d7 | 2015-06-01 13:40:33 +0200 | [diff] [blame] | 125 | IDMAP_TEXT |
James Morse | 82869ac | 2016-04-27 17:47:12 +0100 | [diff] [blame] | 126 | HIBERNATE_TEXT |
Will Deacon | c7b9ada | 2017-11-14 14:07:40 +0000 | [diff] [blame] | 127 | TRAMP_TEXT |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 128 | *(.fixup) |
| 129 | *(.gnu.warning) |
| 130 | . = ALIGN(16); |
| 131 | *(.got) /* Global offset table */ |
| 132 | } |
| 133 | |
Ard Biesheuvel | 9774005 | 2016-03-30 17:43:09 +0200 | [diff] [blame] | 134 | . = ALIGN(SEGMENT_ALIGN); |
Ard Biesheuvel | 9fdc14c5 | 2016-06-23 15:53:17 +0200 | [diff] [blame] | 135 | _etext = .; /* End of text section */ |
| 136 | |
Kees Cook | 19f6bc3 | 2019-10-29 14:13:40 -0700 | [diff] [blame] | 137 | /* everything from this point to __init_begin will be marked RO NX */ |
| 138 | RO_DATA(PAGE_SIZE) |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 139 | |
Jun Yao | 8eb7e28 | 2018-09-24 17:56:18 +0100 | [diff] [blame] | 140 | idmap_pg_dir = .; |
| 141 | . += IDMAP_DIR_SIZE; |
| 142 | |
| 143 | #ifdef CONFIG_UNMAP_KERNEL_AT_EL0 |
| 144 | tramp_pg_dir = .; |
| 145 | . += PAGE_SIZE; |
| 146 | #endif |
| 147 | |
| 148 | #ifdef CONFIG_ARM64_SW_TTBR0_PAN |
| 149 | reserved_ttbr0 = .; |
| 150 | . += RESERVED_TTBR0_SIZE; |
| 151 | #endif |
| 152 | swapper_pg_dir = .; |
| 153 | . += PAGE_SIZE; |
| 154 | swapper_pg_end = .; |
| 155 | |
Ard Biesheuvel | 9774005 | 2016-03-30 17:43:09 +0200 | [diff] [blame] | 156 | . = ALIGN(SEGMENT_ALIGN); |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 157 | __init_begin = .; |
Ard Biesheuvel | 2ebe088b | 2017-03-09 21:52:03 +0100 | [diff] [blame] | 158 | __inittext_begin = .; |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 159 | |
| 160 | INIT_TEXT_SECTION(8) |
Mark Rutland | ca2ef4f | 2019-12-02 16:11:07 +0000 | [diff] [blame] | 161 | |
| 162 | __exittext_begin = .; |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 163 | .exit.text : { |
| 164 | ARM_EXIT_KEEP(EXIT_TEXT) |
| 165 | } |
Mark Rutland | ca2ef4f | 2019-12-02 16:11:07 +0000 | [diff] [blame] | 166 | __exittext_end = .; |
Laura Abbott | da14170 | 2015-01-21 17:36:06 -0800 | [diff] [blame] | 167 | |
Ard Biesheuvel | 2ebe088b | 2017-03-09 21:52:03 +0100 | [diff] [blame] | 168 | . = ALIGN(4); |
| 169 | .altinstructions : { |
| 170 | __alt_instructions = .; |
| 171 | *(.altinstructions) |
| 172 | __alt_instructions_end = .; |
| 173 | } |
| 174 | .altinstr_replacement : { |
| 175 | *(.altinstr_replacement) |
| 176 | } |
| 177 | |
| 178 | . = ALIGN(PAGE_SIZE); |
| 179 | __inittext_end = .; |
| 180 | __initdata_begin = .; |
| 181 | |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 182 | .init.data : { |
| 183 | INIT_DATA |
| 184 | INIT_SETUP(16) |
| 185 | INIT_CALLS |
| 186 | CON_INITCALL |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 187 | INIT_RAM_FS |
Ard Biesheuvel | 1ce99bf | 2016-02-17 12:35:58 +0000 | [diff] [blame] | 188 | *(.init.rodata.* .init.bss) /* from the EFI stub */ |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 189 | } |
| 190 | .exit.data : { |
| 191 | ARM_EXIT_KEEP(EXIT_DATA) |
| 192 | } |
| 193 | |
Ard Biesheuvel | 98fb754 | 2015-12-01 13:20:40 +0100 | [diff] [blame] | 194 | PERCPU_SECTION(L1_CACHE_BYTES) |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 195 | |
Ard Biesheuvel | 3bbd3db | 2018-12-03 20:58:05 +0100 | [diff] [blame] | 196 | .rela.dyn : ALIGN(8) { |
Ard Biesheuvel | 1e48ef7 | 2016-01-26 09:13:44 +0100 | [diff] [blame] | 197 | *(.rela .rela*) |
Ard Biesheuvel | 1e48ef7 | 2016-01-26 09:13:44 +0100 | [diff] [blame] | 198 | } |
Andre Przywara | e039ee4 | 2014-11-14 15:54:08 +0000 | [diff] [blame] | 199 | |
Ard Biesheuvel | 3bbd3db | 2018-12-03 20:58:05 +0100 | [diff] [blame] | 200 | __rela_offset = ABSOLUTE(ADDR(.rela.dyn) - KIMAGE_VADDR); |
| 201 | __rela_size = SIZEOF(.rela.dyn); |
Ard Biesheuvel | 0cd3def | 2016-04-18 17:09:43 +0200 | [diff] [blame] | 202 | |
Peter Collingbourne | 5cf896f | 2019-07-31 18:18:42 -0700 | [diff] [blame] | 203 | #ifdef CONFIG_RELR |
| 204 | .relr.dyn : ALIGN(8) { |
| 205 | *(.relr.dyn) |
| 206 | } |
| 207 | |
| 208 | __relr_offset = ABSOLUTE(ADDR(.relr.dyn) - KIMAGE_VADDR); |
| 209 | __relr_size = SIZEOF(.relr.dyn); |
| 210 | #endif |
| 211 | |
Ard Biesheuvel | 9774005 | 2016-03-30 17:43:09 +0200 | [diff] [blame] | 212 | . = ALIGN(SEGMENT_ALIGN); |
Ard Biesheuvel | 2ebe088b | 2017-03-09 21:52:03 +0100 | [diff] [blame] | 213 | __initdata_end = .; |
Mark Rutland | 9aa4ec15 | 2015-12-09 12:44:38 +0000 | [diff] [blame] | 214 | __init_end = .; |
| 215 | |
Mark Salter | 3c62062 | 2013-11-04 16:38:47 +0000 | [diff] [blame] | 216 | _data = .; |
Mark Salter | 3c62062 | 2013-11-04 16:38:47 +0000 | [diff] [blame] | 217 | _sdata = .; |
Kees Cook | c917404 | 2019-10-29 14:13:35 -0700 | [diff] [blame] | 218 | RW_DATA(L1_CACHE_BYTES, PAGE_SIZE, THREAD_ALIGN) |
James Morse | b611303 | 2016-08-24 18:27:29 +0100 | [diff] [blame] | 219 | |
| 220 | /* |
| 221 | * Data written with the MMU off but read with the MMU on requires |
| 222 | * cache lines to be invalidated, discarding up to a Cache Writeback |
| 223 | * Granule (CWG) of data from the cache. Keep the section that |
| 224 | * requires this type of maintenance to be in its own Cache Writeback |
| 225 | * Granule (CWG) area so the cache maintenance operations don't |
| 226 | * interfere with adjacent data. |
| 227 | */ |
| 228 | .mmuoff.data.write : ALIGN(SZ_2K) { |
| 229 | __mmuoff_data_start = .; |
| 230 | *(.mmuoff.data.write) |
| 231 | } |
| 232 | . = ALIGN(SZ_2K); |
| 233 | .mmuoff.data.read : { |
| 234 | *(.mmuoff.data.read) |
| 235 | __mmuoff_data_end = .; |
| 236 | } |
| 237 | |
Ard Biesheuvel | a352ea3 | 2014-10-10 18:42:55 +0200 | [diff] [blame] | 238 | PECOFF_EDATA_PADDING |
Ard Biesheuvel | cad27ef | 2017-03-23 19:00:51 +0000 | [diff] [blame] | 239 | __pecoff_data_rawsize = ABSOLUTE(. - __initdata_begin); |
Mark Salter | 3c62062 | 2013-11-04 16:38:47 +0000 | [diff] [blame] | 240 | _edata = .; |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 241 | |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 242 | BSS_SECTION(0, 0, 0) |
Mark Rutland | bd00cd5f | 2014-06-24 16:51:35 +0100 | [diff] [blame] | 243 | |
| 244 | . = ALIGN(PAGE_SIZE); |
Jun Yao | 2b5548b | 2018-09-24 15:47:49 +0100 | [diff] [blame] | 245 | init_pg_dir = .; |
| 246 | . += INIT_DIR_SIZE; |
| 247 | init_pg_end = .; |
| 248 | |
Ard Biesheuvel | cad27ef | 2017-03-23 19:00:51 +0000 | [diff] [blame] | 249 | __pecoff_data_size = ABSOLUTE(. - __initdata_begin); |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 250 | _end = .; |
| 251 | |
| 252 | STABS_DEBUG |
Mark Rutland | a2c1d73 | 2014-06-24 16:51:36 +0100 | [diff] [blame] | 253 | |
| 254 | HEAD_SYMBOLS |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 255 | } |
Marc Zyngier | 2240bbb | 2012-12-07 18:40:43 +0000 | [diff] [blame] | 256 | |
Kees Cook | 90776dd | 2019-08-13 16:04:50 -0700 | [diff] [blame] | 257 | #include "image-vars.h" |
| 258 | |
Marc Zyngier | 2240bbb | 2012-12-07 18:40:43 +0000 | [diff] [blame] | 259 | /* |
Ard Biesheuvel | 5dfe9d7 | 2015-06-01 13:40:33 +0200 | [diff] [blame] | 260 | * The HYP init code and ID map text can't be longer than a page each, |
Ard Biesheuvel | 06f75a1 | 2015-03-19 16:42:26 +0000 | [diff] [blame] | 261 | * and should not cross a page boundary. |
Marc Zyngier | 2240bbb | 2012-12-07 18:40:43 +0000 | [diff] [blame] | 262 | */ |
Ard Biesheuvel | 06f75a1 | 2015-03-19 16:42:26 +0000 | [diff] [blame] | 263 | ASSERT(__hyp_idmap_text_end - (__hyp_idmap_text_start & ~(SZ_4K - 1)) <= SZ_4K, |
| 264 | "HYP init code too big or misaligned") |
Ard Biesheuvel | 5dfe9d7 | 2015-06-01 13:40:33 +0200 | [diff] [blame] | 265 | ASSERT(__idmap_text_end - (__idmap_text_start & ~(SZ_4K - 1)) <= SZ_4K, |
| 266 | "ID map text too big or misaligned") |
James Morse | 82869ac | 2016-04-27 17:47:12 +0100 | [diff] [blame] | 267 | #ifdef CONFIG_HIBERNATION |
| 268 | ASSERT(__hibernate_exit_text_end - (__hibernate_exit_text_start & ~(SZ_4K - 1)) |
| 269 | <= SZ_4K, "Hibernate exit text too big or misaligned") |
| 270 | #endif |
Will Deacon | 6c27c40 | 2017-12-06 11:24:02 +0000 | [diff] [blame] | 271 | #ifdef CONFIG_UNMAP_KERNEL_AT_EL0 |
| 272 | ASSERT((__entry_tramp_text_end - __entry_tramp_text_start) == PAGE_SIZE, |
| 273 | "Entry trampoline text too big") |
| 274 | #endif |
Mark Rutland | da57a36 | 2014-06-24 16:51:37 +0100 | [diff] [blame] | 275 | /* |
| 276 | * If padding is applied before .head.text, virt<->phys conversions will fail. |
| 277 | */ |
Ard Biesheuvel | ab893fb | 2016-02-16 13:52:36 +0100 | [diff] [blame] | 278 | ASSERT(_text == (KIMAGE_VADDR + TEXT_OFFSET), "HEAD is misaligned") |