Skip to content
Snippets Groups Projects
Verified Commit 4fbe86a9 authored by jD91mZM2's avatar jD91mZM2
Browse files

Fix random userspace page faults

I was an idiot and forgot rbx wasn't always backed up. As a result, we
should never ever write to it
parent acebd1a8
No related branches found
No related tags found
No related merge requests found
......@@ -281,11 +281,13 @@ macro_rules! push_fs {
push fs
// Load kernel tls
// We can't load the value directly into `fs`. We also can't use `rax`
// as the temporary value, as during errors that's already used for the
// error code.
mov rbx, 0x18
mov fs, bx
//
// NOTE: We can't load the value directly into `fs`. So we need to use a
// scratch register (as preserved registers aren't backed up by the
// interrupt! macro) to store it. We also can't use `rax` as the temporary
// value, as during errors that's already used for the error code.
mov rcx, 0x18
mov fs, cx
" };
}
#[macro_export]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment