vfs: Make __vfs_write() static
[linux/fpc-iii.git] / arch / x86 / include / asm / qspinlock.h
blobbd5ac6cc37db5f87c92cc3013138dffa8b2a0302
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_X86_QSPINLOCK_H
3 #define _ASM_X86_QSPINLOCK_H
5 #include <linux/jump_label.h>
6 #include <asm/cpufeature.h>
7 #include <asm-generic/qspinlock_types.h>
8 #include <asm/paravirt.h>
9 #include <asm/rmwcc.h>
11 #define _Q_PENDING_LOOPS (1 << 9)
13 #define queued_fetch_set_pending_acquire queued_fetch_set_pending_acquire
14 static __always_inline u32 queued_fetch_set_pending_acquire(struct qspinlock *lock)
16 u32 val;
19 * We can't use GEN_BINARY_RMWcc() inside an if() stmt because asm goto
20 * and CONFIG_PROFILE_ALL_BRANCHES=y results in a label inside a
21 * statement expression, which GCC doesn't like.
23 val = GEN_BINARY_RMWcc(LOCK_PREFIX "btsl", lock->val.counter, c,
24 "I", _Q_PENDING_OFFSET) * _Q_PENDING_VAL;
25 val |= atomic_read(&lock->val) & ~_Q_PENDING_MASK;
27 return val;
30 #ifdef CONFIG_PARAVIRT_SPINLOCKS
31 extern void native_queued_spin_lock_slowpath(struct qspinlock *lock, u32 val);
32 extern void __pv_init_lock_hash(void);
33 extern void __pv_queued_spin_lock_slowpath(struct qspinlock *lock, u32 val);
34 extern void __raw_callee_save___pv_queued_spin_unlock(struct qspinlock *lock);
36 #define queued_spin_unlock queued_spin_unlock
37 /**
38 * queued_spin_unlock - release a queued spinlock
39 * @lock : Pointer to queued spinlock structure
41 * A smp_store_release() on the least-significant byte.
43 static inline void native_queued_spin_unlock(struct qspinlock *lock)
45 smp_store_release(&lock->locked, 0);
48 static inline void queued_spin_lock_slowpath(struct qspinlock *lock, u32 val)
50 pv_queued_spin_lock_slowpath(lock, val);
53 static inline void queued_spin_unlock(struct qspinlock *lock)
55 pv_queued_spin_unlock(lock);
58 #define vcpu_is_preempted vcpu_is_preempted
59 static inline bool vcpu_is_preempted(long cpu)
61 return pv_vcpu_is_preempted(cpu);
63 #endif
65 #ifdef CONFIG_PARAVIRT
66 DECLARE_STATIC_KEY_TRUE(virt_spin_lock_key);
68 void native_pv_lock_init(void) __init;
70 #define virt_spin_lock virt_spin_lock
71 static inline bool virt_spin_lock(struct qspinlock *lock)
73 if (!static_branch_likely(&virt_spin_lock_key))
74 return false;
77 * On hypervisors without PARAVIRT_SPINLOCKS support we fall
78 * back to a Test-and-Set spinlock, because fair locks have
79 * horrible lock 'holder' preemption issues.
82 do {
83 while (atomic_read(&lock->val) != 0)
84 cpu_relax();
85 } while (atomic_cmpxchg(&lock->val, 0, _Q_LOCKED_VAL) != 0);
87 return true;
89 #else
90 static inline void native_pv_lock_init(void)
93 #endif /* CONFIG_PARAVIRT */
95 #include <asm-generic/qspinlock.h>
97 #endif /* _ASM_X86_QSPINLOCK_H */