* [PATCH v2 i-g-t 0/2] Add post-gpukmod-unbind igt_hook
@ 2025-07-13 11:23 Peter Senna Tschudin
2025-07-13 11:23 ` [PATCH v2 i-g-t 1/2] igt_core_get_igt_hook: igt_hook pointer for other libs Peter Senna Tschudin
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Peter Senna Tschudin @ 2025-07-13 11:23 UTC (permalink / raw)
To: igt-dev; +Cc: Peter Senna Tschudin, Gustavo Sousa
Introduces a new IGT hook: IGT_HOOK_POST_GPUKMOD_UNBIND
(post-gpukmod-unbind), designed to facilitate kmemleak scans in our CI
workflows.
As suggested by Lucas de Marchi, a useful strategy for detecting memory
leaks is to run kmemleak scans both before binding and after unbinding
the GPU kernel module. This patch adds support for the latter scenario,
enabling automated scans immediately after the GPU module is unbound.
Example test-list:
igt@xe_module_load@load
igt@core_hotunplug@unbind-rebind
igt@xe_module_load@unload
Usage Example:
IGT_PING_HOSTNAME='10.211.176.1'
IGT_TEST_ROOT='/home/gta/UPSTREAM/igt-gpu-tools/build/tests/'
./build/runner/igt_runner -o -l verbose -s --per-test-timeout 120 \
--overall-timeout 960 --piglit-style-dmesg --dmesg-warn-level=4 \
--use-watchdog --inactivity-timeout 90 \
--abort-on-monitored-error=ping,taint --disk-usage-limit=10M \
--facts --hook 'post-gpukmod-unbind:OUTF=/tmp/kmemleak-post-unbind && \
echo $IGT_HOOK_TEST_FULLNAME $IGT_HOOK_TEST $IGT_HOOK_SUBTEST >> $OUTF && \
echo scan > /sys/kernel/debug/kmemleak && \
cat /sys/kernel/debug/kmemleak >> $OUTF' \
--test-list ~/igt/test-list \
/home/gta/igt/0
Known Limitations: In certain cases, such as when running
igt@core_hotunplug@unbind-rebind, the unbind operation is explicitly
managed by igt_runner if the module is already loaded. However, if the
unbind occurs outside of igt_runner, the hook will not be triggered and
the scan will not run.
v2:
- change function name to igt_core_get_igt_hook()
- Add env var IGT_HOOK_KMOD_UNBIND_MODULE_NAME
- Fix minor issues
Cc: Gustavo Sousa <gustavo.sousa@linux.intel.com>
Peter Senna Tschudin (2):
igt_core_get_igt_hook: igt_hook pointer for other libs
lib/igt_kmod: Add IGT_HOOK_POST_GPUKMOD_UNBIND
lib/igt_core.c | 12 ++++++++++++
lib/igt_core.h | 2 ++
lib/igt_hook.c | 10 ++++++++++
lib/igt_hook.h | 3 +++
lib/igt_kmod.c | 8 ++++++++
5 files changed, 35 insertions(+)
--
2.43.0
^ permalink raw reply [flat|nested] 8+ messages in thread* [PATCH v2 i-g-t 1/2] igt_core_get_igt_hook: igt_hook pointer for other libs 2025-07-13 11:23 [PATCH v2 i-g-t 0/2] Add post-gpukmod-unbind igt_hook Peter Senna Tschudin @ 2025-07-13 11:23 ` Peter Senna Tschudin 2025-07-14 13:32 ` Gustavo Sousa 2025-07-13 11:23 ` [PATCH v2 i-g-t 2/2] lib/igt_kmod: Add IGT_HOOK_POST_GPUKMOD_UNBIND Peter Senna Tschudin ` (3 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Peter Senna Tschudin @ 2025-07-13 11:23 UTC (permalink / raw) To: igt-dev; +Cc: Peter Senna Tschudin, Gustavo Sousa Previously, all igt_hooks were defined, initialized, and freed within lib/igt_core.c, limiting hook creation to this file. To enable other libraries to add hooks, introduce a function that returns a pointer to the main hook structure. This change allows hooks to be created from external libraries without requiring separate initialization or teardown of the hook infrastructure. Cc: Gustavo Sousa <gustavo.sousa@linux.intel.com> Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com> --- v2: - change function name to igt_core_get_igt_hook() - remove duplicated documentation from header lib/igt_core.c | 12 ++++++++++++ lib/igt_core.h | 2 ++ 2 files changed, 14 insertions(+) diff --git a/lib/igt_core.c b/lib/igt_core.c index c2674a272..4bfffc3a8 100644 --- a/lib/igt_core.c +++ b/lib/igt_core.c @@ -3604,3 +3604,15 @@ unsigned int igt_measured_usleep(unsigned int usec) return igt_nsec_elapsed(&ts) / NSEC_PER_USEC; } + +/** + * igt_core_get_igt_hook: To allow for using hooks from other libraries, this + * function returns the pointer to the struct that is likely already + * initialized. + * + * Returns: Pointer to the igt_hook structure. + */ +struct igt_hook *igt_core_get_igt_hook(void) +{ + return igt_hook; +} diff --git a/lib/igt_core.h b/lib/igt_core.h index 2db579423..e658737b0 100644 --- a/lib/igt_core.h +++ b/lib/igt_core.h @@ -1601,4 +1601,6 @@ void igt_pci_system_cleanup(void); void igt_emit_ignore_dmesg_regex(const char *ignore_dmesg_regex); unsigned int igt_measured_usleep(unsigned int usec); + +struct igt_hook *igt_core_get_igt_hook(void); #endif /* IGT_CORE_H */ -- 2.43.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v2 i-g-t 1/2] igt_core_get_igt_hook: igt_hook pointer for other libs 2025-07-13 11:23 ` [PATCH v2 i-g-t 1/2] igt_core_get_igt_hook: igt_hook pointer for other libs Peter Senna Tschudin @ 2025-07-14 13:32 ` Gustavo Sousa 0 siblings, 0 replies; 8+ messages in thread From: Gustavo Sousa @ 2025-07-14 13:32 UTC (permalink / raw) To: Peter Senna Tschudin, igt-dev; +Cc: Peter Senna Tschudin, Gustavo Sousa Quoting Peter Senna Tschudin (2025-07-13 08:23:53-03:00) >Previously, all igt_hooks were defined, initialized, and freed within >lib/igt_core.c, limiting hook creation to this file. To enable other >libraries to add hooks, introduce a function that returns a pointer to >the main hook structure. > >This change allows hooks to be created from external libraries without >requiring separate initialization or teardown of the hook >infrastructure. > >Cc: Gustavo Sousa <gustavo.sousa@linux.intel.com> This e-mail address does not exist. :-) >Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com> Reviewed-by: Gustavo Sousa <gustavo.sousa@intel.com> >--- > >v2: > - change function name to igt_core_get_igt_hook() > - remove duplicated documentation from header > > lib/igt_core.c | 12 ++++++++++++ > lib/igt_core.h | 2 ++ > 2 files changed, 14 insertions(+) > >diff --git a/lib/igt_core.c b/lib/igt_core.c >index c2674a272..4bfffc3a8 100644 >--- a/lib/igt_core.c >+++ b/lib/igt_core.c >@@ -3604,3 +3604,15 @@ unsigned int igt_measured_usleep(unsigned int usec) > > return igt_nsec_elapsed(&ts) / NSEC_PER_USEC; > } >+ >+/** >+ * igt_core_get_igt_hook: To allow for using hooks from other libraries, this >+ * function returns the pointer to the struct that is likely already >+ * initialized. >+ * >+ * Returns: Pointer to the igt_hook structure. >+ */ >+struct igt_hook *igt_core_get_igt_hook(void) >+{ >+ return igt_hook; >+} >diff --git a/lib/igt_core.h b/lib/igt_core.h >index 2db579423..e658737b0 100644 >--- a/lib/igt_core.h >+++ b/lib/igt_core.h >@@ -1601,4 +1601,6 @@ void igt_pci_system_cleanup(void); > void igt_emit_ignore_dmesg_regex(const char *ignore_dmesg_regex); > > unsigned int igt_measured_usleep(unsigned int usec); >+ >+struct igt_hook *igt_core_get_igt_hook(void); > #endif /* IGT_CORE_H */ >-- >2.43.0 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v2 i-g-t 2/2] lib/igt_kmod: Add IGT_HOOK_POST_GPUKMOD_UNBIND 2025-07-13 11:23 [PATCH v2 i-g-t 0/2] Add post-gpukmod-unbind igt_hook Peter Senna Tschudin 2025-07-13 11:23 ` [PATCH v2 i-g-t 1/2] igt_core_get_igt_hook: igt_hook pointer for other libs Peter Senna Tschudin @ 2025-07-13 11:23 ` Peter Senna Tschudin 2025-07-14 13:51 ` Gustavo Sousa 2025-07-13 11:55 ` ✓ Xe.CI.BAT: success for Add post-gpukmod-unbind igt_hook (rev2) Patchwork ` (2 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Peter Senna Tschudin @ 2025-07-13 11:23 UTC (permalink / raw) To: igt-dev; +Cc: Peter Senna Tschudin, Gustavo Souza Adds an igt_hook after the unbind operation of the GPU kmod intended as a strategice entry point for kmemleak scans. Can be used with --hook 'post-gpukmod-unbind:...' Cc: Gustavo Souza <gustavo.souza@linux.intel.com> Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com> --- v2: - Added code ducumentation for new hook - Added env var IGT_HOOK_KMOD_UNBIND_MODULE_NAME and extended help text lib/igt_hook.c | 10 ++++++++++ lib/igt_hook.h | 3 +++ lib/igt_kmod.c | 8 ++++++++ 3 files changed, 21 insertions(+) diff --git a/lib/igt_hook.c b/lib/igt_hook.c index 8932d118d..a5a55a659 100644 --- a/lib/igt_hook.c +++ b/lib/igt_hook.c @@ -74,6 +74,8 @@ static const char *igt_hook_evt_type_to_name(enum igt_hook_evt_type evt_type) return "post-subtest"; case IGT_HOOK_POST_TEST: return "post-test"; + case IGT_HOOK_POST_GPUKMOD_UNBIND: + return "post-gpukmod-unbind"; case IGT_HOOK_NUM_EVENTS: break; /* No "default:" case, to force a warning from -Wswitch in case we miss @@ -335,6 +337,7 @@ static void igt_hook_update_env_vars(struct igt_hook *igt_hook, struct igt_hook_ setenv("IGT_HOOK_TEST", igt_hook->test_name, 1); setenv("IGT_HOOK_SUBTEST", igt_hook->subtest_name, 1); setenv("IGT_HOOK_DYN_SUBTEST", igt_hook->dyn_subtest_name, 1); + setenv("IGT_HOOK_KMOD_UNBIND_MODULE_NAME", evt->target_name ?: "", 1); setenv("IGT_HOOK_RESULT", evt->result ?: "", 1); } @@ -470,6 +473,9 @@ below:\n\ case IGT_HOOK_POST_TEST: desc = "Occurs after a test case has finished."; break; + case IGT_HOOK_POST_GPUKMOD_UNBIND: + desc = "Occurs after the GPU kernel module is unbound from the device."; + break; default: desc = "MISSING DESCRIPTION"; } @@ -504,6 +510,10 @@ available to the command:\n\ values are: SUCCESS, SKIP or FAIL. This is only applicable on \"post-*\"\n\ events and will be the empty string for other types of events.\n\ \n\ + IGT_HOOK_KMOD_UNBIND_MODULE_NAME\n\ + Name of the GPU kernel module that was unbound from the device. This is only\n\ + applicable on the `IGT_HOOK_POST_GPUKMOD_UNBIND` event and will be the empty\n\ + string for other types of events.\n\ \n\ Note that %s can be passed multiple times. Each descriptor is evaluated in turn\n\ when matching events and running hook commands.\n\ diff --git a/lib/igt_hook.h b/lib/igt_hook.h index e9f97b79b..d80a012f4 100644 --- a/lib/igt_hook.h +++ b/lib/igt_hook.h @@ -26,6 +26,8 @@ struct igt_hook; * @IGT_HOOK_POST_SUBTEST: Occurs after the execution of a subtest.. * @IGT_HOOK_POST_TEST: Occurs after a test case (executable) is finished with * the test code. + * @IGT_HOOK_POST_GPUKMOD_UNBIND: Occurs after the GPU kernel module is + * unbound from the device. * @IGT_HOOK_NUM_EVENTS: This is not really an event and represents the number * of possible events tracked by igt_hook. * @@ -39,6 +41,7 @@ enum igt_hook_evt_type { IGT_HOOK_POST_DYN_SUBTEST, IGT_HOOK_POST_SUBTEST, IGT_HOOK_POST_TEST, + IGT_HOOK_POST_GPUKMOD_UNBIND, IGT_HOOK_NUM_EVENTS /* This must always be the last one. */ }; diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c index 6d7f5705c..9b95a2288 100644 --- a/lib/igt_kmod.c +++ b/lib/igt_kmod.c @@ -41,6 +41,7 @@ #include "igt_aux.h" #include "igt_core.h" #include "igt_debugfs.h" +#include "igt_hook.h" #include "igt_kmod.h" #include "igt_ktap.h" #include "igt_sysfs.h" @@ -604,6 +605,7 @@ int __igt_intel_driver_unload(char **who, const char *driver) */ int igt_kmod_unbind(const char *mod_name, const char *pci_device) { + struct igt_hook *igt_hook = NULL; char path[PATH_MAX]; struct dirent *de; int dirlen; @@ -634,6 +636,12 @@ int igt_kmod_unbind(const char *mod_name, const char *pci_device) closedir(dir); + igt_hook = igt_core_get_igt_hook(); + igt_hook_event_notify(igt_hook, &(struct igt_hook_evt){ + .evt_type = IGT_HOOK_POST_GPUKMOD_UNBIND, + .target_name = mod_name, + }); + return 0; } -- 2.43.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v2 i-g-t 2/2] lib/igt_kmod: Add IGT_HOOK_POST_GPUKMOD_UNBIND 2025-07-13 11:23 ` [PATCH v2 i-g-t 2/2] lib/igt_kmod: Add IGT_HOOK_POST_GPUKMOD_UNBIND Peter Senna Tschudin @ 2025-07-14 13:51 ` Gustavo Sousa 0 siblings, 0 replies; 8+ messages in thread From: Gustavo Sousa @ 2025-07-14 13:51 UTC (permalink / raw) To: Peter Senna Tschudin, igt-dev; +Cc: Peter Senna Tschudin Quoting Peter Senna Tschudin (2025-07-13 08:23:54-03:00) >Adds an igt_hook after the unbind operation of the GPU kmod intended as >a strategice entry point for kmemleak scans. > >Can be used with --hook 'post-gpukmod-unbind:...' > >Cc: Gustavo Souza <gustavo.souza@linux.intel.com> This email address also does not exist (I think). :-) Also, s/Souza/Sousa/ To be fair, we have both names in Brazil. Mine is Sousa. >Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com> >--- >v2: > - Added code ducumentation for new hook > - Added env var IGT_HOOK_KMOD_UNBIND_MODULE_NAME and extended help text > > lib/igt_hook.c | 10 ++++++++++ > lib/igt_hook.h | 3 +++ > lib/igt_kmod.c | 8 ++++++++ > 3 files changed, 21 insertions(+) > >diff --git a/lib/igt_hook.c b/lib/igt_hook.c >index 8932d118d..a5a55a659 100644 >--- a/lib/igt_hook.c >+++ b/lib/igt_hook.c >@@ -74,6 +74,8 @@ static const char *igt_hook_evt_type_to_name(enum igt_hook_evt_type evt_type) > return "post-subtest"; > case IGT_HOOK_POST_TEST: > return "post-test"; >+ case IGT_HOOK_POST_GPUKMOD_UNBIND: >+ return "post-gpukmod-unbind"; > case IGT_HOOK_NUM_EVENTS: > break; > /* No "default:" case, to force a warning from -Wswitch in case we miss >@@ -335,6 +337,7 @@ static void igt_hook_update_env_vars(struct igt_hook *igt_hook, struct igt_hook_ > setenv("IGT_HOOK_TEST", igt_hook->test_name, 1); > setenv("IGT_HOOK_SUBTEST", igt_hook->subtest_name, 1); > setenv("IGT_HOOK_DYN_SUBTEST", igt_hook->dyn_subtest_name, 1); >+ setenv("IGT_HOOK_KMOD_UNBIND_MODULE_NAME", evt->target_name ?: "", 1); I think it only makes sense to set this when evt->evt_type is IGT_HOOK_POST_GPUKMOD_UNBIND. So, we could probably do something like: setenv("IGT_HOOK_KMOD_UNBIND_MODULE_NAME", evt->evt_type == IGT_HOOK_POST_GPUKMOD_UNBIND ? evt->target_name : "", 1); > setenv("IGT_HOOK_RESULT", evt->result ?: "", 1); > } > >@@ -470,6 +473,9 @@ below:\n\ > case IGT_HOOK_POST_TEST: > desc = "Occurs after a test case has finished."; > break; >+ case IGT_HOOK_POST_GPUKMOD_UNBIND: >+ desc = "Occurs after the GPU kernel module is unbound from the device."; It appears igt_kmod_unbind() is also called for "snd_hda_intel", meaning the that hook could be potentially called for a non-gpu module. So the hook type and description lacks a bit of precision. I think we should either condition the call igt_hook_event_notify() for GPU-only modules or make the hook type use a more generic name and description (e.g. IGT_HOOK_POST_KMOD_UNBIND). -- Gustavo Sousa >+ break; > default: > desc = "MISSING DESCRIPTION"; > } >@@ -504,6 +510,10 @@ available to the command:\n\ > values are: SUCCESS, SKIP or FAIL. This is only applicable on \"post-*\"\n\ > events and will be the empty string for other types of events.\n\ > \n\ >+ IGT_HOOK_KMOD_UNBIND_MODULE_NAME\n\ >+ Name of the GPU kernel module that was unbound from the device. This is only\n\ >+ applicable on the `IGT_HOOK_POST_GPUKMOD_UNBIND` event and will be the empty\n\ >+ string for other types of events.\n\ > \n\ > Note that %s can be passed multiple times. Each descriptor is evaluated in turn\n\ > when matching events and running hook commands.\n\ >diff --git a/lib/igt_hook.h b/lib/igt_hook.h >index e9f97b79b..d80a012f4 100644 >--- a/lib/igt_hook.h >+++ b/lib/igt_hook.h >@@ -26,6 +26,8 @@ struct igt_hook; > * @IGT_HOOK_POST_SUBTEST: Occurs after the execution of a subtest.. > * @IGT_HOOK_POST_TEST: Occurs after a test case (executable) is finished with > * the test code. >+ * @IGT_HOOK_POST_GPUKMOD_UNBIND: Occurs after the GPU kernel module is >+ * unbound from the device. > * @IGT_HOOK_NUM_EVENTS: This is not really an event and represents the number > * of possible events tracked by igt_hook. > * >@@ -39,6 +41,7 @@ enum igt_hook_evt_type { > IGT_HOOK_POST_DYN_SUBTEST, > IGT_HOOK_POST_SUBTEST, > IGT_HOOK_POST_TEST, >+ IGT_HOOK_POST_GPUKMOD_UNBIND, > IGT_HOOK_NUM_EVENTS /* This must always be the last one. */ > }; > >diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c >index 6d7f5705c..9b95a2288 100644 >--- a/lib/igt_kmod.c >+++ b/lib/igt_kmod.c >@@ -41,6 +41,7 @@ > #include "igt_aux.h" > #include "igt_core.h" > #include "igt_debugfs.h" >+#include "igt_hook.h" > #include "igt_kmod.h" > #include "igt_ktap.h" > #include "igt_sysfs.h" >@@ -604,6 +605,7 @@ int __igt_intel_driver_unload(char **who, const char *driver) > */ > int igt_kmod_unbind(const char *mod_name, const char *pci_device) > { >+ struct igt_hook *igt_hook = NULL; > char path[PATH_MAX]; > struct dirent *de; > int dirlen; >@@ -634,6 +636,12 @@ int igt_kmod_unbind(const char *mod_name, const char *pci_device) > > closedir(dir); > >+ igt_hook = igt_core_get_igt_hook(); >+ igt_hook_event_notify(igt_hook, &(struct igt_hook_evt){ >+ .evt_type = IGT_HOOK_POST_GPUKMOD_UNBIND, >+ .target_name = mod_name, >+ }); >+ > return 0; > } > >-- >2.43.0 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Xe.CI.BAT: success for Add post-gpukmod-unbind igt_hook (rev2) 2025-07-13 11:23 [PATCH v2 i-g-t 0/2] Add post-gpukmod-unbind igt_hook Peter Senna Tschudin 2025-07-13 11:23 ` [PATCH v2 i-g-t 1/2] igt_core_get_igt_hook: igt_hook pointer for other libs Peter Senna Tschudin 2025-07-13 11:23 ` [PATCH v2 i-g-t 2/2] lib/igt_kmod: Add IGT_HOOK_POST_GPUKMOD_UNBIND Peter Senna Tschudin @ 2025-07-13 11:55 ` Patchwork 2025-07-13 12:01 ` ✗ i915.CI.BAT: failure " Patchwork 2025-07-13 12:58 ` ✗ Xe.CI.Full: " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-07-13 11:55 UTC (permalink / raw) To: Peter Senna Tschudin; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1841 bytes --] == Series Details == Series: Add post-gpukmod-unbind igt_hook (rev2) URL : https://patchwork.freedesktop.org/series/151127/ State : success == Summary == CI Bug Log - changes from XEIGT_8454_BAT -> XEIGTPW_13459_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts New tests --------- New tests have been introduced between XEIGT_8454_BAT and XEIGTPW_13459_BAT: ### New IGT tests (1) ### * igt@xe_intel_bb@create-in-region@region-vram0: - Statuses : 5 pass(s) - Exec time: [0.00, 0.01] s Known issues ------------ Here are the changes found in XEIGTPW_13459_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@xe_pat@pat-index-xe2@render: - bat-bmg-2: [FAIL][1] ([Intel XE#5507]) -> [PASS][2] +1 other test pass [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/bat-bmg-2/igt@xe_pat@pat-index-xe2@render.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/bat-bmg-2/igt@xe_pat@pat-index-xe2@render.html [Intel XE#5507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5507 Build changes ------------- * IGT: IGT_8454 -> IGTPW_13459 * Linux: xe-3399-0384e5b49a7b0bddca4018a6d42472e13ccd8bba -> xe-3405-453e24ac0fd683880e40b3a844a774f5a427dc55 IGTPW_13459: 13459 IGT_8454: 67f8a0cc3a159bf6f912c08c030dfed5a85af328 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-3399-0384e5b49a7b0bddca4018a6d42472e13ccd8bba: 0384e5b49a7b0bddca4018a6d42472e13ccd8bba xe-3405-453e24ac0fd683880e40b3a844a774f5a427dc55: 453e24ac0fd683880e40b3a844a774f5a427dc55 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/index.html [-- Attachment #2: Type: text/html, Size: 2447 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ i915.CI.BAT: failure for Add post-gpukmod-unbind igt_hook (rev2) 2025-07-13 11:23 [PATCH v2 i-g-t 0/2] Add post-gpukmod-unbind igt_hook Peter Senna Tschudin ` (2 preceding siblings ...) 2025-07-13 11:55 ` ✓ Xe.CI.BAT: success for Add post-gpukmod-unbind igt_hook (rev2) Patchwork @ 2025-07-13 12:01 ` Patchwork 2025-07-13 12:58 ` ✗ Xe.CI.Full: " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-07-13 12:01 UTC (permalink / raw) To: Peter Senna Tschudin; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6304 bytes --] == Series Details == Series: Add post-gpukmod-unbind igt_hook (rev2) URL : https://patchwork.freedesktop.org/series/151127/ State : failure == Summary == CI Bug Log - changes from IGT_8454 -> IGTPW_13459 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_13459 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_13459, 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_13459/index.html Participating hosts (44 -> 42) ------------------------------ Missing (2): fi-glk-j4005 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_13459: ### IGT changes ### #### Possible regressions #### * igt@i915_module_load@reload: - bat-arls-6: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8454/bat-arls-6/igt@i915_module_load@reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13459/bat-arls-6/igt@i915_module_load@reload.html Known issues ------------ Here are the changes found in IGTPW_13459 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@workarounds: - bat-dg2-9: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8454/bat-dg2-9/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13459/bat-dg2-9/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@dmabuf@all-tests: - bat-apl-1: [ABORT][5] ([i915#12904]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8454/bat-apl-1/igt@dmabuf@all-tests.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13459/bat-apl-1/igt@dmabuf@all-tests.html * igt@i915_selftest@live: - bat-jsl-1: [DMESG-WARN][7] ([i915#13827]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8454/bat-jsl-1/igt@i915_selftest@live.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13459/bat-jsl-1/igt@i915_selftest@live.html - bat-dg2-11: [DMESG-FAIL][9] ([i915#12061] / [i915#14556]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8454/bat-dg2-11/igt@i915_selftest@live.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13459/bat-dg2-11/igt@i915_selftest@live.html * igt@i915_selftest@live@guc_multi_lrc: - bat-dg2-8: [ABORT][11] ([i915#14201]) -> [PASS][12] +1 other test pass [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8454/bat-dg2-8/igt@i915_selftest@live@guc_multi_lrc.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13459/bat-dg2-8/igt@i915_selftest@live@guc_multi_lrc.html * igt@i915_selftest@live@late_gt_pm: - fi-cfl-8109u: [DMESG-WARN][13] ([i915#13735]) -> [PASS][14] +82 other tests pass [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8454/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13459/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [DMESG-FAIL][15] ([i915#12061]) -> [PASS][16] +1 other test pass [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8454/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13459/bat-mtlp-6/igt@i915_selftest@live@workarounds.html - bat-dg2-11: [DMESG-FAIL][17] ([i915#12061]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8454/bat-dg2-11/igt@i915_selftest@live@workarounds.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13459/bat-dg2-11/igt@i915_selftest@live@workarounds.html - bat-dg2-14: [DMESG-FAIL][19] ([i915#12061]) -> [PASS][20] +1 other test pass [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8454/bat-dg2-14/igt@i915_selftest@live@workarounds.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13459/bat-dg2-14/igt@i915_selftest@live@workarounds.html * igt@kms_pipe_crc_basic@read-crc: - fi-cfl-8109u: [DMESG-WARN][21] ([i915#13735] / [i915#13890]) -> [PASS][22] +49 other tests pass [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8454/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13459/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html * igt@kms_pm_rpm@basic-rte: - bat-rpls-4: [DMESG-WARN][23] ([i915#13400]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8454/bat-rpls-4/igt@kms_pm_rpm@basic-rte.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13459/bat-rpls-4/igt@kms_pm_rpm@basic-rte.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#13400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13400 [i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735 [i915#13827]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13827 [i915#13890]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13890 [i915#14201]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14201 [i915#14556]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14556 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8454 -> IGTPW_13459 * Linux: CI_DRM_16851 -> CI_DRM_16857 CI-20190529: 20190529 CI_DRM_16851: 0384e5b49a7b0bddca4018a6d42472e13ccd8bba @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_16857: 453e24ac0fd683880e40b3a844a774f5a427dc55 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_13459: 13459 IGT_8454: 67f8a0cc3a159bf6f912c08c030dfed5a85af328 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13459/index.html [-- Attachment #2: Type: text/html, Size: 7511 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.Full: failure for Add post-gpukmod-unbind igt_hook (rev2) 2025-07-13 11:23 [PATCH v2 i-g-t 0/2] Add post-gpukmod-unbind igt_hook Peter Senna Tschudin ` (3 preceding siblings ...) 2025-07-13 12:01 ` ✗ i915.CI.BAT: failure " Patchwork @ 2025-07-13 12:58 ` Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-07-13 12:58 UTC (permalink / raw) To: Peter Senna Tschudin; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 60641 bytes --] == Series Details == Series: Add post-gpukmod-unbind igt_hook (rev2) URL : https://patchwork.freedesktop.org/series/151127/ State : failure == Summary == CI Bug Log - changes from XEIGT_8454_FULL -> XEIGTPW_13459_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_13459_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_13459_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 -> 3) ------------------------------ Missing (1): shard-adlp Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_13459_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@2x-plain-flip-fb-recreate@ab-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate@ab-dp2-hdmi-a3.html #### Warnings #### * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [SKIP][2] ([Intel XE#2316]) -> [FAIL][3] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate.html New tests --------- New tests have been introduced between XEIGT_8454_FULL and XEIGTPW_13459_FULL: ### New IGT tests (3) ### * igt@kms_rmfb@close-fd@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.26] s * igt@kms_rmfb@rmfb-ioctl@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.28] s * igt@xe_intel_bb@create-in-region@region-vram0: - Statuses : 2 pass(s) - Exec time: [0.00] s Known issues ------------ Here are the changes found in XEIGTPW_13459_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@intel_hwmon@hwmon-write: - shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#1125]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-1/igt@intel_hwmon@hwmon-write.html * igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1: - shard-lnl: [PASS][5] -> [FAIL][6] ([Intel XE#911]) +3 other tests fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-lnl-6/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2370]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1407]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-6/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2327]) +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-4/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#316]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-434/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#610]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +10 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +5 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-433/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-0-async-flip: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2314] / [Intel XE#2894]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt@kms_bw@linear-tiling-2-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#367]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-3/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@linear-tiling-3-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#367]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-435/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#367]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-6/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#787]) +139 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-463/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#455] / [Intel XE#787]) +25 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-432/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#2887]) +2 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-1/igt@kms_ccs@crc-primary-rotation-180-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][22] ([Intel XE#2652] / [Intel XE#787]) +16 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#3432]) +2 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#3432]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2887]) +14 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [PASS][26] -> [INCOMPLETE][27] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4: - shard-dg2-set2: [PASS][28] -> [INCOMPLETE][29] ([Intel XE#3124] / [Intel XE#4345]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: [PASS][30] -> [DMESG-WARN][31] ([Intel XE#1727] / [Intel XE#3113]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][32] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#4418]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-466/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#306]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-463/igt@kms_chamelium_color@ctm-limited-range.html - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#306]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-6/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2325]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-4/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#373]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-5/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2252]) +12 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-6/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#373]) +4 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_content_protection@content-type-change: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2341]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-1/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#307]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-1/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#307]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@legacy@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][43] ([Intel XE#1178]) +1 other test fail [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-435/igt@kms_content_protection@legacy@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2321]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1424]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-7/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2320]) +4 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#309]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][48] -> [SKIP][49] ([Intel XE#2291]) +5 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: [PASS][50] -> [FAIL][51] ([Intel XE#4633]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-bmg: [PASS][52] -> [DMESG-WARN][53] ([Intel XE#5354]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2286]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#5428]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_dp_link_training@uhbr-mst: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#4354]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-5/igt@kms_dp_link_training@uhbr-mst.html - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#4354]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-6/igt@kms_dp_link_training@uhbr-mst.html - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#4356]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-464/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2244]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#4422]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html * igt@kms_feature_discovery@chamelium: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2372]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-8/igt@kms_feature_discovery@chamelium.html - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#701]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-7/igt@kms_feature_discovery@chamelium.html * igt@kms_flip@2x-blocking-absolute-wf_vblank@bd-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][63] ([Intel XE#5352]) +1 other test fail [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-1/igt@kms_flip@2x-blocking-absolute-wf_vblank@bd-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-dpms: - shard-bmg: [PASS][64] -> [SKIP][65] ([Intel XE#2316]) +4 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-modeset: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1421]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-8/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#455]) +9 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1401]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2293] / [Intel XE#2380]) +4 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2293]) +4 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2311]) +32 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#656]) +11 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#5390]) +12 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#651]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2312]) +10 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#651]) +14 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2313]) +30 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#5426]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-8/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#1158]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-432/igt@kms_frontbuffer_tracking@plane-fbc-rte.html - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2350]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-8/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#653]) +9 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_hdr@static-toggle-suspend: - shard-bmg: [PASS][83] -> [SKIP][84] ([Intel XE#1503]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-bmg-2/igt@kms_hdr@static-toggle-suspend.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_panel_fitting@atomic-fastset: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2486]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-2/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0: - shard-lnl: NOTRUN -> [FAIL][86] ([Intel XE#5195]) +2 other tests fail [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-2/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0.html * igt@kms_plane_lowres@tiling-yf: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2393]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-8/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-none: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#4596]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@2x-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#5021]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-436/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#5020]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-466/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2763]) +9 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html * igt@kms_pm_backlight@fade-with-suspend: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#870]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-8/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-8/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#4608]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#1489]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-432/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#1489]) +6 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-7/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2387]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#1122]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-464/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-no-drrs: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1406]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-3/igt@kms_psr@fbc-pr-no-drrs.html * igt@kms_psr@fbc-psr-no-drrs: - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#2850] / [Intel XE#929]) +6 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-432/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@psr-basic: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2234] / [Intel XE#2850]) +17 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-8/igt@kms_psr@psr-basic.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2414]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#4692]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#3414]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-436/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-rotation-90: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#3414] / [Intel XE#3904]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-4/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2330]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#1435]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-8/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-bmg: [PASS][108] -> [SKIP][109] ([Intel XE#1435]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-bmg-7/igt@kms_setmode@invalid-clone-single-crtc.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2426]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#1500]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@query-busy-hang: - shard-dg2-set2: [PASS][112] -> [INCOMPLETE][113] ([Intel XE#4488]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-dg2-432/igt@kms_vblank@query-busy-hang.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-463/igt@kms_vblank@query-busy-hang.html * igt@kms_vblank@query-busy-hang@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][114] ([Intel XE#4488]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-463/igt@kms_vblank@query-busy-hang@pipe-d-dp-4.html * igt@kms_vrr@flip-basic: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#1499]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-2/igt@kms_vrr@flip-basic.html * igt@xe_configfs@survivability-mode: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#5249]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-6/igt@xe_configfs@survivability-mode.html * igt@xe_eudebug@discovery-empty-clients: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#4837]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-1/igt@xe_eudebug@discovery-empty-clients.html * igt@xe_eudebug_online@set-breakpoint-sigint-debugger: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#4837]) +14 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-3/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2322]) +9 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt@xe_exec_basic@multigpu-once-basic-defer-bind: - shard-dg2-set2: [PASS][120] -> [SKIP][121] ([Intel XE#1392]) +6 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-dg2-464/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html * igt@xe_exec_basic@multigpu-once-null-rebind: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#1392]) +2 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-3/igt@xe_exec_basic@multigpu-once-null-rebind.html * igt@xe_exec_fault_mode@twice-userptr-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#288]) +12 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-prefetch.html * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#2360]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-432/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt@xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#4837]) +8 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-432/igt@xe_exec_sip_eudebug@breakpoint-writesip.html * igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#4943]) +31 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-4/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html * igt@xe_exec_system_allocator@process-many-stride-mmap-huge: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#4943]) +7 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-1/igt@xe_exec_system_allocator@process-many-stride-mmap-huge.html * igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-mlock-nomemset: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#4915]) +93 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-464/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-mlock-nomemset.html * igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset: - shard-lnl: [PASS][129] -> [FAIL][130] ([Intel XE#5018]) +1 other test fail [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv: - shard-dg2-set2: NOTRUN -> [ABORT][131] ([Intel XE#4917]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-435/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#2229]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-466/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#2229]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-3/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_media_fill@media-fill: - shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2459] / [Intel XE#2596]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-7/igt@xe_media_fill@media-fill.html - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#560]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-466/igt@xe_media_fill@media-fill.html - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#560]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-5/igt@xe_media_fill@media-fill.html * igt@xe_module_load@force-load: - shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#2457]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-4/igt@xe_module_load@force-load.html * igt@xe_oa@create-destroy-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#2541] / [Intel XE#3573]) +4 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-466/igt@xe_oa@create-destroy-userspace-config.html * igt@xe_pat@pat-index-xelp: - shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2245]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-7/igt@xe_pat@pat-index-xelp.html * igt@xe_pm@d3cold-multiple-execs: - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#2284] / [Intel XE#366]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-466/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pm@s3-mocs: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#584]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-5/igt@xe_pm@s3-mocs.html * igt@xe_pm@vram-d3cold-threshold: - shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#579]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-3/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_pmu@fn-engine-activity-sched-if-idle: - shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#4650]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-3/igt@xe_pmu@fn-engine-activity-sched-if-idle.html * igt@xe_pxp@pxp-stale-bo-exec-post-suspend: - shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#4733]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-6/igt@xe_pxp@pxp-stale-bo-exec-post-suspend.html * igt@xe_query@multigpu-query-cs-cycles: - shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#944]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-7/igt@xe_query@multigpu-query-cs-cycles.html * igt@xe_query@multigpu-query-uc-fw-version-huc: - shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#944]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-463/igt@xe_query@multigpu-query-uc-fw-version-huc.html * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#4130]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-434/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs: - shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#4130]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-8/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#4273]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-464/igt@xe_sriov_flr@flr-vfs-parallel.html #### Possible fixes #### * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1: - shard-lnl: [FAIL][150] ([Intel XE#911]) -> [PASS][151] +3 other tests pass [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [INCOMPLETE][152] ([Intel XE#3862]) -> [PASS][153] +1 other test pass [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4: - shard-dg2-set2: [INCOMPLETE][154] ([Intel XE#2705] / [Intel XE#4212]) -> [PASS][155] [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html * igt@kms_cursor_legacy@cursor-vs-flip-varying-size: - shard-bmg: [DMESG-WARN][156] ([Intel XE#5354]) -> [PASS][157] [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-bmg-2/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-6/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [SKIP][158] ([Intel XE#2291]) -> [PASS][159] +5 other tests pass [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-bmg: [SKIP][160] ([Intel XE#2316]) -> [PASS][161] +3 other tests pass [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@2x-flip-vs-suspend@bd-hdmi-a6-dp4: - shard-dg2-set2: [INCOMPLETE][162] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][163] +1 other test pass [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-dg2-464/igt@kms_flip@2x-flip-vs-suspend@bd-hdmi-a6-dp4.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-436/igt@kms_flip@2x-flip-vs-suspend@bd-hdmi-a6-dp4.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-lnl: [FAIL][164] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][165] [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1: - shard-lnl: [FAIL][166] ([Intel XE#301]) -> [PASS][167] [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html * igt@kms_hdr@invalid-metadata-sizes: - shard-bmg: [SKIP][168] ([Intel XE#1503]) -> [PASS][169] +1 other test pass [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-bmg-6/igt@kms_hdr@invalid-metadata-sizes.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-1/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_joiner@basic-force-big-joiner: - shard-bmg: [SKIP][170] ([Intel XE#3012]) -> [PASS][171] [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-3/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_setmode@basic@pipe-a-hdmi-a-6: - shard-dg2-set2: [FAIL][172] ([Intel XE#2883]) -> [PASS][173] +6 other tests pass [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-dg2-435/igt@kms_setmode@basic@pipe-a-hdmi-a-6.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-464/igt@kms_setmode@basic@pipe-a-hdmi-a-6.html * {igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute}: - shard-bmg: [ABORT][174] ([Intel XE#3970]) -> [PASS][175] +1 other test pass [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-bmg-2/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-4/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind: - shard-dg2-set2: [INCOMPLETE][176] ([Intel XE#4842]) -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-dg2-435/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-435/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race: - shard-dg2-set2: [SKIP][178] ([Intel XE#1392]) -> [PASS][179] +5 other tests pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-464/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_reset@parallel-gt-reset: - shard-dg2-set2: [DMESG-WARN][180] ([Intel XE#3876]) -> [PASS][181] [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-466/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_module_load@reload-no-display: - shard-bmg: [INCOMPLETE][182] -> [PASS][183] [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-bmg-5/igt@xe_module_load@reload-no-display.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-2/igt@xe_module_load@reload-no-display.html * igt@xe_pmu@engine-activity-idle@engine-drm_xe_engine_class_video_enhance0: - shard-dg2-set2: [FAIL][184] ([Intel XE#5313]) -> [PASS][185] +2 other tests pass [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-dg2-436/igt@xe_pmu@engine-activity-idle@engine-drm_xe_engine_class_video_enhance0.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-464/igt@xe_pmu@engine-activity-idle@engine-drm_xe_engine_class_video_enhance0.html #### Warnings #### * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [INCOMPLETE][186] ([Intel XE#2705] / [Intel XE#4212]) -> [INCOMPLETE][187] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_content_protection@uevent: - shard-bmg: [FAIL][188] ([Intel XE#1188]) -> [SKIP][189] ([Intel XE#2341]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-bmg-3/igt@kms_content_protection@uevent.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-5/igt@kms_content_protection@uevent.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][190] ([Intel XE#2312]) -> [SKIP][191] ([Intel XE#2311]) +12 other tests skip [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][192] ([Intel XE#2311]) -> [SKIP][193] ([Intel XE#2312]) +10 other tests skip [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][194] ([Intel XE#2312]) -> [SKIP][195] ([Intel XE#5390]) +8 other tests skip [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [SKIP][196] ([Intel XE#5390]) -> [SKIP][197] ([Intel XE#2312]) +5 other tests skip [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][198] ([Intel XE#2313]) -> [SKIP][199] ([Intel XE#2312]) +10 other tests skip [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-bmg: [SKIP][200] ([Intel XE#2312]) -> [SKIP][201] ([Intel XE#2313]) +11 other tests skip [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][202] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][203] ([Intel XE#3544]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8454/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [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#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [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#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [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#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [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#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [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#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [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#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [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#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212 [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273 [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356 [Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4488 [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633 [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650 [Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4842]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4842 [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915 [Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917 [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943 [Intel XE#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018 [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5195 [Intel XE#5249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5249 [Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300 [Intel XE#5313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5313 [Intel XE#5352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5352 [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354 [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390 [Intel XE#5426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5426 [Intel XE#5428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5428 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [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#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [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#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8454 -> IGTPW_13459 * Linux: xe-3399-0384e5b49a7b0bddca4018a6d42472e13ccd8bba -> xe-3405-453e24ac0fd683880e40b3a844a774f5a427dc55 IGTPW_13459: 13459 IGT_8454: 67f8a0cc3a159bf6f912c08c030dfed5a85af328 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-3399-0384e5b49a7b0bddca4018a6d42472e13ccd8bba: 0384e5b49a7b0bddca4018a6d42472e13ccd8bba xe-3405-453e24ac0fd683880e40b3a844a774f5a427dc55: 453e24ac0fd683880e40b3a844a774f5a427dc55 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13459/index.html [-- Attachment #2: Type: text/html, Size: 69058 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2025-07-14 13:51 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-07-13 11:23 [PATCH v2 i-g-t 0/2] Add post-gpukmod-unbind igt_hook Peter Senna Tschudin 2025-07-13 11:23 ` [PATCH v2 i-g-t 1/2] igt_core_get_igt_hook: igt_hook pointer for other libs Peter Senna Tschudin 2025-07-14 13:32 ` Gustavo Sousa 2025-07-13 11:23 ` [PATCH v2 i-g-t 2/2] lib/igt_kmod: Add IGT_HOOK_POST_GPUKMOD_UNBIND Peter Senna Tschudin 2025-07-14 13:51 ` Gustavo Sousa 2025-07-13 11:55 ` ✓ Xe.CI.BAT: success for Add post-gpukmod-unbind igt_hook (rev2) Patchwork 2025-07-13 12:01 ` ✗ i915.CI.BAT: failure " Patchwork 2025-07-13 12:58 ` ✗ Xe.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox