Merge branch 'locking-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull locking build fix from Thomas Gleixner: "A single fix for a build fail with CONFIG_PROFILE_ALL_BRANCHES=y in the qspinlock code" * 'locking-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: x86/qspinlock: Fix compile error
This commit is contained in:
Коммит
1acf93ca6c
|
@ -13,12 +13,15 @@
|
||||||
#define queued_fetch_set_pending_acquire queued_fetch_set_pending_acquire
|
#define queued_fetch_set_pending_acquire queued_fetch_set_pending_acquire
|
||||||
static __always_inline u32 queued_fetch_set_pending_acquire(struct qspinlock *lock)
|
static __always_inline u32 queued_fetch_set_pending_acquire(struct qspinlock *lock)
|
||||||
{
|
{
|
||||||
u32 val = 0;
|
u32 val;
|
||||||
|
|
||||||
if (GEN_BINARY_RMWcc(LOCK_PREFIX "btsl", lock->val.counter, c,
|
|
||||||
"I", _Q_PENDING_OFFSET))
|
|
||||||
val |= _Q_PENDING_VAL;
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* We can't use GEN_BINARY_RMWcc() inside an if() stmt because asm goto
|
||||||
|
* and CONFIG_PROFILE_ALL_BRANCHES=y results in a label inside a
|
||||||
|
* statement expression, which GCC doesn't like.
|
||||||
|
*/
|
||||||
|
val = GEN_BINARY_RMWcc(LOCK_PREFIX "btsl", lock->val.counter, c,
|
||||||
|
"I", _Q_PENDING_OFFSET) * _Q_PENDING_VAL;
|
||||||
val |= atomic_read(&lock->val) & ~_Q_PENDING_MASK;
|
val |= atomic_read(&lock->val) & ~_Q_PENDING_MASK;
|
||||||
|
|
||||||
return val;
|
return val;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче