From: Lucas De Marchi <lucas.demarchi@intel.com>
To: igt-dev@lists.freedesktop.org
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Subject: [PATCH i-g-t 5/9] tests/core_hotunplug: Stop unloading audio
Date: Mon, 4 Nov 2024 22:18:41 -0800 [thread overview]
Message-ID: <20241105061845.2486557-6-lucas.demarchi@intel.com> (raw)
In-Reply-To: <20241105061845.2486557-1-lucas.demarchi@intel.com>
Not needed anymore and test should succeed when unbinding the device
from the driver. On a DG2 system which has pipewire running,
igt@core_hotunplug@unbind-rebind passes without this patch, but takes
~26sec and a dmesg full of warnings related to audio. After this patch
it took 4.7sec and apparently 1 unrelated warning about
"Unclaimed read from register 0xc4000" when rebinding.
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
tests/core_hotunplug.c | 46 ------------------------------------------
1 file changed, 46 deletions(-)
diff --git a/tests/core_hotunplug.c b/tests/core_hotunplug.c
index 7f17f4423..07a8dea37 100644
--- a/tests/core_hotunplug.c
+++ b/tests/core_hotunplug.c
@@ -96,7 +96,6 @@ struct hotunplug {
const char *failure;
bool need_healthcheck;
bool has_intel_perf;
- char *snd_driver;
int chipset;
};
@@ -187,21 +186,6 @@ static void prepare(struct hotunplug *priv)
static void driver_unbind(struct hotunplug *priv, const char *prefix,
int timeout)
{
- /*
- * FIXME: on some devices, the audio driver (snd_hda_intel)
- * binds into the i915 driver. On such hardware, kernel warnings
- * and errors may happen if i915 is unbind/removed before removing
- * first the audio driver.
- * So, add a logic that unloads the audio driver before trying to
- * unbind i915 driver, reloading it when binding again.
- */
- if (igt_audio_driver_unload(&priv->snd_driver)) {
- igt_skip("Audio driver %s in use, skipping test\n",
- priv->snd_driver);
- } else if (priv->snd_driver) {
- igt_info("Unloaded audio driver %s\n", priv->snd_driver);
- }
-
local_debug("%sunbinding the driver from the device\n", prefix);
priv->failure = "Driver unbind failure!";
@@ -230,13 +214,6 @@ static void driver_bind(struct hotunplug *priv, int timeout)
igt_fail_on_f(faccessat(priv->fd.sysfs_drv, priv->dev_bus_addr,
F_OK, 0),
"Rebound device not present (%s)!\n", priv->dev_bus_addr);
-
- if (priv->snd_driver) {
- igt_info("Realoading %s\n", priv->snd_driver);
- igt_kmod_load(priv->snd_driver, NULL);
- free(priv->snd_driver);
- priv->snd_driver = NULL;
- }
}
/* Remove (virtually unplug) the device from its bus */
@@ -245,21 +222,6 @@ static void device_unplug(struct hotunplug *priv, const char *prefix,
{
igt_require(priv->fd.sysfs_dev == -1);
- /*
- * FIXME: on some devices, the audio driver (snd_hda_intel)
- * binds into the i915 driver. On such hardware, kernel warnings
- * and errors may happen if i915 is unbind/removed before removing
- * first the audio driver.
- * So, add a logic that unloads the audio driver before trying to
- * unbind i915 driver, reloading it when binding again.
- */
- if (igt_audio_driver_unload(&priv->snd_driver)) {
- igt_skip("Audio driver %s in use, skipping test\n",
- priv->snd_driver);
- } else if (priv->snd_driver) {
- igt_info("Unloaded audio driver %s\n", priv->snd_driver);
- }
-
priv->fd.sysfs_dev = openat(priv->fd.sysfs_bus, priv->dev_bus_addr,
O_DIRECTORY);
igt_assert_fd(priv->fd.sysfs_dev);
@@ -293,13 +255,6 @@ static void bus_rescan(struct hotunplug *priv, int timeout)
igt_fail_on_f(faccessat(priv->fd.sysfs_bus, priv->dev_bus_addr,
F_OK, 0),
"Fakely unplugged device not rediscovered (%s)!\n", priv->dev_bus_addr);
-
- if (priv->snd_driver) {
- igt_info("Realoading %s\n", priv->snd_driver);
- igt_kmod_load(priv->snd_driver, NULL);
- free(priv->snd_driver);
- priv->snd_driver = NULL;
- }
}
static void cleanup(struct hotunplug *priv)
@@ -679,7 +634,6 @@ igt_main
.failure = NULL,
.need_healthcheck = true,
.has_intel_perf = false,
- .snd_driver = NULL,
.chipset = DRIVER_ANY,
};
--
2.47.0
next prev parent reply other threads:[~2024-11-05 6:19 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-05 6:18 [PATCH i-g-t 0/9] i915: unload refactors Lucas De Marchi
2024-11-05 6:18 ` [PATCH i-g-t 1/9] lib/igt_kmod: Remove unused module_ref Lucas De Marchi
2024-11-06 22:09 ` [i-g-t,1/9] " Taylor, Clinton A
2024-11-05 6:18 ` [PATCH i-g-t 2/9] tests/intel/perf_pmu: Remove trial unload Lucas De Marchi
2024-11-19 1:15 ` Matt Roper
2024-11-05 6:18 ` [PATCH i-g-t 3/9] lib/igt_kmod: Share xe's unload logic with i915 Lucas De Marchi
2024-11-19 1:20 ` Matt Roper
2024-11-05 6:18 ` [PATCH i-g-t 4/9] lib/igt_kmod: Remove unused low level __igt_intel_driver_unload() Lucas De Marchi
2024-11-19 1:21 ` Matt Roper
2024-11-05 6:18 ` Lucas De Marchi [this message]
2024-11-19 1:23 ` [PATCH i-g-t 5/9] tests/core_hotunplug: Stop unloading audio Matt Roper
2024-11-05 6:18 ` [PATCH i-g-t 6/9] tests/device_reset: " Lucas De Marchi
2024-11-19 1:24 ` Matt Roper
2024-11-05 6:18 ` [PATCH i-g-t 7/9] lib: Remove unused audio-related helpers Lucas De Marchi
2024-11-19 1:28 ` Matt Roper
2024-11-05 6:18 ` [PATCH i-g-t 8/9] i915_module_load: Stop caring about snd Lucas De Marchi
2024-11-19 1:34 ` Matt Roper
2024-11-05 6:18 ` [PATCH i-g-t 9/9] xe_module_load: " Lucas De Marchi
2024-11-19 1:35 ` Matt Roper
2024-11-05 9:30 ` ✓ Fi.CI.BAT: success for i915: unload refactors Patchwork
2024-11-05 9:34 ` ✓ CI.xeBAT: " Patchwork
2024-11-06 4:37 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-11-06 9:39 ` ✗ CI.xeFULL: " Patchwork
2024-11-06 17:11 ` Lucas De Marchi
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=20241105061845.2486557-6-lucas.demarchi@intel.com \
--to=lucas.demarchi@intel.com \
--cc=igt-dev@lists.freedesktop.org \
/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