[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20210721000253.GA143407@bjorn-Precision-5520>
Date: Tue, 20 Jul 2021 19:02:53 -0500
From: Bjorn Helgaas <helgaas@...nel.org>
To: Christoph Hellwig <hch@....de>
Cc: Ming Lei <ming.lei@...hat.com>,
Thomas Gleixner <tglx@...utronix.de>,
linux-kernel@...r.kernel.org, linux-pci@...r.kernel.org
Subject: Re: [PATCH V2] genirq/affinity: add helper of irq_affinity_calc_sets
On Tue, Jul 20, 2021 at 09:50:25AM +0200, Christoph Hellwig wrote:
> > +int irq_affinity_calc_sets(unsigned int affvecs, struct irq_affinity *affd)
> > +{
> > + /*
> > + * Simple invocations do not provide a calc_sets() callback. Call
> > + * the generic one.
> > + */
> > + if (!affd->calc_sets)
> > + default_calc_sets(affd, affvecs);
> > + else
> > + affd->calc_sets(affd, affvecs);
>
> Nit: avoid pointless negations:
>
> if (affd->calc_sets)
> affd->calc_sets(affd, affvecs);
> else
> default_calc_sets(affd, affvecs);
+1
> Otherwise looks good:
>
> Reviewed-by: Christoph Hellwig <hch@....de>
Thanks for doing this! For the PCI part:
Acked-by: Bjorn Helgaas <bhelgaas@...gle.com>
Powered by blists - more mailing lists