A call was accidentally dropped while splitting the hqspinlock patch series. It did not break the system functionality, but caused the lock to stay in QSPINLOCK mode. Restore the missing call. Sorry for missing this in the previous posting. I rechecked the whole path after fixing. Signed-off-by: Nikita Fedorov --- kernel/locking/hqlock_core.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kernel/locking/hqlock_core.h b/kernel/locking/hqlock_core.h index 74f92ac3d8ad..226a0bb9a667 100644 --- a/kernel/locking/hqlock_core.h +++ b/kernel/locking/hqlock_core.h @@ -580,6 +580,8 @@ static inline void hqlock_clear_tail_handoff(struct qspinlock *lock, u32 val, hqlock_handoff(lock, node, next, tail, handoff_info); } else { + update_counters_qspinlock(qnode); + if ((val & _Q_TAIL_MASK) == tail) { if (low_contention_try_clear_tail(lock, val, node)) return; -- 2.34.1