Changeset 42744880 in mainline for arch/amd64
- Timestamp:
- 2006-02-08T22:29:20Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 85dc2e7
- Parents:
- 89298e3
- Location:
- arch/amd64
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/amd64/_link.ld.in
r89298e3 r42744880 39 39 QUAD(kdata_end - kdata_start + (unmapped_kdata_end - unmapped_kdata_start)); 40 40 hardcoded_unmapped_ktext_size = .; 41 LONG(unmapped_ktext_end - unmapped_ktext_start);41 QUAD(unmapped_ktext_end - unmapped_ktext_start); 42 42 hardcoded_unmapped_kdata_size = .; 43 LONG(unmapped_kdata_end - unmapped_kdata_start);43 QUAD(unmapped_kdata_end - unmapped_kdata_start); 44 44 *(COMMON); /* global variables */ 45 45 -
arch/amd64/src/asm_utils.S
r89298e3 r42744880 219 219 .global interrupt_handler_size 220 220 221 interrupt_handler_size: . long(h_end-h_start)/IDT_ITEMS221 interrupt_handler_size: .quad (h_end-h_start)/IDT_ITEMS -
arch/amd64/src/boot/boot.S
r89298e3 r42744880 165 165 166 166 xorq %rdx, %rdx 167 movq %rdx, %rcx 167 168 movl 24(%ebx), %esi # mbi->mods_addr 168 169 movl 0(%esi), %edx # mods->mod_start … … 172 173 173 174 mods_invalid: 174 mov l %ecx, init_size175 movq %rcx, init_size 175 176 movq %rdx, init_addr 176 177
Note:
See TracChangeset
for help on using the changeset viewer.