diff options
| author | Waiman Long <longman@redhat.com> | 2019-02-24 20:14:13 -0500 |
|---|---|---|
| committer | Ingo Molnar <mingo@kernel.org> | 2019-02-28 01:55:38 -0500 |
| commit | 733000c7ffd9d9c8c4fdfd82f0d41956c8cf0537 (patch) | |
| tree | 6e38cfcfeba4e5e5539a5822ef6fe04a5bc7e929 /kernel/locking/qspinlock.c | |
| parent | 02e525b2aff1d665f6466e1d123ee4cb69f1d4b0 (diff) | |
locking/qspinlock: Remove unnecessary BUG_ON() call
With the > 4 nesting levels case handled by the commit:
d682b596d993 ("locking/qspinlock: Handle > 4 slowpath nesting levels")
the BUG_ON() call in encode_tail() will never actually be triggered.
Remove it.
Signed-off-by: Waiman Long <longman@redhat.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Acked-by: Will Deacon <will.deacon@arm.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: https://lkml.kernel.org/r/1551057253-3231-1-git-send-email-longman@redhat.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'kernel/locking/qspinlock.c')
| -rw-r--r-- | kernel/locking/qspinlock.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/kernel/locking/qspinlock.c b/kernel/locking/qspinlock.c index 21ee51b47961..5e9247dc2515 100644 --- a/kernel/locking/qspinlock.c +++ b/kernel/locking/qspinlock.c | |||
| @@ -124,9 +124,6 @@ static inline __pure u32 encode_tail(int cpu, int idx) | |||
| 124 | { | 124 | { |
| 125 | u32 tail; | 125 | u32 tail; |
| 126 | 126 | ||
| 127 | #ifdef CONFIG_DEBUG_SPINLOCK | ||
| 128 | BUG_ON(idx > 3); | ||
| 129 | #endif | ||
| 130 | tail = (cpu + 1) << _Q_TAIL_CPU_OFFSET; | 127 | tail = (cpu + 1) << _Q_TAIL_CPU_OFFSET; |
| 131 | tail |= idx << _Q_TAIL_IDX_OFFSET; /* assume < 4 */ | 128 | tail |= idx << _Q_TAIL_IDX_OFFSET; /* assume < 4 */ |
| 132 | 129 | ||
