linux-pci.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ming Lei <ming.lei@redhat.com>
To: Bjorn Helgaas <helgaas@kernel.org>
Cc: Thomas Gleixner <tglx@linutronix.de>,
	linux-kernel@vger.kernel.org, linux-pci@vger.kernel.org,
	Christoph Hellwig <hch@lst.de>
Subject: Re: [PATCH] genirq/affinity: add helper of irq_affinity_calc_sets
Date: Fri, 16 Jul 2021 10:10:46 +0800	[thread overview]
Message-ID: <YPDqphXYXtkpcfch@T590> (raw)
In-Reply-To: <20210715142714.GA1957636@bjorn-Precision-5520>

On Thu, Jul 15, 2021 at 09:27:14AM -0500, Bjorn Helgaas wrote:
> On Thu, Jul 15, 2021 at 07:18:27PM +0800, Ming Lei wrote:
> > When driver requests to allocate irq affinity managed vectors,
> > pci_alloc_irq_vectors_affinity() may fallback to single vector
> > allocation. In this situation, we don't need to call
> > irq_create_affinity_masks for calling into ->calc_sets() for
> > avoiding potential memory leak, so add the helper for this purpose.
> > 
> > Fixes: c66d4bd110a1 ("genirq/affinity: Add new callback for (re)calculating interrupt sets")
> > Reported-by: Bjorn Helgaas <helgaas@kernel.org>
> > Cc: linux-pci@vger.kernel.org
> > Cc: Christoph Hellwig <hch@lst.de>
> > Signed-off-by: Ming Lei <ming.lei@redhat.com>
> > ---
> >  drivers/pci/msi.c         |  3 ++-
> >  include/linux/interrupt.h |  7 +++++++
> >  kernel/irq/affinity.c     | 29 ++++++++++++++++++-----------
> >  3 files changed, 27 insertions(+), 12 deletions(-)
> > 
> > diff --git a/drivers/pci/msi.c b/drivers/pci/msi.c
> > index 9232255c8515..3d6db20d1b2b 100644
> > --- a/drivers/pci/msi.c
> > +++ b/drivers/pci/msi.c
> > @@ -1224,7 +1224,8 @@ int pci_alloc_irq_vectors_affinity(struct pci_dev *dev, unsigned int min_vecs,
> >  			 * for the single interrupt case.
> >  			 */
> >  			if (affd)
> > -				irq_create_affinity_masks(1, affd);
> > +				WARN_ON_ONCE(irq_affinity_calc_sets(1, affd));
> 
> Hmmm.  Not sure I like this yet:
> 
>   - I prefer required code to be on its own, not hidden inside a
>     WARN() (personal preference, I know).
> 
>   - WARN() doesn't seem like the right thing here.  I think this
>     generates a backtrace but the driver that called this has no
>     indication.  Isn't the problem that a .calc_sets() method set
>     "affd->nr_sets > IRQ_AFFINITY_MAX_SETS"?

Yes. When the warning is triggered, memory corruption may have been caused,
not sure if the indication is needed.

> 
>     It looks like those methods are supplied by drivers
>     (nvme_calc_irq_sets(), csio_calc_sets()) and it seems like they
>     should find out about this somehow.

Yeah. The WARN() here is just to report the bug earlier.


Thanks, 
Ming


  reply	other threads:[~2021-07-16  2:11 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-15 11:18 [PATCH] genirq/affinity: add helper of irq_affinity_calc_sets Ming Lei
2021-07-15 14:27 ` Bjorn Helgaas
2021-07-16  2:10   ` Ming Lei [this message]
2021-07-19  9:41 ` Christoph Hellwig

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=YPDqphXYXtkpcfch@T590 \
    --to=ming.lei@redhat.com \
    --cc=hch@lst.de \
    --cc=helgaas@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pci@vger.kernel.org \
    --cc=tglx@linutronix.de \
    /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).