Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F106165369
D19563.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D19563.diff
View Options
Index: head/sys/amd64/amd64/cpu_switch.S
===================================================================
--- head/sys/amd64/amd64/cpu_switch.S
+++ head/sys/amd64/amd64/cpu_switch.S
@@ -45,18 +45,6 @@
.text
-#ifdef SMP
-#define LK lock ;
-#else
-#define LK
-#endif
-
-#if defined(SCHED_ULE) && defined(SMP)
-#define SETLK xchgq
-#else
-#define SETLK movq
-#endif
-
/*
* cpu_throw()
*
@@ -150,17 +138,15 @@
movq %rdx,%r15
movq %rsi,%rdi
callq pmap_activate_sw
- SETLK %r15,TD_LOCK(%r13) /* Release the old thread */
+ movq %r15,TD_LOCK(%r13) /* Release the old thread */
sw1:
movq TD_PCB(%r12),%r8
#if defined(SCHED_ULE) && defined(SMP)
- /* Wait for the new thread to become unblocked */
movq $blocked_lock, %rdx
-1:
movq TD_LOCK(%r12),%rcx
cmpq %rcx, %rdx
- pause
- je 1b
+ je sw1wait
+sw1cont:
#endif
/*
* At this point, we've switched address spaces and are ready
@@ -496,3 +482,14 @@
xorl %eax,%eax
ret
END(resumectx)
+
+/* Wait for the new thread to become unblocked */
+#if defined(SCHED_ULE) && defined(SMP)
+sw1wait:
+1:
+ pause
+ movq TD_LOCK(%r12),%rcx
+ cmpq %rcx, %rdx
+ je 1b
+ jmp sw1cont
+#endif
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Dec 27, 11:25 AM (10 h, 24 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
15613819
Default Alt Text
D19563.diff (1 KB)
Attached To
Mode
D19563: amd64: clean up cpu_switch.S
Attached
Detach File
Event Timeline
Log In to Comment