* [PATCH v3] tests/intel/xe_fault_injection: Ignore all errors while injecting fault
@ 2025-06-04 17:06 Jonathan Cavitt
2025-06-04 19:13 ` ✗ i915.CI.BAT: failure for tests/intel/xe_fault_injection: Ignore all errors while injecting fault (rev5) Patchwork
` (3 more replies)
0 siblings, 4 replies; 10+ messages in thread
From: Jonathan Cavitt @ 2025-06-04 17:06 UTC (permalink / raw)
To: igt-dev
Cc: jonathan.cavitt, saurabhg.gupta, alex.zuo, satyanarayana.k.v.p,
michal.wajdeczko, daniele.ceraolospurio, lucas.demarchi,
francois.dugast, rodrigo.vivi, john.c.harrison, kamil.konieczny
From: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Currently, numerous fault messages have been included in the dmesg
ignore list, and this list continues to expand. Each time a new fault
injection point is introduced or a new feature is activated, additional
fault messages appear, making it cumbersome to manage the dmesg ignore
list.
However, we can safely assert that all dmesg reports that contain
*ERROR* in their message can be ignored, so add them to the dmesg ignore
list. This unfortunately does not include the device probe error
itself, so that must be added separately.
While we're here, we should also assert that any errors we see are only
coming from the target PCI device.
v2:
- Only ignore error-level dmesg reports (or, at least, reports with
*ERROR* in them), and device probe failues
- Add PCI data to regex (Michal)
v3: (Michal)
- Revert name change
- Add change log
- Remove fixes tag from commit
- Rename ignore_faults_in_dmesg to igt_ignore_dmesg_errors_from_dut, and
move to lib/igt_core.c
- Minor code fixes
v4:
- Return ignore_faults_in_dmesg to tests/intel/xe_fault_injection.c, but
keep it renamed to ignore_dmesg_errors_from_dut (Kamil)
Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
Suggested-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Suggested-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Suggested-by: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Francois Dugast <francois.dugast@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: John Harrison <john.c.harrison@intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
tests/intel/xe_fault_injection.c | 39 ++++++++++++--------------------
1 file changed, 15 insertions(+), 24 deletions(-)
diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c
index 9fe6bfe351..14aaeebf5e 100644
--- a/tests/intel/xe_fault_injection.c
+++ b/tests/intel/xe_fault_injection.c
@@ -64,28 +64,19 @@ static int fail_function_open(void)
return debugfs_fail_function_dir_fd;
}
-static bool function_is_part_of_guc(const char function_name[])
+static void ignore_dmesg_errors_from_dut(int fd)
{
- return strstr(function_name, "_guc_") != NULL ||
- strstr(function_name, "_uc_") != NULL ||
- strstr(function_name, "_wopcm_") != NULL;
-}
-
-static void ignore_faults_in_dmesg(const char function_name[])
-{
- /* Driver probe is expected to fail in all cases, so ignore in igt_runner */
- char regex[1024] = "probe with driver xe failed with error -12";
-
/*
- * If GuC module fault is injected, GuC is expected to fail,
- * so also ignore GuC init failures in igt_runner.
+ * Driver probe is expected to fail in all cases, so ignore in igt_runner.
+ * Additionally, all error-level reports are expected, so ignore those as well.
*/
- if (function_is_part_of_guc(function_name)) {
- strcat(regex, "|GT[0-9a-fA-F]*: GuC init failed with -ENOMEM");
- strcat(regex, "|GT[0-9a-fA-F]*: Failed to initialize uC .-ENOMEM");
- strcat(regex, "|GT[0-9a-fA-F]*: Failed to enable GuC CT .-ENOMEM");
- strcat(regex, "|GT[0-9a-fA-F]*: GuC PC query task state failed: -ENOMEM");
- }
+ static const char *store = "probe with driver xe failed with error|\\*ERROR\\*";
+ char pci_slot[NAME_MAX];
+ char regex[1024];
+
+ /* Only block dmesg reports that target the pci slot of the given fd */
+ igt_device_get_pci_slot_name(fd, pci_slot);
+ snprintf(regex, sizeof(regex), "%s:.*(%s)", pci_slot, store);
igt_emit_ignore_dmesg_regex(regex);
}
@@ -234,7 +225,7 @@ inject_fault_probe(int fd, char pci_slot[], const char function_name[])
igt_info("Injecting error \"%s\" (%d) in function \"%s\"\n",
strerror(-INJECT_ERRNO), INJECT_ERRNO, function_name);
- ignore_faults_in_dmesg(function_name);
+ ignore_dmesg_errors_from_dut(fd);
injection_list_add(function_name);
set_retval(function_name, INJECT_ERRNO);
@@ -299,7 +290,7 @@ exec_queue_create_fail(int fd, struct drm_xe_engine_class_instance *instance,
igt_assert_eq(__xe_exec_queue_create(fd, vm, 1, 1, instance, 0, &exec_queue_id), 0);
xe_exec_queue_destroy(fd, exec_queue_id);
- ignore_faults_in_dmesg(function_name);
+ ignore_dmesg_errors_from_dut(fd);
injection_list_add(function_name);
set_retval(function_name, INJECT_ERRNO);
igt_assert(__xe_exec_queue_create(fd, vm, 1, 1, instance, 0, &exec_queue_id) != 0);
@@ -334,7 +325,7 @@ vm_create_fail(int fd, const char function_name[], unsigned int flags)
{
igt_assert_eq(simple_vm_create(fd, flags), 0);
- ignore_faults_in_dmesg(function_name);
+ ignore_dmesg_errors_from_dut(fd);
injection_list_add(function_name);
set_retval(function_name, INJECT_ERRNO);
igt_assert(simple_vm_create(fd, flags) != 0);
@@ -397,7 +388,7 @@ vm_bind_fail(int fd, const char function_name[])
igt_assert_eq(simple_vm_bind(fd, vm), 0);
- ignore_faults_in_dmesg(function_name);
+ ignore_dmesg_errors_from_dut(fd);
injection_list_add(function_name);
set_retval(function_name, INJECT_ERRNO);
igt_assert(simple_vm_bind(fd, vm) != 0);
@@ -445,7 +436,7 @@ oa_add_config_fail(int fd, int sysfs, int devid, const char function_name[])
igt_assert(igt_sysfs_scanf(sysfs, path, "%" PRIu64, &config_id) == 1);
igt_assert_eq(intel_xe_perf_ioctl(fd, DRM_XE_OBSERVATION_OP_REMOVE_CONFIG, &config_id), 0);
- ignore_faults_in_dmesg(function_name);
+ ignore_dmesg_errors_from_dut(fd);
injection_list_add(function_name);
set_retval(function_name, INJECT_ERRNO);
igt_assert_lt(intel_xe_perf_ioctl(fd, DRM_XE_OBSERVATION_OP_ADD_CONFIG, &config), 0);
--
2.43.0
^ permalink raw reply related [flat|nested] 10+ messages in thread* ✗ i915.CI.BAT: failure for tests/intel/xe_fault_injection: Ignore all errors while injecting fault (rev5)
2025-06-04 17:06 [PATCH v3] tests/intel/xe_fault_injection: Ignore all errors while injecting fault Jonathan Cavitt
@ 2025-06-04 19:13 ` Patchwork
2025-06-04 19:47 ` ✓ Xe.CI.BAT: success " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-06-04 19:13 UTC (permalink / raw)
To: K V P, Satyanarayana; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4668 bytes --]
== Series Details ==
Series: tests/intel/xe_fault_injection: Ignore all errors while injecting fault (rev5)
URL : https://patchwork.freedesktop.org/series/149644/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8396 -> IGTPW_13243
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_13243 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_13243, 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_13243/index.html
Participating hosts (43 -> 42)
------------------------------
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_13243:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live:
- bat-dg2-8: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8396/bat-dg2-8/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13243/bat-dg2-8/igt@i915_selftest@live.html
Known issues
------------
Here are the changes found in IGTPW_13243 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@guc_multi_lrc:
- bat-dg2-8: [PASS][3] -> [ABORT][4] ([i915#14201])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8396/bat-dg2-8/igt@i915_selftest@live@guc_multi_lrc.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13243/bat-dg2-8/igt@i915_selftest@live@guc_multi_lrc.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8396/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13243/bat-arlh-3/igt@i915_selftest@live@workarounds.html
- bat-dg2-14: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8396/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13243/bat-dg2-14/igt@i915_selftest@live@workarounds.html
* igt@kms_dsc@dsc-basic:
- bat-apl-1: NOTRUN -> [SKIP][9] +22 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13243/bat-apl-1/igt@kms_dsc@dsc-basic.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- fi-cfl-guc: [PASS][10] -> [SKIP][11] +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8396/fi-cfl-guc/igt@kms_pm_rpm@basic-pci-d3-state.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13243/fi-cfl-guc/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_pm_rpm@basic-rte:
- fi-cfl-guc: [PASS][12] -> [FAIL][13] ([i915#14317])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8396/fi-cfl-guc/igt@kms_pm_rpm@basic-rte.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13243/fi-cfl-guc/igt@kms_pm_rpm@basic-rte.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-mtlp-9: [DMESG-FAIL][14] ([i915#12061]) -> [PASS][15] +1 other test pass
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8396/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13243/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
#### Warnings ####
* igt@intel_hwmon@hwmon-read:
- bat-apl-1: [ABORT][16] -> [SKIP][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8396/bat-apl-1/igt@intel_hwmon@hwmon-read.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13243/bat-apl-1/igt@intel_hwmon@hwmon-read.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#14201]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14201
[i915#14317]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14317
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8396 -> IGTPW_13243
CI-20190529: 20190529
CI_DRM_16645: 573b98ac3ff9ff95c3316789e97980277e4ffe2b @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_13243: ad19034e269b9822a4605d25e109255fd290b9e6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8396: 8396
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13243/index.html
[-- Attachment #2: Type: text/html, Size: 5621 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread* ✓ Xe.CI.BAT: success for tests/intel/xe_fault_injection: Ignore all errors while injecting fault (rev5)
2025-06-04 17:06 [PATCH v3] tests/intel/xe_fault_injection: Ignore all errors while injecting fault Jonathan Cavitt
2025-06-04 19:13 ` ✗ i915.CI.BAT: failure for tests/intel/xe_fault_injection: Ignore all errors while injecting fault (rev5) Patchwork
@ 2025-06-04 19:47 ` Patchwork
2025-06-04 20:06 ` [PATCH v3] tests/intel/xe_fault_injection: Ignore all errors while injecting fault Cavitt, Jonathan
2025-06-05 16:55 ` ✗ Xe.CI.Full: failure for tests/intel/xe_fault_injection: Ignore all errors while injecting fault (rev5) Patchwork
3 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-06-04 19:47 UTC (permalink / raw)
To: K V P, Satyanarayana; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 896 bytes --]
== Series Details ==
Series: tests/intel/xe_fault_injection: Ignore all errors while injecting fault (rev5)
URL : https://patchwork.freedesktop.org/series/149644/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8396_BAT -> XEIGTPW_13243_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (7 -> 7)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8396 -> IGTPW_13243
IGTPW_13243: ad19034e269b9822a4605d25e109255fd290b9e6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8396: 8396
xe-3194-573b98ac3ff9ff95c3316789e97980277e4ffe2b: 573b98ac3ff9ff95c3316789e97980277e4ffe2b
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/index.html
[-- Attachment #2: Type: text/html, Size: 1441 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* RE: [PATCH v3] tests/intel/xe_fault_injection: Ignore all errors while injecting fault
2025-06-04 17:06 [PATCH v3] tests/intel/xe_fault_injection: Ignore all errors while injecting fault Jonathan Cavitt
2025-06-04 19:13 ` ✗ i915.CI.BAT: failure for tests/intel/xe_fault_injection: Ignore all errors while injecting fault (rev5) Patchwork
2025-06-04 19:47 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2025-06-04 20:06 ` Cavitt, Jonathan
2025-06-04 20:34 ` Michal Wajdeczko
2025-06-05 16:55 ` ✗ Xe.CI.Full: failure for tests/intel/xe_fault_injection: Ignore all errors while injecting fault (rev5) Patchwork
3 siblings, 1 reply; 10+ messages in thread
From: Cavitt, Jonathan @ 2025-06-04 20:06 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org
Cc: Gupta, saurabhg, Zuo, Alex, K V P, Satyanarayana,
Wajdeczko, Michal, Ceraolo Spurio, Daniele, De Marchi, Lucas,
Dugast, Francois, Vivi, Rodrigo, Harrison, John C,
kamil.konieczny@linux.intel.com
-----Original Message-----
From: Cavitt, Jonathan <jonathan.cavitt@intel.com>
Sent: Wednesday, June 4, 2025 10:06 AM
To: igt-dev@lists.freedesktop.org
Cc: Cavitt, Jonathan <jonathan.cavitt@intel.com>; Gupta, saurabhg <saurabhg.gupta@intel.com>; Zuo, Alex <alex.zuo@intel.com>; K V P, Satyanarayana <satyanarayana.k.v.p@intel.com>; Wajdeczko, Michal <Michal.Wajdeczko@intel.com>; Ceraolo Spurio, Daniele <daniele.ceraolospurio@intel.com>; De Marchi, Lucas <lucas.demarchi@intel.com>; Dugast, Francois <francois.dugast@intel.com>; Vivi, Rodrigo <rodrigo.vivi@intel.com>; Harrison, John C <john.c.harrison@intel.com>; kamil.konieczny@linux.intel.com
Subject: [PATCH v3] tests/intel/xe_fault_injection: Ignore all errors while injecting fault
>
> From: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
>
> Currently, numerous fault messages have been included in the dmesg
> ignore list, and this list continues to expand. Each time a new fault
> injection point is introduced or a new feature is activated, additional
> fault messages appear, making it cumbersome to manage the dmesg ignore
> list.
>
> However, we can safely assert that all dmesg reports that contain
> *ERROR* in their message can be ignored, so add them to the dmesg ignore
> list. This unfortunately does not include the device probe error
> itself, so that must be added separately.
You know, I just thought of something...
Aren't we specifically injecting ENOMEM as a part of these tests?
If we get anything other than ENOMEM as the errno return value, then
that should be unexpected. So, are we certain that we can safely ignore
all error-level dmesg reports here?
-Jonathan Cavitt
>
> While we're here, we should also assert that any errors we see are only
> coming from the target PCI device.
>
> v2:
> - Only ignore error-level dmesg reports (or, at least, reports with
> *ERROR* in them), and device probe failues
> - Add PCI data to regex (Michal)
>
> v3: (Michal)
> - Revert name change
> - Add change log
> - Remove fixes tag from commit
> - Rename ignore_faults_in_dmesg to igt_ignore_dmesg_errors_from_dut, and
> move to lib/igt_core.c
> - Minor code fixes
>
> v4:
> - Return ignore_faults_in_dmesg to tests/intel/xe_fault_injection.c, but
> keep it renamed to ignore_dmesg_errors_from_dut (Kamil)
>
> Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
> Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
> Suggested-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Suggested-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
> Suggested-by: Lucas De Marchi <lucas.demarchi@intel.com>
> Cc: Francois Dugast <francois.dugast@intel.com>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Cc: John Harrison <john.c.harrison@intel.com>
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> tests/intel/xe_fault_injection.c | 39 ++++++++++++--------------------
> 1 file changed, 15 insertions(+), 24 deletions(-)
>
> diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c
> index 9fe6bfe351..14aaeebf5e 100644
> --- a/tests/intel/xe_fault_injection.c
> +++ b/tests/intel/xe_fault_injection.c
> @@ -64,28 +64,19 @@ static int fail_function_open(void)
> return debugfs_fail_function_dir_fd;
> }
>
> -static bool function_is_part_of_guc(const char function_name[])
> +static void ignore_dmesg_errors_from_dut(int fd)
> {
> - return strstr(function_name, "_guc_") != NULL ||
> - strstr(function_name, "_uc_") != NULL ||
> - strstr(function_name, "_wopcm_") != NULL;
> -}
> -
> -static void ignore_faults_in_dmesg(const char function_name[])
> -{
> - /* Driver probe is expected to fail in all cases, so ignore in igt_runner */
> - char regex[1024] = "probe with driver xe failed with error -12";
> -
> /*
> - * If GuC module fault is injected, GuC is expected to fail,
> - * so also ignore GuC init failures in igt_runner.
> + * Driver probe is expected to fail in all cases, so ignore in igt_runner.
> + * Additionally, all error-level reports are expected, so ignore those as well.
> */
> - if (function_is_part_of_guc(function_name)) {
> - strcat(regex, "|GT[0-9a-fA-F]*: GuC init failed with -ENOMEM");
> - strcat(regex, "|GT[0-9a-fA-F]*: Failed to initialize uC .-ENOMEM");
> - strcat(regex, "|GT[0-9a-fA-F]*: Failed to enable GuC CT .-ENOMEM");
> - strcat(regex, "|GT[0-9a-fA-F]*: GuC PC query task state failed: -ENOMEM");
> - }
> + static const char *store = "probe with driver xe failed with error|\\*ERROR\\*";
> + char pci_slot[NAME_MAX];
> + char regex[1024];
> +
> + /* Only block dmesg reports that target the pci slot of the given fd */
> + igt_device_get_pci_slot_name(fd, pci_slot);
> + snprintf(regex, sizeof(regex), "%s:.*(%s)", pci_slot, store);
>
> igt_emit_ignore_dmesg_regex(regex);
> }
> @@ -234,7 +225,7 @@ inject_fault_probe(int fd, char pci_slot[], const char function_name[])
> igt_info("Injecting error \"%s\" (%d) in function \"%s\"\n",
> strerror(-INJECT_ERRNO), INJECT_ERRNO, function_name);
>
> - ignore_faults_in_dmesg(function_name);
> + ignore_dmesg_errors_from_dut(fd);
> injection_list_add(function_name);
> set_retval(function_name, INJECT_ERRNO);
>
> @@ -299,7 +290,7 @@ exec_queue_create_fail(int fd, struct drm_xe_engine_class_instance *instance,
> igt_assert_eq(__xe_exec_queue_create(fd, vm, 1, 1, instance, 0, &exec_queue_id), 0);
> xe_exec_queue_destroy(fd, exec_queue_id);
>
> - ignore_faults_in_dmesg(function_name);
> + ignore_dmesg_errors_from_dut(fd);
> injection_list_add(function_name);
> set_retval(function_name, INJECT_ERRNO);
> igt_assert(__xe_exec_queue_create(fd, vm, 1, 1, instance, 0, &exec_queue_id) != 0);
> @@ -334,7 +325,7 @@ vm_create_fail(int fd, const char function_name[], unsigned int flags)
> {
> igt_assert_eq(simple_vm_create(fd, flags), 0);
>
> - ignore_faults_in_dmesg(function_name);
> + ignore_dmesg_errors_from_dut(fd);
> injection_list_add(function_name);
> set_retval(function_name, INJECT_ERRNO);
> igt_assert(simple_vm_create(fd, flags) != 0);
> @@ -397,7 +388,7 @@ vm_bind_fail(int fd, const char function_name[])
>
> igt_assert_eq(simple_vm_bind(fd, vm), 0);
>
> - ignore_faults_in_dmesg(function_name);
> + ignore_dmesg_errors_from_dut(fd);
> injection_list_add(function_name);
> set_retval(function_name, INJECT_ERRNO);
> igt_assert(simple_vm_bind(fd, vm) != 0);
> @@ -445,7 +436,7 @@ oa_add_config_fail(int fd, int sysfs, int devid, const char function_name[])
> igt_assert(igt_sysfs_scanf(sysfs, path, "%" PRIu64, &config_id) == 1);
> igt_assert_eq(intel_xe_perf_ioctl(fd, DRM_XE_OBSERVATION_OP_REMOVE_CONFIG, &config_id), 0);
>
> - ignore_faults_in_dmesg(function_name);
> + ignore_dmesg_errors_from_dut(fd);
> injection_list_add(function_name);
> set_retval(function_name, INJECT_ERRNO);
> igt_assert_lt(intel_xe_perf_ioctl(fd, DRM_XE_OBSERVATION_OP_ADD_CONFIG, &config), 0);
> --
> 2.43.0
>
>
^ permalink raw reply [flat|nested] 10+ messages in thread* Re: [PATCH v3] tests/intel/xe_fault_injection: Ignore all errors while injecting fault
2025-06-04 20:06 ` [PATCH v3] tests/intel/xe_fault_injection: Ignore all errors while injecting fault Cavitt, Jonathan
@ 2025-06-04 20:34 ` Michal Wajdeczko
2025-06-04 20:36 ` Cavitt, Jonathan
0 siblings, 1 reply; 10+ messages in thread
From: Michal Wajdeczko @ 2025-06-04 20:34 UTC (permalink / raw)
To: Cavitt, Jonathan, igt-dev@lists.freedesktop.org
Cc: Gupta, saurabhg, Zuo, Alex, K V P, Satyanarayana,
Ceraolo Spurio, Daniele, De Marchi, Lucas, Dugast, Francois,
Vivi, Rodrigo, Harrison, John C, kamil.konieczny@linux.intel.com
On 04.06.2025 22:06, Cavitt, Jonathan wrote:
> -----Original Message-----
> From: Cavitt, Jonathan <jonathan.cavitt@intel.com>
> Sent: Wednesday, June 4, 2025 10:06 AM
> To: igt-dev@lists.freedesktop.org
> Cc: Cavitt, Jonathan <jonathan.cavitt@intel.com>; Gupta, saurabhg <saurabhg.gupta@intel.com>; Zuo, Alex <alex.zuo@intel.com>; K V P, Satyanarayana <satyanarayana.k.v.p@intel.com>; Wajdeczko, Michal <Michal.Wajdeczko@intel.com>; Ceraolo Spurio, Daniele <daniele.ceraolospurio@intel.com>; De Marchi, Lucas <lucas.demarchi@intel.com>; Dugast, Francois <francois.dugast@intel.com>; Vivi, Rodrigo <rodrigo.vivi@intel.com>; Harrison, John C <john.c.harrison@intel.com>; kamil.konieczny@linux.intel.com
> Subject: [PATCH v3] tests/intel/xe_fault_injection: Ignore all errors while injecting fault
>>
>> From: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
>>
>> Currently, numerous fault messages have been included in the dmesg
>> ignore list, and this list continues to expand. Each time a new fault
>> injection point is introduced or a new feature is activated, additional
>> fault messages appear, making it cumbersome to manage the dmesg ignore
>> list.
>>
>> However, we can safely assert that all dmesg reports that contain
>> *ERROR* in their message can be ignored, so add them to the dmesg ignore
>> list. This unfortunately does not include the device probe error
>> itself, so that must be added separately.
>
> You know, I just thought of something...
> Aren't we specifically injecting ENOMEM as a part of these tests?
> If we get anything other than ENOMEM as the errno return value, then
> that should be unexpected. So, are we certain that we can safely ignore
> all error-level dmesg reports here?
our goal is to extend testing and inject more faults like in [1] so
different error messages will be showing up in dmesg
[1] https://patchwork.freedesktop.org/series/149501/
^ permalink raw reply [flat|nested] 10+ messages in thread
* RE: [PATCH v3] tests/intel/xe_fault_injection: Ignore all errors while injecting fault
2025-06-04 20:34 ` Michal Wajdeczko
@ 2025-06-04 20:36 ` Cavitt, Jonathan
0 siblings, 0 replies; 10+ messages in thread
From: Cavitt, Jonathan @ 2025-06-04 20:36 UTC (permalink / raw)
To: Wajdeczko, Michal, igt-dev@lists.freedesktop.org
Cc: Gupta, saurabhg, Zuo, Alex, K V P, Satyanarayana,
Ceraolo Spurio, Daniele, De Marchi, Lucas, Dugast, Francois,
Vivi, Rodrigo, Harrison, John C, kamil.konieczny@linux.intel.com,
Cavitt, Jonathan
-----Original Message-----
From: Wajdeczko, Michal <Michal.Wajdeczko@intel.com>
Sent: Wednesday, June 4, 2025 1:34 PM
To: Cavitt, Jonathan <jonathan.cavitt@intel.com>; igt-dev@lists.freedesktop.org
Cc: Gupta, saurabhg <saurabhg.gupta@intel.com>; Zuo, Alex <alex.zuo@intel.com>; K V P, Satyanarayana <satyanarayana.k.v.p@intel.com>; Ceraolo Spurio, Daniele <daniele.ceraolospurio@intel.com>; De Marchi, Lucas <lucas.demarchi@intel.com>; Dugast, Francois <francois.dugast@intel.com>; Vivi, Rodrigo <rodrigo.vivi@intel.com>; Harrison, John C <john.c.harrison@intel.com>; kamil.konieczny@linux.intel.com
Subject: Re: [PATCH v3] tests/intel/xe_fault_injection: Ignore all errors while injecting fault
>
> On 04.06.2025 22:06, Cavitt, Jonathan wrote:
> > -----Original Message-----
> > From: Cavitt, Jonathan <jonathan.cavitt@intel.com>
> > Sent: Wednesday, June 4, 2025 10:06 AM
> > To: igt-dev@lists.freedesktop.org
> > Cc: Cavitt, Jonathan <jonathan.cavitt@intel.com>; Gupta, saurabhg <saurabhg.gupta@intel.com>; Zuo, Alex <alex.zuo@intel.com>; K V P, Satyanarayana <satyanarayana.k.v.p@intel.com>; Wajdeczko, Michal <Michal.Wajdeczko@intel.com>; Ceraolo Spurio, Daniele <daniele.ceraolospurio@intel.com>; De Marchi, Lucas <lucas.demarchi@intel.com>; Dugast, Francois <francois.dugast@intel.com>; Vivi, Rodrigo <rodrigo.vivi@intel.com>; Harrison, John C <john.c.harrison@intel.com>; kamil.konieczny@linux.intel.com
> > Subject: [PATCH v3] tests/intel/xe_fault_injection: Ignore all errors while injecting fault
> >>
> >> From: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
> >>
> >> Currently, numerous fault messages have been included in the dmesg
> >> ignore list, and this list continues to expand. Each time a new fault
> >> injection point is introduced or a new feature is activated, additional
> >> fault messages appear, making it cumbersome to manage the dmesg ignore
> >> list.
> >>
> >> However, we can safely assert that all dmesg reports that contain
> >> *ERROR* in their message can be ignored, so add them to the dmesg ignore
> >> list. This unfortunately does not include the device probe error
> >> itself, so that must be added separately.
> >
> > You know, I just thought of something...
> > Aren't we specifically injecting ENOMEM as a part of these tests?
> > If we get anything other than ENOMEM as the errno return value, then
> > that should be unexpected. So, are we certain that we can safely ignore
> > all error-level dmesg reports here?
>
> our goal is to extend testing and inject more faults like in [1] so
> different error messages will be showing up in dmesg
>
> [1] https://patchwork.freedesktop.org/series/149501/
Okay, fair enough.
Do the changes in this patch align with that purpose? Or, I guess more directly,
are we good to push this patch?
-Jonathan Cavitt
>
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/xe_fault_injection: Ignore all errors while injecting fault (rev5)
2025-06-04 17:06 [PATCH v3] tests/intel/xe_fault_injection: Ignore all errors while injecting fault Jonathan Cavitt
` (2 preceding siblings ...)
2025-06-04 20:06 ` [PATCH v3] tests/intel/xe_fault_injection: Ignore all errors while injecting fault Cavitt, Jonathan
@ 2025-06-05 16:55 ` Patchwork
3 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-06-05 16:55 UTC (permalink / raw)
To: K V P, Satyanarayana; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 56540 bytes --]
== Series Details ==
Series: tests/intel/xe_fault_injection: Ignore all errors while injecting fault (rev5)
URL : https://patchwork.freedesktop.org/series/149644/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8396_FULL -> XEIGTPW_13243_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_13243_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_13243_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_13243_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_fault_injection@inject-fault-probe-function-xe_add_hw_engine_class_defaults:
- shard-bmg: NOTRUN -> [SKIP][1] +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_add_hw_engine_class_defaults.html
- shard-dg2-set2: NOTRUN -> [SKIP][2] +1 other test skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_add_hw_engine_class_defaults.html
- shard-lnl: NOTRUN -> [SKIP][3] +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-6/igt@xe_fault_injection@inject-fault-probe-function-xe_add_hw_engine_class_defaults.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
- shard-bmg: [PASS][4] -> [SKIP][5] +12 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_mmio_probe_early:
- shard-dg2-set2: [PASS][6] -> [SKIP][7] +13 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_mmio_probe_early.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_mmio_probe_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_pcode_probe_early:
- shard-lnl: [PASS][8] -> [SKIP][9] +14 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-lnl-3/igt@xe_fault_injection@inject-fault-probe-function-xe_pcode_probe_early.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-8/igt@xe_fault_injection@inject-fault-probe-function-xe_pcode_probe_early.html
#### Warnings ####
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-dg2-set2: [ABORT][10] ([Intel XE#4917]) -> [SKIP][11]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-dg2-436/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-433/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
- shard-bmg: [ABORT][12] ([Intel XE#4917]) -> [SKIP][13]
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-1/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-5/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-dg2-set2: [INCOMPLETE][14] ([Intel XE#4911]) -> [SKIP][15]
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-dg2-433/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-463/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
- shard-lnl: [ABORT][16] ([Intel XE#4911]) -> [SKIP][17]
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-lnl-6/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-6/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
- shard-bmg: [ABORT][18] ([Intel XE#4911]) -> [SKIP][19]
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-1/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
New tests
---------
New tests have been introduced between XEIGT_8396_FULL and XEIGTPW_13243_FULL:
### New IGT tests (1) ###
* igt@xe_exec_threads:
- Statuses :
- Exec time: [None] s
Known issues
------------
Here are the changes found in XEIGTPW_13243_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- shard-lnl: [PASS][20] -> [FAIL][21] ([Intel XE#911]) +3 other tests fail
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1407])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#316])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-432/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#1124]) +4 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-436/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#1124]) +2 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#2191])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-3/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#367]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#367])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-6/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#367])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-5/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2652] / [Intel XE#787]) +16 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2887]) +5 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#455] / [Intel XE#787]) +34 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/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-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#787]) +195 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#3442])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#2887]) +5 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-7/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#2907]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [PASS][38] -> [INCOMPLETE][39] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][40] ([Intel XE#3124])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][41] ([Intel XE#1727] / [Intel XE#3113])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_chamelium_color@ctm-max:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#306])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-1/igt@kms_chamelium_color@ctm-max.html
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2325])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-8/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_frames@dp-crc-multiple:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#373]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-7/igt@kms_chamelium_frames@dp-crc-multiple.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2252]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-5/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#373]) +5 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: NOTRUN -> [FAIL][47] ([Intel XE#1178]) +1 other test fail
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-466/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][48] ([Intel XE#1178]) +1 other test fail
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-8/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_content_protection@uevent@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][49] ([Intel XE#1188])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-466/igt@kms_content_protection@uevent@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#308])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-256x256:
- shard-bmg: [PASS][51] -> [SKIP][52] ([Intel XE#2320])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-2/igt@kms_cursor_crc@cursor-random-256x256.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-4/igt@kms_cursor_crc@cursor-random-256x256.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#455]) +5 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-433/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2320]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1424]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#2291]) +6 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#309]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-8/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [PASS][59] -> [SKIP][60] ([Intel XE#1340])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [PASS][61] -> [SKIP][62] ([Intel XE#4294])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#4331])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-463/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-with-formats:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#2244])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-1/igt@kms_dsc@dsc-with-formats.html
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2244])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-6/igt@kms_dsc@dsc-with-formats.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][66] -> [FAIL][67] ([Intel XE#301] / [Intel XE#3321]) +2 other tests fail
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3:
- shard-bmg: [PASS][68] -> [FAIL][69] ([Intel XE#3321]) +5 other tests fail
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][70] -> [FAIL][71] ([Intel XE#301]) +11 other tests fail
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [PASS][72] -> [SKIP][73] ([Intel XE#2316]) +10 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-1/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1421]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-1/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@absolute-wf_vblank-interruptible@c-dp2:
- shard-bmg: NOTRUN -> [FAIL][75] ([Intel XE#2882]) +1 other test fail
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-4/igt@kms_flip@absolute-wf_vblank-interruptible@c-dp2.html
* igt@kms_flip@plain-flip-ts-check@a-hdmi-a3:
- shard-bmg: [PASS][76] -> [FAIL][77] ([Intel XE#2882]) +2 other tests fail
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-2/igt@kms_flip@plain-flip-ts-check@a-hdmi-a3.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-1/igt@kms_flip@plain-flip-ts-check@a-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1397] / [Intel XE#1745])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-5/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][79] ([Intel XE#1397])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
- shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#651]) +20 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#651]) +7 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#4141]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#656]) +11 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2311]) +8 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2312]) +3 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2352])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#658])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1469])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#653]) +20 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2313]) +8 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html
* igt@kms_hdr@static-toggle:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1503])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-8/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [PASS][92] -> [SKIP][93] ([Intel XE#3012])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2934])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2925])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-433/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#2934])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-bmg: [PASS][97] -> [SKIP][98] ([Intel XE#4596])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-none.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#3307])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-1/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [PASS][100] -> [FAIL][101] ([Intel XE#718])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#4608])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#1489]) +5 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-436/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#2893]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#1489]) +2 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-5/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr@fbc-pr-no-drrs:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-2/igt@kms_psr@fbc-pr-no-drrs.html
* igt@kms_psr@pr-primary-blt:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#1406]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-7/igt@kms_psr@pr-primary-blt.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#2850] / [Intel XE#929]) +10 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-433/igt@kms_psr@psr-dpms.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-lnl: [PASS][109] -> [SKIP][110] ([Intel XE#4692])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-lnl-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_setmode@basic@pipe-b-hdmi-a-2-pipe-a-dp-2:
- shard-dg2-set2: NOTRUN -> [FAIL][111] ([Intel XE#2883]) +5 other tests fail
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-432/igt@kms_setmode@basic@pipe-b-hdmi-a-2-pipe-a-dp-2.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#330])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-432/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][113] -> [FAIL][114] ([Intel XE#4459]) +1 other test fail
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_compute@ccs-mode-basic:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#1447])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-3/igt@xe_compute@ccs-mode-basic.html
* igt@xe_configfs@survivability-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#5084])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-434/igt@xe_configfs@survivability-mode.html
* igt@xe_eu_stall@non-blocking-re-enable:
- shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#4497])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-436/igt@xe_eu_stall@non-blocking-re-enable.html
* igt@xe_eudebug@basic-close:
- shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#4837]) +6 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-435/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug_online@single-step:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#4837]) +3 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-8/igt@xe_eudebug_online@single-step.html
* igt@xe_eudebug_sriov@deny-sriov:
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#4518])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-6/igt@xe_eudebug_sriov@deny-sriov.html
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#4518])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-6/igt@xe_eudebug_sriov@deny-sriov.html
* igt@xe_evict@evict-large-external-cm:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#688]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-5/igt@xe_evict@evict-large-external-cm.html
* igt@xe_exec_basic@multigpu-no-exec-rebind:
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#2322]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-rebind.html
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#1392]) +2 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race:
- shard-dg2-set2: [PASS][125] -> [SKIP][126] ([Intel XE#1392]) +7 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-dg2-466/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html
* igt@xe_exec_compute_mode@once-userptr-invalidate-race:
- shard-bmg: [PASS][127] -> [DMESG-WARN][128] ([Intel XE#3428]) +2 other tests dmesg-warn
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-6/igt@xe_exec_compute_mode@once-userptr-invalidate-race.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-4/igt@xe_exec_compute_mode@once-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race:
- shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#288]) +15 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-433/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip-twice:
- shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#4837]) +3 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-3/igt@xe_exec_sip_eudebug@breakpoint-writesip-twice.html
* igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#4943]) +6 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-8/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-nomemset:
- shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#4915]) +139 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-432/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-nomemset.html
* igt@xe_exec_system_allocator@process-many-mmap-new-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#4943]) +6 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-5/igt@xe_exec_system_allocator@process-many-mmap-new-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset:
- shard-lnl: [PASS][134] -> [FAIL][135] ([Intel XE#5018]) +1 other test fail
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-lnl-8/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
* igt@xe_media_fill@media-fill:
- shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#2459] / [Intel XE#2596])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-7/igt@xe_media_fill@media-fill.html
- shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#560])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-435/igt@xe_media_fill@media-fill.html
- shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#560])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-8/igt@xe_media_fill@media-fill.html
* igt@xe_oa@mmio-triggered-reports-read:
- shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#5103])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-435/igt@xe_oa@mmio-triggered-reports-read.html
* igt@xe_oa@unprivileged-single-ctx-counters:
- shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-432/igt@xe_oa@unprivileged-single-ctx-counters.html
* igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][141] ([Intel XE#1173]) +1 other test fail
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-436/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2284])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-1/igt@xe_pm@d3cold-multiple-execs.html
- shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#2284] / [Intel XE#366])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-463/igt@xe_pm@d3cold-multiple-execs.html
- shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#2284] / [Intel XE#366])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-6/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-lnl: [PASS][145] -> [ABORT][146] ([Intel XE#1794])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-lnl-4/igt@xe_pm@s4-d3hot-basic-exec.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_pmu@gt-frequency:
- shard-dg2-set2: [PASS][147] -> [FAIL][148] ([Intel XE#4819]) +1 other test fail
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-dg2-433/igt@xe_pmu@gt-frequency.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-432/igt@xe_pmu@gt-frequency.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#944]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-2/igt@xe_query@multigpu-query-mem-usage.html
- shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#944]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-432/igt@xe_query@multigpu-query-mem-usage.html
- shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#944]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-5/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_render_copy@render-stress-2-copies:
- shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#4814])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-433/igt@xe_render_copy@render-stress-2-copies.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-2:
- shard-bmg: [FAIL][153] ([Intel XE#3718] / [Intel XE#827]) -> [PASS][154] +1 other test pass
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-2.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-2.html
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1:
- shard-lnl: [FAIL][155] ([Intel XE#911]) -> [PASS][156] +3 other tests pass
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-lnl-6/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [SKIP][157] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][158]
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [SKIP][159] ([Intel XE#2291]) -> [PASS][160] +5 other tests pass
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
- shard-dg2-set2: [INCOMPLETE][161] ([Intel XE#3226]) -> [PASS][162]
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-dg2-434/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-434/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_flip@2x-blocking-wf_vblank@ac-dp2-hdmi-a3:
- shard-bmg: [FAIL][163] ([Intel XE#2882]) -> [PASS][164] +5 other tests pass
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-3/igt@kms_flip@2x-blocking-wf_vblank@ac-dp2-hdmi-a3.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-3/igt@kms_flip@2x-blocking-wf_vblank@ac-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-bmg: [SKIP][165] ([Intel XE#2316]) -> [PASS][166] +6 other tests pass
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3:
- shard-bmg: [FAIL][167] ([Intel XE#3321]) -> [PASS][168]
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-bmg: [FAIL][169] ([Intel XE#2882] / [Intel XE#3098]) -> [PASS][170]
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a3:
- shard-bmg: [FAIL][171] ([Intel XE#3098]) -> [PASS][172]
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a3.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a3.html
* igt@kms_hdr@static-swap:
- shard-bmg: [SKIP][173] ([Intel XE#1503]) -> [PASS][174]
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-6/igt@kms_hdr@static-swap.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-4/igt@kms_hdr@static-swap.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [SKIP][175] ([Intel XE#4596]) -> [PASS][176] +1 other test pass
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [SKIP][177] ([Intel XE#2571]) -> [PASS][178]
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [FAIL][179] ([Intel XE#718]) -> [PASS][180]
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-lnl-6/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_vrr@negative-basic:
- shard-bmg: [SKIP][181] ([Intel XE#1499]) -> [PASS][182]
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-4/igt@kms_vrr@negative-basic.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-7/igt@kms_vrr@negative-basic.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap:
- shard-dg2-set2: [SKIP][183] ([Intel XE#1392]) -> [PASS][184] +7 other tests pass
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-436/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html
* igt@xe_exec_capture@reset:
- shard-dg2-set2: [FAIL][185] ([Intel XE#5016]) -> [PASS][186]
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-dg2-435/igt@xe_exec_capture@reset.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-435/igt@xe_exec_capture@reset.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-bmg: [DMESG-WARN][187] ([Intel XE#3876]) -> [PASS][188]
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-8/igt@xe_exec_reset@parallel-gt-reset.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-5/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- shard-dg2-set2: [TIMEOUT][189] -> [PASS][190]
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-dg2-433/igt@xe_pm@s2idle-vm-bind-userptr.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-dg2-434/igt@xe_pm@s2idle-vm-bind-userptr.html
#### Warnings ####
* igt@kms_content_protection@atomic:
- shard-bmg: [FAIL][191] ([Intel XE#1178]) -> [SKIP][192] ([Intel XE#2341])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-8/igt@kms_content_protection@atomic.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@srm:
- shard-bmg: [SKIP][193] ([Intel XE#2341]) -> [FAIL][194] ([Intel XE#1178]) +1 other test fail
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-1/igt@kms_content_protection@srm.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-8/igt@kms_content_protection@srm.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][195] ([Intel XE#2312]) -> [SKIP][196] ([Intel XE#2311]) +20 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][197] ([Intel XE#2311]) -> [SKIP][198] ([Intel XE#2312]) +17 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][199] ([Intel XE#2312]) -> [SKIP][200] ([Intel XE#4141]) +11 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][201] ([Intel XE#4141]) -> [SKIP][202] ([Intel XE#2312]) +11 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][203] ([Intel XE#2313]) -> [SKIP][204] ([Intel XE#2312]) +20 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][205] ([Intel XE#2312]) -> [SKIP][206] ([Intel XE#2313]) +19 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][207] ([Intel XE#3544]) -> [SKIP][208] ([Intel XE#3374] / [Intel XE#3544])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: [SKIP][209] ([Intel XE#4596]) -> [SKIP][210] ([Intel XE#5021]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8396/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-yf.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-yf.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[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#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[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#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#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[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#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#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[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#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[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#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[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#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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[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#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[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#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[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#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4497]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4497
[Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
[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#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[Intel XE#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4911
[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#5016]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5016
[Intel XE#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5084
[Intel XE#5103]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5103
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[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#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[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#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_8396 -> IGTPW_13243
IGTPW_13243: ad19034e269b9822a4605d25e109255fd290b9e6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8396: 8396
xe-3194-573b98ac3ff9ff95c3316789e97980277e4ffe2b: 573b98ac3ff9ff95c3316789e97980277e4ffe2b
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13243/index.html
[-- Attachment #2: Type: text/html, Size: 64412 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v3] tests/intel/xe_fault_injection: Ignore all errors while injecting fault
@ 2025-06-04 16:19 Jonathan Cavitt
2025-06-04 17:04 ` Kamil Konieczny
0 siblings, 1 reply; 10+ messages in thread
From: Jonathan Cavitt @ 2025-06-04 16:19 UTC (permalink / raw)
To: igt-dev
Cc: jonathan.cavitt, saurabhg.gupta, alex.zuo, satyanarayana.k.v.p,
michal.wajdeczko, daniele.ceraolospurio, lucas.demarchi,
francois.dugast, rodrigo.vivi, john.c.harrison, kamil.konieczny
From: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Currently, numerous fault messages have been included in the dmesg
ignore list, and this list continues to expand. Each time a new fault
injection point is introduced or a new feature is activated, additional
fault messages appear, making it cumbersome to manage the dmesg ignore
list.
However, we can safely assert that all dmesg reports that contain
*ERROR* in their message can be ignored, so add them to the dmesg ignore
list. This unfortunately does not include the device probe error
itself, so that must be added separately.
While we're here, we should also assert that any errors we see are only
coming from the target PCI device.
v2:
- Only ignore error-level dmesg reports (or, at least, reports with
*ERROR* in them), and device probe failues
- Add PCI data to regex (Michal)
v3: (Michal)
- Revert name change
- Add change log
- Remove fixes tag from commit
- Rename ignore_faults_in_dmesg to igt_ignore_dmesg_errors_from_dut, and
move to lib/igt_core.c
- Minor code fixes
v4:
- Return ignore_faults_in_dmesg to tests/intel/xe_fault_injection.c, but
keep it renamed to ignore_dmesg_errors_from_dut (Kamil)
Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
Suggested-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Suggested-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Suggested-by: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Francois Dugast <francois.dugast@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: John Harrison <john.c.harrison@intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
lib/igt_core.c | 1 +
tests/intel/xe_fault_injection.c | 39 ++++++++++++--------------------
2 files changed, 16 insertions(+), 24 deletions(-)
diff --git a/lib/igt_core.c b/lib/igt_core.c
index b06cdfd894..ad70718b4a 100644
--- a/lib/igt_core.c
+++ b/lib/igt_core.c
@@ -76,6 +76,7 @@
#include "igt_rc.h"
#include "igt_list.h"
#include "igt_map.h"
+#include "igt_device.h"
#include "igt_device_scan.h"
#include "igt_thread.h"
#include "igt_vec.h"
diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c
index 9fe6bfe351..14aaeebf5e 100644
--- a/tests/intel/xe_fault_injection.c
+++ b/tests/intel/xe_fault_injection.c
@@ -64,28 +64,19 @@ static int fail_function_open(void)
return debugfs_fail_function_dir_fd;
}
-static bool function_is_part_of_guc(const char function_name[])
+static void ignore_dmesg_errors_from_dut(int fd)
{
- return strstr(function_name, "_guc_") != NULL ||
- strstr(function_name, "_uc_") != NULL ||
- strstr(function_name, "_wopcm_") != NULL;
-}
-
-static void ignore_faults_in_dmesg(const char function_name[])
-{
- /* Driver probe is expected to fail in all cases, so ignore in igt_runner */
- char regex[1024] = "probe with driver xe failed with error -12";
-
/*
- * If GuC module fault is injected, GuC is expected to fail,
- * so also ignore GuC init failures in igt_runner.
+ * Driver probe is expected to fail in all cases, so ignore in igt_runner.
+ * Additionally, all error-level reports are expected, so ignore those as well.
*/
- if (function_is_part_of_guc(function_name)) {
- strcat(regex, "|GT[0-9a-fA-F]*: GuC init failed with -ENOMEM");
- strcat(regex, "|GT[0-9a-fA-F]*: Failed to initialize uC .-ENOMEM");
- strcat(regex, "|GT[0-9a-fA-F]*: Failed to enable GuC CT .-ENOMEM");
- strcat(regex, "|GT[0-9a-fA-F]*: GuC PC query task state failed: -ENOMEM");
- }
+ static const char *store = "probe with driver xe failed with error|\\*ERROR\\*";
+ char pci_slot[NAME_MAX];
+ char regex[1024];
+
+ /* Only block dmesg reports that target the pci slot of the given fd */
+ igt_device_get_pci_slot_name(fd, pci_slot);
+ snprintf(regex, sizeof(regex), "%s:.*(%s)", pci_slot, store);
igt_emit_ignore_dmesg_regex(regex);
}
@@ -234,7 +225,7 @@ inject_fault_probe(int fd, char pci_slot[], const char function_name[])
igt_info("Injecting error \"%s\" (%d) in function \"%s\"\n",
strerror(-INJECT_ERRNO), INJECT_ERRNO, function_name);
- ignore_faults_in_dmesg(function_name);
+ ignore_dmesg_errors_from_dut(fd);
injection_list_add(function_name);
set_retval(function_name, INJECT_ERRNO);
@@ -299,7 +290,7 @@ exec_queue_create_fail(int fd, struct drm_xe_engine_class_instance *instance,
igt_assert_eq(__xe_exec_queue_create(fd, vm, 1, 1, instance, 0, &exec_queue_id), 0);
xe_exec_queue_destroy(fd, exec_queue_id);
- ignore_faults_in_dmesg(function_name);
+ ignore_dmesg_errors_from_dut(fd);
injection_list_add(function_name);
set_retval(function_name, INJECT_ERRNO);
igt_assert(__xe_exec_queue_create(fd, vm, 1, 1, instance, 0, &exec_queue_id) != 0);
@@ -334,7 +325,7 @@ vm_create_fail(int fd, const char function_name[], unsigned int flags)
{
igt_assert_eq(simple_vm_create(fd, flags), 0);
- ignore_faults_in_dmesg(function_name);
+ ignore_dmesg_errors_from_dut(fd);
injection_list_add(function_name);
set_retval(function_name, INJECT_ERRNO);
igt_assert(simple_vm_create(fd, flags) != 0);
@@ -397,7 +388,7 @@ vm_bind_fail(int fd, const char function_name[])
igt_assert_eq(simple_vm_bind(fd, vm), 0);
- ignore_faults_in_dmesg(function_name);
+ ignore_dmesg_errors_from_dut(fd);
injection_list_add(function_name);
set_retval(function_name, INJECT_ERRNO);
igt_assert(simple_vm_bind(fd, vm) != 0);
@@ -445,7 +436,7 @@ oa_add_config_fail(int fd, int sysfs, int devid, const char function_name[])
igt_assert(igt_sysfs_scanf(sysfs, path, "%" PRIu64, &config_id) == 1);
igt_assert_eq(intel_xe_perf_ioctl(fd, DRM_XE_OBSERVATION_OP_REMOVE_CONFIG, &config_id), 0);
- ignore_faults_in_dmesg(function_name);
+ ignore_dmesg_errors_from_dut(fd);
injection_list_add(function_name);
set_retval(function_name, INJECT_ERRNO);
igt_assert_lt(intel_xe_perf_ioctl(fd, DRM_XE_OBSERVATION_OP_ADD_CONFIG, &config), 0);
--
2.43.0
^ permalink raw reply related [flat|nested] 10+ messages in thread* Re: [PATCH v3] tests/intel/xe_fault_injection: Ignore all errors while injecting fault
2025-06-04 16:19 [PATCH v3] tests/intel/xe_fault_injection: Ignore all errors while injecting fault Jonathan Cavitt
@ 2025-06-04 17:04 ` Kamil Konieczny
2025-06-04 17:09 ` Cavitt, Jonathan
0 siblings, 1 reply; 10+ messages in thread
From: Kamil Konieczny @ 2025-06-04 17:04 UTC (permalink / raw)
To: Jonathan Cavitt
Cc: igt-dev, saurabhg.gupta, alex.zuo, satyanarayana.k.v.p,
michal.wajdeczko, daniele.ceraolospurio, lucas.demarchi,
francois.dugast, rodrigo.vivi, john.c.harrison
Hi Jonathan,
On 2025-06-04 at 16:19:23 +0000, Jonathan Cavitt wrote:
> From: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
>
> Currently, numerous fault messages have been included in the dmesg
> ignore list, and this list continues to expand. Each time a new fault
> injection point is introduced or a new feature is activated, additional
> fault messages appear, making it cumbersome to manage the dmesg ignore
> list.
>
> However, we can safely assert that all dmesg reports that contain
> *ERROR* in their message can be ignored, so add them to the dmesg ignore
> list. This unfortunately does not include the device probe error
> itself, so that must be added separately.
>
> While we're here, we should also assert that any errors we see are only
> coming from the target PCI device.
>
> v2:
> - Only ignore error-level dmesg reports (or, at least, reports with
> *ERROR* in them), and device probe failues
> - Add PCI data to regex (Michal)
>
> v3: (Michal)
> - Revert name change
> - Add change log
> - Remove fixes tag from commit
> - Rename ignore_faults_in_dmesg to igt_ignore_dmesg_errors_from_dut, and
> move to lib/igt_core.c
> - Minor code fixes
>
> v4:
> - Return ignore_faults_in_dmesg to tests/intel/xe_fault_injection.c, but
> keep it renamed to ignore_dmesg_errors_from_dut (Kamil)
>
> Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
> Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
> Suggested-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Suggested-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
> Suggested-by: Lucas De Marchi <lucas.demarchi@intel.com>
> Cc: Francois Dugast <francois.dugast@intel.com>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Cc: John Harrison <john.c.harrison@intel.com>
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> lib/igt_core.c | 1 +
> tests/intel/xe_fault_injection.c | 39 ++++++++++++--------------------
> 2 files changed, 16 insertions(+), 24 deletions(-)
>
> diff --git a/lib/igt_core.c b/lib/igt_core.c
> index b06cdfd894..ad70718b4a 100644
> --- a/lib/igt_core.c
> +++ b/lib/igt_core.c
> @@ -76,6 +76,7 @@
> #include "igt_rc.h"
> #include "igt_list.h"
> #include "igt_map.h"
> +#include "igt_device.h"
Please drop this change.
Regards,
Kamil
> #include "igt_device_scan.h"
> #include "igt_thread.h"
> #include "igt_vec.h"
> diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c
> index 9fe6bfe351..14aaeebf5e 100644
> --- a/tests/intel/xe_fault_injection.c
> +++ b/tests/intel/xe_fault_injection.c
> @@ -64,28 +64,19 @@ static int fail_function_open(void)
> return debugfs_fail_function_dir_fd;
> }
>
> -static bool function_is_part_of_guc(const char function_name[])
> +static void ignore_dmesg_errors_from_dut(int fd)
> {
> - return strstr(function_name, "_guc_") != NULL ||
> - strstr(function_name, "_uc_") != NULL ||
> - strstr(function_name, "_wopcm_") != NULL;
> -}
> -
> -static void ignore_faults_in_dmesg(const char function_name[])
> -{
> - /* Driver probe is expected to fail in all cases, so ignore in igt_runner */
> - char regex[1024] = "probe with driver xe failed with error -12";
> -
> /*
> - * If GuC module fault is injected, GuC is expected to fail,
> - * so also ignore GuC init failures in igt_runner.
> + * Driver probe is expected to fail in all cases, so ignore in igt_runner.
> + * Additionally, all error-level reports are expected, so ignore those as well.
> */
> - if (function_is_part_of_guc(function_name)) {
> - strcat(regex, "|GT[0-9a-fA-F]*: GuC init failed with -ENOMEM");
> - strcat(regex, "|GT[0-9a-fA-F]*: Failed to initialize uC .-ENOMEM");
> - strcat(regex, "|GT[0-9a-fA-F]*: Failed to enable GuC CT .-ENOMEM");
> - strcat(regex, "|GT[0-9a-fA-F]*: GuC PC query task state failed: -ENOMEM");
> - }
> + static const char *store = "probe with driver xe failed with error|\\*ERROR\\*";
> + char pci_slot[NAME_MAX];
> + char regex[1024];
> +
> + /* Only block dmesg reports that target the pci slot of the given fd */
> + igt_device_get_pci_slot_name(fd, pci_slot);
> + snprintf(regex, sizeof(regex), "%s:.*(%s)", pci_slot, store);
>
> igt_emit_ignore_dmesg_regex(regex);
> }
> @@ -234,7 +225,7 @@ inject_fault_probe(int fd, char pci_slot[], const char function_name[])
> igt_info("Injecting error \"%s\" (%d) in function \"%s\"\n",
> strerror(-INJECT_ERRNO), INJECT_ERRNO, function_name);
>
> - ignore_faults_in_dmesg(function_name);
> + ignore_dmesg_errors_from_dut(fd);
> injection_list_add(function_name);
> set_retval(function_name, INJECT_ERRNO);
>
> @@ -299,7 +290,7 @@ exec_queue_create_fail(int fd, struct drm_xe_engine_class_instance *instance,
> igt_assert_eq(__xe_exec_queue_create(fd, vm, 1, 1, instance, 0, &exec_queue_id), 0);
> xe_exec_queue_destroy(fd, exec_queue_id);
>
> - ignore_faults_in_dmesg(function_name);
> + ignore_dmesg_errors_from_dut(fd);
> injection_list_add(function_name);
> set_retval(function_name, INJECT_ERRNO);
> igt_assert(__xe_exec_queue_create(fd, vm, 1, 1, instance, 0, &exec_queue_id) != 0);
> @@ -334,7 +325,7 @@ vm_create_fail(int fd, const char function_name[], unsigned int flags)
> {
> igt_assert_eq(simple_vm_create(fd, flags), 0);
>
> - ignore_faults_in_dmesg(function_name);
> + ignore_dmesg_errors_from_dut(fd);
> injection_list_add(function_name);
> set_retval(function_name, INJECT_ERRNO);
> igt_assert(simple_vm_create(fd, flags) != 0);
> @@ -397,7 +388,7 @@ vm_bind_fail(int fd, const char function_name[])
>
> igt_assert_eq(simple_vm_bind(fd, vm), 0);
>
> - ignore_faults_in_dmesg(function_name);
> + ignore_dmesg_errors_from_dut(fd);
> injection_list_add(function_name);
> set_retval(function_name, INJECT_ERRNO);
> igt_assert(simple_vm_bind(fd, vm) != 0);
> @@ -445,7 +436,7 @@ oa_add_config_fail(int fd, int sysfs, int devid, const char function_name[])
> igt_assert(igt_sysfs_scanf(sysfs, path, "%" PRIu64, &config_id) == 1);
> igt_assert_eq(intel_xe_perf_ioctl(fd, DRM_XE_OBSERVATION_OP_REMOVE_CONFIG, &config_id), 0);
>
> - ignore_faults_in_dmesg(function_name);
> + ignore_dmesg_errors_from_dut(fd);
> injection_list_add(function_name);
> set_retval(function_name, INJECT_ERRNO);
> igt_assert_lt(intel_xe_perf_ioctl(fd, DRM_XE_OBSERVATION_OP_ADD_CONFIG, &config), 0);
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 10+ messages in thread* RE: [PATCH v3] tests/intel/xe_fault_injection: Ignore all errors while injecting fault
2025-06-04 17:04 ` Kamil Konieczny
@ 2025-06-04 17:09 ` Cavitt, Jonathan
0 siblings, 0 replies; 10+ messages in thread
From: Cavitt, Jonathan @ 2025-06-04 17:09 UTC (permalink / raw)
To: Kamil Konieczny
Cc: igt-dev@lists.freedesktop.org, Gupta, saurabhg, Zuo, Alex,
K V P, Satyanarayana, Wajdeczko, Michal, Ceraolo Spurio, Daniele,
De Marchi, Lucas, Dugast, Francois, Vivi, Rodrigo,
Harrison, John C
-----Original Message-----
From: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Sent: Wednesday, June 4, 2025 10:04 AM
To: Cavitt, Jonathan <jonathan.cavitt@intel.com>
Cc: igt-dev@lists.freedesktop.org; Gupta, saurabhg <saurabhg.gupta@intel.com>; Zuo, Alex <alex.zuo@intel.com>; K V P, Satyanarayana <satyanarayana.k.v.p@intel.com>; Wajdeczko, Michal <Michal.Wajdeczko@intel.com>; Ceraolo Spurio, Daniele <daniele.ceraolospurio@intel.com>; De Marchi, Lucas <lucas.demarchi@intel.com>; Dugast, Francois <francois.dugast@intel.com>; Vivi, Rodrigo <rodrigo.vivi@intel.com>; Harrison, John C <john.c.harrison@intel.com>
Subject: Re: [PATCH v3] tests/intel/xe_fault_injection: Ignore all errors while injecting fault
>
> Hi Jonathan,
> On 2025-06-04 at 16:19:23 +0000, Jonathan Cavitt wrote:
> > From: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
> >
> > Currently, numerous fault messages have been included in the dmesg
> > ignore list, and this list continues to expand. Each time a new fault
> > injection point is introduced or a new feature is activated, additional
> > fault messages appear, making it cumbersome to manage the dmesg ignore
> > list.
> >
> > However, we can safely assert that all dmesg reports that contain
> > *ERROR* in their message can be ignored, so add them to the dmesg ignore
> > list. This unfortunately does not include the device probe error
> > itself, so that must be added separately.
> >
> > While we're here, we should also assert that any errors we see are only
> > coming from the target PCI device.
> >
> > v2:
> > - Only ignore error-level dmesg reports (or, at least, reports with
> > *ERROR* in them), and device probe failues
> > - Add PCI data to regex (Michal)
> >
> > v3: (Michal)
> > - Revert name change
> > - Add change log
> > - Remove fixes tag from commit
> > - Rename ignore_faults_in_dmesg to igt_ignore_dmesg_errors_from_dut, and
> > move to lib/igt_core.c
> > - Minor code fixes
> >
> > v4:
> > - Return ignore_faults_in_dmesg to tests/intel/xe_fault_injection.c, but
> > keep it renamed to ignore_dmesg_errors_from_dut (Kamil)
> >
> > Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
> > Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
> > Suggested-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> > Suggested-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
> > Suggested-by: Lucas De Marchi <lucas.demarchi@intel.com>
> > Cc: Francois Dugast <francois.dugast@intel.com>
> > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> > Cc: John Harrison <john.c.harrison@intel.com>
> > Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> > ---
> > lib/igt_core.c | 1 +
> > tests/intel/xe_fault_injection.c | 39 ++++++++++++--------------------
> > 2 files changed, 16 insertions(+), 24 deletions(-)
> >
> > diff --git a/lib/igt_core.c b/lib/igt_core.c
> > index b06cdfd894..ad70718b4a 100644
> > --- a/lib/igt_core.c
> > +++ b/lib/igt_core.c
> > @@ -76,6 +76,7 @@
> > #include "igt_rc.h"
> > #include "igt_list.h"
> > #include "igt_map.h"
> > +#include "igt_device.h"
>
> Please drop this change.
This was left in on accident. It's been removed now.
-Jonathan Cavitt
>
> Regards,
> Kamil
>
> > #include "igt_device_scan.h"
> > #include "igt_thread.h"
> > #include "igt_vec.h"
> > diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c
> > index 9fe6bfe351..14aaeebf5e 100644
> > --- a/tests/intel/xe_fault_injection.c
> > +++ b/tests/intel/xe_fault_injection.c
> > @@ -64,28 +64,19 @@ static int fail_function_open(void)
> > return debugfs_fail_function_dir_fd;
> > }
> >
> > -static bool function_is_part_of_guc(const char function_name[])
> > +static void ignore_dmesg_errors_from_dut(int fd)
> > {
> > - return strstr(function_name, "_guc_") != NULL ||
> > - strstr(function_name, "_uc_") != NULL ||
> > - strstr(function_name, "_wopcm_") != NULL;
> > -}
> > -
> > -static void ignore_faults_in_dmesg(const char function_name[])
> > -{
> > - /* Driver probe is expected to fail in all cases, so ignore in igt_runner */
> > - char regex[1024] = "probe with driver xe failed with error -12";
> > -
> > /*
> > - * If GuC module fault is injected, GuC is expected to fail,
> > - * so also ignore GuC init failures in igt_runner.
> > + * Driver probe is expected to fail in all cases, so ignore in igt_runner.
> > + * Additionally, all error-level reports are expected, so ignore those as well.
> > */
> > - if (function_is_part_of_guc(function_name)) {
> > - strcat(regex, "|GT[0-9a-fA-F]*: GuC init failed with -ENOMEM");
> > - strcat(regex, "|GT[0-9a-fA-F]*: Failed to initialize uC .-ENOMEM");
> > - strcat(regex, "|GT[0-9a-fA-F]*: Failed to enable GuC CT .-ENOMEM");
> > - strcat(regex, "|GT[0-9a-fA-F]*: GuC PC query task state failed: -ENOMEM");
> > - }
> > + static const char *store = "probe with driver xe failed with error|\\*ERROR\\*";
> > + char pci_slot[NAME_MAX];
> > + char regex[1024];
> > +
> > + /* Only block dmesg reports that target the pci slot of the given fd */
> > + igt_device_get_pci_slot_name(fd, pci_slot);
> > + snprintf(regex, sizeof(regex), "%s:.*(%s)", pci_slot, store);
> >
> > igt_emit_ignore_dmesg_regex(regex);
> > }
> > @@ -234,7 +225,7 @@ inject_fault_probe(int fd, char pci_slot[], const char function_name[])
> > igt_info("Injecting error \"%s\" (%d) in function \"%s\"\n",
> > strerror(-INJECT_ERRNO), INJECT_ERRNO, function_name);
> >
> > - ignore_faults_in_dmesg(function_name);
> > + ignore_dmesg_errors_from_dut(fd);
> > injection_list_add(function_name);
> > set_retval(function_name, INJECT_ERRNO);
> >
> > @@ -299,7 +290,7 @@ exec_queue_create_fail(int fd, struct drm_xe_engine_class_instance *instance,
> > igt_assert_eq(__xe_exec_queue_create(fd, vm, 1, 1, instance, 0, &exec_queue_id), 0);
> > xe_exec_queue_destroy(fd, exec_queue_id);
> >
> > - ignore_faults_in_dmesg(function_name);
> > + ignore_dmesg_errors_from_dut(fd);
> > injection_list_add(function_name);
> > set_retval(function_name, INJECT_ERRNO);
> > igt_assert(__xe_exec_queue_create(fd, vm, 1, 1, instance, 0, &exec_queue_id) != 0);
> > @@ -334,7 +325,7 @@ vm_create_fail(int fd, const char function_name[], unsigned int flags)
> > {
> > igt_assert_eq(simple_vm_create(fd, flags), 0);
> >
> > - ignore_faults_in_dmesg(function_name);
> > + ignore_dmesg_errors_from_dut(fd);
> > injection_list_add(function_name);
> > set_retval(function_name, INJECT_ERRNO);
> > igt_assert(simple_vm_create(fd, flags) != 0);
> > @@ -397,7 +388,7 @@ vm_bind_fail(int fd, const char function_name[])
> >
> > igt_assert_eq(simple_vm_bind(fd, vm), 0);
> >
> > - ignore_faults_in_dmesg(function_name);
> > + ignore_dmesg_errors_from_dut(fd);
> > injection_list_add(function_name);
> > set_retval(function_name, INJECT_ERRNO);
> > igt_assert(simple_vm_bind(fd, vm) != 0);
> > @@ -445,7 +436,7 @@ oa_add_config_fail(int fd, int sysfs, int devid, const char function_name[])
> > igt_assert(igt_sysfs_scanf(sysfs, path, "%" PRIu64, &config_id) == 1);
> > igt_assert_eq(intel_xe_perf_ioctl(fd, DRM_XE_OBSERVATION_OP_REMOVE_CONFIG, &config_id), 0);
> >
> > - ignore_faults_in_dmesg(function_name);
> > + ignore_dmesg_errors_from_dut(fd);
> > injection_list_add(function_name);
> > set_retval(function_name, INJECT_ERRNO);
> > igt_assert_lt(intel_xe_perf_ioctl(fd, DRM_XE_OBSERVATION_OP_ADD_CONFIG, &config), 0);
> > --
> > 2.43.0
> >
>
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2025-06-05 16:55 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-04 17:06 [PATCH v3] tests/intel/xe_fault_injection: Ignore all errors while injecting fault Jonathan Cavitt
2025-06-04 19:13 ` ✗ i915.CI.BAT: failure for tests/intel/xe_fault_injection: Ignore all errors while injecting fault (rev5) Patchwork
2025-06-04 19:47 ` ✓ Xe.CI.BAT: success " Patchwork
2025-06-04 20:06 ` [PATCH v3] tests/intel/xe_fault_injection: Ignore all errors while injecting fault Cavitt, Jonathan
2025-06-04 20:34 ` Michal Wajdeczko
2025-06-04 20:36 ` Cavitt, Jonathan
2025-06-05 16:55 ` ✗ Xe.CI.Full: failure for tests/intel/xe_fault_injection: Ignore all errors while injecting fault (rev5) Patchwork
-- strict thread matches above, loose matches on Subject: below --
2025-06-04 16:19 [PATCH v3] tests/intel/xe_fault_injection: Ignore all errors while injecting fault Jonathan Cavitt
2025-06-04 17:04 ` Kamil Konieczny
2025-06-04 17:09 ` Cavitt, Jonathan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox