Changes in kernel/arch/amd64/src/amd64.c [b169619:de96d3b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/src/amd64.c
rb169619 rde96d3b 60 60 #include <arch/vreg.h> 61 61 #include <arch/kseg.h> 62 #include <arch/mm/pat.h> 62 63 #include <genarch/pic/pic_ops.h> 63 64 … … 115 116 /* Disable alignment check */ 116 117 write_cr0(read_cr0() & ~CR0_AM); 118 119 /* Use PCD+PWT bit combination in PTE to mean write-combining mode. */ 120 if (pat_supported()) 121 pat_set_mapping(false, true, true, PAT_TYPE_WRITE_COMBINING); 117 122 118 123 if (config.cpu_active == 1) {
Note:
See TracChangeset
for help on using the changeset viewer.