diff options
author | Damien Zammit <damien@zamaudio.com> | 2023-09-25 00:24:25 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-09-25 10:21:29 +0200 |
commit | b3921098e2807d6225d277986bc8063b6a271e88 (patch) | |
tree | 93aa20fdb9f5ef3055069dd913afd0ad09d4ca23 /x86_64/locore.S | |
parent | be0abe4c2361f2c7db5a52b0900e298083fefe40 (diff) | |
download | gnumach-b3921098e2807d6225d277986bc8063b6a271e88.tar.gz gnumach-b3921098e2807d6225d277986bc8063b6a271e88.tar.bz2 gnumach-b3921098e2807d6225d277986bc8063b6a271e88.zip |
percpu: active_stack with gs
Message-Id: <20230925002417.467022-1-damien@zamaudio.com>
Diffstat (limited to 'x86_64/locore.S')
-rw-r--r-- | x86_64/locore.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/x86_64/locore.S b/x86_64/locore.S index 55dc4d27..7eaeda3b 100644 --- a/x86_64/locore.S +++ b/x86_64/locore.S @@ -673,7 +673,7 @@ trap_from_kernel: cmpq CX(EXT(kernel_stack),%rdx),%rsp /* already on kernel stack? */ ja 0f - cmpq CX(EXT(active_stacks),%rdx),%rsp + cmpq MY(ACTIVE_STACK),%rsp ja 1f /* switch if not */ 0: movq CX(EXT(kernel_stack),%rdx),%rsp |