From: Sean V Kelley <sean.v.kelley@linux.intel.com>
To: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Cc: Clark Williams <clark.williams@gmail.com>,
bigeasy@linutronix.com, tglx@linutronix.com,
linux-rt-users@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PREEMPT_RT PATCH 2/3] i915: convert all irq_locks spinlocks to raw spinlocks
Date: Mon, 16 Sep 2019 14:21:22 -0700 [thread overview]
Message-ID: <9EF2695D-3FBD-40E0-BE8A-EB71AF4155A5@linux.intel.com> (raw)
In-Reply-To: <20190903080335.pe45dmgmjvdvbyd4@linutronix.de>
> On Sep 3, 2019, at 1:03 AM, Sebastian Andrzej Siewior <bigeasy@linutronix.de> wrote:
>
> On 2019-08-19 19:33:18 [-0500], Clark Williams wrote:
>> From: Clark Williams <williams@redhat.com>
>>
>> The following structures contain a member named 'irq_lock'.
>> These three locks are of type spinlock_t and are used in
>> multiple contexts including atomic:
>>
>> struct drm_i915_private
>> struct intel_breadcrumbs
>> strict intel_guc
>>
>> Convert them all to be raw_spinlock_t so that lockdep and the lock
>> debugging code will be happy.
>
> What is your motivation to make the lock raw?
> I did the following:
>
> void intel_engine_signal_breadcrumbs(struct intel_engine_cs *engine)
> {
> - local_irq_disable();
> - intel_engine_breadcrumbs_irq(engine);
> - local_irq_enable();
> + if (IS_ENABLED(CONFIG_PREEMPT_RT_FULL)) {
> + intel_engine_breadcrumbs_irq(engine);
> + } else {
> + local_irq_disable();
> + intel_engine_breadcrumbs_irq(engine);
> + local_irq_enable();
> + }
> }
>
> and lockdep was quiet (+ ignoring/patching the lockdep-irq-off-asserts).
> The local_irq_disable() is here (my interpretation of the situation)
> because that function is called from process context while the remaining
> callers invoke intel_engine_breadcrumbs_irq() from the interrupt
> handler and it acquires irq_lock via a plain spin_lock(). That
> local_irq_disable() would be required if everyone did a _irqsave().
I’ve tested this also on the v5.2.14-rt7 and can confirm that it avoids the need for making the locks raw.
Tested-by: Sean V Kelley <sean.v.kelley@linux.intel.com>
Thanks,
Sean
>
> I tried to check how much worse the latency gets here but I didn't see
> anything in a brief test. What I saw however is that switching to
> fullscreen while playing a video gives me ~0.5 to ~2ms latency. This is
> has nothing to do with this change, I have to dig deeper… It might be
> one of the preempt_disable() section I just noticed.
> I would prefer to keep the lock non-raw unless there is actual need for
> it.
>
> Sebastian
next prev parent reply other threads:[~2019-09-16 21:21 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-08-20 0:33 [PREEMPT_RT PATCH 0/3] i915 fixups for lockdep/lockdebugging Clark Williams
2019-08-20 0:33 ` [PREEMPT_RT PATCH 1/3] i915: do not call lockdep_assert_irqs_disabled() on PREEMPT_RT Clark Williams
2019-09-25 16:47 ` Sebastian Andrzej Siewior
2019-08-20 0:33 ` [PREEMPT_RT PATCH 2/3] i915: convert all irq_locks spinlocks to raw spinlocks Clark Williams
2019-09-03 8:03 ` Sebastian Andrzej Siewior
2019-09-03 13:09 ` Sebastian Andrzej Siewior
2019-09-16 21:21 ` Sean V Kelley [this message]
2019-09-27 12:29 ` Sebastian Andrzej Siewior
[not found] ` <CAPAFJkofsYgSOxzM4JDkOV3Ra0C-AEpU2eZJjR9F9e_qv-6=rg@mail.gmail.com>
2019-09-27 15:18 ` Sean V Kelley
2019-08-20 0:33 ` [PREEMPT_RT PATCH 3/3] i915: convert uncore lock to raw spinlock Clark Williams
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=9EF2695D-3FBD-40E0-BE8A-EB71AF4155A5@linux.intel.com \
--to=sean.v.kelley@linux.intel.com \
--cc=bigeasy@linutronix.com \
--cc=bigeasy@linutronix.de \
--cc=clark.williams@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rt-users@vger.kernel.org \
--cc=tglx@linutronix.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
all inboxes | Powered by JetHome®