From: Waiman Long <llong@redhat.com>
To: Peter Zijlstra <peterz@infradead.org>
Cc: Ingo Molnar <mingo@redhat.com>, Will Deacon <will.deacon@arm.com>,
Boqun Feng <boqun.feng@gmail.com>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] locking/semaphore: Use wake_q to wake up processes outside lock critical section
Date: Wed, 22 Jan 2025 09:55:50 -0500 [thread overview]
Message-ID: <eb1dfb34-eeb4-45c8-bb6d-ecfd42ba7e99@redhat.com> (raw)
In-Reply-To: <20250122103914.GI7145@noisy.programming.kicks-ass.net>
On 1/22/25 5:39 AM, Peter Zijlstra wrote:
> On Tue, Jan 21, 2025 at 08:13:14PM -0500, Waiman Long wrote:
>> A circular lock dependency splat has been seen involving down_trylock().
>>
>> [ 4011.795602] ======================================================
>> [ 4011.795603] WARNING: possible circular locking dependency detected
>> [ 4011.795607] 6.12.0-41.el10.s390x+debug
>> [ 4011.795612] ------------------------------------------------------
>> [ 4011.795613] dd/32479 is trying to acquire lock:
>> [ 4011.795617] 0015a20accd0d4f8 ((console_sem).lock){-.-.}-{2:2}, at: down_trylock+0x26/0x90
>> [ 4011.795636]
>> [ 4011.795636] but task is already holding lock:
>> [ 4011.795637] 000000017e461698 (&zone->lock){-.-.}-{2:2}, at: rmqueue_bulk+0xac/0x8f0
>>
>> the existing dependency chain (in reverse order) is:
>> -> #4 (&zone->lock){-.-.}-{2:2}:
>> -> #3 (hrtimer_bases.lock){-.-.}-{2:2}:
>> -> #2 (&rq->__lock){-.-.}-{2:2}:
>> -> #1 (&p->pi_lock){-.-.}-{2:2}:
>> -> #0 ((console_sem).lock){-.-.}-{2:2}:
> The whole #3->#4 thing seems dodgy, where is that? Specifically
> hrtimer_bases.lock is a raw_spinlock, while zone->lock is a spinlock,
> this is not a valid nesting.
Ah, you are right. That is another raw_spinlock to spinlock nesting
issue that needs to be addressed.
[ 4011.795646] -> #4 (&zone->lock){-.-.}-{2:2}: [ 4011.795650]
__lock_acquire+0xe86/0x1cc0 [ 4011.795655]
lock_acquire.part.0+0x258/0x630 [ 4011.795657] lock_acquire+0xb8/0xe0 [
4011.795659] _raw_spin_lock_irqsave+0xb4/0x120 [ 4011.795663]
rmqueue_bulk+0xac/0x8f0 [ 4011.795665] __rmqueue_pcplist+0x580/0x830 [
4011.795667] rmqueue_pcplist+0xfc/0x470 [ 4011.795669]
rmqueue.isra.0+0xdec/0x11b0 [ 4011.795671]
get_page_from_freelist+0x2ee/0xeb0 [ 4011.795673]
__alloc_pages_noprof+0x2c2/0x520 [ 4011.795676]
alloc_pages_mpol_noprof+0x1fc/0x4d0 [ 4011.795681]
alloc_pages_noprof+0x8c/0xe0 [ 4011.795684] allocate_slab+0x320/0x460 [
4011.795686] ___slab_alloc+0xa58/0x12b0 [ 4011.795688]
__slab_alloc.isra.0+0x42/0x60 [ 4011.795690]
kmem_cache_alloc_noprof+0x304/0x350 [ 4011.795692] fill_pool+0xf6/0x450
[ 4011.795697] debug_object_activate+0xfe/0x360 [ 4011.795700]
enqueue_hrtimer+0x34/0x190 [ 4011.795703] __run_hrtimer+0x3c8/0x4c0 [
4011.795705] __hrtimer_run_queues+0x1b2/0x260 [ 4011.795707]
hrtimer_interrupt+0x316/0x760 [ 4011.795709] do_IRQ+0x9a/0xe0 [
4011.795712] do_irq_async+0xf6/0x160
We probably need to look at debug object code to avoid doing memory
allocation under some circumstances. PROVE_RAW_LOCK_NESTING was not
enabled and so this case wasn't caught. Will enable that in the next
minor release to find out more instances of such bugs.
Anyway, do you think this patch is worth taking? There are may be other
cases like this that are hiding somewhere and showing up from time to time.
Cheers, Longman
next prev parent reply other threads:[~2025-01-22 14:55 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-22 1:13 [PATCH] locking/semaphore: Use wake_q to wake up processes outside lock critical section Waiman Long
2025-01-22 10:39 ` Peter Zijlstra
2025-01-22 14:55 ` Waiman Long [this message]
[not found] ` <414a685b-5a30-4792-b01d-35e8099d965b@redhat.com>
2025-01-22 18:16 ` Peter Zijlstra
2025-01-22 18:23 ` Waiman Long
-- strict thread matches above, loose matches on Subject: below --
2022-01-18 15:32 Waiman Long
2022-02-10 2:07 ` Waiman Long
2022-02-10 10:19 ` Peter Zijlstra
2022-02-10 17:04 ` Waiman Long
2022-02-11 10:51 ` Peter Zijlstra
2022-02-11 15:08 ` Waiman Long
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=eb1dfb34-eeb4-45c8-bb6d-ecfd42ba7e99@redhat.com \
--to=llong@redhat.com \
--cc=boqun.feng@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=peterz@infradead.org \
--cc=will.deacon@arm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox