Changeset b277bef in mainline
- Timestamp:
- 2018-05-10T07:35:59Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ae7d03c
- Parents:
- 2f72560a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/src/syscall.c
r2f72560a rb277bef 66 66 * the right direction 67 67 * - clear NT to prevent a #GP should the flag proliferate to an IRET 68 * - clear TF to prevent an immediate #DB if TF is set 68 69 */ 69 write_msr(AMD_MSR_SFMASK, RFLAGS_IF | RFLAGS_DF | RFLAGS_NT); 70 write_msr(AMD_MSR_SFMASK, 71 RFLAGS_IF | RFLAGS_DF | RFLAGS_NT | RFLAGS_TF); 70 72 } 71 73
Note:
See TracChangeset
for help on using the changeset viewer.