aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAvi Kivity <avi@qumranet.com>2007-06-07 18:12:41 +0300
committerAvi Kivity <avi@qumranet.com>2007-06-07 18:12:41 +0300
commit59fe40e4e21a678a116c00a968475451667e28b4 (patch)
treed976eb021844b6a9dab13af4130e35adca8ba757
parent097826bd68eb83d13bc1aff60228b27de9284150 (diff)
kvm: testsuite: cstart can trust the bootstrap-provided stacks
-rw-r--r--kvm/user/test/cstart.S7
-rw-r--r--kvm/user/test/cstart64.S2
2 files changed, 1 insertions, 8 deletions
diff --git a/kvm/user/test/cstart.S b/kvm/user/test/cstart.S
index 47bdedd84..98df040e8 100644
--- a/kvm/user/test/cstart.S
+++ b/kvm/user/test/cstart.S
@@ -2,14 +2,9 @@
.bss
- . = . + 4096
- .align 16
-stacktop:
-
.section .init
- lea stacktop, %esp
call main
1: hlt
jmp 1b
-
+
diff --git a/kvm/user/test/cstart64.S b/kvm/user/test/cstart64.S
index 9d6e7ba53..416db2489 100644
--- a/kvm/user/test/cstart64.S
+++ b/kvm/user/test/cstart64.S
@@ -109,8 +109,6 @@ ap_start64:
jmp 1b
start64:
- lea stacktop, %rsp
-
call load_tss
call smp_init
call main