From: Kashyap Desai <kashyap.desai@broadcom.com>
To: Sagi Grimberg <sagi@grimberg.me>,
linux-scsi <linux-scsi@vger.kernel.org>,
linux-block@vger.kernel.org,
Peter Rivera <peter.rivera@broadcom.com>,
Steve Hagan <steve.hagan@broadcom.com>
Subject: RE: [RFC0/1] megaraid_sas : IRQ polling using threaded interrupt
Date: Fri, 24 Aug 2018 21:52:17 -0600 [thread overview]
Message-ID: <b0131d408fa0cc87aa624b577c0a71e4@mail.gmail.com> (raw)
In-Reply-To: <3038babc-1470-b69b-61c9-4a60fba4f0a7@grimberg.me>
> >
> > I am trying to evaluate the similar concept to reduce interrupts
> > using irq-poll and threaded ISR. Below is high level changes I did in
> > my experiment.
>
> You want to reduce interrupts because you want to fix a bug where
> your driver never exit from hard-irq? or trying to optimize the
> efficiency of the system?
We have already adopted irq-poll interface to avoid any hard-lockup issue.
This time, I want to evaluate multiple options to reduce interrupts per
seconds for MegaRaid and HBA.
In certain cases, we observe that IOPs are not scaling mainly because of
each IO completion happens with one interrupt.
>
> > In megaraid_sas driver, I schedule irq poll using =E2=80=9Cirq_poll_sch=
ed=E2=80=9D and
> > disable that particular IRQ line. I was expecting more completion
> > after I disable irq line, but in most of the cases just one
> > completion happened from irq poll context. It must be due to host side
> > processing is much faster than IO processing at back end device.
> > Similar observation was posted in above mentioned thread as well.
>
> Is your device able to coalesce interrupts?
Yes, our device is capable of doing interrupt coalescing. That interface is
already in plan for this exercise. Disadvantage of allowing h/w doing
interrupt coalescing is low QD profiles. We see latency goes high upto 20%
and we want to avoid that as well.
>
> > I added manual wait using =E2=80=9Cudelay()=E2=80=9D and wait for some =
more time in irq
> > poll context. Using additional wait, I am able to reduce interrupt per
> > seconds and performance impact on latency is not visible since I
> > choose udelay(1). One drawback I see is overall CPU utilization goes
> > up since driver is using extra delay to reduce interrupts.
> >
> > To overcome CPU utilization issue, I switch to threaded ISR and
> > replace udelay() with usleep(). Using threaded interrupt based
> > polling CPU utilization goes to normal.
>
> Doesn't sound like the right approach to me, but I don't understand
> what you are trying to achieve.
I posted patch with threaded ISR to do interrupt polling instead of taking
advantage of irq-poll. I can do same thing with irq-poll as well. In eithe=
r
approach, I found that just doing interrupt disable and polling reply queue
processing does not server purpose. Every time I disable interrupt
(disable_irq_nosync) and start polling of the reply queue, it quits
immediately since CPU processing is much faster compare to IO completion
from backend. Eventually, I have to spend some time after
"disable_irq_nosync" to gain benefit of the polling. I can not use
sleepable delay in irq-poll, but I can use sleepable delay in threaded isr.
This difference comes with pros and cons. Irq-poll based interface hogs mor=
e
CPU whereas threded isr avoid cpu hogging. I still think that thread-isr is
not a good idea because of fairness as you explained earlier in mentioned
discussion.
My confusion and question is - "threaded ISR is viable option to use for
interrupt polling or irq-poll is suitable design? "
prev parent reply other threads:[~2018-08-25 7:29 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-08-21 19:06 [RFC0/1] megaraid_sas : IRQ polling using threaded interrupt Kashyap Desai
2018-08-25 2:34 ` Sagi Grimberg
2018-08-25 3:52 ` Kashyap Desai [this message]
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=b0131d408fa0cc87aa624b577c0a71e4@mail.gmail.com \
--to=kashyap.desai@broadcom.com \
--cc=linux-block@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=peter.rivera@broadcom.com \
--cc=sagi@grimberg.me \
--cc=steve.hagan@broadcom.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).