From: Waiman Long <longman@redhat.com>
To: Peter Zijlstra <peterz@infradead.org>
Cc: Ingo Molnar <mingo@redhat.com>, Will Deacon <will.deacon@arm.com>,
Thomas Gleixner <tglx@linutronix.de>,
Borislav Petkov <bp@alien8.de>, "H. Peter Anvin" <hpa@zytor.com>,
linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org,
x86@kernel.org, Zhenzhong Duan <zhenzhong.duan@oracle.com>,
James Morse <james.morse@arm.com>,
SRINIVAS <srinivas.eeda@oracle.com>
Subject: Re: [PATCH 1/5] locking/qspinlock: Safely handle > 4 nesting levels
Date: Mon, 21 Jan 2019 08:13:03 -0500 [thread overview]
Message-ID: <c9c1e1b9-fc08-d2a4-cbd2-880149a9fe4c@redhat.com> (raw)
In-Reply-To: <20190121091234.GG27931@hirez.programming.kicks-ass.net>
On 01/21/2019 04:12 AM, Peter Zijlstra wrote:
> On Sun, Jan 20, 2019 at 09:49:50PM -0500, Waiman Long wrote:
>> +/**
>> + * acquire_lock_no_node - acquire lock without MCS node
>> + * @lock: Pointer to queued spinlock structure
>> + *
>> + * It is extremely unlikely that this function will ever be called.
>> + * Marking it as noinline to not mess with the slowpath code. This
>> + * function is for native qspinlock only. The PV qspinlock code has
>> + * its own simpler version.
>> + *
>> + * ----- ----- | ---- ----- -----
>> + * |Tail2| <- ... |Head2| | |Node| <- |Tail1| <- ... |Head1|
>> + * ----- ----- | ---- ----- -----
>> + * | |
>> + * V V
>> + * Spin on waiting Spin on locked
>> + *
>> + * The waiting and the pending bits will be acquired first which are now
>> + * used as a separator for the disjointed queue shown above.
>> + *
>> + * The current CPU will then be inserted into queue by placing a special
>> + * _Q_TAIL_WAITING value into the tail and makes the current tail
>> + * point to its own local node. The next incoming CPU will see the special
>> + * tail, but it has no way to find the node. Instead, it will spin on the
>> + * waiting bit. When that bit is cleared, it means that all the the
>> + * previous CPUs in the queue are gone and current CPU is the new lock
>> + * holder.
> I know it's monday morning and I've not had wake-up juice yet, but I
> don't think that's true.
>
> Consider there being two CPUs that ran out of nodes and thus we have two
> tail fragments waiting on the one waiting bit.
The waiting bit acts like a bit lock as no more than one can have it at
any time. The loser just keep spinning on it.
> There is no sane wait to recover from this.. and stay fair, why are we
> trying?
>
> That is; what's the problem with the below?
>
> Yes it sucks, but it is simple and doesn't introduce 100+ lines of code
> that 'never' gets used.
>
> ---
> diff --git a/kernel/locking/qspinlock.c b/kernel/locking/qspinlock.c
> index 8a8c3c208c5e..983b49a75826 100644
> --- a/kernel/locking/qspinlock.c
> +++ b/kernel/locking/qspinlock.c
> @@ -412,6 +412,12 @@ void queued_spin_lock_slowpath(struct qspinlock *lock, u32 val)
> idx = node->count++;
> tail = encode_tail(smp_processor_id(), idx);
>
> + if (idx >= MAX_NODES) {
> + while (!queued_spin_trylock(lock))
> + cpu_relax();
> + goto release;
> + }
> +
> node = grab_mcs_node(node, idx);
>
> /*
Yes, that can work too. Although there is a possibility of live lock, it
should seldom happen when we are talking about NMIs.
Cheers,
Longman
next prev parent reply other threads:[~2019-01-21 13:13 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-01-21 2:49 [PATCH 0/5] locking/qspinlock: Safely handle > 4 nesting levels Waiman Long
2019-01-21 2:49 ` Waiman Long
2019-01-21 2:49 ` [PATCH 1/5] " Waiman Long
2019-01-21 2:49 ` Waiman Long
2019-01-21 9:12 ` Peter Zijlstra
2019-01-21 9:12 ` Peter Zijlstra
2019-01-21 13:13 ` Waiman Long [this message]
2019-01-21 13:13 ` Waiman Long
2019-01-22 5:44 ` Will Deacon
2019-01-22 5:44 ` Will Deacon
2019-01-21 2:49 ` [PATCH 2/5] locking/qspinlock_stat: Track the no MCS node available case Waiman Long
2019-01-21 2:49 ` Waiman Long
2019-01-21 2:49 ` [PATCH 3/5] locking/qspinlock_stat: Separate out the PV specific stat counts Waiman Long
2019-01-21 2:49 ` Waiman Long
2019-01-21 2:49 ` [PATCH 4/5] locking/qspinlock_stat: Allow QUEUED_LOCK_STAT for all archs Waiman Long
2019-01-21 2:49 ` Waiman Long
2019-01-21 2:49 ` [PATCH 5/5] locking/qspinlock: Add some locking debug code Waiman Long
2019-01-21 2:49 ` 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=c9c1e1b9-fc08-d2a4-cbd2-880149a9fe4c@redhat.com \
--to=longman@redhat.com \
--cc=bp@alien8.de \
--cc=hpa@zytor.com \
--cc=james.morse@arm.com \
--cc=linux-arch@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=peterz@infradead.org \
--cc=srinivas.eeda@oracle.com \
--cc=tglx@linutronix.de \
--cc=will.deacon@arm.com \
--cc=x86@kernel.org \
--cc=zhenzhong.duan@oracle.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;
as well as URLs for NNTP newsgroup(s).