* [CI 1/9] lib/igt_kmod: Remove unused module_ref
@ 2024-11-19 5:40 Lucas De Marchi
2024-11-19 5:40 ` [CI 2/9] tests/intel/perf_pmu: Remove trial unload Lucas De Marchi
` (10 more replies)
0 siblings, 11 replies; 16+ messages in thread
From: Lucas De Marchi @ 2024-11-19 5:40 UTC (permalink / raw)
To: igt-dev; +Cc: Lucas De Marchi, Clint Taylor
This is unused since commit 03706cd84099 ("lib/igt_kmod: remove the
conditional audio removal code"). Nuke it.
Reviewed-by: Clint Taylor <Clinton.A.Taylor@intel.com>
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
lib/igt_kmod.c | 8 --------
1 file changed, 8 deletions(-)
diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c
index 87036d06c..dc6b11c87 100644
--- a/lib/igt_kmod.c
+++ b/lib/igt_kmod.c
@@ -593,14 +593,6 @@ static int igt_always_unload_audio_driver(char **who)
return 0;
}
-struct module_ref {
- char *name;
- unsigned long mem;
- unsigned int ref_count;
- unsigned int num_required;
- unsigned int *required_by;
-};
-
int igt_audio_driver_unload(char **who)
{
/*
--
2.47.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [CI 2/9] tests/intel/perf_pmu: Remove trial unload
2024-11-19 5:40 [CI 1/9] lib/igt_kmod: Remove unused module_ref Lucas De Marchi
@ 2024-11-19 5:40 ` Lucas De Marchi
2024-11-19 5:40 ` [CI 3/9] lib/igt_kmod: Share xe's unload logic with i915 Lucas De Marchi
` (9 subsequent siblings)
10 siblings, 0 replies; 16+ messages in thread
From: Lucas De Marchi @ 2024-11-19 5:40 UTC (permalink / raw)
To: igt-dev; +Cc: Lucas De Marchi, Matt Roper
Remove the trial module so there are no more users of
__igt_i915_driver_unload() and thus i915 can start sharing the xe logic.
Later when perf_pmu_unregister() is fixed in the kernel, a new check can
be added for trying to unbind the device while still having open events.
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
tests/intel/perf_pmu.c | 15 +++++----------
1 file changed, 5 insertions(+), 10 deletions(-)
diff --git a/tests/intel/perf_pmu.c b/tests/intel/perf_pmu.c
index bfa2d501a..f916ded53 100644
--- a/tests/intel/perf_pmu.c
+++ b/tests/intel/perf_pmu.c
@@ -2282,7 +2282,6 @@ static void test_unload(unsigned int num_engines)
int fd[4 + num_engines * 3], i;
uint64_t *buf;
int count = 0, ret;
- char *who = NULL;
int i915;
i915 = __drm_open_driver(DRIVER_INTEL);
@@ -2337,23 +2336,19 @@ static void test_unload(unsigned int num_engines)
igt_debug("Read %d events from perf and trial unload\n", count);
pmu_read_multi(fd[0], count, buf);
- ret = __igt_i915_driver_unload(&who);
- igt_debug("__igt_i915_driver_unload: ret %d who %s\n", ret, who);
- igt_assert(ret != 0 && !strcmp(who, "i915"));
- free(who);
- pmu_read_multi(fd[0], count, buf);
igt_debug("Close perf\n");
-
for (i = 0; i < count; i++)
close(fd[i]);
+ igt_debug("Final unload\n");
+ /* After perf is closed, we should be able to remove the module */
+ ret = igt_i915_driver_unload();
+ igt_assert_eq(ret, 0);
+
free(buf);
}
igt_waitchildren();
-
- igt_debug("Final unload\n");
- igt_assert_eq(__igt_i915_driver_unload(NULL), 0);
}
static void pmu_read(int i915)
--
2.47.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [CI 3/9] lib/igt_kmod: Share xe's unload logic with i915
2024-11-19 5:40 [CI 1/9] lib/igt_kmod: Remove unused module_ref Lucas De Marchi
2024-11-19 5:40 ` [CI 2/9] tests/intel/perf_pmu: Remove trial unload Lucas De Marchi
@ 2024-11-19 5:40 ` Lucas De Marchi
2024-11-19 5:40 ` [CI 4/9] lib/igt_kmod: Remove unused low level __igt_intel_driver_unload() Lucas De Marchi
` (8 subsequent siblings)
10 siblings, 0 replies; 16+ messages in thread
From: Lucas De Marchi @ 2024-11-19 5:40 UTC (permalink / raw)
To: igt-dev; +Cc: Lucas De Marchi, Matt Roper
Now that xe unbind+unload logic is working, extend it to i915.
Note that there was a buggy call igt_kmod_is_loaded("driver") that would
never trigger: no point fixing that if we are dropping it though.
Another note that we can't still completely drop the old logic since a
few tests rely on it. Example: tests/intel/perf_pmu.c checks for trying
to remove the module with a perf event open and that being blocked by
the module refcount. Doing unbind() first would succeed the module
unload, but also crash the machine since perf doesn't work (yet) with
unplugging the device. That will need to be fixed in the kernel first.
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
lib/igt_kmod.c | 36 +++---------------------------------
lib/igt_kmod.h | 6 ++++--
2 files changed, 7 insertions(+), 35 deletions(-)
diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c
index dc6b11c87..0ce0b9462 100644
--- a/lib/igt_kmod.c
+++ b/lib/igt_kmod.c
@@ -703,40 +703,10 @@ int igt_kmod_unbind(const char *mod_name)
int
igt_intel_driver_unload(const char *driver)
{
- char *who = NULL;
- int ret;
-
- ret = __igt_intel_driver_unload(&who, driver);
- if (ret) {
- igt_warn("Could not unload %s\n", who);
- igt_kmod_list_loaded();
- igt_lsof("/dev/dri");
- igt_lsof("/dev/snd");
- free(who);
- return ret;
- }
- free(who);
-
- if (igt_kmod_is_loaded("intel-gtt"))
- igt_kmod_unload("intel-gtt");
-
- igt_kmod_unload("drm_kms_helper");
- igt_kmod_unload("drm");
-
- if (igt_kmod_is_loaded("driver")) {
- igt_warn("%s.ko still loaded!\n", driver);
- return -EBUSY;
- }
-
- return 0;
-}
-
-int igt_xe_driver_unload(void)
-{
- igt_kmod_unbind("xe");
+ igt_kmod_unbind(driver);
- igt_kmod_unload("xe");
- if (igt_kmod_is_loaded("xe"))
+ igt_kmod_unload(driver);
+ if (igt_kmod_is_loaded(driver))
return IGT_EXIT_FAILURE;
return IGT_EXIT_SUCCESS;
diff --git a/lib/igt_kmod.h b/lib/igt_kmod.h
index 193b95627..88d4a51e6 100644
--- a/lib/igt_kmod.h
+++ b/lib/igt_kmod.h
@@ -64,8 +64,10 @@ static inline int igt_xe_driver_load(const char *opts)
return igt_intel_driver_load(opts, "xe");
}
-
-int igt_xe_driver_unload(void);
+static inline int igt_xe_driver_unload(void)
+{
+ return igt_intel_driver_unload("xe");
+}
int igt_amdgpu_driver_load(const char *opts);
int igt_amdgpu_driver_unload(void);
--
2.47.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [CI 4/9] lib/igt_kmod: Remove unused low level __igt_intel_driver_unload()
2024-11-19 5:40 [CI 1/9] lib/igt_kmod: Remove unused module_ref Lucas De Marchi
2024-11-19 5:40 ` [CI 2/9] tests/intel/perf_pmu: Remove trial unload Lucas De Marchi
2024-11-19 5:40 ` [CI 3/9] lib/igt_kmod: Share xe's unload logic with i915 Lucas De Marchi
@ 2024-11-19 5:40 ` Lucas De Marchi
2024-11-19 5:40 ` [CI 5/9] tests/core_hotunplug: Stop unloading audio Lucas De Marchi
` (7 subsequent siblings)
10 siblings, 0 replies; 16+ messages in thread
From: Lucas De Marchi @ 2024-11-19 5:40 UTC (permalink / raw)
To: igt-dev; +Cc: Lucas De Marchi, Matt Roper
__igt_intel_driver_unload() is now unused and not needed.
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
lib/igt_kmod.c | 47 -----------------------------------------------
lib/igt_kmod.h | 6 ------
2 files changed, 53 deletions(-)
diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c
index 0ce0b9462..1854b44ec 100644
--- a/lib/igt_kmod.c
+++ b/lib/igt_kmod.c
@@ -605,53 +605,6 @@ int igt_audio_driver_unload(char **who)
return igt_always_unload_audio_driver(who);
}
-int __igt_intel_driver_unload(char **who, const char *driver)
-{
- int ret;
-
- const char *aux[] = {
- /* gen5: ips uses symbol_get() so only a soft module dependency */
- "intel_ips",
- /* mei_gsc uses an i915 aux dev and the other mei mods depend on it */
- "mei_pxp",
- "mei_hdcp",
- "mei_gsc",
- NULL,
- };
-
- /* unbind vt */
- bind_fbcon(false);
-
- ret = igt_audio_driver_unload(who);
- if (ret)
- return ret;
-
- for (const char **m = aux; *m; m++) {
- if (!igt_kmod_is_loaded(*m))
- continue;
-
- ret = igt_kmod_unload(*m);
- if (ret) {
- if (who)
- *who = strdup_realloc(*who, *m);
-
- return ret;
- }
- }
-
- if (igt_kmod_is_loaded(driver)) {
- ret = igt_kmod_unload(driver);
- if (ret) {
- if (who)
- *who = strdup_realloc(*who, driver);
-
- return ret;
- }
- }
-
- return 0;
-}
-
/*
* Unbind driver from devices. Currently supports only PCI bus
*/
diff --git a/lib/igt_kmod.h b/lib/igt_kmod.h
index 88d4a51e6..67ae6833f 100644
--- a/lib/igt_kmod.h
+++ b/lib/igt_kmod.h
@@ -42,7 +42,6 @@ int igt_audio_driver_unload(char **whom);
int igt_intel_driver_load(const char *opts, const char *driver);
int igt_intel_driver_unload(const char *driver);
-int __igt_intel_driver_unload(char **who, const char *driver);
static inline int igt_i915_driver_load(const char *opts)
{
@@ -54,11 +53,6 @@ static inline int igt_i915_driver_unload(void)
return igt_intel_driver_unload("i915");
}
-static inline int __igt_i915_driver_unload(char **whom)
-{
- return __igt_intel_driver_unload(whom, "i915");
-};
-
static inline int igt_xe_driver_load(const char *opts)
{
return igt_intel_driver_load(opts, "xe");
--
2.47.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [CI 5/9] tests/core_hotunplug: Stop unloading audio
2024-11-19 5:40 [CI 1/9] lib/igt_kmod: Remove unused module_ref Lucas De Marchi
` (2 preceding siblings ...)
2024-11-19 5:40 ` [CI 4/9] lib/igt_kmod: Remove unused low level __igt_intel_driver_unload() Lucas De Marchi
@ 2024-11-19 5:40 ` Lucas De Marchi
2024-11-19 5:40 ` [CI 6/9] tests/device_reset: " Lucas De Marchi
` (6 subsequent siblings)
10 siblings, 0 replies; 16+ messages in thread
From: Lucas De Marchi @ 2024-11-19 5:40 UTC (permalink / raw)
To: igt-dev; +Cc: Lucas De Marchi, Matt Roper
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.
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
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
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [CI 6/9] tests/device_reset: Stop unloading audio
2024-11-19 5:40 [CI 1/9] lib/igt_kmod: Remove unused module_ref Lucas De Marchi
` (3 preceding siblings ...)
2024-11-19 5:40 ` [CI 5/9] tests/core_hotunplug: Stop unloading audio Lucas De Marchi
@ 2024-11-19 5:40 ` Lucas De Marchi
2024-11-19 5:40 ` [CI 7/9] lib: Remove unused audio-related helpers Lucas De Marchi
` (5 subsequent siblings)
10 siblings, 0 replies; 16+ messages in thread
From: Lucas De Marchi @ 2024-11-19 5:40 UTC (permalink / raw)
To: igt-dev; +Cc: Lucas De Marchi, Matt Roper
Not needed anymore and test should succeed when unbinding the device
from the driver.
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
tests/device_reset.c | 7 -------
1 file changed, 7 deletions(-)
diff --git a/tests/device_reset.c b/tests/device_reset.c
index 40681931c..668ba8526 100644
--- a/tests/device_reset.c
+++ b/tests/device_reset.c
@@ -64,7 +64,6 @@ struct device_fds {
int slot_dir; /* pci hotplug slots fd */
} fds;
char dev_bus_addr[DEV_BUS_ADDR_LEN];
- char *snd_driver;
};
static int __open_sysfs_dir(int fd, const char* path)
@@ -345,9 +344,6 @@ static bool has_cold_reset(int slot_dir, const char **reason)
/* Unbind the driver from the device */
static void driver_unbind(struct device_fds *dev)
{
- if (is_i915_device(dev->fds.dev))
- igt_audio_driver_unload(&dev->snd_driver);
-
igt_debug("unbind the driver from the device\n");
igt_assert(igt_sysfs_set(dev->fds.drv_dir, "unbind",
dev->dev_bus_addr));
@@ -359,9 +355,6 @@ static void driver_bind(struct device_fds *dev)
igt_debug("rebind the driver to the device\n");
igt_abort_on_f(!igt_sysfs_set(dev->fds.drv_dir, "bind",
dev->dev_bus_addr), "driver rebind failed");
-
- if (dev->snd_driver)
- igt_kmod_load(dev->snd_driver, NULL);
}
/* Initiate device reset */
--
2.47.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [CI 7/9] lib: Remove unused audio-related helpers
2024-11-19 5:40 [CI 1/9] lib/igt_kmod: Remove unused module_ref Lucas De Marchi
` (4 preceding siblings ...)
2024-11-19 5:40 ` [CI 6/9] tests/device_reset: " Lucas De Marchi
@ 2024-11-19 5:40 ` Lucas De Marchi
2024-11-19 5:40 ` [CI 8/9] i915_module_load: Stop caring about snd/intel-gtt Lucas De Marchi
` (4 subsequent siblings)
10 siblings, 0 replies; 16+ messages in thread
From: Lucas De Marchi @ 2024-11-19 5:40 UTC (permalink / raw)
To: igt-dev; +Cc: Lucas De Marchi, Matt Roper
Now that xe and i915 are just doing unbind + rmmod, remove all the dead
code trying to workaround interaction with the sound modules.
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
lib/igt_aux.c | 284 -------------------------------------------------
lib/igt_aux.h | 3 -
lib/igt_kmod.c | 119 ---------------------
lib/igt_kmod.h | 2 -
4 files changed, 408 deletions(-)
diff --git a/lib/igt_aux.c b/lib/igt_aux.c
index 3407cc4f2..64dbe61a2 100644
--- a/lib/igt_aux.c
+++ b/lib/igt_aux.c
@@ -1653,290 +1653,6 @@ igt_lsof(const char *dpath)
free(sanitized);
}
-static void pulseaudio_unload_module(const uid_t euid, const gid_t egid)
-{
- struct igt_helper_process pa_proc = {};
- char xdg_dir[PATH_MAX];
- const char *homedir;
- struct passwd *pw;
-
- igt_fork_helper(&pa_proc) {
- pw = getpwuid(euid);
- homedir = pw->pw_dir;
- snprintf(xdg_dir, sizeof(xdg_dir), "/run/user/%d", euid);
-
- igt_info("Request pulseaudio to stop using audio device\n");
-
- setgid(egid);
- setuid(euid);
- clearenv();
- setenv("HOME", homedir, 1);
- setenv("XDG_RUNTIME_DIR",xdg_dir, 1);
-
- system("for i in $(pacmd list-sources|grep module:|cut -d : -f 2); do pactl unload-module $i; done");
- }
- igt_wait_helper(&pa_proc);
-}
-
-static int pipewire_pulse_pid = 0;
-static int pipewire_pw_reserve_pid = 0;
-static struct igt_helper_process pw_reserve_proc = {};
-
-
-static void pipewire_reserve_wait(void)
-{
- char xdg_dir[PATH_MAX];
- const char *homedir;
- struct passwd *pw;
- int tid = 0, euid, egid;
-
- igt_fork_helper(&pw_reserve_proc) {
- struct igt_process pc;
-
- igt_info("Preventing pipewire-pulse to use the audio drivers\n");
- open_process(&pc);
- while (get_process_ids(&pc)) {
- tid = pc.tid;
- euid = pc.euid;
- egid = pc.egid;
- if (pipewire_pulse_pid == tid)
- break;
- }
- close_process(&pc);
-
- /* Sanity check: if it can't find the process, it means it has gone */
- if (pipewire_pulse_pid != tid)
- exit(0);
-
- pw = getpwuid(euid);
- homedir = pw->pw_dir;
- snprintf(xdg_dir, sizeof(xdg_dir), "/run/user/%d", euid);
- setgid(egid);
- setuid(euid);
- clearenv();
- setenv("HOME", homedir, 1);
- setenv("XDG_RUNTIME_DIR",xdg_dir, 1);
-
- /*
- * pw-reserve will run in background. It will only exit when
- * igt_kill_children() is called later on. So, it shouldn't
- * call igt_waitchildren(). Instead, just exit with the return
- * code from pw-reserve.
- */
- exit(system("pw-reserve -n Audio0 -r"));
- }
-}
-
-/* Maximum time waiting for pw-reserve to start running */
-#define PIPEWIRE_RESERVE_MAX_TIME 1000 /* milisseconds */
-
-int pipewire_pulse_start_reserve(void)
-{
- bool is_pw_reserve_running = false;
- int attempts = 0;
-
- if (!pipewire_pulse_pid)
- return 0;
-
- pipewire_reserve_wait();
-
- /*
- * Note: using pw-reserve to stop using audio only works with
- * pipewire version 0.3.50 or upper.
- */
- for (attempts = 0; attempts < PIPEWIRE_RESERVE_MAX_TIME; attempts++) {
- struct igt_process pc;
-
- usleep(1000);
- open_process(&pc);
- while (get_process_ids(&pc)) {
- if (!strcmp(pc.comm, "pw-reserve")) {
- is_pw_reserve_running = true;
- pipewire_pw_reserve_pid = pc.tid;
- break;
- }
- }
- close_process(&pc);
-
- if (is_pw_reserve_running)
- break;
- }
- if (!is_pw_reserve_running) {
- igt_warn("Failed to remove audio drivers from pipewire\n");
- return 1;
- }
- /* Let's grant some time for pw_reserve to notify pipewire via D-BUS */
- usleep(50000);
-
- /*
- * pw-reserve is running, and should have stopped using the audio
- * drivers. We can now remove the driver.
- */
-
- return 0;
-}
-
-void pipewire_pulse_stop_reserve(void)
-{
- if (!pipewire_pulse_pid)
- return;
-
- igt_stop_helper(&pw_reserve_proc);
-}
-
-/**
- * __igt_lsof_audio_and_kill_proc() - check if a given process is using an
- * audio device. If so, stop or prevent them to use such devices.
- *
- * @proc_info: process struct, as returned by readproc()
- * @proc_path: path of the process under procfs
- * @pipewire_pulse_pid: PID of pipewire-pulse process
- *
- * No processes can be using an audio device by the time it gets removed.
- * This function checks if a process is using an audio device from /dev/snd.
- * If so, it will check:
- * - if the process is pulseaudio, it can't be killed, as systemd will
- * respawn it. So, instead, send a request for it to stop bind the
- * audio devices.
- * - if the process is pipewire-pulse, it can't be killed, as systemd will
- * respawn it. So, instead, the caller should call pw-reserve, remove
- * the kernel driver and then stop pw-reserve. On such case, this
- * function returns the PID of pipewire-pulse, but won't touch it.
- * If the check fails, it means that the process can simply be killed.
- */
-static int
-__igt_lsof_audio_and_kill_proc(const pid_t tid, const char *cmd, const uid_t euid, const gid_t egid, char *proc_path)
-{
- const char *audio_dev = "/dev/snd/";
- char path[PATH_MAX * 2];
- struct dirent *d;
- struct stat st;
- char *fd_lnk;
- int fail = 0;
- ssize_t read;
- DIR *dp;
-
- /*
- * Terminating pipewire-pulse require an special procedure, which
- * is only available at version 0.3.50 and upper. Just trying to
- * kill pipewire will start a race between IGT and systemd. If IGT
- * wins, the audio driver will be unloaded before systemd tries to
- * reload it, but if systemd wins, the audio device will be re-opened
- * and used before IGT has a chance to remove the audio driver.
- * Pipewire version 0.3.50 should bring a standard way:
- *
- * 1) start a thread running:
- * pw-reserve -n Audio0 -r
- * 2) unload/unbind the the audio driver(s);
- * 3) stop the pw-reserve thread.
- */
- if (!strcmp(cmd, "pipewire-pulse")) {
- igt_info("process %d (%s) is using audio device. Should be requested to stop using them.\n",
- tid, cmd);
- pipewire_pulse_pid = tid;
- return 0;
- }
- /*
- * pipewire-pulse itself doesn't hook into a /dev/snd device. Instead,
- * the actual binding happens at the Pipewire Session Manager, e.g.
- * either wireplumber or pipewire media-session.
- *
- * Just killing such processes won't produce any effect, as systemd
- * will respawn them. So, just ignore here, they'll honor pw-reserve,
- * when the time comes.
- */
- if (!strcmp(cmd, "pipewire-media-session"))
- return 0;
- if (!strcmp(cmd, "wireplumber"))
- return 0;
-
- dp = opendir(proc_path);
- if (!dp && errno == ENOENT)
- return 0;
- if (!dp)
- return 1;
-
- while ((d = readdir(dp))) {
- if (*d->d_name == '.')
- continue;
-
- memset(path, 0, sizeof(path));
- snprintf(path, sizeof(path), "%s/%s", proc_path, d->d_name);
-
- if (lstat(path, &st) == -1)
- continue;
-
- fd_lnk = malloc(st.st_size + 1);
-
- igt_assert((read = readlink(path, fd_lnk, st.st_size + 1)));
- fd_lnk[read] = '\0';
-
- if (strncmp(audio_dev, fd_lnk, strlen(audio_dev))) {
- free(fd_lnk);
- continue;
- }
-
- free(fd_lnk);
-
- /*
- * In order to avoid racing against pa/systemd, ensure that
- * pulseaudio will close all audio files. This should be
- * enough to unbind audio modules and won't cause race issues
- * with systemd trying to reload it.
- */
- if (!strcmp(cmd, "pulseaudio")) {
- pulseaudio_unload_module(euid, egid);
- break;
- }
-
- /* For all other processes, just kill them */
- igt_info("process %d (%s) is using audio device. Should be terminated.\n",
- tid, cmd);
-
- if (kill(tid, SIGTERM) < 0) {
- igt_info("Fail to terminate %s (pid: %d) with SIGTERM\n",
- cmd, tid);
- if (kill(tid, SIGABRT) < 0) {
- fail++;
- igt_info("Fail to terminate %s (pid: %d) with SIGABRT\n",
- cmd, tid);
- }
- }
-
- break;
- }
-
- closedir(dp);
- return fail;
-}
-
-/*
- * This function identifies each process running on the machine that is
- * opening an audio device and tries to stop it.
- *
- * Special care should be taken with pipewire and pipewire-pulse, as those
- * daemons are respanned if they got killed.
- */
-int
-igt_lsof_kill_audio_processes(void)
-{
- char path[PATH_MAX];
- int fail = 0;
- struct igt_process pc;
-
- open_process(&pc);
- pipewire_pulse_pid = 0;
- while (get_process_ids(&pc)) {
- if (snprintf(path, sizeof(path), "/proc/%d/fd", pc.tid) < 1)
- fail++;
- else
- fail += __igt_lsof_audio_and_kill_proc(pc.tid, pc.comm, pc.euid, pc.egid, path);
- }
- close_process(&pc);
-
- return fail;
-}
-
static struct igt_siglatency {
timer_t timer;
struct timespec target;
diff --git a/lib/igt_aux.h b/lib/igt_aux.h
index bfd83adca..8bc0106d2 100644
--- a/lib/igt_aux.h
+++ b/lib/igt_aux.h
@@ -317,9 +317,6 @@ bool igt_allow_unlimited_files(void);
int igt_is_process_running(const char *comm);
int igt_terminate_process(int sig, const char *comm);
void igt_lsof(const char *dpath);
-int igt_lsof_kill_audio_processes(void);
-int pipewire_pulse_start_reserve(void);
-void pipewire_pulse_stop_reserve(void);
#define igt_hweight(x) \
__builtin_choose_expr(sizeof(x) == 8, \
diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c
index 1854b44ec..0b11d9a15 100644
--- a/lib/igt_kmod.c
+++ b/lib/igt_kmod.c
@@ -459,15 +459,6 @@ igt_kmod_list_loaded(void)
kmod_module_unref_list(list);
}
-static void *strdup_realloc(char *origptr, const char *strdata)
-{
- size_t nbytes = strlen(strdata) + 1;
- char *newptr = realloc(origptr, nbytes);
-
- memcpy(newptr, strdata, nbytes);
- return newptr;
-}
-
/**
* igt_intel_driver_load:
* @opts: options to pass to Intel driver
@@ -495,116 +486,6 @@ igt_intel_driver_load(const char *opts, const char *driver)
return 0;
}
-/**
- * kick_snd_hda_intel:
- *
- * This function unbinds the snd_hda_intel driver so the module can be
- * unloaded.
- *
- */
-static void kick_snd_hda_intel(void)
-{
- DIR *dir;
- struct dirent *snd_hda;
- int fd; size_t len;
-
- const char *dpath = "/sys/bus/pci/drivers/snd_hda_intel";
- const char *path = "/sys/bus/pci/drivers/snd_hda_intel/unbind";
- const char *devid = "0000:";
-
- fd = open(path, O_WRONLY);
- if (fd < 0) {
- return;
- }
-
- dir = opendir(dpath);
- if (!dir)
- goto out;
-
- len = strlen(devid);
- while ((snd_hda = readdir(dir))) {
- struct stat st;
- char fpath[PATH_MAX];
-
- if (*snd_hda->d_name == '.')
- continue;
-
- snprintf(fpath, sizeof(fpath), "%s/%s", dpath, snd_hda->d_name);
- if (lstat(fpath, &st))
- continue;
-
- if (!S_ISLNK(st.st_mode))
- continue;
-
- if (!strncmp(devid, snd_hda->d_name, len)) {
- igt_ignore_warn(write(fd, snd_hda->d_name,
- strlen(snd_hda->d_name)));
- }
- }
-
- closedir(dir);
-out:
- close(fd);
-}
-
-static int igt_always_unload_audio_driver(char **who)
-{
- int ret;
- const char *sound[] = {
- "snd_hda_intel",
- "snd_hdmi_lpe_audio",
- NULL,
- };
-
- /*
- * With old Kernels, the dependencies between audio and DRM drivers
- * are not shown. So, it may not be mandatory to remove the audio
- * driver before unload/unbind the DRM one. So, let's print warnings,
- * but return 0 on errors, as, if the dependency is mandatory, this
- * will be detected later when trying to unbind/unload the DRM driver.
- */
- for (const char **m = sound; *m; m++) {
- if (igt_kmod_is_loaded(*m)) {
- if (who)
- *who = strdup_realloc(*who, *m);
-
- ret = igt_lsof_kill_audio_processes();
- if (ret) {
- igt_warn("Could not stop %d audio process(es)\n", ret);
- igt_kmod_list_loaded();
- igt_lsof("/dev/snd");
- return 0;
- }
-
- ret = pipewire_pulse_start_reserve();
- if (ret)
- igt_warn("Failed to notify pipewire_pulse\n");
- kick_snd_hda_intel();
- ret = igt_kmod_unload(*m);
- pipewire_pulse_stop_reserve();
- if (ret) {
- igt_warn("Could not unload audio driver %s\n", *m);
- igt_kmod_list_loaded();
- igt_lsof("/dev/snd");
- return 0;
- }
- }
- }
- return 0;
-}
-
-int igt_audio_driver_unload(char **who)
-{
- /*
- * Currently, there's no way to check if the audio driver binds into the
- * DRM one. So, always remove audio drivers that might be binding.
- * This may change in future, once kernel/module gets fixed. So, let's
- * keep this boilerplace, in order to make easier to add the new code,
- * once upstream is fixed.
- */
- return igt_always_unload_audio_driver(who);
-}
-
/*
* Unbind driver from devices. Currently supports only PCI bus
*/
diff --git a/lib/igt_kmod.h b/lib/igt_kmod.h
index 67ae6833f..152606a60 100644
--- a/lib/igt_kmod.h
+++ b/lib/igt_kmod.h
@@ -38,8 +38,6 @@ int igt_kmod_unload(const char *mod_name);
int igt_kmod_unbind(const char *mod_name);
-int igt_audio_driver_unload(char **whom);
-
int igt_intel_driver_load(const char *opts, const char *driver);
int igt_intel_driver_unload(const char *driver);
--
2.47.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [CI 8/9] i915_module_load: Stop caring about snd/intel-gtt
2024-11-19 5:40 [CI 1/9] lib/igt_kmod: Remove unused module_ref Lucas De Marchi
` (5 preceding siblings ...)
2024-11-19 5:40 ` [CI 7/9] lib: Remove unused audio-related helpers Lucas De Marchi
@ 2024-11-19 5:40 ` Lucas De Marchi
2024-11-19 5:40 ` [CI 9/9] xe_module_load: Stop caring about snd Lucas De Marchi
` (3 subsequent siblings)
10 siblings, 0 replies; 16+ messages in thread
From: Lucas De Marchi @ 2024-11-19 5:40 UTC (permalink / raw)
To: igt-dev; +Cc: Lucas De Marchi, Matt Roper
Neither snd or intel-gtt need special handling as "unwanted modules".
Just care about loading/unloading i915 and it should work.
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
tests/intel/i915_module_load.c | 32 --------------------------------
1 file changed, 32 deletions(-)
diff --git a/tests/intel/i915_module_load.c b/tests/intel/i915_module_load.c
index b3752a19c..c78b843f9 100644
--- a/tests/intel/i915_module_load.c
+++ b/tests/intel/i915_module_load.c
@@ -271,41 +271,12 @@ static void gem_sanitycheck(void)
igt_assert_eq(err, expected);
}
-static void
-hda_dynamic_debug(bool enable)
-{
- FILE *fp;
- const char snd_hda_intel_on[] = "module snd_hda_intel +pf";
- const char snd_hda_core_on[] = "module snd_hda_core +pf";
-
- const char snd_hda_intel_off[] = "module snd_hda_core =_";
- const char snd_hda_core_off[] = "module snd_hda_intel =_";
-
- fp = fopen("/sys/kernel/debug/dynamic_debug/control", "w");
- if (!fp) {
- igt_debug("hda dynamic debug not available\n");
- return;
- }
-
- if (enable) {
- fwrite(snd_hda_intel_on, 1, sizeof(snd_hda_intel_on), fp);
- fwrite(snd_hda_core_on, 1, sizeof(snd_hda_core_on), fp);
- } else {
- fwrite(snd_hda_intel_off, 1, sizeof(snd_hda_intel_off), fp);
- fwrite(snd_hda_core_off, 1, sizeof(snd_hda_core_off), fp);
- }
-
- fclose(fp);
-}
-
static void load_and_check_i915(void)
{
int error;
int drm_fd;
- hda_dynamic_debug(true);
error = igt_i915_driver_load(NULL);
- hda_dynamic_debug(false);
igt_assert_eq(error, 0);
@@ -367,9 +338,6 @@ igt_main
igt_subtest("load") {
const char * unwanted_drivers[] = {
"i915",
- "intel-gtt",
- "snd_hda_intel",
- "snd_hdmi_lpe_audio",
NULL
};
--
2.47.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [CI 9/9] xe_module_load: Stop caring about snd
2024-11-19 5:40 [CI 1/9] lib/igt_kmod: Remove unused module_ref Lucas De Marchi
` (6 preceding siblings ...)
2024-11-19 5:40 ` [CI 8/9] i915_module_load: Stop caring about snd/intel-gtt Lucas De Marchi
@ 2024-11-19 5:40 ` Lucas De Marchi
2024-11-19 16:37 ` ✗ CI.xeBAT: failure for series starting with [CI,1/9] lib/igt_kmod: Remove unused module_ref Patchwork
` (2 subsequent siblings)
10 siblings, 0 replies; 16+ messages in thread
From: Lucas De Marchi @ 2024-11-19 5:40 UTC (permalink / raw)
To: igt-dev; +Cc: Lucas De Marchi, Matt Roper
Just handle xe and it should work.
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
tests/intel/xe_module_load.c | 40 ------------------------------------
1 file changed, 40 deletions(-)
diff --git a/tests/intel/xe_module_load.c b/tests/intel/xe_module_load.c
index 83e37430f..b91da5c32 100644
--- a/tests/intel/xe_module_load.c
+++ b/tests/intel/xe_module_load.c
@@ -36,52 +36,12 @@
#define BAR_SIZE_SHIFT 20
#define MIN_BAR_SIZE 256
-static void file_write(const char *ptr, size_t size, size_t nmemb,
- FILE *fp)
-{
- int count;
-
- count = fwrite(ptr, size, nmemb, fp);
- if (count == size * nmemb)
- return;
-
- igt_debug("Can't update hda dynamic debug with : %s\n", ptr);
-}
-
-static void hda_dynamic_debug(bool enable)
-{
- FILE *fp;
- static const char snd_hda_intel_on[] = "module snd_hda_intel +pf";
- static const char snd_hda_core_on[] = "module snd_hda_core +pf";
-
- static const char snd_hda_intel_off[] = "module snd_hda_intel =_";
- static const char snd_hda_core_off[] = "module snd_hda_core =_";
-
- fp = fopen("/sys/kernel/debug/dynamic_debug/control", "w");
- if (!fp) {
- igt_debug("hda dynamic debug not available\n");
- return;
- }
-
- if (enable) {
- file_write(snd_hda_intel_on, 1, sizeof(snd_hda_intel_on), fp);
- file_write(snd_hda_core_on, 1, sizeof(snd_hda_core_on), fp);
- } else {
- file_write(snd_hda_intel_off, 1, sizeof(snd_hda_intel_off), fp);
- file_write(snd_hda_core_off, 1, sizeof(snd_hda_core_off), fp);
- }
-
- fclose(fp);
-}
-
static void load_and_check_xe(const char *opts)
{
int error;
int drm_fd;
- hda_dynamic_debug(true);
error = igt_xe_driver_load(opts);
- hda_dynamic_debug(false);
igt_assert_eq(error, 0);
--
2.47.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* ✗ CI.xeBAT: failure for series starting with [CI,1/9] lib/igt_kmod: Remove unused module_ref
2024-11-19 5:40 [CI 1/9] lib/igt_kmod: Remove unused module_ref Lucas De Marchi
` (7 preceding siblings ...)
2024-11-19 5:40 ` [CI 9/9] xe_module_load: Stop caring about snd Lucas De Marchi
@ 2024-11-19 16:37 ` Patchwork
2024-11-19 16:53 ` ✗ Fi.CI.BAT: " Patchwork
2024-11-20 2:36 ` ✗ CI.xeFULL: failure for series starting with [CI,1/9] " Patchwork
10 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2024-11-19 16:37 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3186 bytes --]
== Series Details ==
Series: series starting with [CI,1/9] lib/igt_kmod: Remove unused module_ref
URL : https://patchwork.freedesktop.org/series/141532/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8118_BAT -> XEIGTPW_12135_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12135_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12135_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12135_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@core_hotunplug@unbind-rebind:
- bat-dg2-oem2: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-dg2-oem2/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/bat-dg2-oem2/igt@core_hotunplug@unbind-rebind.html
Known issues
------------
Here are the changes found in XEIGTPW_12135_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_exec_basic@twice-userptr-rebind:
- bat-adlp-vf: [PASS][3] -> [DMESG-WARN][4] ([Intel XE#358])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-adlp-vf/igt@xe_exec_basic@twice-userptr-rebind.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/bat-adlp-vf/igt@xe_exec_basic@twice-userptr-rebind.html
* igt@xe_live_ktest@xe_migrate:
- bat-adlp-vf: [PASS][5] -> [SKIP][6] ([Intel XE#1192]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
#### Warnings ####
* igt@xe_live_ktest@xe_bo:
- bat-adlp-vf: [SKIP][7] ([Intel XE#2229] / [Intel XE#455]) -> [SKIP][8] ([Intel XE#1192])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/358
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
Build changes
-------------
* IGT: IGT_8118 -> IGTPW_12135
IGTPW_12135: 12135
IGT_8118: 17707095f1e5d3c30f463b43022f01c0160579b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2252-f8f85a38f6c75e091805f01ceff4041ac2fdf3fd: f8f85a38f6c75e091805f01ceff4041ac2fdf3fd
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/index.html
[-- Attachment #2: Type: text/html, Size: 3909 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✗ Fi.CI.BAT: failure for series starting with [CI,1/9] lib/igt_kmod: Remove unused module_ref
2024-11-19 5:40 [CI 1/9] lib/igt_kmod: Remove unused module_ref Lucas De Marchi
` (8 preceding siblings ...)
2024-11-19 16:37 ` ✗ CI.xeBAT: failure for series starting with [CI,1/9] lib/igt_kmod: Remove unused module_ref Patchwork
@ 2024-11-19 16:53 ` Patchwork
2024-11-21 22:02 ` Lucas De Marchi
2024-11-20 2:36 ` ✗ CI.xeFULL: failure for series starting with [CI,1/9] " Patchwork
10 siblings, 1 reply; 16+ messages in thread
From: Patchwork @ 2024-11-19 16:53 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 10116 bytes --]
== Series Details ==
Series: series starting with [CI,1/9] lib/igt_kmod: Remove unused module_ref
URL : https://patchwork.freedesktop.org/series/141532/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8118 -> IGTPW_12135
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12135 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12135, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/index.html
Participating hosts (46 -> 44)
------------------------------
Missing (2): bat-mtlp-9 fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12135:
### IGT changes ###
#### Possible regressions ####
* igt@core_hotunplug@unbind-rebind:
- fi-cfl-guc: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-cfl-guc/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-cfl-guc/igt@core_hotunplug@unbind-rebind.html
- bat-dg2-9: [PASS][3] -> [ABORT][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-9/igt@core_hotunplug@unbind-rebind.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg2-9/igt@core_hotunplug@unbind-rebind.html
- bat-dg2-11: [PASS][5] -> [ABORT][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-11/igt@core_hotunplug@unbind-rebind.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg2-11/igt@core_hotunplug@unbind-rebind.html
- bat-dg2-14: [PASS][7] -> [ABORT][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-14/igt@core_hotunplug@unbind-rebind.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg2-14/igt@core_hotunplug@unbind-rebind.html
- bat-dg2-8: [PASS][9] -> [ABORT][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-8/igt@core_hotunplug@unbind-rebind.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg2-8/igt@core_hotunplug@unbind-rebind.html
- bat-adls-6: [PASS][11] -> [ABORT][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-adls-6/igt@core_hotunplug@unbind-rebind.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-adls-6/igt@core_hotunplug@unbind-rebind.html
- fi-rkl-11600: [PASS][13] -> [ABORT][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-rkl-11600/igt@core_hotunplug@unbind-rebind.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-rkl-11600/igt@core_hotunplug@unbind-rebind.html
- bat-dg1-7: [PASS][15] -> [ABORT][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg1-7/igt@core_hotunplug@unbind-rebind.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg1-7/igt@core_hotunplug@unbind-rebind.html
- bat-rpls-4: [PASS][17] -> [ABORT][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-rpls-4/igt@core_hotunplug@unbind-rebind.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-rpls-4/igt@core_hotunplug@unbind-rebind.html
- fi-cfl-8109u: [PASS][19] -> [ABORT][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-cfl-8109u/igt@core_hotunplug@unbind-rebind.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-cfl-8109u/igt@core_hotunplug@unbind-rebind.html
- fi-kbl-7567u: [PASS][21] -> [ABORT][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-kbl-7567u/igt@core_hotunplug@unbind-rebind.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-kbl-7567u/igt@core_hotunplug@unbind-rebind.html
- bat-apl-1: [PASS][23] -> [ABORT][24]
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-apl-1/igt@core_hotunplug@unbind-rebind.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-apl-1/igt@core_hotunplug@unbind-rebind.html
- fi-tgl-1115g4: [PASS][25] -> [ABORT][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-tgl-1115g4/igt@core_hotunplug@unbind-rebind.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-tgl-1115g4/igt@core_hotunplug@unbind-rebind.html
* igt@i915_pm_rpm@module-reload:
- bat-adlp-6: [PASS][27] -> [ABORT][28]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
- bat-adlp-9: [PASS][29] -> [ABORT][30]
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-adlp-9/igt@i915_pm_rpm@module-reload.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-adlp-9/igt@i915_pm_rpm@module-reload.html
- bat-arls-5: [PASS][31] -> [ABORT][32]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-arls-5/igt@i915_pm_rpm@module-reload.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-arls-5/igt@i915_pm_rpm@module-reload.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@i915_pm_rpm@module-reload:
- {bat-arls-6}: [PASS][33] -> [ABORT][34]
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-arls-6/igt@i915_pm_rpm@module-reload.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-arls-6/igt@i915_pm_rpm@module-reload.html
Known issues
------------
Here are the changes found in IGTPW_12135 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests@dma_fence_chain:
- fi-bsw-nick: [PASS][35] -> [INCOMPLETE][36] ([i915#12904]) +1 other test incomplete
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
* igt@i915_selftest@live:
- bat-arlh-3: [PASS][37] -> [ABORT][38] ([i915#12829])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-arlh-3/igt@i915_selftest@live.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-arlh-3/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [PASS][39] -> [ABORT][40] ([i915#12061])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-arlh-3/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_module_load@load:
- bat-twl-2: [DMESG-WARN][41] ([i915#1982]) -> [PASS][42]
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-twl-2/igt@i915_module_load@load.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-twl-2/igt@i915_module_load@load.html
* igt@i915_selftest@live:
- bat-mtlp-8: [ABORT][43] ([i915#12829]) -> [PASS][44]
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-mtlp-8/igt@i915_selftest@live.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_mocs:
- bat-twl-2: [ABORT][45] ([i915#12919]) -> [PASS][46] +1 other test pass
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-twl-2/igt@i915_selftest@live@gt_mocs.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-twl-2/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-8: [ABORT][47] -> [PASS][48]
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-mtlp-8/igt@i915_selftest@live@workarounds.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-mtlp-8/igt@i915_selftest@live@workarounds.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-apl-1: [DMESG-WARN][49] -> [PASS][50] +2 other tests pass
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence:
- bat-dg2-11: [SKIP][51] ([i915#9197]) -> [PASS][52]
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12829]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12829
[i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
[i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8118 -> IGTPW_12135
CI-20190529: 20190529
CI_DRM_15720: f8f85a38f6c75e091805f01ceff4041ac2fdf3fd @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12135: 12135
IGT_8118: 17707095f1e5d3c30f463b43022f01c0160579b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/index.html
[-- Attachment #2: Type: text/html, Size: 11186 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✗ CI.xeFULL: failure for series starting with [CI,1/9] lib/igt_kmod: Remove unused module_ref
2024-11-19 5:40 [CI 1/9] lib/igt_kmod: Remove unused module_ref Lucas De Marchi
` (9 preceding siblings ...)
2024-11-19 16:53 ` ✗ Fi.CI.BAT: " Patchwork
@ 2024-11-20 2:36 ` Patchwork
10 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2024-11-20 2:36 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 136944 bytes --]
== Series Details ==
Series: series starting with [CI,1/9] lib/igt_kmod: Remove unused module_ref
URL : https://patchwork.freedesktop.org/series/141532/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8118_full -> XEIGTPW_12135_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12135_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12135_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12135_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_atomic_transition@plane-all-transition:
- shard-bmg: NOTRUN -> [DMESG-WARN][1] +4 other tests dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-5/igt@kms_atomic_transition@plane-all-transition.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][2] -> [DMESG-WARN][3] +5 other tests dmesg-warn
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl (NEW):
- shard-bmg: [FAIL][4] ([Intel XE#2141]) -> [DMESG-FAIL][5] +2 other tests dmesg-fail
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][6] +6 other tests dmesg-warn
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a6-dp4.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-x:
- shard-bmg: [PASS][7] -> [SKIP][8] +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-x.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-1/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-x.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [DMESG-FAIL][9]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-bmg: [PASS][10] -> [INCOMPLETE][11] +2 other tests incomplete
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_plane@plane-panning-bottom-right-suspend.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-7/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-bmg: [PASS][12] -> [DMESG-FAIL][13] +2 other tests dmesg-fail
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-7/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-lnl: [PASS][14] -> [FAIL][15] +1 other test fail
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-2/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-5/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-imm:
- shard-lnl: [PASS][16] -> [DMESG-WARN][17] +19 other tests dmesg-warn
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-2/igt@xe_exec_fault_mode@twice-bindexecqueue-imm.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-8/igt@xe_exec_fault_mode@twice-bindexecqueue-imm.html
* igt@xe_exec_threads@threads-bal-shared-vm-userptr-invalidate:
- shard-bmg: [PASS][18] -> [DMESG-WARN][19] +17 other tests dmesg-warn
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_exec_threads@threads-bal-shared-vm-userptr-invalidate.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-7/igt@xe_exec_threads@threads-bal-shared-vm-userptr-invalidate.html
#### Warnings ####
* igt@core_hotunplug@hotreplug-lateclose:
- shard-dg2-set2: [SKIP][20] ([Intel XE#1885]) -> [DMESG-WARN][21] +1 other test dmesg-warn
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@core_hotunplug@hotreplug-lateclose.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@core_hotunplug@hotreplug-lateclose.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-dg2-set2: [SKIP][22] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][23]
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-bmg: [FAIL][24] ([Intel XE#2333]) -> [DMESG-FAIL][25]
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_lease@possible-crtcs-filtering:
- shard-dg2-set2: [SKIP][26] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][27] +1 other test dmesg-warn
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_lease@possible-crtcs-filtering.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@kms_lease@possible-crtcs-filtering.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg2-set2: [SKIP][28] ([Intel XE#2446]) -> [DMESG-WARN][29] +1 other test dmesg-warn
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
- shard-bmg: [DMESG-WARN][30] ([Intel XE#3467]) -> [DMESG-WARN][31]
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
- shard-bmg: [DMESG-FAIL][32] ([Intel XE#3467]) -> [DMESG-FAIL][33]
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
* igt@xe_vm@large-misaligned-binds-2097152:
- shard-dg2-set2: [SKIP][34] ([Intel XE#1130]) -> [DMESG-WARN][35] +8 other tests dmesg-warn
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_vm@large-misaligned-binds-2097152.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@xe_vm@large-misaligned-binds-2097152.html
New tests
---------
New tests have been introduced between XEIGT_8118_full and XEIGTPW_12135_full:
### New IGT tests (15) ###
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [2.16] s
* igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@crc@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [2.22] s
* igt@kms_async_flips@crc@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [2.23] s
* igt@kms_dirtyfb@default-dirtyfb-ioctl:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.0, 0.79] s
* igt@kms_dirtyfb@default-dirtyfb-ioctl@a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.40] s
* igt@kms_dirtyfb@default-dirtyfb-ioctl@a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.71] s
* igt@kms_dirtyfb@default-dirtyfb-ioctl@a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.38] s
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- Statuses : 3 skip(s)
- Exec time: [0.00] s
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- Statuses : 1 dmesg-fail(s) 2 pass(s)
- Exec time: [0.78, 4.94] s
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2:
- Statuses : 1 dmesg-fail(s)
- Exec time: [2.55] s
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.78] s
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3:
- Statuses : 1 dmesg-fail(s)
- Exec time: [2.38] s
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- Statuses : 1 dmesg-warn(s) 2 skip(s)
- Exec time: [0.0, 1.41] s
* igt@kms_dirtyfb@psr-dirtyfb-ioctl@a-edp-1:
- Statuses : 1 dmesg-warn(s)
- Exec time: [1.41] s
Known issues
------------
Here are the changes found in XEIGTPW_12135_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_getversion@basic:
- shard-dg2-set2: NOTRUN -> [FAIL][36] ([Intel XE#3440])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@core_getversion@basic.html
* igt@core_hotunplug@unplug-rescan:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#1885])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@core_hotunplug@unplug-rescan.html
* igt@kms_addfb_basic@addfb25-modifier-no-flag:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#2423] / [i915#2575]) +32 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@kms_addfb_basic@addfb25-modifier-no-flag.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-bmg: NOTRUN -> [FAIL][39] ([Intel XE#827]) +2 other tests fail
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#2550]) +23 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-435/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#3279])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-lnl: [PASS][42] -> [FAIL][43] ([Intel XE#1426]) +1 other test fail
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-transition@pipe-b-hdmi-a-3:
- shard-bmg: NOTRUN -> [DMESG-WARN][44] ([Intel XE#3468]) +4 other tests dmesg-warn
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-5/igt@kms_atomic_transition@plane-all-transition@pipe-b-hdmi-a-3.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1407])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-3/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-dg2-set2: [PASS][46] -> [SKIP][47] ([Intel XE#2136]) +32 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-lnl: [PASS][48] -> [INCOMPLETE][49] ([Intel XE#3225] / [Intel XE#3466])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2327]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-5/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#316]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-464/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-lnl: NOTRUN -> [INCOMPLETE][52] ([Intel XE#3466])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#1124]) +7 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#1124]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-464/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1124]) +4 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#2191]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-8/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2314] / [Intel XE#2894])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#367])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-2/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#2887]) +6 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#787]) +104 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-464/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2887]) +13 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#3433]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][65] -> [DMESG-WARN][66] ([Intel XE#3468]) +1 other test dmesg-warn
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][67] ([Intel XE#1195]) +1 other test incomplete
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#1152]) +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_audio@dp-audio:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#373]) +7 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-2/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_color@ctm-max:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2325])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-5/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2252]) +4 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-4/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-after-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#373]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html
* igt@kms_content_protection@atomic-dpms:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#3278])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-5/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#307])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-3/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2-set2: NOTRUN -> [FAIL][75] ([Intel XE#1178]) +1 other test fail
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-464/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][76] ([Intel XE#1178]) +1 other test fail
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-6/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][77] ([Intel XE#3304])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-464/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2320]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#2321])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1424]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2321])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#308])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-464/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#309]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [PASS][84] -> [DMESG-FAIL][85] ([Intel XE#3468]) +3 other tests dmesg-fail
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl (NEW):
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#1508])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl (NEW):
- shard-dg2-set2: [SKIP][87] ([Intel XE#455]) -> [SKIP][88] ([Intel XE#2136] / [Intel XE#2351])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#1340])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2244])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-2/igt@kms_dsc@dsc-with-output-formats.html
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#2244])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-2/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_feature_discovery@display-4x:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#1138])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-5/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-bmg: [PASS][93] -> [INCOMPLETE][94] ([Intel XE#2635])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-4/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-dg2-set2: [PASS][95] -> [SKIP][96] ([Intel XE#2423] / [i915#2575]) +100 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_flip@2x-dpms-vs-vblank-race.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][97] -> [FAIL][98] ([Intel XE#3486])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][99] -> [FAIL][100] ([Intel XE#301])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-hdmi-a6-dp4.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3:
- shard-bmg: [PASS][101] -> [FAIL][102] ([Intel XE#3486])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-bmg: NOTRUN -> [DMESG-WARN][103] ([Intel XE#1727]) +1 other test dmesg-warn
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-7/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1421]) +3 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-6/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@dpms-off-confusion-interruptible@b-hdmi-a3:
- shard-bmg: [PASS][105] -> [DMESG-WARN][106] ([Intel XE#3468]) +16 other tests dmesg-warn
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_flip@dpms-off-confusion-interruptible@b-hdmi-a3.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-7/igt@kms_flip@dpms-off-confusion-interruptible@b-hdmi-a3.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: NOTRUN -> [FAIL][107] ([Intel XE#886]) +1 other test fail
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2:
- shard-bmg: [PASS][108] -> [FAIL][109] ([Intel XE#2882]) +7 other tests fail
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-8/igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][110] ([Intel XE#301]) +4 other tests fail
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6:
- shard-dg2-set2: NOTRUN -> [FAIL][111] ([Intel XE#3486])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][112] ([Intel XE#301] / [Intel XE#3486])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4.html
* igt@kms_flip@flip-vs-suspend:
- shard-bmg: [PASS][113] -> [INCOMPLETE][114] ([Intel XE#2597])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_flip@flip-vs-suspend.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-6/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-dp2:
- shard-bmg: [PASS][115] -> [DMESG-WARN][116] ([Intel XE#3451])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_flip@flip-vs-suspend@a-dp2.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-6/igt@kms_flip@flip-vs-suspend@a-dp2.html
* igt@kms_flip@flip-vs-suspend@c-hdmi-a3:
- shard-bmg: [PASS][117] -> [INCOMPLETE][118] ([Intel XE#2597] / [Intel XE#2635])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-6/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend@d-dp4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][119] ([Intel XE#1195] / [Intel XE#2049])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-464/igt@kms_flip@flip-vs-suspend@d-dp4.html
* igt@kms_flip@wf_vblank-ts-check@a-edp1:
- shard-lnl: [PASS][120] -> [FAIL][121] ([Intel XE#886]) +1 other test fail
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-8/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#455]) +3 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#1397] / [Intel XE#1745])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#1397])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#2380]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#2136] / [Intel XE#2351]) +17 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#1401]) +2 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2293]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4:
- shard-bmg: [PASS][131] -> [DMESG-FAIL][132] ([Intel XE#2705] / [Intel XE#3468])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-1/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#651]) +7 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#651]) +2 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-dg2-set2: [PASS][135] -> [SKIP][136] ([Intel XE#2136] / [Intel XE#2351]) +8 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: NOTRUN -> [FAIL][137] ([Intel XE#2333]) +7 other tests fail
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#2311]) +19 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#656]) +22 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2352])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#2313]) +16 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#653]) +5 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_hdr@static-toggle-dpms:
- shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#1503])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-3/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#2763]) +5 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a:
- shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#2763]) +11 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
- shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#2763]) +9 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html
* igt@kms_pm_rpm@cursor-dpms:
- shard-dg2-set2: [PASS][148] -> [INCOMPLETE][149] ([Intel XE#1195]) +2 other tests incomplete
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_pm_rpm@cursor-dpms.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-463/igt@kms_pm_rpm@cursor-dpms.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-bmg: [PASS][150] -> [DMESG-WARN][151] ([Intel XE#1727])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#1439] / [Intel XE#3141])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-3/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2-set2: [PASS][153] -> [SKIP][154] ([Intel XE#2446]) +3 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#1489]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-463/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#2893]) +2 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-8/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#1489]) +2 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#2387]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-2/igt@kms_psr2_su@page_flip-p010.html
- shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#1128])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-3/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-cursor-render@edp-1:
- shard-lnl: [PASS][161] -> [DMESG-WARN][162] ([Intel XE#3466]) +109 other tests dmesg-warn
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-8/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#2136]) +23 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@pr-cursor-plane-move:
- shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#1406]) +4 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-5/igt@kms_psr@pr-cursor-plane-move.html
* igt@kms_psr@psr-cursor-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#2234] / [Intel XE#2850]) +10 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-2/igt@kms_psr@psr-cursor-plane-onoff.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#3414]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-1/igt@kms_rotation_crc@bad-pixel-format.html
- shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#3414])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@kms_rotation_crc@bad-pixel-format.html
- shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#3414])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-1/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-rotation-180:
- shard-lnl: [PASS][169] -> [INCOMPLETE][170] ([Intel XE#3466])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-1/igt@kms_rotation_crc@primary-rotation-180.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-8/igt@kms_rotation_crc@primary-rotation-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#2330])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][172] -> [FAIL][173] ([Intel XE#2159]) +1 other test fail
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@flip-basic:
- shard-bmg: NOTRUN -> [SKIP][174] ([Intel XE#1499])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-1/igt@kms_vrr@flip-basic.html
* igt@kms_writeback@writeback-fb-id:
- shard-lnl: NOTRUN -> [SKIP][175] ([Intel XE#756]) +2 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-5/igt@kms_writeback@writeback-fb-id.html
* igt@xe_ccs@suspend-resume:
- shard-bmg: [PASS][176] -> [INCOMPLETE][177] ([Intel XE#3468]) +3 other tests incomplete
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@xe_ccs@suspend-resume.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-4/igt@xe_ccs@suspend-resume.html
* igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-vram01-vram01:
- shard-bmg: [PASS][178] -> [INCOMPLETE][179] ([Intel XE#1727])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-vram01-vram01.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-4/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-vram01-vram01.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: NOTRUN -> [SKIP][180] ([Intel XE#2905]) +6 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-7/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug_online@resume-dss:
- shard-lnl: NOTRUN -> [SKIP][181] ([Intel XE#2905]) +4 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-2/igt@xe_eudebug_online@resume-dss.html
* igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram:
- shard-dg2-set2: NOTRUN -> [SKIP][182] ([Intel XE#2905])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-bmg: NOTRUN -> [TIMEOUT][183] ([Intel XE#1473])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-7/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [PASS][184] -> [INCOMPLETE][185] ([Intel XE#1473])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen:
- shard-lnl: NOTRUN -> [SKIP][186] ([Intel XE#688]) +5 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-5/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html
* igt@xe_exec_balancer@once-parallel-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][187] ([Intel XE#1130]) +57 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@xe_exec_balancer@once-parallel-rebind.html
* igt@xe_exec_basic@many-execqueues-null-defer-mmap:
- shard-lnl: NOTRUN -> [DMESG-WARN][188] ([Intel XE#3466]) +1 other test dmesg-warn
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-8/igt@xe_exec_basic@many-execqueues-null-defer-mmap.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][189] ([Intel XE#2322]) +7 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-once-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][190] ([Intel XE#1392]) +4 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-5/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][191] ([Intel XE#288])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html
* igt@xe_exec_fault_mode@once-bindexecqueue-prefetch:
- shard-lnl: [PASS][192] -> [DMESG-FAIL][193] ([Intel XE#3466]) +8 other tests dmesg-fail
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@xe_exec_fault_mode@once-bindexecqueue-prefetch.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-8/igt@xe_exec_fault_mode@once-bindexecqueue-prefetch.html
* igt@xe_exec_fault_mode@twice-bindexecqueue:
- shard-lnl: NOTRUN -> [DMESG-FAIL][194] ([Intel XE#3466])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-4/igt@xe_exec_fault_mode@twice-bindexecqueue.html
* igt@xe_exec_reset@close-execqueues-close-fd:
- shard-lnl: [PASS][195] -> [FAIL][196] ([Intel XE#1081])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-8/igt@xe_exec_reset@close-execqueues-close-fd.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-7/igt@xe_exec_reset@close-execqueues-close-fd.html
* igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate:
- shard-bmg: [PASS][197] -> [DMESG-FAIL][198] ([Intel XE#3371]) +1 other test dmesg-fail
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-8/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init:
- shard-bmg: NOTRUN -> [DMESG-WARN][199] ([Intel XE#3467])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
* igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch:
- shard-bmg: [PASS][200] -> [DMESG-WARN][201] ([Intel XE#3467])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-1/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
* igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
- shard-dg2-set2: NOTRUN -> [FAIL][202] ([Intel XE#1999]) +1 other test fail
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
* igt@xe_module_load@force-load:
- shard-bmg: NOTRUN -> [SKIP][203] ([Intel XE#2457])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-5/igt@xe_module_load@force-load.html
- shard-dg2-set2: NOTRUN -> [SKIP][204] ([Intel XE#378])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@xe_module_load@force-load.html
* igt@xe_module_load@many-reload:
- shard-bmg: [PASS][205] -> [FAIL][206] ([Intel XE#2136])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_module_load@many-reload.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-2/igt@xe_module_load@many-reload.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-dg2-set2: NOTRUN -> [SKIP][207] ([Intel XE#2541]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@xe_oa@oa-tlb-invalidate.html
- shard-bmg: NOTRUN -> [SKIP][208] ([Intel XE#2248])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-1/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pm@d3cold-mmap-system:
- shard-lnl: NOTRUN -> [SKIP][209] ([Intel XE#2284] / [Intel XE#366])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-3/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: NOTRUN -> [SKIP][210] ([Intel XE#2284] / [Intel XE#366])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-463/igt@xe_pm@d3cold-mmap-vram.html
- shard-bmg: NOTRUN -> [SKIP][211] ([Intel XE#2284])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-5/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@s2idle-basic:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][212] ([Intel XE#3468])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@xe_pm@s2idle-basic.html
* igt@xe_pm@s2idle-exec-after:
- shard-dg2-set2: [PASS][213] -> [SKIP][214] ([Intel XE#1130]) +169 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_pm@s2idle-exec-after.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- shard-lnl: [PASS][215] -> [DMESG-WARN][216] ([Intel XE#1616] / [Intel XE#3466])
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-1/igt@xe_pm@s2idle-vm-bind-userptr.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-4/igt@xe_pm@s2idle-vm-bind-userptr.html
* igt@xe_pm@s4-basic:
- shard-lnl: [PASS][217] -> [ABORT][218] ([Intel XE#1358] / [Intel XE#1607])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-4/igt@xe_pm@s4-basic.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-2/igt@xe_pm@s4-basic.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-lnl: [PASS][219] -> [DMESG-WARN][220] ([Intel XE#2280] / [Intel XE#3466])
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@xe_pm@s4-vm-bind-userptr.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-8/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_pm_residency@cpg-basic:
- shard-lnl: NOTRUN -> [SKIP][221] ([Intel XE#584])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-2/igt@xe_pm_residency@cpg-basic.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-lnl: [PASS][222] -> [FAIL][223] ([Intel XE#958])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@xe_pm_residency@toggle-gt-c6.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-7/igt@xe_pm_residency@toggle-gt-c6.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-dg2-set2: NOTRUN -> [SKIP][224] ([Intel XE#944])
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][225] ([Intel XE#944]) +3 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-8/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-lnl: NOTRUN -> [SKIP][226] ([Intel XE#3342])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-4/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_vm@large-split-misaligned-binds-67108864:
- shard-dg2-set2: [PASS][227] -> [DMESG-WARN][228] ([Intel XE#1727])
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_vm@large-split-misaligned-binds-67108864.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@xe_vm@large-split-misaligned-binds-67108864.html
* igt@xe_vm@munmap-style-unbind-one-partial:
- shard-lnl: [PASS][229] -> [DMESG-WARN][230] ([Intel XE#3514]) +1 other test dmesg-warn
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@xe_vm@munmap-style-unbind-one-partial.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-8/igt@xe_vm@munmap-style-unbind-one-partial.html
* igt@xe_wedged@basic-wedged:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][231] ([Intel XE#2919])
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-435/igt@xe_wedged@basic-wedged.html
- shard-bmg: NOTRUN -> [DMESG-WARN][232] ([Intel XE#2919])
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-4/igt@xe_wedged@basic-wedged.html
#### Possible fixes ####
* igt@core_getversion@all-cards:
- shard-dg2-set2: [FAIL][233] ([Intel XE#3440]) -> [PASS][234]
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@core_getversion@all-cards.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@core_getversion@all-cards.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-bmg: [INCOMPLETE][235] ([Intel XE#2613]) -> [PASS][236]
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: [DMESG-FAIL][237] -> [PASS][238] +18 other tests pass
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-8bpp-rotate-180:
- shard-lnl: [INCOMPLETE][239] ([Intel XE#3466]) -> [PASS][240] +1 other test pass
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@kms_big_fb@linear-8bpp-rotate-180.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-2/igt@kms_big_fb@linear-8bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-bmg: [DMESG-WARN][241] ([Intel XE#2705]) -> [PASS][242]
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_cursor_crc@cursor-sliding-64x64:
- shard-dg2-set2: [SKIP][243] ([Intel XE#2423] / [i915#2575]) -> [PASS][244] +76 other tests pass
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-64x64.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@kms_cursor_crc@cursor-sliding-64x64.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a6-dp4:
- shard-dg2-set2: [FAIL][245] ([Intel XE#301]) -> [PASS][246]
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a6-dp4.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-bmg: [INCOMPLETE][247] ([Intel XE#2597]) -> [PASS][248]
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-4/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-dp2:
- shard-bmg: [DMESG-FAIL][249] ([Intel XE#3468]) -> [PASS][250] +8 other tests pass
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_flip@flip-vs-blocking-wf-vblank@a-dp2.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-7/igt@kms_flip@flip-vs-blocking-wf-vblank@a-dp2.html
* igt@kms_flip@flip-vs-panning-interruptible:
- shard-bmg: [DMESG-WARN][251] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][252]
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_flip@flip-vs-panning-interruptible.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-2/igt@kms_flip@flip-vs-panning-interruptible.html
* igt@kms_flip@flip-vs-panning-interruptible@d-dp2:
- shard-bmg: [DMESG-WARN][253] ([Intel XE#3468]) -> [PASS][254] +55 other tests pass
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_flip@flip-vs-panning-interruptible@d-dp2.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-2/igt@kms_flip@flip-vs-panning-interruptible@d-dp2.html
* igt@kms_flip@wf_vblank-ts-check@c-edp1:
- shard-lnl: [FAIL][255] ([Intel XE#886]) -> [PASS][256]
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@c-edp1.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-8/igt@kms_flip@wf_vblank-ts-check@c-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-dg2-set2: [SKIP][257] ([Intel XE#2136]) -> [PASS][258] +25 other tests pass
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-valid-mode:
- shard-bmg: [INCOMPLETE][259] ([Intel XE#1727]) -> [PASS][260] +1 other test pass
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-valid-mode.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-valid-mode.html
- shard-dg2-set2: [INCOMPLETE][261] ([Intel XE#1195] / [Intel XE#1727]) -> [PASS][262] +1 other test pass
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-valid-mode.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][263] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][264] +11 other tests pass
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][265] ([Intel XE#1503]) -> [PASS][266]
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-7/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane_cursor@primary:
- shard-lnl: [DMESG-WARN][267] ([Intel XE#3466]) -> [PASS][268] +38 other tests pass
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@kms_plane_cursor@primary.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-1/igt@kms_plane_cursor@primary.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format:
- shard-bmg: [DMESG-WARN][269] ([Intel XE#2566]) -> [PASS][270] +1 other test pass
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-8/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
* igt@kms_pm_rpm@basic-rte:
- shard-dg2-set2: [ABORT][271] -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_pm_rpm@basic-rte.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-463/igt@kms_pm_rpm@basic-rte.html
* igt@kms_pm_rpm@modeset-stress-extra-wait:
- shard-bmg: [INCOMPLETE][273] ([Intel XE#2864]) -> [PASS][274]
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@kms_pm_rpm@modeset-stress-extra-wait.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-7/igt@kms_pm_rpm@modeset-stress-extra-wait.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2-set2: [SKIP][275] ([Intel XE#2446]) -> [PASS][276] +1 other test pass
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_pm_rpm@system-suspend-modeset.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-435/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_sequence@get-idle:
- shard-bmg: [DMESG-WARN][277] -> [PASS][278] +82 other tests pass
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_sequence@get-idle.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-1/igt@kms_sequence@get-idle.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [FAIL][279] ([Intel XE#2883]) -> [PASS][280] +2 other tests pass
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-2/igt@kms_setmode@basic@pipe-b-edp-1.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-5/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_vblank@query-busy:
- shard-bmg: [INCOMPLETE][281] -> [PASS][282] +4 other tests pass
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_vblank@query-busy.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-6/igt@kms_vblank@query-busy.html
* igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-invalidate:
- shard-dg2-set2: [DMESG-WARN][283] -> [PASS][284]
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-invalidate.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-invalidate.html
* igt@xe_exec_basic@many-null-rebind:
- shard-dg2-set2: [SKIP][285] ([Intel XE#1130]) -> [PASS][286] +149 other tests pass
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_exec_basic@many-null-rebind.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-435/igt@xe_exec_basic@many-null-rebind.html
* igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
- shard-dg2-set2: [INCOMPLETE][287] ([Intel XE#1195]) -> [PASS][288]
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-464/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-prefetch:
- shard-lnl: [DMESG-FAIL][289] ([Intel XE#3466]) -> [PASS][290] +5 other tests pass
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-prefetch.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-4/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-prefetch.html
* igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate:
- shard-lnl: [DMESG-WARN][291] ([Intel XE#3371]) -> [PASS][292]
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-5/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-7/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: [DMESG-WARN][293] ([Intel XE#3467]) -> [PASS][294] +1 other test pass
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@xe_module_load@reload-no-display.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-2/igt@xe_module_load@reload-no-display.html
- shard-dg2-set2: [FAIL][295] ([Intel XE#2136]) -> [PASS][296]
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_module_load@reload-no-display.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@xe_module_load@reload-no-display.html
* igt@xe_pm@s3-multiple-execs:
- shard-bmg: [DMESG-WARN][297] ([Intel XE#569]) -> [PASS][298] +1 other test pass
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_pm@s3-multiple-execs.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-4/igt@xe_pm@s3-multiple-execs.html
- shard-dg2-set2: [DMESG-WARN][299] ([Intel XE#569]) -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_pm@s3-multiple-execs.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-435/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm@s4-basic-exec:
- shard-lnl: [ABORT][301] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][302]
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-2/igt@xe_pm@s4-basic-exec.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-6/igt@xe_pm@s4-basic-exec.html
* igt@xe_pm_residency@gt-c6-freeze@gt1:
- shard-bmg: [DMESG-FAIL][303] ([Intel XE#1727]) -> [PASS][304] +1 other test pass
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@xe_pm_residency@gt-c6-freeze@gt1.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-6/igt@xe_pm_residency@gt-c6-freeze@gt1.html
#### Warnings ####
* igt@core_hotunplug@hotunbind-rebind:
- shard-dg2-set2: [DMESG-WARN][305] -> [SKIP][306] ([Intel XE#1885])
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@core_hotunplug@hotunbind-rebind.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@core_hotunplug@hotunbind-rebind.html
* igt@core_hotunplug@unbind-rebind:
- shard-dg2-set2: [SKIP][307] ([Intel XE#1885]) -> [INCOMPLETE][308] ([Intel XE#1195])
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@core_hotunplug@unbind-rebind.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-435/igt@core_hotunplug@unbind-rebind.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-dg2-set2: [SKIP][309] ([Intel XE#316]) -> [SKIP][310] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][311] ([Intel XE#316]) -> [SKIP][312] ([Intel XE#2136]) +1 other test skip
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-dg2-set2: [SKIP][313] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][314] ([Intel XE#316])
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_big_fb@linear-16bpp-rotate-90.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-463/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-dg2-set2: [SKIP][315] ([Intel XE#2136]) -> [SKIP][316] ([Intel XE#316]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][317] ([Intel XE#1124]) -> [SKIP][318] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2-set2: [SKIP][319] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][320] ([Intel XE#619]) +1 other test skip
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][321] ([Intel XE#2136]) -> [SKIP][322] ([Intel XE#610])
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-dg2-set2: [SKIP][323] ([Intel XE#2136]) -> [SKIP][324] ([Intel XE#1124]) +6 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2-set2: [SKIP][325] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][326] ([Intel XE#1124]) +5 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-464/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: [SKIP][327] ([Intel XE#1124]) -> [SKIP][328] ([Intel XE#2136]) +5 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-dg2-set2: [SKIP][329] ([Intel XE#2423] / [i915#2575]) -> [SKIP][330] ([Intel XE#2191]) +1 other test skip
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: [SKIP][331] ([Intel XE#2191]) -> [SKIP][332] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: [SKIP][333] ([Intel XE#367]) -> [SKIP][334] ([Intel XE#2423] / [i915#2575]) +3 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: [SKIP][335] ([Intel XE#2423] / [i915#2575]) -> [SKIP][336] ([Intel XE#367]) +2 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-463/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][337] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][338] ([Intel XE#2136]) +4 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc:
- shard-dg2-set2: [SKIP][339] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][340] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][341] -> [SKIP][342] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [FAIL][343] ([Intel XE#616]) -> [SKIP][344] ([Intel XE#2136])
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][345] ([Intel XE#2907]) -> [SKIP][346] ([Intel XE#2136]) +1 other test skip
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs:
- shard-dg2-set2: [SKIP][347] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][348] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][349] ([Intel XE#2136]) -> [SKIP][350] ([Intel XE#2907]) +1 other test skip
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: [SKIP][351] ([Intel XE#2136]) -> [SKIP][352] ([Intel XE#455] / [Intel XE#787]) +8 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg2-set2: [SKIP][353] ([Intel XE#306]) -> [SKIP][354] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_chamelium_color@ctm-0-50.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@degamma:
- shard-dg2-set2: [SKIP][355] ([Intel XE#2423] / [i915#2575]) -> [SKIP][356] ([Intel XE#306])
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_chamelium_color@degamma.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-464/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg2-set2: [SKIP][357] ([Intel XE#373]) -> [SKIP][358] ([Intel XE#2423] / [i915#2575]) +13 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: [SKIP][359] ([Intel XE#2423] / [i915#2575]) -> [SKIP][360] ([Intel XE#373]) +10 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-435/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_color@invalid-degamma-lut-sizes:
- shard-dg2-set2: [DMESG-WARN][361] -> [SKIP][362] ([Intel XE#2423] / [i915#2575])
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_color@invalid-degamma-lut-sizes.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@kms_color@invalid-degamma-lut-sizes.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: [SKIP][363] ([Intel XE#2423] / [i915#2575]) -> [FAIL][364] ([Intel XE#1178])
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_content_protection@atomic-dpms.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-463/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: [SKIP][365] ([Intel XE#2423] / [i915#2575]) -> [SKIP][366] ([Intel XE#307]) +1 other test skip
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-0.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2-set2: [SKIP][367] ([Intel XE#2423] / [i915#2575]) -> [SKIP][368] ([Intel XE#455]) +6 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_content_protection@lic-type-1.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-dg2-set2: [INCOMPLETE][369] ([Intel XE#1195] / [Intel XE#3226]) -> [SKIP][370] ([Intel XE#2423] / [i915#2575])
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg2-set2: [SKIP][371] ([Intel XE#323]) -> [SKIP][372] ([Intel XE#2423] / [i915#2575])
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-dg2-set2: [SKIP][373] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][374] ([Intel XE#1195])
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-dg2-set2: [FAIL][375] ([Intel XE#1475]) -> [SKIP][376] ([Intel XE#2423] / [i915#2575])
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2-set2: [SKIP][377] ([Intel XE#2423] / [i915#2575]) -> [SKIP][378] ([Intel XE#323])
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dsc@dsc-basic:
- shard-dg2-set2: [SKIP][379] ([Intel XE#455]) -> [SKIP][380] ([Intel XE#2351])
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_dsc@dsc-basic.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2-set2: [SKIP][381] ([Intel XE#455]) -> [SKIP][382] ([Intel XE#2136] / [Intel XE#2351])
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_dsc@dsc-with-bpc-formats.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg2-set2: [SKIP][383] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][384] ([Intel XE#455]) +2 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_dsc@dsc-with-formats.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2-set2: [SKIP][385] ([Intel XE#2136]) -> [SKIP][386] ([Intel XE#455]) +2 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: [DMESG-FAIL][387] -> [FAIL][388] ([Intel XE#1695])
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_fbcon_fbt@fbc-suspend.html
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-2/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: [SKIP][389] ([Intel XE#776]) -> [SKIP][390] ([Intel XE#2136])
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_fbcon_fbt@psr.html
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: [SKIP][391] ([Intel XE#2423] / [i915#2575]) -> [SKIP][392] ([Intel XE#701])
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_feature_discovery@chamelium.html
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-435/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2-set2: [SKIP][393] ([Intel XE#2423] / [i915#2575]) -> [SKIP][394] ([Intel XE#703])
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_feature_discovery@display-3x.html
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-463/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@psr2:
- shard-dg2-set2: [SKIP][395] ([Intel XE#1135]) -> [SKIP][396] ([Intel XE#2423] / [i915#2575])
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_feature_discovery@psr2.html
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-dg2-set2: [FAIL][397] ([Intel XE#301]) -> [SKIP][398] ([Intel XE#2423] / [i915#2575])
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank.html
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-dg2-set2: [SKIP][399] ([Intel XE#2423] / [i915#2575]) -> [FAIL][400] ([Intel XE#301])
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg2-set2: [SKIP][401] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][402] ([Intel XE#1195] / [Intel XE#2049] / [Intel XE#2597])
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_flip@flip-vs-suspend.html
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-464/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-lnl: [FAIL][403] ([Intel XE#3149] / [Intel XE#886]) -> [FAIL][404] ([Intel XE#886])
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check.html
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-8/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
- shard-dg2-set2: [INCOMPLETE][405] ([Intel XE#1195] / [Intel XE#3468]) -> [SKIP][406] ([Intel XE#2136] / [Intel XE#2351])
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-dg2-set2: [SKIP][407] ([Intel XE#455]) -> [SKIP][408] ([Intel XE#2136]) +1 other test skip
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2-set2: [SKIP][409] ([i915#5274]) -> [SKIP][410] ([Intel XE#2423] / [i915#2575])
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_force_connector_basic@prune-stale-modes.html
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [SKIP][411] ([Intel XE#651]) -> [SKIP][412] ([Intel XE#2136] / [Intel XE#2351]) +13 other tests skip
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
- shard-dg2-set2: [SKIP][413] ([Intel XE#651]) -> [SKIP][414] ([Intel XE#2136]) +20 other tests skip
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc:
- shard-dg2-set2: [SKIP][415] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][416] ([Intel XE#651]) +11 other tests skip
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-rte:
- shard-dg2-set2: [INCOMPLETE][417] ([Intel XE#1195]) -> [SKIP][418] ([Intel XE#2136])
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
- shard-bmg: [INCOMPLETE][419] -> [FAIL][420] ([Intel XE#2333])
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
- shard-bmg: [FAIL][421] ([Intel XE#2333]) -> [DMESG-FAIL][422] ([Intel XE#3468]) +2 other tests dmesg-fail
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][423] ([Intel XE#2136]) -> [INCOMPLETE][424] ([Intel XE#1195]) +1 other test incomplete
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [DMESG-FAIL][425] -> [FAIL][426] ([Intel XE#2333]) +4 other tests fail
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-tiling-linear:
- shard-bmg: [DMESG-FAIL][427] ([Intel XE#3468]) -> [FAIL][428] ([Intel XE#2333]) +6 other tests fail
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: [SKIP][429] ([Intel XE#658]) -> [SKIP][430] ([Intel XE#2136] / [Intel XE#2351])
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move:
- shard-dg2-set2: [SKIP][431] ([Intel XE#2136]) -> [SKIP][432] ([Intel XE#651]) +21 other tests skip
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][433] ([Intel XE#2136]) -> [SKIP][434] ([Intel XE#653]) +21 other tests skip
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg2-set2: [SKIP][435] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][436] ([Intel XE#653]) +9 other tests skip
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][437] ([Intel XE#653]) -> [SKIP][438] ([Intel XE#2136] / [Intel XE#2351]) +8 other tests skip
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: [SKIP][439] ([Intel XE#653]) -> [SKIP][440] ([Intel XE#2136]) +25 other tests skip
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2-set2: [SKIP][441] ([Intel XE#605]) -> [SKIP][442] ([Intel XE#2423] / [i915#2575])
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_getfb@getfb-reject-ccs.html
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [SKIP][443] ([Intel XE#455]) -> [SKIP][444] ([Intel XE#2423] / [i915#2575]) +8 other tests skip
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_hdr@invalid-hdr.html
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2-set2: [SKIP][445] ([Intel XE#2136]) -> [SKIP][446] ([Intel XE#346])
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_joiner@basic-big-joiner.html
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: [SKIP][447] ([Intel XE#2136]) -> [SKIP][448] ([Intel XE#2927]) +1 other test skip
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_joiner@invalid-modeset-ultra-joiner.html
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-435/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: [SKIP][449] ([Intel XE#2423] / [i915#2575]) -> [SKIP][450] ([Intel XE#356])
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-dg2-set2: [SKIP][451] ([Intel XE#2423] / [i915#2575]) -> [SKIP][452] ([Intel XE#2763] / [Intel XE#455])
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-set2: [SKIP][453] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][454] ([Intel XE#2423] / [i915#2575])
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75:
- shard-dg2-set2: [SKIP][455] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][456] ([Intel XE#2566])
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: [SKIP][457] ([Intel XE#870]) -> [SKIP][458] ([Intel XE#2136]) +1 other test skip
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_pm_backlight@fade.html
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: [SKIP][459] ([Intel XE#2136]) -> [SKIP][460] ([Intel XE#870]) +1 other test skip
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_pm_backlight@fade-with-suspend.html
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@deep-pkgc:
- shard-dg2-set2: [SKIP][461] ([Intel XE#2136]) -> [SKIP][462] ([Intel XE#908])
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_pm_dc@deep-pkgc.html
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@modeset-stress-extra-wait:
- shard-dg2-set2: [ABORT][463] -> [SKIP][464] ([Intel XE#2446]) +1 other test skip
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_pm_rpm@modeset-stress-extra-wait.html
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@kms_pm_rpm@modeset-stress-extra-wait.html
* igt@kms_pm_rpm@universal-planes-dpms:
- shard-dg2-set2: [DMESG-WARN][465] ([Intel XE#2042]) -> [SKIP][466] ([Intel XE#2446])
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_pm_rpm@universal-planes-dpms.html
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@kms_pm_rpm@universal-planes-dpms.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][467] ([Intel XE#1489]) -> [SKIP][468] ([Intel XE#2136]) +5 other tests skip
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][469] ([Intel XE#2136]) -> [SKIP][470] ([Intel XE#1489]) +4 other tests skip
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-set2: [SKIP][471] ([Intel XE#2136]) -> [SKIP][472] ([Intel XE#1122])
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_psr2_su@page_flip-nv12.html
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2-set2: [SKIP][473] ([Intel XE#1122]) -> [SKIP][474] ([Intel XE#2136]) +1 other test skip
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_psr2_su@page_flip-p010.html
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][475] ([Intel XE#2136]) -> [SKIP][476] ([Intel XE#2850] / [Intel XE#929]) +11 other tests skip
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-464/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@pr-sprite-blt:
- shard-dg2-set2: [SKIP][477] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][478] ([Intel XE#2136]) +12 other tests skip
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_psr@pr-sprite-blt.html
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@kms_psr@pr-sprite-blt.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: [SKIP][479] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][480] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_psr@psr-dpms.html
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@kms_psr@psr-dpms.html
* igt@kms_psr@psr-primary-page-flip:
- shard-dg2-set2: [SKIP][481] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][482] ([Intel XE#2351])
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_psr@psr-primary-page-flip.html
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr@psr-sprite-blt:
- shard-dg2-set2: [SKIP][483] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][484] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_psr@psr-sprite-blt.html
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-463/igt@kms_psr@psr-sprite-blt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2-set2: [SKIP][485] ([Intel XE#2136]) -> [SKIP][486] ([Intel XE#2939])
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2-set2: [SKIP][487] ([Intel XE#2423] / [i915#2575]) -> [SKIP][488] ([Intel XE#3414]) +3 other tests skip
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_rotation_crc@bad-tiling.html
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2-set2: [SKIP][489] ([Intel XE#3414]) -> [SKIP][490] ([Intel XE#2423] / [i915#2575])
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_rotation_crc@primary-rotation-90.html
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][491] ([Intel XE#1127]) -> [SKIP][492] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][493] ([Intel XE#2426]) -> [SKIP][494] ([Intel XE#2509])
[493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-dg2-set2: [SKIP][495] ([Intel XE#2423] / [i915#2575]) -> [SKIP][496] ([Intel XE#1500])
[495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: [SKIP][497] ([Intel XE#2423] / [i915#2575]) -> [SKIP][498] ([Intel XE#330])
[497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_tv_load_detect@load-detect.html
[498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@kms_tv_load_detect@load-detect.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2-set2: [SKIP][499] ([Intel XE#756]) -> [SKIP][500] ([Intel XE#2423] / [i915#2575])
[499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
[500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: [SKIP][501] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][502] ([Intel XE#1130])
[501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@xe_compute_preempt@compute-preempt.html
[502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_copy_basic@mem-copy-linear-0x3fff:
- shard-dg2-set2: [SKIP][503] ([Intel XE#1130]) -> [SKIP][504] ([Intel XE#1123])
[503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
[504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: [SKIP][505] ([Intel XE#1123]) -> [SKIP][506] ([Intel XE#1130])
[505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
[506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_eudebug@basic-close:
- shard-dg2-set2: [SKIP][507] ([Intel XE#1130]) -> [SKIP][508] ([Intel XE#2905]) +10 other tests skip
[507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_eudebug@basic-close.html
[508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug@basic-vm-access-parameters:
- shard-dg2-set2: [SKIP][509] ([Intel XE#2905]) -> [SKIP][510] ([Intel XE#1130]) +15 other tests skip
[509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_eudebug@basic-vm-access-parameters.html
[510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@xe_eudebug@basic-vm-access-parameters.html
* igt@xe_evict@evict-beng-large-multi-vm-cm:
- shard-dg2-set2: [FAIL][511] ([Intel XE#1600]) -> [SKIP][512] ([Intel XE#1130])
[511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@xe_evict@evict-beng-large-multi-vm-cm.html
[512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@xe_evict@evict-beng-large-multi-vm-cm.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-dg2-set2: [SKIP][513] ([Intel XE#1130]) -> [FAIL][514] ([Intel XE#1600])
[513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_evict@evict-large-multi-vm-cm.html
[514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_exec_basic@twice-userptr:
- shard-dg2-set2: [DMESG-WARN][515] -> [SKIP][516] ([Intel XE#1130]) +3 other tests skip
[515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_exec_basic@twice-userptr.html
[516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@xe_exec_basic@twice-userptr.html
* igt@xe_exec_fault_mode@once-bindexecqueue-imm:
- shard-dg2-set2: [SKIP][517] ([Intel XE#1130]) -> [SKIP][518] ([Intel XE#288]) +26 other tests skip
[517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
[518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch:
- shard-dg2-set2: [SKIP][519] ([Intel XE#288]) -> [SKIP][520] ([Intel XE#1130]) +25 other tests skip
[519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
[520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: [SKIP][521] ([Intel XE#1130]) -> [SKIP][522] ([Intel XE#2360])
[521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
[522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-463/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_device_create:
- shard-dg2-set2: [DMESG-WARN][523] ([Intel XE#3467]) -> [SKIP][524] ([Intel XE#1130]) +3 other tests skip
[523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html
[524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
- shard-bmg: [FAIL][525] ([Intel XE#3499]) -> [DMESG-FAIL][526] ([Intel XE#3467])
[525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
[526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
* igt@xe_live_ktest@xe_bo:
- shard-bmg: [INCOMPLETE][527] ([Intel XE#2998]) -> [SKIP][528] ([Intel XE#1192])
[527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@xe_live_ktest@xe_bo.html
[528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-bmg-8/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_eudebug:
- shard-lnl: [SKIP][529] ([Intel XE#2833]) -> [SKIP][530] ([Intel XE#1192] / [Intel XE#3026])
[529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-5/igt@xe_live_ktest@xe_eudebug.html
[530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-8/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_live_ktest@xe_mocs:
- shard-dg2-set2: [SKIP][531] ([Intel XE#1192]) -> [FAIL][532] ([Intel XE#1999])
[531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_live_ktest@xe_mocs.html
[532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@xe_live_ktest@xe_mocs.html
* igt@xe_media_fill@media-fill:
- shard-dg2-set2: [SKIP][533] ([Intel XE#1130]) -> [SKIP][534] ([Intel XE#560])
[533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_media_fill@media-fill.html
[534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@small-bar:
- shard-dg2-set2: [SKIP][535] ([Intel XE#1130]) -> [SKIP][536] ([Intel XE#512])
[535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_mmap@small-bar.html
[536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@xe_mmap@small-bar.html
* igt@xe_oa@non-privileged-map-oa-buffer:
- shard-dg2-set2: [SKIP][537] ([Intel XE#2541]) -> [SKIP][538] ([Intel XE#1130]) +7 other tests skip
[537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_oa@non-privileged-map-oa-buffer.html
[538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@xe_oa@non-privileged-map-oa-buffer.html
* igt@xe_oa@polling-small-buf:
- shard-dg2-set2: [SKIP][539] ([Intel XE#1130]) -> [SKIP][540] ([Intel XE#2541]) +5 other tests skip
[539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_oa@polling-small-buf.html
[540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@xe_oa@polling-small-buf.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: [SKIP][541] ([Intel XE#1337]) -> [SKIP][542] ([Intel XE#1130])
[541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_pat@display-vs-wb-transient.html
[542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pm@d3cold-basic-exec:
- shard-dg2-set2: [SKIP][543] ([Intel XE#1130]) -> [SKIP][544] ([Intel XE#2284] / [Intel XE#366])
[543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_pm@d3cold-basic-exec.html
[544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@d3cold-mocs:
- shard-dg2-set2: [SKIP][545] ([Intel XE#2284]) -> [SKIP][546] ([Intel XE#1130])
[545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_pm@d3cold-mocs.html
[546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@s2idle-basic-exec:
- shard-dg2-set2: [SKIP][547] ([Intel XE#1130]) -> [DMESG-WARN][548] ([Intel XE#1727])
[547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_pm@s2idle-basic-exec.html
[548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@xe_pm@s2idle-basic-exec.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-dg2-set2: [DMESG-FAIL][549] ([Intel XE#3468]) -> [DMESG-WARN][550] ([Intel XE#3468])
[549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_pm@s2idle-vm-bind-prefetch.html
[550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pm@s3-basic:
- shard-dg2-set2: [SKIP][551] ([Intel XE#1130]) -> [DMESG-WARN][552] ([Intel XE#569])
[551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_pm@s3-basic.html
[552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-436/igt@xe_pm@s3-basic.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [DMESG-WARN][553] ([Intel XE#569]) -> [SKIP][554] ([Intel XE#1130])
[553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_pm@s3-basic-exec.html
[554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][555] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][556] ([Intel XE#1130])
[555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_pm@s3-d3cold-basic-exec.html
[556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pm@s4-multiple-execs:
- shard-dg2-set2: [SKIP][557] ([Intel XE#1130]) -> [DMESG-WARN][558] ([Intel XE#3468])
[557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_pm@s4-multiple-execs.html
[558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@xe_pm@s4-multiple-execs.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-dg2-set2: [SKIP][559] ([Intel XE#1130]) -> [DMESG-WARN][560] ([Intel XE#2280])
[559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_pm@s4-vm-bind-unbind-all.html
[560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-464/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-dg2-set2: [SKIP][561] ([Intel XE#579]) -> [SKIP][562] ([Intel XE#1130])
[561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_pm@vram-d3cold-threshold.html
[562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_query@multigpu-query-invalid-query:
- shard-dg2-set2: [SKIP][563] ([Intel XE#1130]) -> [SKIP][564] ([Intel XE#944]) +1 other test skip
[563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_query@multigpu-query-invalid-query.html
[564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-433/igt@xe_query@multigpu-query-invalid-query.html
* igt@xe_query@multigpu-query-topology:
- shard-dg2-set2: [SKIP][565] ([Intel XE#944]) -> [SKIP][566] ([Intel XE#1130]) +3 other tests skip
[565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_query@multigpu-query-topology.html
[566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-466/igt@xe_query@multigpu-query-topology.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-dg2-set2: [SKIP][567] ([Intel XE#3342]) -> [SKIP][568] ([Intel XE#1130])
[567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_sriov_flr@flr-vf1-clear.html
[568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-dg2-434/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_wedged@basic-wedged:
- shard-lnl: [DMESG-WARN][569] ([Intel XE#2919] / [Intel XE#3119]) -> [ABORT][570] ([Intel XE#3119])
[569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@xe_wedged@basic-wedged.html
[570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/shard-lnl-7/igt@xe_wedged@basic-wedged.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
[Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
[Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141
[Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613
[Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3026
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3119]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3119
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3225]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3225
[Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3371]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3371
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433
[Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440
[Intel XE#3451]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3451
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3466
[Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
[Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
[Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486
[Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499
[Intel XE#3514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3514
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
Build changes
-------------
* IGT: IGT_8118 -> IGTPW_12135
IGTPW_12135: 12135
IGT_8118: 17707095f1e5d3c30f463b43022f01c0160579b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2252-f8f85a38f6c75e091805f01ceff4041ac2fdf3fd: f8f85a38f6c75e091805f01ceff4041ac2fdf3fd
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12135/index.html
[-- Attachment #2: Type: text/html, Size: 173150 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: ✗ Fi.CI.BAT: failure for series starting with [CI,1/9] lib/igt_kmod: Remove unused module_ref
2024-11-19 16:53 ` ✗ Fi.CI.BAT: " Patchwork
@ 2024-11-21 22:02 ` Lucas De Marchi
2024-12-03 23:17 ` ✗ Fi.CI.BAT: failure for series starting with [CI, 1/9] " Matt Roper
0 siblings, 1 reply; 16+ messages in thread
From: Lucas De Marchi @ 2024-11-21 22:02 UTC (permalink / raw)
To: igt-dev
On Tue, Nov 19, 2024 at 04:53:25PM +0000, Patchwork wrote:
>== Series Details ==
>
>Series: series starting with [CI,1/9] lib/igt_kmod: Remove unused module_ref
>URL : https://patchwork.freedesktop.org/series/141532/
>State : failure
>
>== Summary ==
>
>CI Bug Log - changes from IGT_8118 -> IGTPW_12135
>====================================================
>
>Summary
>-------
>
> **FAILURE**
>
> Serious unknown changes coming with IGTPW_12135 absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_12135, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
> to document this new failure mode, which will reduce false positives in CI.
>
> External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/index.html
>
>Participating hosts (46 -> 44)
>------------------------------
>
> Missing (2): bat-mtlp-9 fi-snb-2520m
>
>Possible new issues
>-------------------
>
> Here are the unknown changes that may have been introduced in IGTPW_12135:
>
>### IGT changes ###
>
>#### Possible regressions ####
>
> * igt@core_hotunplug@unbind-rebind:
oh well... CI is definitely not happy with this series, hitting this:
<3> [152.880835] i915 0000:00:02.0: [drm] *ERROR* audio power refcount 1 after unbind
Need to check what's going on
Lucas De Marchi
> - fi-cfl-guc: [PASS][1] -> [ABORT][2]
> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-cfl-guc/igt@core_hotunplug@unbind-rebind.html
> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-cfl-guc/igt@core_hotunplug@unbind-rebind.html
> - bat-dg2-9: [PASS][3] -> [ABORT][4]
> [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-9/igt@core_hotunplug@unbind-rebind.html
> [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg2-9/igt@core_hotunplug@unbind-rebind.html
> - bat-dg2-11: [PASS][5] -> [ABORT][6]
> [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-11/igt@core_hotunplug@unbind-rebind.html
> [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg2-11/igt@core_hotunplug@unbind-rebind.html
> - bat-dg2-14: [PASS][7] -> [ABORT][8]
> [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-14/igt@core_hotunplug@unbind-rebind.html
> [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg2-14/igt@core_hotunplug@unbind-rebind.html
> - bat-dg2-8: [PASS][9] -> [ABORT][10]
> [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-8/igt@core_hotunplug@unbind-rebind.html
> [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg2-8/igt@core_hotunplug@unbind-rebind.html
> - bat-adls-6: [PASS][11] -> [ABORT][12]
> [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-adls-6/igt@core_hotunplug@unbind-rebind.html
> [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-adls-6/igt@core_hotunplug@unbind-rebind.html
> - fi-rkl-11600: [PASS][13] -> [ABORT][14]
> [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-rkl-11600/igt@core_hotunplug@unbind-rebind.html
> [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-rkl-11600/igt@core_hotunplug@unbind-rebind.html
> - bat-dg1-7: [PASS][15] -> [ABORT][16]
> [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg1-7/igt@core_hotunplug@unbind-rebind.html
> [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg1-7/igt@core_hotunplug@unbind-rebind.html
> - bat-rpls-4: [PASS][17] -> [ABORT][18]
> [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-rpls-4/igt@core_hotunplug@unbind-rebind.html
> [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-rpls-4/igt@core_hotunplug@unbind-rebind.html
> - fi-cfl-8109u: [PASS][19] -> [ABORT][20]
> [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-cfl-8109u/igt@core_hotunplug@unbind-rebind.html
> [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-cfl-8109u/igt@core_hotunplug@unbind-rebind.html
> - fi-kbl-7567u: [PASS][21] -> [ABORT][22]
> [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-kbl-7567u/igt@core_hotunplug@unbind-rebind.html
> [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-kbl-7567u/igt@core_hotunplug@unbind-rebind.html
> - bat-apl-1: [PASS][23] -> [ABORT][24]
> [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-apl-1/igt@core_hotunplug@unbind-rebind.html
> [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-apl-1/igt@core_hotunplug@unbind-rebind.html
> - fi-tgl-1115g4: [PASS][25] -> [ABORT][26]
> [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-tgl-1115g4/igt@core_hotunplug@unbind-rebind.html
> [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-tgl-1115g4/igt@core_hotunplug@unbind-rebind.html
>
> * igt@i915_pm_rpm@module-reload:
> - bat-adlp-6: [PASS][27] -> [ABORT][28]
> [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
> [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
> - bat-adlp-9: [PASS][29] -> [ABORT][30]
> [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-adlp-9/igt@i915_pm_rpm@module-reload.html
> [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-adlp-9/igt@i915_pm_rpm@module-reload.html
> - bat-arls-5: [PASS][31] -> [ABORT][32]
> [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-arls-5/igt@i915_pm_rpm@module-reload.html
> [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-arls-5/igt@i915_pm_rpm@module-reload.html
>
>
>#### Suppressed ####
>
> The following results come from untrusted machines, tests, or statuses.
> They do not affect the overall result.
>
> * igt@i915_pm_rpm@module-reload:
> - {bat-arls-6}: [PASS][33] -> [ABORT][34]
> [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-arls-6/igt@i915_pm_rpm@module-reload.html
> [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-arls-6/igt@i915_pm_rpm@module-reload.html
>
>
>Known issues
>------------
>
> Here are the changes found in IGTPW_12135 that come from known issues:
>
>### IGT changes ###
>
>#### Issues hit ####
>
> * igt@dmabuf@all-tests@dma_fence_chain:
> - fi-bsw-nick: [PASS][35] -> [INCOMPLETE][36] ([i915#12904]) +1 other test incomplete
> [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
> [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
>
> * igt@i915_selftest@live:
> - bat-arlh-3: [PASS][37] -> [ABORT][38] ([i915#12829])
> [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-arlh-3/igt@i915_selftest@live.html
> [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-arlh-3/igt@i915_selftest@live.html
>
> * igt@i915_selftest@live@workarounds:
> - bat-arlh-3: [PASS][39] -> [ABORT][40] ([i915#12061])
> [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-arlh-3/igt@i915_selftest@live@workarounds.html
> [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-arlh-3/igt@i915_selftest@live@workarounds.html
>
>
>#### Possible fixes ####
>
> * igt@i915_module_load@load:
> - bat-twl-2: [DMESG-WARN][41] ([i915#1982]) -> [PASS][42]
> [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-twl-2/igt@i915_module_load@load.html
> [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-twl-2/igt@i915_module_load@load.html
>
> * igt@i915_selftest@live:
> - bat-mtlp-8: [ABORT][43] ([i915#12829]) -> [PASS][44]
> [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-mtlp-8/igt@i915_selftest@live.html
> [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-mtlp-8/igt@i915_selftest@live.html
>
> * igt@i915_selftest@live@gt_mocs:
> - bat-twl-2: [ABORT][45] ([i915#12919]) -> [PASS][46] +1 other test pass
> [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-twl-2/igt@i915_selftest@live@gt_mocs.html
> [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-twl-2/igt@i915_selftest@live@gt_mocs.html
>
> * igt@i915_selftest@live@workarounds:
> - bat-mtlp-8: [ABORT][47] -> [PASS][48]
> [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-mtlp-8/igt@i915_selftest@live@workarounds.html
> [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-mtlp-8/igt@i915_selftest@live@workarounds.html
>
> * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
> - bat-apl-1: [DMESG-WARN][49] -> [PASS][50] +2 other tests pass
> [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
> [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
>
> * igt@kms_pipe_crc_basic@read-crc-frame-sequence:
> - bat-dg2-11: [SKIP][51] ([i915#9197]) -> [PASS][52]
> [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
> [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
>
>
> {name}: This element is suppressed. This means it is ignored when computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
>
> [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
> [i915#12829]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12829
> [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
> [i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
> [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
> [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
>
>
>Build changes
>-------------
>
> * CI: CI-20190529 -> None
> * IGT: IGT_8118 -> IGTPW_12135
>
> CI-20190529: 20190529
> CI_DRM_15720: f8f85a38f6c75e091805f01ceff4041ac2fdf3fd @ git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_12135: 12135
> IGT_8118: 17707095f1e5d3c30f463b43022f01c0160579b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>
>== Logs ==
>
>For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/index.html
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: ✗ Fi.CI.BAT: failure for series starting with [CI, 1/9] lib/igt_kmod: Remove unused module_ref
2024-11-21 22:02 ` Lucas De Marchi
@ 2024-12-03 23:17 ` Matt Roper
[not found] ` <2z26xmkwu2n3z2ls7xf33rlogccpjsxdradgax3qb7hyys5kbs@l6s5aeisijex>
0 siblings, 1 reply; 16+ messages in thread
From: Matt Roper @ 2024-12-03 23:17 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: igt-dev
On Thu, Nov 21, 2024 at 04:02:16PM -0600, Lucas De Marchi wrote:
> On Tue, Nov 19, 2024 at 04:53:25PM +0000, Patchwork wrote:
> > == Series Details ==
> >
> > Series: series starting with [CI,1/9] lib/igt_kmod: Remove unused module_ref
> > URL : https://patchwork.freedesktop.org/series/141532/
> > State : failure
> >
> > == Summary ==
> >
> > CI Bug Log - changes from IGT_8118 -> IGTPW_12135
> > ====================================================
> >
> > Summary
> > -------
> >
> > **FAILURE**
> >
> > Serious unknown changes coming with IGTPW_12135 absolutely need to be
> > verified manually.
> >
> > If you think the reported changes have nothing to do with the changes
> > introduced in IGTPW_12135, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
> > to document this new failure mode, which will reduce false positives in CI.
> >
> > External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/index.html
> >
> > Participating hosts (46 -> 44)
> > ------------------------------
> >
> > Missing (2): bat-mtlp-9 fi-snb-2520m
> >
> > Possible new issues
> > -------------------
> >
> > Here are the unknown changes that may have been introduced in IGTPW_12135:
> >
> > ### IGT changes ###
> >
> > #### Possible regressions ####
> >
> > * igt@core_hotunplug@unbind-rebind:
>
> oh well... CI is definitely not happy with this series, hitting this:
>
> <3> [152.880835] i915 0000:00:02.0: [drm] *ERROR* audio power refcount 1 after unbind
>
> Need to check what's going on
I think that's
https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/3467
which we're now exposed to more widely by intentionally not unloading
the audio driver.
Matt
>
> Lucas De Marchi
>
> > - fi-cfl-guc: [PASS][1] -> [ABORT][2]
> > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-cfl-guc/igt@core_hotunplug@unbind-rebind.html
> > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-cfl-guc/igt@core_hotunplug@unbind-rebind.html
> > - bat-dg2-9: [PASS][3] -> [ABORT][4]
> > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-9/igt@core_hotunplug@unbind-rebind.html
> > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg2-9/igt@core_hotunplug@unbind-rebind.html
> > - bat-dg2-11: [PASS][5] -> [ABORT][6]
> > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-11/igt@core_hotunplug@unbind-rebind.html
> > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg2-11/igt@core_hotunplug@unbind-rebind.html
> > - bat-dg2-14: [PASS][7] -> [ABORT][8]
> > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-14/igt@core_hotunplug@unbind-rebind.html
> > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg2-14/igt@core_hotunplug@unbind-rebind.html
> > - bat-dg2-8: [PASS][9] -> [ABORT][10]
> > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-8/igt@core_hotunplug@unbind-rebind.html
> > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg2-8/igt@core_hotunplug@unbind-rebind.html
> > - bat-adls-6: [PASS][11] -> [ABORT][12]
> > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-adls-6/igt@core_hotunplug@unbind-rebind.html
> > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-adls-6/igt@core_hotunplug@unbind-rebind.html
> > - fi-rkl-11600: [PASS][13] -> [ABORT][14]
> > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-rkl-11600/igt@core_hotunplug@unbind-rebind.html
> > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-rkl-11600/igt@core_hotunplug@unbind-rebind.html
> > - bat-dg1-7: [PASS][15] -> [ABORT][16]
> > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg1-7/igt@core_hotunplug@unbind-rebind.html
> > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg1-7/igt@core_hotunplug@unbind-rebind.html
> > - bat-rpls-4: [PASS][17] -> [ABORT][18]
> > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-rpls-4/igt@core_hotunplug@unbind-rebind.html
> > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-rpls-4/igt@core_hotunplug@unbind-rebind.html
> > - fi-cfl-8109u: [PASS][19] -> [ABORT][20]
> > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-cfl-8109u/igt@core_hotunplug@unbind-rebind.html
> > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-cfl-8109u/igt@core_hotunplug@unbind-rebind.html
> > - fi-kbl-7567u: [PASS][21] -> [ABORT][22]
> > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-kbl-7567u/igt@core_hotunplug@unbind-rebind.html
> > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-kbl-7567u/igt@core_hotunplug@unbind-rebind.html
> > - bat-apl-1: [PASS][23] -> [ABORT][24]
> > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-apl-1/igt@core_hotunplug@unbind-rebind.html
> > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-apl-1/igt@core_hotunplug@unbind-rebind.html
> > - fi-tgl-1115g4: [PASS][25] -> [ABORT][26]
> > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-tgl-1115g4/igt@core_hotunplug@unbind-rebind.html
> > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-tgl-1115g4/igt@core_hotunplug@unbind-rebind.html
> >
> > * igt@i915_pm_rpm@module-reload:
> > - bat-adlp-6: [PASS][27] -> [ABORT][28]
> > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
> > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
> > - bat-adlp-9: [PASS][29] -> [ABORT][30]
> > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-adlp-9/igt@i915_pm_rpm@module-reload.html
> > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-adlp-9/igt@i915_pm_rpm@module-reload.html
> > - bat-arls-5: [PASS][31] -> [ABORT][32]
> > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-arls-5/igt@i915_pm_rpm@module-reload.html
> > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-arls-5/igt@i915_pm_rpm@module-reload.html
> >
> >
> > #### Suppressed ####
> >
> > The following results come from untrusted machines, tests, or statuses.
> > They do not affect the overall result.
> >
> > * igt@i915_pm_rpm@module-reload:
> > - {bat-arls-6}: [PASS][33] -> [ABORT][34]
> > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-arls-6/igt@i915_pm_rpm@module-reload.html
> > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-arls-6/igt@i915_pm_rpm@module-reload.html
> >
> >
> > Known issues
> > ------------
> >
> > Here are the changes found in IGTPW_12135 that come from known issues:
> >
> > ### IGT changes ###
> >
> > #### Issues hit ####
> >
> > * igt@dmabuf@all-tests@dma_fence_chain:
> > - fi-bsw-nick: [PASS][35] -> [INCOMPLETE][36] ([i915#12904]) +1 other test incomplete
> > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
> > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
> >
> > * igt@i915_selftest@live:
> > - bat-arlh-3: [PASS][37] -> [ABORT][38] ([i915#12829])
> > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-arlh-3/igt@i915_selftest@live.html
> > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-arlh-3/igt@i915_selftest@live.html
> >
> > * igt@i915_selftest@live@workarounds:
> > - bat-arlh-3: [PASS][39] -> [ABORT][40] ([i915#12061])
> > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-arlh-3/igt@i915_selftest@live@workarounds.html
> > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-arlh-3/igt@i915_selftest@live@workarounds.html
> >
> >
> > #### Possible fixes ####
> >
> > * igt@i915_module_load@load:
> > - bat-twl-2: [DMESG-WARN][41] ([i915#1982]) -> [PASS][42]
> > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-twl-2/igt@i915_module_load@load.html
> > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-twl-2/igt@i915_module_load@load.html
> >
> > * igt@i915_selftest@live:
> > - bat-mtlp-8: [ABORT][43] ([i915#12829]) -> [PASS][44]
> > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-mtlp-8/igt@i915_selftest@live.html
> > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-mtlp-8/igt@i915_selftest@live.html
> >
> > * igt@i915_selftest@live@gt_mocs:
> > - bat-twl-2: [ABORT][45] ([i915#12919]) -> [PASS][46] +1 other test pass
> > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-twl-2/igt@i915_selftest@live@gt_mocs.html
> > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-twl-2/igt@i915_selftest@live@gt_mocs.html
> >
> > * igt@i915_selftest@live@workarounds:
> > - bat-mtlp-8: [ABORT][47] -> [PASS][48]
> > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-mtlp-8/igt@i915_selftest@live@workarounds.html
> > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-mtlp-8/igt@i915_selftest@live@workarounds.html
> >
> > * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
> > - bat-apl-1: [DMESG-WARN][49] -> [PASS][50] +2 other tests pass
> > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
> > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
> >
> > * igt@kms_pipe_crc_basic@read-crc-frame-sequence:
> > - bat-dg2-11: [SKIP][51] ([i915#9197]) -> [PASS][52]
> > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
> > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
> >
> >
> > {name}: This element is suppressed. This means it is ignored when computing
> > the status of the difference (SUCCESS, WARNING, or FAILURE).
> >
> > [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
> > [i915#12829]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12829
> > [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
> > [i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
> > [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
> > [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
> >
> >
> > Build changes
> > -------------
> >
> > * CI: CI-20190529 -> None
> > * IGT: IGT_8118 -> IGTPW_12135
> >
> > CI-20190529: 20190529
> > CI_DRM_15720: f8f85a38f6c75e091805f01ceff4041ac2fdf3fd @ git://anongit.freedesktop.org/gfx-ci/linux
> > IGTPW_12135: 12135
> > IGT_8118: 17707095f1e5d3c30f463b43022f01c0160579b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> >
> > == Logs ==
> >
> > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/index.html
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: ✗ Fi.CI.BAT: failure for series starting with [CI, 1/9] lib/igt_kmod: Remove unused module_ref
[not found] ` <2z26xmkwu2n3z2ls7xf33rlogccpjsxdradgax3qb7hyys5kbs@l6s5aeisijex>
@ 2024-12-04 0:00 ` Matt Roper
2024-12-04 14:11 ` Imre Deak
1 sibling, 0 replies; 16+ messages in thread
From: Matt Roper @ 2024-12-04 0:00 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: igt-dev, Imre Deak
On Tue, Dec 03, 2024 at 05:56:29PM -0600, Lucas De Marchi wrote:
> On Tue, Dec 03, 2024 at 03:17:04PM -0800, Matt Roper wrote:
> > On Thu, Nov 21, 2024 at 04:02:16PM -0600, Lucas De Marchi wrote:
> > > On Tue, Nov 19, 2024 at 04:53:25PM +0000, Patchwork wrote:
> > > > == Series Details ==
> > > >
> > > > Series: series starting with [CI,1/9] lib/igt_kmod: Remove unused module_ref
> > > > URL : https://patchwork.freedesktop.org/series/141532/
> > > > State : failure
> > > >
> > > > == Summary ==
> > > >
> > > > CI Bug Log - changes from IGT_8118 -> IGTPW_12135
> > > > ====================================================
> > > >
> > > > Summary
> > > > -------
> > > >
> > > > **FAILURE**
> > > >
> > > > Serious unknown changes coming with IGTPW_12135 absolutely need to be
> > > > verified manually.
> > > >
> > > > If you think the reported changes have nothing to do with the changes
> > > > introduced in IGTPW_12135, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
> > > > to document this new failure mode, which will reduce false positives in CI.
> > > >
> > > > External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/index.html
> > > >
> > > > Participating hosts (46 -> 44)
> > > > ------------------------------
> > > >
> > > > Missing (2): bat-mtlp-9 fi-snb-2520m
> > > >
> > > > Possible new issues
> > > > -------------------
> > > >
> > > > Here are the unknown changes that may have been introduced in IGTPW_12135:
> > > >
> > > > ### IGT changes ###
> > > >
> > > > #### Possible regressions ####
> > > >
> > > > * igt@core_hotunplug@unbind-rebind:
> > >
> > > oh well... CI is definitely not happy with this series, hitting this:
> > >
> > > <3> [152.880835] i915 0000:00:02.0: [drm] *ERROR* audio power refcount 1 after unbind
> > >
> > > Need to check what's going on
> >
> > I think that's
> >
> > https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/3467
> >
> > which we're now exposed to more widely by intentionally not unloading
> > the audio driver.
>
> this series is not merged... by "now" do you mean in i915 (since this is
> extending the xe behavior to i915)?
Yeah, I just meant that when we run this series through CI, we hit known
issue #3467 more widely because the existing code was unloading the
audio driver and preventing us from reproducing the issue in those
cases.
I didn't look into the refcount issue itself; I just wanted to point out
that there was a gitlab ticket related to what's being reported here.
Matt
>
> that manual refcount in i915-display seems wrong when unbinding... the
> audio component has the get_power/put_power, but if the entrypoint to the
> unbind is via i915's call to component_del(), it shouldn't really
> matter. Both components should be able to break it.
>
> +Imre
>
> I wonder if doing something like this would be ok and not mask other
> issues... that would match the "registered" logic we have in e.g.
> i915_pmu.c
>
> diff --git a/drivers/gpu/drm/i915/display/intel_audio.c b/drivers/gpu/drm/i915/display/intel_audio.c
> index c6b251f178c25..2c405e980c3a7 100644
> --- a/drivers/gpu/drm/i915/display/intel_audio.c
> +++ b/drivers/gpu/drm/i915/display/intel_audio.c
> @@ -1285,7 +1285,8 @@ static void i915_audio_component_unbind(struct device *drv_kdev,
> device_link_remove(hda_kdev, drv_kdev);
> - if (i915->display.audio.power_refcount)
> + if (i915->display.audio.component_registered &&
> + i915->display.audio.power_refcount)
> drm_err(&i915->drm, "audio power refcount %d after unbind\n",
> i915->display.audio.power_refcount);
> }
> @@ -1376,8 +1377,8 @@ static void i915_audio_component_cleanup(struct drm_i915_private *i915)
> if (!i915->display.audio.component_registered)
> return;
> - component_del(i915->drm.dev, &i915_audio_component_bind_ops);
> i915->display.audio.component_registered = false;
> + component_del(i915->drm.dev, &i915_audio_component_bind_ops);
> }
> /**
> diff --git a/drivers/gpu/drm/i915/display/intel_display_core.h b/drivers/gpu/drm/i915/display/intel_display_core.h
> index 554870d2494b3..75f2a064feba7 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_core.h
> +++ b/drivers/gpu/drm/i915/display/intel_display_core.h
> @@ -101,6 +101,7 @@ struct intel_audio_state {
> struct intel_audio {
> /* hda/i915 audio component */
> struct i915_audio_component *component;
> + /* registered and not in the process of unregistering */
> bool component_registered;
> /* mutex for audio/video sync */
> struct mutex mutex;
>
>
> Lucas De Marchi
>
> >
> >
> > Matt
> >
> > >
> > > Lucas De Marchi
> > >
> > > > - fi-cfl-guc: [PASS][1] -> [ABORT][2]
> > > > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-cfl-guc/igt@core_hotunplug@unbind-rebind.html
> > > > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-cfl-guc/igt@core_hotunplug@unbind-rebind.html
> > > > - bat-dg2-9: [PASS][3] -> [ABORT][4]
> > > > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-9/igt@core_hotunplug@unbind-rebind.html
> > > > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg2-9/igt@core_hotunplug@unbind-rebind.html
> > > > - bat-dg2-11: [PASS][5] -> [ABORT][6]
> > > > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-11/igt@core_hotunplug@unbind-rebind.html
> > > > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg2-11/igt@core_hotunplug@unbind-rebind.html
> > > > - bat-dg2-14: [PASS][7] -> [ABORT][8]
> > > > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-14/igt@core_hotunplug@unbind-rebind.html
> > > > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg2-14/igt@core_hotunplug@unbind-rebind.html
> > > > - bat-dg2-8: [PASS][9] -> [ABORT][10]
> > > > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-8/igt@core_hotunplug@unbind-rebind.html
> > > > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg2-8/igt@core_hotunplug@unbind-rebind.html
> > > > - bat-adls-6: [PASS][11] -> [ABORT][12]
> > > > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-adls-6/igt@core_hotunplug@unbind-rebind.html
> > > > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-adls-6/igt@core_hotunplug@unbind-rebind.html
> > > > - fi-rkl-11600: [PASS][13] -> [ABORT][14]
> > > > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-rkl-11600/igt@core_hotunplug@unbind-rebind.html
> > > > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-rkl-11600/igt@core_hotunplug@unbind-rebind.html
> > > > - bat-dg1-7: [PASS][15] -> [ABORT][16]
> > > > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg1-7/igt@core_hotunplug@unbind-rebind.html
> > > > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg1-7/igt@core_hotunplug@unbind-rebind.html
> > > > - bat-rpls-4: [PASS][17] -> [ABORT][18]
> > > > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-rpls-4/igt@core_hotunplug@unbind-rebind.html
> > > > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-rpls-4/igt@core_hotunplug@unbind-rebind.html
> > > > - fi-cfl-8109u: [PASS][19] -> [ABORT][20]
> > > > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-cfl-8109u/igt@core_hotunplug@unbind-rebind.html
> > > > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-cfl-8109u/igt@core_hotunplug@unbind-rebind.html
> > > > - fi-kbl-7567u: [PASS][21] -> [ABORT][22]
> > > > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-kbl-7567u/igt@core_hotunplug@unbind-rebind.html
> > > > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-kbl-7567u/igt@core_hotunplug@unbind-rebind.html
> > > > - bat-apl-1: [PASS][23] -> [ABORT][24]
> > > > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-apl-1/igt@core_hotunplug@unbind-rebind.html
> > > > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-apl-1/igt@core_hotunplug@unbind-rebind.html
> > > > - fi-tgl-1115g4: [PASS][25] -> [ABORT][26]
> > > > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-tgl-1115g4/igt@core_hotunplug@unbind-rebind.html
> > > > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-tgl-1115g4/igt@core_hotunplug@unbind-rebind.html
> > > >
> > > > * igt@i915_pm_rpm@module-reload:
> > > > - bat-adlp-6: [PASS][27] -> [ABORT][28]
> > > > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
> > > > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
> > > > - bat-adlp-9: [PASS][29] -> [ABORT][30]
> > > > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-adlp-9/igt@i915_pm_rpm@module-reload.html
> > > > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-adlp-9/igt@i915_pm_rpm@module-reload.html
> > > > - bat-arls-5: [PASS][31] -> [ABORT][32]
> > > > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-arls-5/igt@i915_pm_rpm@module-reload.html
> > > > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-arls-5/igt@i915_pm_rpm@module-reload.html
> > > >
> > > >
> > > > #### Suppressed ####
> > > >
> > > > The following results come from untrusted machines, tests, or statuses.
> > > > They do not affect the overall result.
> > > >
> > > > * igt@i915_pm_rpm@module-reload:
> > > > - {bat-arls-6}: [PASS][33] -> [ABORT][34]
> > > > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-arls-6/igt@i915_pm_rpm@module-reload.html
> > > > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-arls-6/igt@i915_pm_rpm@module-reload.html
> > > >
> > > >
> > > > Known issues
> > > > ------------
> > > >
> > > > Here are the changes found in IGTPW_12135 that come from known issues:
> > > >
> > > > ### IGT changes ###
> > > >
> > > > #### Issues hit ####
> > > >
> > > > * igt@dmabuf@all-tests@dma_fence_chain:
> > > > - fi-bsw-nick: [PASS][35] -> [INCOMPLETE][36] ([i915#12904]) +1 other test incomplete
> > > > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
> > > > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
> > > >
> > > > * igt@i915_selftest@live:
> > > > - bat-arlh-3: [PASS][37] -> [ABORT][38] ([i915#12829])
> > > > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-arlh-3/igt@i915_selftest@live.html
> > > > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-arlh-3/igt@i915_selftest@live.html
> > > >
> > > > * igt@i915_selftest@live@workarounds:
> > > > - bat-arlh-3: [PASS][39] -> [ABORT][40] ([i915#12061])
> > > > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-arlh-3/igt@i915_selftest@live@workarounds.html
> > > > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-arlh-3/igt@i915_selftest@live@workarounds.html
> > > >
> > > >
> > > > #### Possible fixes ####
> > > >
> > > > * igt@i915_module_load@load:
> > > > - bat-twl-2: [DMESG-WARN][41] ([i915#1982]) -> [PASS][42]
> > > > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-twl-2/igt@i915_module_load@load.html
> > > > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-twl-2/igt@i915_module_load@load.html
> > > >
> > > > * igt@i915_selftest@live:
> > > > - bat-mtlp-8: [ABORT][43] ([i915#12829]) -> [PASS][44]
> > > > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-mtlp-8/igt@i915_selftest@live.html
> > > > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-mtlp-8/igt@i915_selftest@live.html
> > > >
> > > > * igt@i915_selftest@live@gt_mocs:
> > > > - bat-twl-2: [ABORT][45] ([i915#12919]) -> [PASS][46] +1 other test pass
> > > > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-twl-2/igt@i915_selftest@live@gt_mocs.html
> > > > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-twl-2/igt@i915_selftest@live@gt_mocs.html
> > > >
> > > > * igt@i915_selftest@live@workarounds:
> > > > - bat-mtlp-8: [ABORT][47] -> [PASS][48]
> > > > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-mtlp-8/igt@i915_selftest@live@workarounds.html
> > > > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-mtlp-8/igt@i915_selftest@live@workarounds.html
> > > >
> > > > * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
> > > > - bat-apl-1: [DMESG-WARN][49] -> [PASS][50] +2 other tests pass
> > > > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
> > > > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
> > > >
> > > > * igt@kms_pipe_crc_basic@read-crc-frame-sequence:
> > > > - bat-dg2-11: [SKIP][51] ([i915#9197]) -> [PASS][52]
> > > > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
> > > > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
> > > >
> > > >
> > > > {name}: This element is suppressed. This means it is ignored when computing
> > > > the status of the difference (SUCCESS, WARNING, or FAILURE).
> > > >
> > > > [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
> > > > [i915#12829]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12829
> > > > [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
> > > > [i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
> > > > [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
> > > > [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
> > > >
> > > >
> > > > Build changes
> > > > -------------
> > > >
> > > > * CI: CI-20190529 -> None
> > > > * IGT: IGT_8118 -> IGTPW_12135
> > > >
> > > > CI-20190529: 20190529
> > > > CI_DRM_15720: f8f85a38f6c75e091805f01ceff4041ac2fdf3fd @ git://anongit.freedesktop.org/gfx-ci/linux
> > > > IGTPW_12135: 12135
> > > > IGT_8118: 17707095f1e5d3c30f463b43022f01c0160579b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> > > >
> > > > == Logs ==
> > > >
> > > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/index.html
> >
> > --
> > Matt Roper
> > Graphics Software Engineer
> > Linux GPU Platform Enablement
> > Intel Corporation
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: ✗ Fi.CI.BAT: failure for series starting with [CI, 1/9] lib/igt_kmod: Remove unused module_ref
[not found] ` <2z26xmkwu2n3z2ls7xf33rlogccpjsxdradgax3qb7hyys5kbs@l6s5aeisijex>
2024-12-04 0:00 ` Matt Roper
@ 2024-12-04 14:11 ` Imre Deak
1 sibling, 0 replies; 16+ messages in thread
From: Imre Deak @ 2024-12-04 14:11 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: Matt Roper, igt-dev
On Tue, Dec 03, 2024 at 05:56:29PM -0600, Lucas De Marchi wrote:
> On Tue, Dec 03, 2024 at 03:17:04PM -0800, Matt Roper wrote:
> > On Thu, Nov 21, 2024 at 04:02:16PM -0600, Lucas De Marchi wrote:
> [...]
> > > > #### Possible regressions ####
> > > >
> > > > * igt@core_hotunplug@unbind-rebind:
> > >
> > > oh well... CI is definitely not happy with this series, hitting this:
> > >
> > > <3> [152.880835] i915 0000:00:02.0: [drm] *ERROR* audio power refcount 1 after unbind
> > >
> > > Need to check what's going on
> >
> > I think that's
> >
> > https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/3467
> >
> > which we're now exposed to more widely by intentionally not unloading
> > the audio driver.
>
> this series is not merged... by "now" do you mean in i915 (since this is
> extending the xe behavior to i915)?
>
> that manual refcount in i915-display seems wrong when unbinding... the
> audio component has the get_power/put_power, but if the entrypoint to the
> unbind is via i915's call to component_del(), it shouldn't really
> matter. Both components should be able to break it.
This looks like an issue in the audio driver, not putting the power ref
during unbind. In all cases - i.e. whichever component starts it - the
unbind sequence is controled by the master component which is the audio
component here. So for instance:
i915_audio_component_cleanup()->component_del()->take_down_aggregate_device()->
hdac_component_master_unbind()->
(the audio driver should release all resources, including the
display power ref)->
component_unbind_all()->i915_audio_component_unbind()
By the time i915_audio_component_unbind() is called the power reference
should have been put already by the audio side.
> +Imre
>
> I wonder if doing something like this would be ok and not mask other
> issues... that would match the "registered" logic we have in e.g.
> i915_pmu.c
>
> diff --git a/drivers/gpu/drm/i915/display/intel_audio.c b/drivers/gpu/drm/i915/display/intel_audio.c
> index c6b251f178c25..2c405e980c3a7 100644
> --- a/drivers/gpu/drm/i915/display/intel_audio.c
> +++ b/drivers/gpu/drm/i915/display/intel_audio.c
> @@ -1285,7 +1285,8 @@ static void i915_audio_component_unbind(struct device *drv_kdev,
> device_link_remove(hda_kdev, drv_kdev);
> - if (i915->display.audio.power_refcount)
> + if (i915->display.audio.component_registered &&
> + i915->display.audio.power_refcount)
> drm_err(&i915->drm, "audio power refcount %d after unbind\n",
> i915->display.audio.power_refcount);
> }
> @@ -1376,8 +1377,8 @@ static void i915_audio_component_cleanup(struct drm_i915_private *i915)
> if (!i915->display.audio.component_registered)
> return;
> - component_del(i915->drm.dev, &i915_audio_component_bind_ops);
> i915->display.audio.component_registered = false;
> + component_del(i915->drm.dev, &i915_audio_component_bind_ops);
> }
> /**
> diff --git a/drivers/gpu/drm/i915/display/intel_display_core.h b/drivers/gpu/drm/i915/display/intel_display_core.h
> index 554870d2494b3..75f2a064feba7 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_core.h
> +++ b/drivers/gpu/drm/i915/display/intel_display_core.h
> @@ -101,6 +101,7 @@ struct intel_audio_state {
> struct intel_audio {
> /* hda/i915 audio component */
> struct i915_audio_component *component;
> + /* registered and not in the process of unregistering */
> bool component_registered;
> /* mutex for audio/video sync */
> struct mutex mutex;
>
>
> Lucas De Marchi
>
> >
> >
> > Matt
> >
> > >
> > > Lucas De Marchi
> > >
> > > > - fi-cfl-guc: [PASS][1] -> [ABORT][2]
> > > > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-cfl-guc/igt@core_hotunplug@unbind-rebind.html
> > > > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-cfl-guc/igt@core_hotunplug@unbind-rebind.html
> > > > - bat-dg2-9: [PASS][3] -> [ABORT][4]
> > > > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-9/igt@core_hotunplug@unbind-rebind.html
> > > > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg2-9/igt@core_hotunplug@unbind-rebind.html
> > > > - bat-dg2-11: [PASS][5] -> [ABORT][6]
> > > > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-11/igt@core_hotunplug@unbind-rebind.html
> > > > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg2-11/igt@core_hotunplug@unbind-rebind.html
> > > > - bat-dg2-14: [PASS][7] -> [ABORT][8]
> > > > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-14/igt@core_hotunplug@unbind-rebind.html
> > > > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg2-14/igt@core_hotunplug@unbind-rebind.html
> > > > - bat-dg2-8: [PASS][9] -> [ABORT][10]
> > > > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-8/igt@core_hotunplug@unbind-rebind.html
> > > > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg2-8/igt@core_hotunplug@unbind-rebind.html
> > > > - bat-adls-6: [PASS][11] -> [ABORT][12]
> > > > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-adls-6/igt@core_hotunplug@unbind-rebind.html
> > > > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-adls-6/igt@core_hotunplug@unbind-rebind.html
> > > > - fi-rkl-11600: [PASS][13] -> [ABORT][14]
> > > > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-rkl-11600/igt@core_hotunplug@unbind-rebind.html
> > > > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-rkl-11600/igt@core_hotunplug@unbind-rebind.html
> > > > - bat-dg1-7: [PASS][15] -> [ABORT][16]
> > > > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg1-7/igt@core_hotunplug@unbind-rebind.html
> > > > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg1-7/igt@core_hotunplug@unbind-rebind.html
> > > > - bat-rpls-4: [PASS][17] -> [ABORT][18]
> > > > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-rpls-4/igt@core_hotunplug@unbind-rebind.html
> > > > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-rpls-4/igt@core_hotunplug@unbind-rebind.html
> > > > - fi-cfl-8109u: [PASS][19] -> [ABORT][20]
> > > > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-cfl-8109u/igt@core_hotunplug@unbind-rebind.html
> > > > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-cfl-8109u/igt@core_hotunplug@unbind-rebind.html
> > > > - fi-kbl-7567u: [PASS][21] -> [ABORT][22]
> > > > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-kbl-7567u/igt@core_hotunplug@unbind-rebind.html
> > > > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-kbl-7567u/igt@core_hotunplug@unbind-rebind.html
> > > > - bat-apl-1: [PASS][23] -> [ABORT][24]
> > > > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-apl-1/igt@core_hotunplug@unbind-rebind.html
> > > > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-apl-1/igt@core_hotunplug@unbind-rebind.html
> > > > - fi-tgl-1115g4: [PASS][25] -> [ABORT][26]
> > > > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-tgl-1115g4/igt@core_hotunplug@unbind-rebind.html
> > > > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-tgl-1115g4/igt@core_hotunplug@unbind-rebind.html
> > > >
> > > > * igt@i915_pm_rpm@module-reload:
> > > > - bat-adlp-6: [PASS][27] -> [ABORT][28]
> > > > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
> > > > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
> > > > - bat-adlp-9: [PASS][29] -> [ABORT][30]
> > > > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-adlp-9/igt@i915_pm_rpm@module-reload.html
> > > > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-adlp-9/igt@i915_pm_rpm@module-reload.html
> > > > - bat-arls-5: [PASS][31] -> [ABORT][32]
> > > > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-arls-5/igt@i915_pm_rpm@module-reload.html
> > > > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-arls-5/igt@i915_pm_rpm@module-reload.html
> > > >
> > > >
> > > > #### Suppressed ####
> > > >
> > > > The following results come from untrusted machines, tests, or statuses.
> > > > They do not affect the overall result.
> > > >
> > > > * igt@i915_pm_rpm@module-reload:
> > > > - {bat-arls-6}: [PASS][33] -> [ABORT][34]
> > > > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-arls-6/igt@i915_pm_rpm@module-reload.html
> > > > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-arls-6/igt@i915_pm_rpm@module-reload.html
> > > >
> > > >
> > > > Known issues
> > > > ------------
> > > >
> > > > Here are the changes found in IGTPW_12135 that come from known issues:
> > > >
> > > > ### IGT changes ###
> > > >
> > > > #### Issues hit ####
> > > >
> > > > * igt@dmabuf@all-tests@dma_fence_chain:
> > > > - fi-bsw-nick: [PASS][35] -> [INCOMPLETE][36] ([i915#12904]) +1 other test incomplete
> > > > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
> > > > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
> > > >
> > > > * igt@i915_selftest@live:
> > > > - bat-arlh-3: [PASS][37] -> [ABORT][38] ([i915#12829])
> > > > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-arlh-3/igt@i915_selftest@live.html
> > > > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-arlh-3/igt@i915_selftest@live.html
> > > >
> > > > * igt@i915_selftest@live@workarounds:
> > > > - bat-arlh-3: [PASS][39] -> [ABORT][40] ([i915#12061])
> > > > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-arlh-3/igt@i915_selftest@live@workarounds.html
> > > > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-arlh-3/igt@i915_selftest@live@workarounds.html
> > > >
> > > >
> > > > #### Possible fixes ####
> > > >
> > > > * igt@i915_module_load@load:
> > > > - bat-twl-2: [DMESG-WARN][41] ([i915#1982]) -> [PASS][42]
> > > > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-twl-2/igt@i915_module_load@load.html
> > > > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-twl-2/igt@i915_module_load@load.html
> > > >
> > > > * igt@i915_selftest@live:
> > > > - bat-mtlp-8: [ABORT][43] ([i915#12829]) -> [PASS][44]
> > > > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-mtlp-8/igt@i915_selftest@live.html
> > > > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-mtlp-8/igt@i915_selftest@live.html
> > > >
> > > > * igt@i915_selftest@live@gt_mocs:
> > > > - bat-twl-2: [ABORT][45] ([i915#12919]) -> [PASS][46] +1 other test pass
> > > > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-twl-2/igt@i915_selftest@live@gt_mocs.html
> > > > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-twl-2/igt@i915_selftest@live@gt_mocs.html
> > > >
> > > > * igt@i915_selftest@live@workarounds:
> > > > - bat-mtlp-8: [ABORT][47] -> [PASS][48]
> > > > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-mtlp-8/igt@i915_selftest@live@workarounds.html
> > > > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-mtlp-8/igt@i915_selftest@live@workarounds.html
> > > >
> > > > * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
> > > > - bat-apl-1: [DMESG-WARN][49] -> [PASS][50] +2 other tests pass
> > > > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
> > > > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
> > > >
> > > > * igt@kms_pipe_crc_basic@read-crc-frame-sequence:
> > > > - bat-dg2-11: [SKIP][51] ([i915#9197]) -> [PASS][52]
> > > > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
> > > > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
> > > >
> > > >
> > > > {name}: This element is suppressed. This means it is ignored when computing
> > > > the status of the difference (SUCCESS, WARNING, or FAILURE).
> > > >
> > > > [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
> > > > [i915#12829]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12829
> > > > [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
> > > > [i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
> > > > [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
> > > > [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
> > > >
> > > >
> > > > Build changes
> > > > -------------
> > > >
> > > > * CI: CI-20190529 -> None
> > > > * IGT: IGT_8118 -> IGTPW_12135
> > > >
> > > > CI-20190529: 20190529
> > > > CI_DRM_15720: f8f85a38f6c75e091805f01ceff4041ac2fdf3fd @ git://anongit.freedesktop.org/gfx-ci/linux
> > > > IGTPW_12135: 12135
> > > > IGT_8118: 17707095f1e5d3c30f463b43022f01c0160579b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> > > >
> > > > == Logs ==
> > > >
> > > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12135/index.html
> >
> > --
> > Matt Roper
> > Graphics Software Engineer
> > Linux GPU Platform Enablement
> > Intel Corporation
^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2024-12-04 14:11 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-19 5:40 [CI 1/9] lib/igt_kmod: Remove unused module_ref Lucas De Marchi
2024-11-19 5:40 ` [CI 2/9] tests/intel/perf_pmu: Remove trial unload Lucas De Marchi
2024-11-19 5:40 ` [CI 3/9] lib/igt_kmod: Share xe's unload logic with i915 Lucas De Marchi
2024-11-19 5:40 ` [CI 4/9] lib/igt_kmod: Remove unused low level __igt_intel_driver_unload() Lucas De Marchi
2024-11-19 5:40 ` [CI 5/9] tests/core_hotunplug: Stop unloading audio Lucas De Marchi
2024-11-19 5:40 ` [CI 6/9] tests/device_reset: " Lucas De Marchi
2024-11-19 5:40 ` [CI 7/9] lib: Remove unused audio-related helpers Lucas De Marchi
2024-11-19 5:40 ` [CI 8/9] i915_module_load: Stop caring about snd/intel-gtt Lucas De Marchi
2024-11-19 5:40 ` [CI 9/9] xe_module_load: Stop caring about snd Lucas De Marchi
2024-11-19 16:37 ` ✗ CI.xeBAT: failure for series starting with [CI,1/9] lib/igt_kmod: Remove unused module_ref Patchwork
2024-11-19 16:53 ` ✗ Fi.CI.BAT: " Patchwork
2024-11-21 22:02 ` Lucas De Marchi
2024-12-03 23:17 ` ✗ Fi.CI.BAT: failure for series starting with [CI, 1/9] " Matt Roper
[not found] ` <2z26xmkwu2n3z2ls7xf33rlogccpjsxdradgax3qb7hyys5kbs@l6s5aeisijex>
2024-12-04 0:00 ` Matt Roper
2024-12-04 14:11 ` Imre Deak
2024-11-20 2:36 ` ✗ CI.xeFULL: failure for series starting with [CI,1/9] " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox