Skip to content
Snippets Groups Projects
Commit e4a34e01 authored by Gleb Natapov's avatar Gleb Natapov Committed by Marcelo Tosatti
Browse files

Task stack pointer should point to the end of the page.


Signed-off-by: default avatarGleb Natapov <gleb@redhat.com>
Signed-off-by: default avatarMarcelo Tosatti <mtosatti@redhat.com>
parent 09b22d11
No related branches found
No related tags found
No related merge requests found
...@@ -362,7 +362,7 @@ void setup_tss32(void) ...@@ -362,7 +362,7 @@ void setup_tss32(void)
tss[i].cr3 = read_cr3(); tss[i].cr3 = read_cr3();
tss[i].ss0 = tss[i].ss1 = tss[i].ss2 = 0x10; tss[i].ss0 = tss[i].ss1 = tss[i].ss2 = 0x10;
tss[i].esp = tss[i].esp0 = tss[i].esp1 = tss[i].esp2 = tss[i].esp = tss[i].esp0 = tss[i].esp1 = tss[i].esp2 =
(u32)tss_stack[i]; (u32)tss_stack[i] + 4096;
tss[i].cs = 0x08; tss[i].cs = 0x08;
tss[i].ds = tss[i].es = tss[i].fs = tss[i].gs = tss[i].ss = 0x10; tss[i].ds = tss[i].es = tss[i].fs = tss[i].gs = tss[i].ss = 0x10;
tss[i].iomap_base = (u16)desc_size; tss[i].iomap_base = (u16)desc_size;
......
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