From: Bjorn Helgaas <helgaas@kernel.org>
To: Ming Lei <ming.lei@redhat.com>
Cc: Christoph Hellwig <hch@lst.de>,
Thomas Gleixner <tglx@linutronix.de>,
Jens Axboe <axboe@kernel.dk>,
linux-block@vger.kernel.org, Sagi Grimberg <sagi@grimberg.me>,
linux-nvme@lists.infradead.org, linux-kernel@vger.kernel.org,
linux-pci@vger.kernel.org
Subject: Re: [PATCH 5/5] genirq/affinity: remove support for allocating interrupt sets
Date: Thu, 7 Feb 2019 16:22:46 -0600 [thread overview]
Message-ID: <20190207222245.GR7268@google.com> (raw)
In-Reply-To: <20190125095347.17950-6-ming.lei@redhat.com>
On Fri, Jan 25, 2019 at 05:53:47PM +0800, Ming Lei wrote:
> Now allocating interrupt sets can be done via .setup_affinity()
> easily, so remove the support for allocating interrupt sets.
>
> With this change, we don't need the limit of 'minvec == maxvec'
> any more in pci_alloc_irq_vectors_affinity().
>
> Meantime irq_create_affinity_masks() gets simplified a lot.
>
> Signed-off-by: Ming Lei <ming.lei@redhat.com>
Acked-by: Bjorn Helgaas <bhelgaas@google.com> # pci/msi.c parts
> ---
> drivers/pci/msi.c | 14 -------------
> include/linux/interrupt.h | 4 ----
> kernel/irq/affinity.c | 52 +++++++++++------------------------------------
> 3 files changed, 12 insertions(+), 58 deletions(-)
>
> diff --git a/drivers/pci/msi.c b/drivers/pci/msi.c
> index 4c0b47867258..331483de1294 100644
> --- a/drivers/pci/msi.c
> +++ b/drivers/pci/msi.c
> @@ -1035,13 +1035,6 @@ static int __pci_enable_msi_range(struct pci_dev *dev, int minvec, int maxvec,
> if (maxvec < minvec)
> return -ERANGE;
>
> - /*
> - * If the caller is passing in sets, we can't support a range of
> - * vectors. The caller needs to handle that.
> - */
> - if (affd && affd->nr_sets && minvec != maxvec)
> - return -EINVAL;
> -
> if (WARN_ON_ONCE(dev->msi_enabled))
> return -EINVAL;
>
> @@ -1093,13 +1086,6 @@ static int __pci_enable_msix_range(struct pci_dev *dev,
> if (maxvec < minvec)
> return -ERANGE;
>
> - /*
> - * If the caller is passing in sets, we can't support a range of
> - * supported vectors. The caller needs to handle that.
> - */
> - if (affd && affd->nr_sets && minvec != maxvec)
> - return -EINVAL;
> -
> if (WARN_ON_ONCE(dev->msix_enabled))
> return -EINVAL;
>
> diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h
> index b820b07f3b55..a035e165f405 100644
> --- a/include/linux/interrupt.h
> +++ b/include/linux/interrupt.h
> @@ -260,8 +260,6 @@ struct irq_affinity_desc {
> * and driver has to handle pre_vectors & post_vectors
> * correctly, set 'is_managed' flag correct too
> * @priv: Private data of @setup_affinity
> - * @nr_sets: Length of passed in *sets array
> - * @sets: Number of affinitized sets
> */
> struct irq_affinity {
> int pre_vectors;
> @@ -270,8 +268,6 @@ struct irq_affinity {
> struct irq_affinity_desc *,
> unsigned int);
> void *priv;
> - int nr_sets;
> - int *sets;
> };
>
> #if defined(CONFIG_SMP)
> diff --git a/kernel/irq/affinity.c b/kernel/irq/affinity.c
> index 524fdcda9f85..e8fea65325d9 100644
> --- a/kernel/irq/affinity.c
> +++ b/kernel/irq/affinity.c
> @@ -269,9 +269,9 @@ struct irq_affinity_desc *
> irq_create_affinity_masks(int nvecs, const struct irq_affinity *affd)
> {
> int affvecs = nvecs - affd->pre_vectors - affd->post_vectors;
> - int curvec, usedvecs;
> + int curvec;
> struct irq_affinity_desc *masks = NULL;
> - int i, nr_sets;
> + int i;
>
> /*
> * If there aren't any vectors left after applying the pre/post
> @@ -293,34 +293,14 @@ irq_create_affinity_masks(int nvecs, const struct irq_affinity *affd)
> /* Fill out vectors at the beginning that don't need affinity */
> for (curvec = 0; curvec < affd->pre_vectors; curvec++)
> cpumask_copy(&masks[curvec].mask, irq_default_affinity);
> - /*
> - * Spread on present CPUs starting from affd->pre_vectors. If we
> - * have multiple sets, build each sets affinity mask separately.
> - */
> - nr_sets = affd->nr_sets;
> - if (!nr_sets)
> - nr_sets = 1;
> -
> - for (i = 0, usedvecs = 0; i < nr_sets; i++) {
> - int this_vecs = affd->sets ? affd->sets[i] : affvecs;
> - int ret;
> -
> - ret = irq_build_affinity_masks(affd, curvec, this_vecs,
> - curvec, masks);
> - if (ret) {
> - kfree(masks);
> - return NULL;
> - }
> - curvec += this_vecs;
> - usedvecs += this_vecs;
> +
> + if (irq_build_affinity_masks(affd, curvec, affvecs, curvec, masks)) {
> + kfree(masks);
> + return NULL;
> }
>
> /* Fill out vectors at the end that don't need affinity */
> - if (usedvecs >= affvecs)
> - curvec = affd->pre_vectors + affvecs;
> - else
> - curvec = affd->pre_vectors + usedvecs;
> - for (; curvec < nvecs; curvec++)
> + for (curvec = affd->pre_vectors + affvecs; curvec < nvecs; curvec++)
> cpumask_copy(&masks[curvec].mask, irq_default_affinity);
>
> /* Mark the managed interrupts */
> @@ -340,21 +320,13 @@ int irq_calc_affinity_vectors(int minvec, int maxvec, const struct irq_affinity
> {
> int resv = affd->pre_vectors + affd->post_vectors;
> int vecs = maxvec - resv;
> - int set_vecs;
> + int ret;
>
> if (resv > minvec)
> return 0;
>
> - if (affd->nr_sets) {
> - int i;
> -
> - for (i = 0, set_vecs = 0; i < affd->nr_sets; i++)
> - set_vecs += affd->sets[i];
> - } else {
> - get_online_cpus();
> - set_vecs = cpumask_weight(cpu_possible_mask);
> - put_online_cpus();
> - }
> -
> - return resv + min(set_vecs, vecs);
> + get_online_cpus();
> + ret = min_t(int, cpumask_weight(cpu_possible_mask), vecs) + resv;
> + put_online_cpus();
> + return ret;
> }
> --
> 2.9.5
>
WARNING: multiple messages have this Message-ID (diff)
From: helgaas@kernel.org (Bjorn Helgaas)
Subject: [PATCH 5/5] genirq/affinity: remove support for allocating interrupt sets
Date: Thu, 7 Feb 2019 16:22:46 -0600 [thread overview]
Message-ID: <20190207222245.GR7268@google.com> (raw)
In-Reply-To: <20190125095347.17950-6-ming.lei@redhat.com>
On Fri, Jan 25, 2019@05:53:47PM +0800, Ming Lei wrote:
> Now allocating interrupt sets can be done via .setup_affinity()
> easily, so remove the support for allocating interrupt sets.
>
> With this change, we don't need the limit of 'minvec == maxvec'
> any more in pci_alloc_irq_vectors_affinity().
>
> Meantime irq_create_affinity_masks() gets simplified a lot.
>
> Signed-off-by: Ming Lei <ming.lei at redhat.com>
Acked-by: Bjorn Helgaas <bhelgaas at google.com> # pci/msi.c parts
> ---
> drivers/pci/msi.c | 14 -------------
> include/linux/interrupt.h | 4 ----
> kernel/irq/affinity.c | 52 +++++++++++------------------------------------
> 3 files changed, 12 insertions(+), 58 deletions(-)
>
> diff --git a/drivers/pci/msi.c b/drivers/pci/msi.c
> index 4c0b47867258..331483de1294 100644
> --- a/drivers/pci/msi.c
> +++ b/drivers/pci/msi.c
> @@ -1035,13 +1035,6 @@ static int __pci_enable_msi_range(struct pci_dev *dev, int minvec, int maxvec,
> if (maxvec < minvec)
> return -ERANGE;
>
> - /*
> - * If the caller is passing in sets, we can't support a range of
> - * vectors. The caller needs to handle that.
> - */
> - if (affd && affd->nr_sets && minvec != maxvec)
> - return -EINVAL;
> -
> if (WARN_ON_ONCE(dev->msi_enabled))
> return -EINVAL;
>
> @@ -1093,13 +1086,6 @@ static int __pci_enable_msix_range(struct pci_dev *dev,
> if (maxvec < minvec)
> return -ERANGE;
>
> - /*
> - * If the caller is passing in sets, we can't support a range of
> - * supported vectors. The caller needs to handle that.
> - */
> - if (affd && affd->nr_sets && minvec != maxvec)
> - return -EINVAL;
> -
> if (WARN_ON_ONCE(dev->msix_enabled))
> return -EINVAL;
>
> diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h
> index b820b07f3b55..a035e165f405 100644
> --- a/include/linux/interrupt.h
> +++ b/include/linux/interrupt.h
> @@ -260,8 +260,6 @@ struct irq_affinity_desc {
> * and driver has to handle pre_vectors & post_vectors
> * correctly, set 'is_managed' flag correct too
> * @priv: Private data of @setup_affinity
> - * @nr_sets: Length of passed in *sets array
> - * @sets: Number of affinitized sets
> */
> struct irq_affinity {
> int pre_vectors;
> @@ -270,8 +268,6 @@ struct irq_affinity {
> struct irq_affinity_desc *,
> unsigned int);
> void *priv;
> - int nr_sets;
> - int *sets;
> };
>
> #if defined(CONFIG_SMP)
> diff --git a/kernel/irq/affinity.c b/kernel/irq/affinity.c
> index 524fdcda9f85..e8fea65325d9 100644
> --- a/kernel/irq/affinity.c
> +++ b/kernel/irq/affinity.c
> @@ -269,9 +269,9 @@ struct irq_affinity_desc *
> irq_create_affinity_masks(int nvecs, const struct irq_affinity *affd)
> {
> int affvecs = nvecs - affd->pre_vectors - affd->post_vectors;
> - int curvec, usedvecs;
> + int curvec;
> struct irq_affinity_desc *masks = NULL;
> - int i, nr_sets;
> + int i;
>
> /*
> * If there aren't any vectors left after applying the pre/post
> @@ -293,34 +293,14 @@ irq_create_affinity_masks(int nvecs, const struct irq_affinity *affd)
> /* Fill out vectors at the beginning that don't need affinity */
> for (curvec = 0; curvec < affd->pre_vectors; curvec++)
> cpumask_copy(&masks[curvec].mask, irq_default_affinity);
> - /*
> - * Spread on present CPUs starting from affd->pre_vectors. If we
> - * have multiple sets, build each sets affinity mask separately.
> - */
> - nr_sets = affd->nr_sets;
> - if (!nr_sets)
> - nr_sets = 1;
> -
> - for (i = 0, usedvecs = 0; i < nr_sets; i++) {
> - int this_vecs = affd->sets ? affd->sets[i] : affvecs;
> - int ret;
> -
> - ret = irq_build_affinity_masks(affd, curvec, this_vecs,
> - curvec, masks);
> - if (ret) {
> - kfree(masks);
> - return NULL;
> - }
> - curvec += this_vecs;
> - usedvecs += this_vecs;
> +
> + if (irq_build_affinity_masks(affd, curvec, affvecs, curvec, masks)) {
> + kfree(masks);
> + return NULL;
> }
>
> /* Fill out vectors at the end that don't need affinity */
> - if (usedvecs >= affvecs)
> - curvec = affd->pre_vectors + affvecs;
> - else
> - curvec = affd->pre_vectors + usedvecs;
> - for (; curvec < nvecs; curvec++)
> + for (curvec = affd->pre_vectors + affvecs; curvec < nvecs; curvec++)
> cpumask_copy(&masks[curvec].mask, irq_default_affinity);
>
> /* Mark the managed interrupts */
> @@ -340,21 +320,13 @@ int irq_calc_affinity_vectors(int minvec, int maxvec, const struct irq_affinity
> {
> int resv = affd->pre_vectors + affd->post_vectors;
> int vecs = maxvec - resv;
> - int set_vecs;
> + int ret;
>
> if (resv > minvec)
> return 0;
>
> - if (affd->nr_sets) {
> - int i;
> -
> - for (i = 0, set_vecs = 0; i < affd->nr_sets; i++)
> - set_vecs += affd->sets[i];
> - } else {
> - get_online_cpus();
> - set_vecs = cpumask_weight(cpu_possible_mask);
> - put_online_cpus();
> - }
> -
> - return resv + min(set_vecs, vecs);
> + get_online_cpus();
> + ret = min_t(int, cpumask_weight(cpu_possible_mask), vecs) + resv;
> + put_online_cpus();
> + return ret;
> }
> --
> 2.9.5
>
next prev parent reply other threads:[~2019-02-07 22:22 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-01-25 9:53 [PATCH 0/5] genirq/affinity: introduce .setup_affinity to support allocating interrupt sets Ming Lei
2019-01-25 9:53 ` Ming Lei
2019-01-25 9:53 ` [PATCH 1/5] genirq/affinity: move allocation of 'node_to_cpumask' to irq_build_affinity_masks Ming Lei
2019-01-25 9:53 ` Ming Lei
2019-02-07 22:02 ` Bjorn Helgaas
2019-02-07 22:02 ` Bjorn Helgaas
2019-02-10 19:01 ` [tip:irq/core] genirq/affinity: Move allocation of 'node_to_cpumask' to irq_build_affinity_masks() tip-bot for Ming Lei
2019-01-25 9:53 ` [PATCH 2/5] genirq/affinity: allow driver to setup managed IRQ's affinity Ming Lei
2019-01-25 9:53 ` Ming Lei
2019-02-07 22:21 ` Bjorn Helgaas
2019-02-07 22:21 ` Bjorn Helgaas
2019-02-10 9:22 ` Ming Lei
2019-02-10 9:22 ` Ming Lei
2019-02-10 16:30 ` Thomas Gleixner
2019-02-10 16:30 ` Thomas Gleixner
2019-02-11 3:54 ` Ming Lei
2019-02-11 3:54 ` Ming Lei
2019-02-11 14:39 ` Bjorn Helgaas
2019-02-11 14:39 ` Bjorn Helgaas
2019-02-11 22:38 ` Thomas Gleixner
2019-02-11 22:38 ` Thomas Gleixner
2019-02-12 11:17 ` Ming Lei
2019-02-12 11:17 ` Ming Lei
2019-01-25 9:53 ` [PATCH 3/5] genirq/affinity: introduce irq_build_affinity() Ming Lei
2019-01-25 9:53 ` Ming Lei
2019-01-25 9:53 ` [PATCH 4/5] nvme-pci: simplify nvme_setup_irqs() via .setup_affinity callback Ming Lei
2019-01-25 9:53 ` Ming Lei
2019-02-10 16:39 ` Thomas Gleixner
2019-02-10 16:39 ` Thomas Gleixner
2019-02-11 3:58 ` Ming Lei
2019-02-11 3:58 ` Ming Lei
2019-02-10 18:49 ` Thomas Gleixner
2019-02-10 18:49 ` Thomas Gleixner
2019-02-11 4:09 ` Ming Lei
2019-02-11 4:09 ` Ming Lei
2019-01-25 9:53 ` [PATCH 5/5] genirq/affinity: remove support for allocating interrupt sets Ming Lei
2019-01-25 9:53 ` Ming Lei
2019-02-07 22:22 ` Bjorn Helgaas [this message]
2019-02-07 22:22 ` Bjorn Helgaas
2019-01-25 9:56 ` [PATCH 0/5] genirq/affinity: introduce .setup_affinity to support " Ming Lei
2019-01-25 9:56 ` Ming Lei
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=20190207222245.GR7268@google.com \
--to=helgaas@kernel.org \
--cc=axboe@kernel.dk \
--cc=hch@lst.de \
--cc=linux-block@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-nvme@lists.infradead.org \
--cc=linux-pci@vger.kernel.org \
--cc=ming.lei@redhat.com \
--cc=sagi@grimberg.me \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.