Changeset 5f85c91 in mainline for arch/amd64
- Timestamp:
- 2005-11-08T12:22:35Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 36a140b
- Parents:
- 389f41e
- Location:
- arch/amd64
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/amd64/Makefile.inc
r389f41e r5f85c91 61 61 62 62 ifeq ($(CONFIG_SMP),y) 63 DEFS += -D SMP63 DEFS += -DCONFIG_SMP 64 64 endif 65 65 ifeq ($(CONFIG_HT),y) 66 DEFS += -D HT66 DEFS += -DCONFIG_HT 67 67 endif 68 68 ifeq ($(CONFIG_FPU_LAZY),y) 69 DEFS += -D FPU_LAZY69 DEFS += -DCONFIG_FPU_LAZY 70 70 endif 71 71 -
arch/amd64/src/amd64.c
r389f41e r5f85c91 76 76 trap_register(VECTOR_SYSCALL, syscall); 77 77 78 #ifdef __SMP__78 #ifdef CONFIG_SMP 79 79 trap_register(VECTOR_TLB_SHOOTDOWN_IPI, tlb_shootdown_ipi); 80 80 trap_register(VECTOR_WAKEUP_IPI, wakeup_ipi); 81 #endif /* __SMP__*/81 #endif /* CONFIG_SMP */ 82 82 } 83 83 } … … 95 95 memory_print_map(); 96 96 97 #ifdef __SMP__97 #ifdef CONFIG_SMP 98 98 acpi_init(); 99 #endif /* __SMP__*/99 #endif /* CONFIG_SMP */ 100 100 } 101 101 } -
arch/amd64/src/interrupt.c
r389f41e r5f85c91 140 140 void nm_fault(__u8 n, __native stack[]) 141 141 { 142 #ifdef FPU_LAZY142 #ifdef CONFIG_FPU_LAZY 143 143 scheduler_fpu_lazy_request(); 144 144 #else -
arch/amd64/src/smp/ap.S
r389f41e r5f85c91 40 40 .section K_TEXT_START_2, "ax" 41 41 42 #ifdef __SMP__42 #ifdef CONFIG_SMP 43 43 44 44 .global ap_boot … … 101 101 102 102 103 #endif /* __SMP__*/103 #endif /* CONFIG_SMP */
Note:
See TracChangeset
for help on using the changeset viewer.