1
2 #ifndef __ASM_QSPINLOCK_PARAVIRT_H
3 #define __ASM_QSPINLOCK_PARAVIRT_H
4
5
6
7
8
9
10
11 #ifdef CONFIG_64BIT
12
13 PV_CALLEE_SAVE_REGS_THUNK(__pv_queued_spin_unlock_slowpath);
14 #define __pv_queued_spin_unlock __pv_queued_spin_unlock
15 #define PV_UNLOCK "__raw_callee_save___pv_queued_spin_unlock"
16 #define PV_UNLOCK_SLOWPATH "__raw_callee_save___pv_queued_spin_unlock_slowpath"
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37 asm (".pushsection .text;"
38 ".globl " PV_UNLOCK ";"
39 ".type " PV_UNLOCK ", @function;"
40 ".align 4,0x90;"
41 PV_UNLOCK ": "
42 FRAME_BEGIN
43 "push %rdx;"
44 "mov $0x1,%eax;"
45 "xor %edx,%edx;"
46 LOCK_PREFIX "cmpxchg %dl,(%rdi);"
47 "cmp $0x1,%al;"
48 "jne .slowpath;"
49 "pop %rdx;"
50 FRAME_END
51 "ret;"
52 ".slowpath: "
53 "push %rsi;"
54 "movzbl %al,%esi;"
55 "call " PV_UNLOCK_SLOWPATH ";"
56 "pop %rsi;"
57 "pop %rdx;"
58 FRAME_END
59 "ret;"
60 ".size " PV_UNLOCK ", .-" PV_UNLOCK ";"
61 ".popsection");
62
63 #else
64
65 extern void __pv_queued_spin_unlock(struct qspinlock *lock);
66 PV_CALLEE_SAVE_REGS_THUNK(__pv_queued_spin_unlock);
67
68 #endif
69 #endif