From: Guenter Roeck <linux@roeck-us.net>
To: Brian Norris <briannorris@chromium.org>
Cc: Thomas Gleixner <tglx@linutronix.de>,
David Gow <davidgow@google.com>,
linux-kernel@vger.kernel.org,
Geert Uytterhoeven <geert@linux-m68k.org>,
kunit-dev@googlegroups.com
Subject: Re: [PATCH v2 2/6] genirq/test: Factor out fake-virq setup
Date: Fri, 22 Aug 2025 18:13:27 -0700 [thread overview]
Message-ID: <bbd30cfb-eadd-49bd-b01c-6cc88d9243b6@roeck-us.net> (raw)
In-Reply-To: <20250822190140.2154646-3-briannorris@chromium.org>
On Fri, Aug 22, 2025 at 11:59:03AM -0700, Brian Norris wrote:
> We have to repeat a few things in tests. Factor out the creation of fake
> IRQs.
>
> Signed-off-by: Brian Norris <briannorris@chromium.org>
> Reviewed-by: David Gow <davidgow@google.com>
Tested-by: Guenter Roeck <linux@roeck-us.net>
> ---
>
> (no changes since v1)
>
> kernel/irq/irq_test.c | 45 +++++++++++++++++++------------------------
> 1 file changed, 20 insertions(+), 25 deletions(-)
>
> diff --git a/kernel/irq/irq_test.c b/kernel/irq/irq_test.c
> index e220e7b2fc18..f8f4532c2805 100644
> --- a/kernel/irq/irq_test.c
> +++ b/kernel/irq/irq_test.c
> @@ -41,15 +41,15 @@ static struct irq_chip fake_irq_chip = {
> .flags = IRQCHIP_SKIP_SET_WAKE,
> };
>
> -static void irq_disable_depth_test(struct kunit *test)
> +static int irq_test_setup_fake_irq(struct kunit *test, struct irq_affinity_desc *affd)
> {
> struct irq_desc *desc;
> - int virq, ret;
> + int virq;
>
> - virq = irq_domain_alloc_descs(-1, 1, 0, NUMA_NO_NODE, NULL);
> + virq = irq_domain_alloc_descs(-1, 1, 0, NUMA_NO_NODE, affd);
> KUNIT_ASSERT_GE(test, virq, 0);
>
> - irq_set_chip_and_handler(virq, &dummy_irq_chip, handle_simple_irq);
> + irq_set_chip_and_handler(virq, &fake_irq_chip, handle_simple_irq);
>
> desc = irq_to_desc(virq);
> KUNIT_ASSERT_PTR_NE(test, desc, NULL);
> @@ -57,6 +57,19 @@ static void irq_disable_depth_test(struct kunit *test)
> /* On some architectures, IRQs are NOREQUEST | NOPROBE by default. */
> irq_settings_clr_norequest(desc);
>
> + return virq;
> +}
> +
> +static void irq_disable_depth_test(struct kunit *test)
> +{
> + struct irq_desc *desc;
> + int virq, ret;
> +
> + virq = irq_test_setup_fake_irq(test, NULL);
> +
> + desc = irq_to_desc(virq);
> + KUNIT_ASSERT_PTR_NE(test, desc, NULL);
> +
> ret = request_irq(virq, noop_handler, 0, "test_irq", NULL);
> KUNIT_EXPECT_EQ(test, ret, 0);
>
> @@ -76,17 +89,11 @@ static void irq_free_disabled_test(struct kunit *test)
> struct irq_desc *desc;
> int virq, ret;
>
> - virq = irq_domain_alloc_descs(-1, 1, 0, NUMA_NO_NODE, NULL);
> - KUNIT_ASSERT_GE(test, virq, 0);
> -
> - irq_set_chip_and_handler(virq, &dummy_irq_chip, handle_simple_irq);
> + virq = irq_test_setup_fake_irq(test, NULL);
>
> desc = irq_to_desc(virq);
> KUNIT_ASSERT_PTR_NE(test, desc, NULL);
>
> - /* On some architectures, IRQs are NOREQUEST | NOPROBE by default. */
> - irq_settings_clr_norequest(desc);
> -
> ret = request_irq(virq, noop_handler, 0, "test_irq", NULL);
> KUNIT_EXPECT_EQ(test, ret, 0);
>
> @@ -118,17 +125,11 @@ static void irq_shutdown_depth_test(struct kunit *test)
> if (!IS_ENABLED(CONFIG_SMP))
> kunit_skip(test, "requires CONFIG_SMP for managed shutdown");
>
> - virq = irq_domain_alloc_descs(-1, 1, 0, NUMA_NO_NODE, &affinity);
> - KUNIT_ASSERT_GE(test, virq, 0);
> -
> - irq_set_chip_and_handler(virq, &dummy_irq_chip, handle_simple_irq);
> + virq = irq_test_setup_fake_irq(test, &affinity);
>
> desc = irq_to_desc(virq);
> KUNIT_ASSERT_PTR_NE(test, desc, NULL);
>
> - /* On some architectures, IRQs are NOREQUEST | NOPROBE by default. */
> - irq_settings_clr_norequest(desc);
> -
> data = irq_desc_get_irq_data(desc);
> KUNIT_ASSERT_PTR_NE(test, data, NULL);
>
> @@ -181,17 +182,11 @@ static void irq_cpuhotplug_test(struct kunit *test)
>
> cpumask_copy(&affinity.mask, cpumask_of(1));
>
> - virq = irq_domain_alloc_descs(-1, 1, 0, NUMA_NO_NODE, &affinity);
> - KUNIT_ASSERT_GE(test, virq, 0);
> -
> - irq_set_chip_and_handler(virq, &fake_irq_chip, handle_simple_irq);
> + virq = irq_test_setup_fake_irq(test, &affinity);
>
> desc = irq_to_desc(virq);
> KUNIT_ASSERT_PTR_NE(test, desc, NULL);
>
> - /* On some architectures, IRQs are NOREQUEST | NOPROBE by default. */
> - irq_settings_clr_norequest(desc);
> -
> data = irq_desc_get_irq_data(desc);
> KUNIT_ASSERT_PTR_NE(test, data, NULL);
>
> --
> 2.51.0.rc2.233.g662b1ed5c5-goog
>
next prev parent reply other threads:[~2025-08-23 1:13 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-22 18:59 [PATCH v2 0/6] genirq/test: Platform/architecture fixes Brian Norris
2025-08-22 18:59 ` [PATCH v2 1/6] genirq/test: Select IRQ_DOMAIN Brian Norris
2025-08-23 1:13 ` Guenter Roeck
2025-09-03 15:12 ` [tip: irq/core] " tip-bot2 for Brian Norris
2025-10-02 16:22 ` [PATCH v2 1/6] " ChaosEsque Team
2025-08-22 18:59 ` [PATCH v2 2/6] genirq/test: Factor out fake-virq setup Brian Norris
2025-08-23 1:13 ` Guenter Roeck [this message]
2025-09-03 15:12 ` [tip: irq/core] " tip-bot2 for Brian Norris
2025-08-22 18:59 ` [PATCH v2 3/6] genirq/test: Fail early if we can't request an IRQ Brian Norris
2025-08-23 1:13 ` Guenter Roeck
2025-09-03 15:12 ` [tip: irq/core] genirq/test: Fail early if interrupt request fails tip-bot2 for Brian Norris
2025-08-22 18:59 ` [PATCH v2 4/6] genirq/test: Depend on SPARSE_IRQ Brian Norris
2025-08-23 1:13 ` Guenter Roeck
2025-08-23 6:59 ` David Gow
2025-08-25 21:23 ` Brian Norris
2025-09-03 15:12 ` [tip: irq/core] " tip-bot2 for Brian Norris
2025-08-22 18:59 ` [PATCH v2 5/6] genirq/test: Drop CONFIG_GENERIC_IRQ_MIGRATION assumptions Brian Norris
2025-08-23 1:13 ` Guenter Roeck
2025-09-03 15:12 ` [tip: irq/core] " tip-bot2 for Brian Norris
2025-08-22 18:59 ` [PATCH v2 6/6] genirq/test: Ensure CPU 1 is online for hotplug test Brian Norris
2025-08-23 1:14 ` Guenter Roeck
2025-09-03 15:12 ` [tip: irq/core] " tip-bot2 for Brian Norris
2025-08-22 23:26 ` [PATCH v2 0/6] genirq/test: Platform/architecture fixes Guenter Roeck
2025-08-23 1:15 ` Guenter Roeck
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=bbd30cfb-eadd-49bd-b01c-6cc88d9243b6@roeck-us.net \
--to=linux@roeck-us.net \
--cc=briannorris@chromium.org \
--cc=davidgow@google.com \
--cc=geert@linux-m68k.org \
--cc=kunit-dev@googlegroups.com \
--cc=linux-kernel@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
all inboxes | Powered by JetHome®