* [PATCH 1/3] drm/xe/pf: Do not return an error for unrecognized VF events
@ 2026-06-24 9:56 Michał Winiarski
2026-06-24 9:56 ` [PATCH 2/3] drm/xe/pf: Add support for VF Pause abort event Michał Winiarski
` (6 more replies)
0 siblings, 7 replies; 9+ messages in thread
From: Michał Winiarski @ 2026-06-24 9:56 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Michał Winiarski
Notifications about VF state are generally not considered critical
enough to warrant PF GT-level error and subsequent reset.
Convert the error to dmesg log.
Reported-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Signed-off-by: Michał Winiarski <michal.winiarski@intel.com>
---
drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c b/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c
index 058585f063a93..65f015d0ede51 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c
@@ -1973,7 +1973,7 @@ static int pf_handle_vf_event(struct xe_gt *gt, u32 vfid, u32 eventid)
case GUC_PF_NOTIFY_VF_FIXUP_DONE:
break;
default:
- return -ENOPKG;
+ xe_gt_sriov_notice(gt, "unrecognized VF%u event %#x\n", vfid, eventid);
}
return 0;
}
--
2.54.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 2/3] drm/xe/pf: Add support for VF Pause abort event
2026-06-24 9:56 [PATCH 1/3] drm/xe/pf: Do not return an error for unrecognized VF events Michał Winiarski
@ 2026-06-24 9:56 ` Michał Winiarski
2026-06-24 9:56 ` [PATCH 3/3] drm/xe/pf: Add the definition of VF resfix " Michał Winiarski
` (5 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Michał Winiarski @ 2026-06-24 9:56 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Michał Winiarski
GuC can notify the PF that the VF Pause has been aborted.
Handle it on the PF side by moving the VF into PAUSE_FAILED state.
Signed-off-by: Michał Winiarski <michal.winiarski@intel.com>
---
drivers/gpu/drm/xe/abi/guc_actions_sriov_abi.h | 2 ++
drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c | 14 ++++++++++++++
2 files changed, 16 insertions(+)
diff --git a/drivers/gpu/drm/xe/abi/guc_actions_sriov_abi.h b/drivers/gpu/drm/xe/abi/guc_actions_sriov_abi.h
index d9f21202e1a9f..8665b8c5b7336 100644
--- a/drivers/gpu/drm/xe/abi/guc_actions_sriov_abi.h
+++ b/drivers/gpu/drm/xe/abi/guc_actions_sriov_abi.h
@@ -229,6 +229,7 @@
* | | | - _`GUC_PF_NOTIFY_VF_FLR_DONE` = 2 |
* | | | - _`GUC_PF_NOTIFY_VF_PAUSE_DONE` = 3 |
* | | | - _`GUC_PF_NOTIFY_VF_FIXUP_DONE` = 4 |
+ * | | | - _`GUC_PF_NOTIFY_VF_PAUSE_ABORTED` = 5 |
* +---+-------+--------------------------------------------------------------+
*/
#define GUC_ACTION_GUC2PF_VF_STATE_NOTIFY 0x5106u
@@ -242,6 +243,7 @@
#define GUC_PF_NOTIFY_VF_FLR_DONE 2u
#define GUC_PF_NOTIFY_VF_PAUSE_DONE 3u
#define GUC_PF_NOTIFY_VF_FIXUP_DONE 4u
+#define GUC_PF_NOTIFY_VF_PAUSE_ABORTED 5u
/**
* DOC: VF2GUC_MATCH_VERSION
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c b/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c
index 65f015d0ede51..82957c596b683 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c
@@ -1953,6 +1953,17 @@ static void pf_handle_vf_pause_done(struct xe_gt *gt, u32 vfid)
pf_enter_vf_pause_guc_done(gt, vfid);
}
+static void pf_handle_vf_pause_aborted(struct xe_gt *gt, u32 vfid)
+{
+ if (!pf_exit_pause_wait_guc(gt, vfid)) {
+ xe_gt_sriov_dbg(gt, "Received out of order 'VF%u PAUSE aborted'\n", vfid);
+ pf_enter_vf_mismatch(gt, vfid);
+ return;
+ }
+
+ pf_enter_vf_pause_failed(gt, vfid);
+}
+
static int pf_handle_vf_event(struct xe_gt *gt, u32 vfid, u32 eventid)
{
xe_gt_sriov_dbg_verbose(gt, "received VF%u event %#x\n", vfid, eventid);
@@ -1972,6 +1983,9 @@ static int pf_handle_vf_event(struct xe_gt *gt, u32 vfid, u32 eventid)
break;
case GUC_PF_NOTIFY_VF_FIXUP_DONE:
break;
+ case GUC_PF_NOTIFY_VF_PAUSE_ABORTED:
+ pf_handle_vf_pause_aborted(gt, vfid);
+ break;
default:
xe_gt_sriov_notice(gt, "unrecognized VF%u event %#x\n", vfid, eventid);
}
--
2.54.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 3/3] drm/xe/pf: Add the definition of VF resfix abort event
2026-06-24 9:56 [PATCH 1/3] drm/xe/pf: Do not return an error for unrecognized VF events Michał Winiarski
2026-06-24 9:56 ` [PATCH 2/3] drm/xe/pf: Add support for VF Pause abort event Michał Winiarski
@ 2026-06-24 9:56 ` Michał Winiarski
2026-06-24 12:02 ` K V P, Satyanarayana
2026-06-24 10:02 ` ✗ CI.checkpatch: warning for series starting with [1/3] drm/xe/pf: Do not return an error for unrecognized VF events Patchwork
` (4 subsequent siblings)
6 siblings, 1 reply; 9+ messages in thread
From: Michał Winiarski @ 2026-06-24 9:56 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Michał Winiarski
The VF RESFIX_ABORT event is similar to FIXUP_DONE event, in that
there's no handling required from PF perspective.
Add the definition to avoid the "unrecognized event" message.
Signed-off-by: Michał Winiarski <michal.winiarski@intel.com>
---
drivers/gpu/drm/xe/abi/guc_actions_sriov_abi.h | 2 ++
drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c | 2 ++
2 files changed, 4 insertions(+)
diff --git a/drivers/gpu/drm/xe/abi/guc_actions_sriov_abi.h b/drivers/gpu/drm/xe/abi/guc_actions_sriov_abi.h
index 8665b8c5b7336..59c52b7c21ab6 100644
--- a/drivers/gpu/drm/xe/abi/guc_actions_sriov_abi.h
+++ b/drivers/gpu/drm/xe/abi/guc_actions_sriov_abi.h
@@ -230,6 +230,7 @@
* | | | - _`GUC_PF_NOTIFY_VF_PAUSE_DONE` = 3 |
* | | | - _`GUC_PF_NOTIFY_VF_FIXUP_DONE` = 4 |
* | | | - _`GUC_PF_NOTIFY_VF_PAUSE_ABORTED` = 5 |
+ * | | | - _`GUC_PF_NOTIFY_VF_RESFIX_ABORTED` = 6 |
* +---+-------+--------------------------------------------------------------+
*/
#define GUC_ACTION_GUC2PF_VF_STATE_NOTIFY 0x5106u
@@ -244,6 +245,7 @@
#define GUC_PF_NOTIFY_VF_PAUSE_DONE 3u
#define GUC_PF_NOTIFY_VF_FIXUP_DONE 4u
#define GUC_PF_NOTIFY_VF_PAUSE_ABORTED 5u
+#define GUC_PF_NOTIFY_VF_RESFIX_ABORTED 6u
/**
* DOC: VF2GUC_MATCH_VERSION
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c b/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c
index 82957c596b683..2762fff78f113 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c
@@ -1986,6 +1986,8 @@ static int pf_handle_vf_event(struct xe_gt *gt, u32 vfid, u32 eventid)
case GUC_PF_NOTIFY_VF_PAUSE_ABORTED:
pf_handle_vf_pause_aborted(gt, vfid);
break;
+ case GUC_PF_NOTIFY_VF_RESFIX_ABORTED:
+ break;
default:
xe_gt_sriov_notice(gt, "unrecognized VF%u event %#x\n", vfid, eventid);
}
--
2.54.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✗ CI.checkpatch: warning for series starting with [1/3] drm/xe/pf: Do not return an error for unrecognized VF events
2026-06-24 9:56 [PATCH 1/3] drm/xe/pf: Do not return an error for unrecognized VF events Michał Winiarski
2026-06-24 9:56 ` [PATCH 2/3] drm/xe/pf: Add support for VF Pause abort event Michał Winiarski
2026-06-24 9:56 ` [PATCH 3/3] drm/xe/pf: Add the definition of VF resfix " Michał Winiarski
@ 2026-06-24 10:02 ` Patchwork
2026-06-24 10:03 ` ✓ CI.KUnit: success " Patchwork
` (3 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-06-24 10:02 UTC (permalink / raw)
To: Michał Winiarski; +Cc: intel-xe
== Series Details ==
Series: series starting with [1/3] drm/xe/pf: Do not return an error for unrecognized VF events
URL : https://patchwork.freedesktop.org/series/169091/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
061140b9bc586ae7f40abc1249c97e1cc72d1b9d
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 7aad9b8d4ee7dbb17d44efd1b1aebfb198cab97a
Author: Michał Winiarski <michal.winiarski@intel.com>
Date: Wed Jun 24 11:56:34 2026 +0200
drm/xe/pf: Add the definition of VF resfix abort event
The VF RESFIX_ABORT event is similar to FIXUP_DONE event, in that
there's no handling required from PF perspective.
Add the definition to avoid the "unrecognized event" message.
Signed-off-by: Michał Winiarski <michal.winiarski@intel.com>
+ /mt/dim checkpatch b2817f6a1517bc9ecdef5229b84e8a44d983de82 drm-intel
577b40dfbdb3 drm/xe/pf: Do not return an error for unrecognized VF events
-:13: WARNING:BAD_REPORTED_BY_LINK: Reported-by: should be immediately followed by Closes: with a URL to the report
#13:
Reported-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Signed-off-by: Michał Winiarski <michal.winiarski@intel.com>
total: 0 errors, 1 warnings, 0 checks, 8 lines checked
b101faf39066 drm/xe/pf: Add support for VF Pause abort event
7aad9b8d4ee7 drm/xe/pf: Add the definition of VF resfix abort event
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ CI.KUnit: success for series starting with [1/3] drm/xe/pf: Do not return an error for unrecognized VF events
2026-06-24 9:56 [PATCH 1/3] drm/xe/pf: Do not return an error for unrecognized VF events Michał Winiarski
` (2 preceding siblings ...)
2026-06-24 10:02 ` ✗ CI.checkpatch: warning for series starting with [1/3] drm/xe/pf: Do not return an error for unrecognized VF events Patchwork
@ 2026-06-24 10:03 ` Patchwork
2026-06-24 11:59 ` [PATCH 1/3] " K V P, Satyanarayana
` (2 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-06-24 10:03 UTC (permalink / raw)
To: Michał Winiarski; +Cc: intel-xe
== Series Details ==
Series: series starting with [1/3] drm/xe/pf: Do not return an error for unrecognized VF events
URL : https://patchwork.freedesktop.org/series/169091/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[10:02:35] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[10:02:39] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[10:03:11] Starting KUnit Kernel (1/1)...
[10:03:11] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[10:03:11] ================== guc_buf (11 subtests) ===================
[10:03:11] [PASSED] test_smallest
[10:03:11] [PASSED] test_largest
[10:03:11] [PASSED] test_granular
[10:03:11] [PASSED] test_unique
[10:03:11] [PASSED] test_overlap
[10:03:11] [PASSED] test_reusable
[10:03:11] [PASSED] test_too_big
[10:03:11] [PASSED] test_flush
[10:03:11] [PASSED] test_lookup
[10:03:11] [PASSED] test_data
[10:03:11] [PASSED] test_class
[10:03:11] ===================== [PASSED] guc_buf =====================
[10:03:11] =================== guc_dbm (7 subtests) ===================
[10:03:11] [PASSED] test_empty
[10:03:11] [PASSED] test_default
[10:03:11] ======================== test_size ========================
[10:03:11] [PASSED] 4
[10:03:11] [PASSED] 8
[10:03:11] [PASSED] 32
[10:03:11] [PASSED] 256
[10:03:11] ==================== [PASSED] test_size ====================
[10:03:11] ======================= test_reuse ========================
[10:03:11] [PASSED] 4
[10:03:11] [PASSED] 8
[10:03:11] [PASSED] 32
[10:03:11] [PASSED] 256
[10:03:11] =================== [PASSED] test_reuse ====================
[10:03:11] =================== test_range_overlap ====================
[10:03:11] [PASSED] 4
[10:03:11] [PASSED] 8
[10:03:11] [PASSED] 32
[10:03:11] [PASSED] 256
[10:03:11] =============== [PASSED] test_range_overlap ================
[10:03:11] =================== test_range_compact ====================
[10:03:11] [PASSED] 4
[10:03:11] [PASSED] 8
[10:03:11] [PASSED] 32
[10:03:11] [PASSED] 256
[10:03:11] =============== [PASSED] test_range_compact ================
[10:03:11] ==================== test_range_spare =====================
[10:03:11] [PASSED] 4
[10:03:11] [PASSED] 8
[10:03:11] [PASSED] 32
[10:03:11] [PASSED] 256
[10:03:11] ================ [PASSED] test_range_spare =================
[10:03:11] ===================== [PASSED] guc_dbm =====================
[10:03:11] =================== guc_idm (6 subtests) ===================
[10:03:11] [PASSED] bad_init
[10:03:11] [PASSED] no_init
[10:03:11] [PASSED] init_fini
[10:03:11] [PASSED] check_used
[10:03:11] [PASSED] check_quota
[10:03:11] [PASSED] check_all
[10:03:11] ===================== [PASSED] guc_idm =====================
[10:03:11] ================== no_relay (3 subtests) ===================
[10:03:11] [PASSED] xe_drops_guc2pf_if_not_ready
[10:03:11] [PASSED] xe_drops_guc2vf_if_not_ready
[10:03:11] [PASSED] xe_rejects_send_if_not_ready
[10:03:11] ==================== [PASSED] no_relay =====================
[10:03:11] ================== pf_relay (14 subtests) ==================
[10:03:11] [PASSED] pf_rejects_guc2pf_too_short
[10:03:11] [PASSED] pf_rejects_guc2pf_too_long
[10:03:11] [PASSED] pf_rejects_guc2pf_no_payload
[10:03:11] [PASSED] pf_fails_no_payload
[10:03:11] [PASSED] pf_fails_bad_origin
[10:03:11] [PASSED] pf_fails_bad_type
[10:03:11] [PASSED] pf_txn_reports_error
[10:03:11] [PASSED] pf_txn_sends_pf2guc
[10:03:11] [PASSED] pf_sends_pf2guc
[10:03:11] [SKIPPED] pf_loopback_nop
[10:03:11] [SKIPPED] pf_loopback_echo
[10:03:11] [SKIPPED] pf_loopback_fail
[10:03:11] [SKIPPED] pf_loopback_busy
[10:03:11] [SKIPPED] pf_loopback_retry
[10:03:11] ==================== [PASSED] pf_relay =====================
[10:03:11] ================== vf_relay (3 subtests) ===================
[10:03:11] [PASSED] vf_rejects_guc2vf_too_short
[10:03:11] [PASSED] vf_rejects_guc2vf_too_long
[10:03:11] [PASSED] vf_rejects_guc2vf_no_payload
[10:03:11] ==================== [PASSED] vf_relay =====================
[10:03:11] ================ pf_gt_config (9 subtests) =================
[10:03:11] [PASSED] fair_contexts_1vf
[10:03:11] [PASSED] fair_doorbells_1vf
[10:03:11] [PASSED] fair_ggtt_1vf
[10:03:11] ====================== fair_vram_1vf ======================
[10:03:11] [PASSED] 3.50 GiB
[10:03:11] [PASSED] 11.5 GiB
[10:03:11] [PASSED] 15.5 GiB
[10:03:11] [PASSED] 31.5 GiB
[10:03:11] [PASSED] 63.5 GiB
[10:03:11] [PASSED] 1.91 GiB
[10:03:11] ================== [PASSED] fair_vram_1vf ==================
[10:03:11] ================ fair_vram_1vf_admin_only =================
[10:03:11] [PASSED] 3.50 GiB
[10:03:11] [PASSED] 11.5 GiB
[10:03:11] [PASSED] 15.5 GiB
[10:03:11] [PASSED] 31.5 GiB
[10:03:11] [PASSED] 63.5 GiB
[10:03:11] [PASSED] 1.91 GiB
[10:03:11] ============ [PASSED] fair_vram_1vf_admin_only =============
[10:03:11] ====================== fair_contexts ======================
[10:03:11] [PASSED] 1 VF
[10:03:11] [PASSED] 2 VFs
[10:03:11] [PASSED] 3 VFs
[10:03:11] [PASSED] 4 VFs
[10:03:11] [PASSED] 5 VFs
[10:03:11] [PASSED] 6 VFs
[10:03:11] [PASSED] 7 VFs
[10:03:11] [PASSED] 8 VFs
[10:03:11] [PASSED] 9 VFs
[10:03:11] [PASSED] 10 VFs
[10:03:11] [PASSED] 11 VFs
[10:03:11] [PASSED] 12 VFs
[10:03:11] [PASSED] 13 VFs
[10:03:11] [PASSED] 14 VFs
[10:03:11] [PASSED] 15 VFs
[10:03:11] [PASSED] 16 VFs
[10:03:11] [PASSED] 17 VFs
[10:03:11] [PASSED] 18 VFs
[10:03:11] [PASSED] 19 VFs
[10:03:11] [PASSED] 20 VFs
[10:03:11] [PASSED] 21 VFs
[10:03:11] [PASSED] 22 VFs
[10:03:11] [PASSED] 23 VFs
[10:03:11] [PASSED] 24 VFs
[10:03:11] [PASSED] 25 VFs
[10:03:11] [PASSED] 26 VFs
[10:03:11] [PASSED] 27 VFs
[10:03:11] [PASSED] 28 VFs
[10:03:11] [PASSED] 29 VFs
[10:03:11] [PASSED] 30 VFs
[10:03:11] [PASSED] 31 VFs
[10:03:11] [PASSED] 32 VFs
[10:03:11] [PASSED] 33 VFs
[10:03:11] [PASSED] 34 VFs
[10:03:11] [PASSED] 35 VFs
[10:03:11] [PASSED] 36 VFs
[10:03:11] [PASSED] 37 VFs
[10:03:11] [PASSED] 38 VFs
[10:03:11] [PASSED] 39 VFs
[10:03:11] [PASSED] 40 VFs
[10:03:11] [PASSED] 41 VFs
[10:03:11] [PASSED] 42 VFs
[10:03:11] [PASSED] 43 VFs
[10:03:11] [PASSED] 44 VFs
[10:03:11] [PASSED] 45 VFs
[10:03:11] [PASSED] 46 VFs
[10:03:11] [PASSED] 47 VFs
[10:03:11] [PASSED] 48 VFs
[10:03:11] [PASSED] 49 VFs
[10:03:11] [PASSED] 50 VFs
[10:03:11] [PASSED] 51 VFs
[10:03:11] [PASSED] 52 VFs
[10:03:11] [PASSED] 53 VFs
[10:03:11] [PASSED] 54 VFs
[10:03:11] [PASSED] 55 VFs
[10:03:11] [PASSED] 56 VFs
[10:03:11] [PASSED] 57 VFs
[10:03:11] [PASSED] 58 VFs
[10:03:11] [PASSED] 59 VFs
[10:03:11] [PASSED] 60 VFs
[10:03:11] [PASSED] 61 VFs
[10:03:11] [PASSED] 62 VFs
[10:03:11] [PASSED] 63 VFs
[10:03:11] ================== [PASSED] fair_contexts ==================
[10:03:11] ===================== fair_doorbells ======================
[10:03:11] [PASSED] 1 VF
[10:03:11] [PASSED] 2 VFs
[10:03:11] [PASSED] 3 VFs
[10:03:11] [PASSED] 4 VFs
[10:03:11] [PASSED] 5 VFs
[10:03:11] [PASSED] 6 VFs
[10:03:11] [PASSED] 7 VFs
[10:03:11] [PASSED] 8 VFs
[10:03:11] [PASSED] 9 VFs
[10:03:11] [PASSED] 10 VFs
[10:03:11] [PASSED] 11 VFs
[10:03:11] [PASSED] 12 VFs
[10:03:11] [PASSED] 13 VFs
[10:03:11] [PASSED] 14 VFs
[10:03:11] [PASSED] 15 VFs
[10:03:11] [PASSED] 16 VFs
[10:03:11] [PASSED] 17 VFs
[10:03:11] [PASSED] 18 VFs
[10:03:11] [PASSED] 19 VFs
[10:03:11] [PASSED] 20 VFs
[10:03:11] [PASSED] 21 VFs
[10:03:11] [PASSED] 22 VFs
[10:03:11] [PASSED] 23 VFs
[10:03:11] [PASSED] 24 VFs
[10:03:11] [PASSED] 25 VFs
[10:03:11] [PASSED] 26 VFs
[10:03:11] [PASSED] 27 VFs
[10:03:11] [PASSED] 28 VFs
[10:03:11] [PASSED] 29 VFs
[10:03:11] [PASSED] 30 VFs
[10:03:11] [PASSED] 31 VFs
[10:03:11] [PASSED] 32 VFs
[10:03:11] [PASSED] 33 VFs
[10:03:11] [PASSED] 34 VFs
[10:03:11] [PASSED] 35 VFs
[10:03:11] [PASSED] 36 VFs
[10:03:11] [PASSED] 37 VFs
[10:03:11] [PASSED] 38 VFs
[10:03:11] [PASSED] 39 VFs
[10:03:11] [PASSED] 40 VFs
[10:03:11] [PASSED] 41 VFs
[10:03:11] [PASSED] 42 VFs
[10:03:11] [PASSED] 43 VFs
[10:03:11] [PASSED] 44 VFs
[10:03:11] [PASSED] 45 VFs
[10:03:11] [PASSED] 46 VFs
[10:03:11] [PASSED] 47 VFs
[10:03:11] [PASSED] 48 VFs
[10:03:11] [PASSED] 49 VFs
[10:03:11] [PASSED] 50 VFs
[10:03:11] [PASSED] 51 VFs
[10:03:11] [PASSED] 52 VFs
[10:03:11] [PASSED] 53 VFs
[10:03:11] [PASSED] 54 VFs
[10:03:11] [PASSED] 55 VFs
[10:03:11] [PASSED] 56 VFs
[10:03:11] [PASSED] 57 VFs
[10:03:11] [PASSED] 58 VFs
[10:03:11] [PASSED] 59 VFs
[10:03:11] [PASSED] 60 VFs
[10:03:11] [PASSED] 61 VFs
[10:03:11] [PASSED] 62 VFs
[10:03:11] [PASSED] 63 VFs
[10:03:11] ================= [PASSED] fair_doorbells ==================
[10:03:11] ======================== fair_ggtt ========================
[10:03:11] [PASSED] 1 VF
[10:03:11] [PASSED] 2 VFs
[10:03:11] [PASSED] 3 VFs
[10:03:11] [PASSED] 4 VFs
[10:03:11] [PASSED] 5 VFs
[10:03:11] [PASSED] 6 VFs
[10:03:11] [PASSED] 7 VFs
[10:03:11] [PASSED] 8 VFs
[10:03:11] [PASSED] 9 VFs
[10:03:11] [PASSED] 10 VFs
[10:03:11] [PASSED] 11 VFs
[10:03:11] [PASSED] 12 VFs
[10:03:11] [PASSED] 13 VFs
[10:03:11] [PASSED] 14 VFs
[10:03:11] [PASSED] 15 VFs
[10:03:11] [PASSED] 16 VFs
[10:03:11] [PASSED] 17 VFs
[10:03:11] [PASSED] 18 VFs
[10:03:11] [PASSED] 19 VFs
[10:03:11] [PASSED] 20 VFs
[10:03:11] [PASSED] 21 VFs
[10:03:11] [PASSED] 22 VFs
[10:03:11] [PASSED] 23 VFs
[10:03:11] [PASSED] 24 VFs
[10:03:11] [PASSED] 25 VFs
[10:03:11] [PASSED] 26 VFs
[10:03:11] [PASSED] 27 VFs
[10:03:11] [PASSED] 28 VFs
[10:03:11] [PASSED] 29 VFs
[10:03:11] [PASSED] 30 VFs
[10:03:11] [PASSED] 31 VFs
[10:03:11] [PASSED] 32 VFs
[10:03:11] [PASSED] 33 VFs
[10:03:11] [PASSED] 34 VFs
[10:03:11] [PASSED] 35 VFs
[10:03:11] [PASSED] 36 VFs
[10:03:11] [PASSED] 37 VFs
[10:03:11] [PASSED] 38 VFs
[10:03:11] [PASSED] 39 VFs
[10:03:11] [PASSED] 40 VFs
[10:03:11] [PASSED] 41 VFs
[10:03:11] [PASSED] 42 VFs
[10:03:11] [PASSED] 43 VFs
[10:03:11] [PASSED] 44 VFs
[10:03:11] [PASSED] 45 VFs
[10:03:11] [PASSED] 46 VFs
[10:03:11] [PASSED] 47 VFs
[10:03:11] [PASSED] 48 VFs
[10:03:11] [PASSED] 49 VFs
[10:03:11] [PASSED] 50 VFs
[10:03:11] [PASSED] 51 VFs
[10:03:11] [PASSED] 52 VFs
[10:03:11] [PASSED] 53 VFs
[10:03:11] [PASSED] 54 VFs
[10:03:11] [PASSED] 55 VFs
[10:03:11] [PASSED] 56 VFs
[10:03:11] [PASSED] 57 VFs
[10:03:11] [PASSED] 58 VFs
[10:03:11] [PASSED] 59 VFs
[10:03:11] [PASSED] 60 VFs
[10:03:11] [PASSED] 61 VFs
[10:03:11] [PASSED] 62 VFs
[10:03:11] [PASSED] 63 VFs
[10:03:11] ==================== [PASSED] fair_ggtt ====================
[10:03:11] ======================== fair_vram ========================
[10:03:11] [PASSED] 1 VF
[10:03:11] [PASSED] 2 VFs
[10:03:11] [PASSED] 3 VFs
[10:03:11] [PASSED] 4 VFs
[10:03:11] [PASSED] 5 VFs
[10:03:11] [PASSED] 6 VFs
[10:03:11] [PASSED] 7 VFs
[10:03:11] [PASSED] 8 VFs
[10:03:11] [PASSED] 9 VFs
[10:03:11] [PASSED] 10 VFs
[10:03:11] [PASSED] 11 VFs
[10:03:11] [PASSED] 12 VFs
[10:03:11] [PASSED] 13 VFs
[10:03:11] [PASSED] 14 VFs
[10:03:11] [PASSED] 15 VFs
[10:03:11] [PASSED] 16 VFs
[10:03:11] [PASSED] 17 VFs
[10:03:11] [PASSED] 18 VFs
[10:03:11] [PASSED] 19 VFs
[10:03:11] [PASSED] 20 VFs
[10:03:11] [PASSED] 21 VFs
[10:03:11] [PASSED] 22 VFs
[10:03:11] [PASSED] 23 VFs
[10:03:11] [PASSED] 24 VFs
[10:03:11] [PASSED] 25 VFs
[10:03:11] [PASSED] 26 VFs
[10:03:11] [PASSED] 27 VFs
[10:03:11] [PASSED] 28 VFs
[10:03:11] [PASSED] 29 VFs
[10:03:11] [PASSED] 30 VFs
[10:03:11] [PASSED] 31 VFs
[10:03:11] [PASSED] 32 VFs
[10:03:11] [PASSED] 33 VFs
[10:03:11] [PASSED] 34 VFs
[10:03:11] [PASSED] 35 VFs
[10:03:11] [PASSED] 36 VFs
[10:03:11] [PASSED] 37 VFs
[10:03:11] [PASSED] 38 VFs
[10:03:11] [PASSED] 39 VFs
[10:03:11] [PASSED] 40 VFs
[10:03:11] [PASSED] 41 VFs
[10:03:11] [PASSED] 42 VFs
[10:03:11] [PASSED] 43 VFs
[10:03:11] [PASSED] 44 VFs
[10:03:11] [PASSED] 45 VFs
[10:03:11] [PASSED] 46 VFs
[10:03:11] [PASSED] 47 VFs
[10:03:11] [PASSED] 48 VFs
[10:03:11] [PASSED] 49 VFs
[10:03:11] [PASSED] 50 VFs
[10:03:11] [PASSED] 51 VFs
[10:03:11] [PASSED] 52 VFs
[10:03:11] [PASSED] 53 VFs
[10:03:11] [PASSED] 54 VFs
[10:03:11] [PASSED] 55 VFs
[10:03:11] [PASSED] 56 VFs
[10:03:11] [PASSED] 57 VFs
[10:03:11] [PASSED] 58 VFs
[10:03:11] [PASSED] 59 VFs
[10:03:11] [PASSED] 60 VFs
[10:03:11] [PASSED] 61 VFs
[10:03:11] [PASSED] 62 VFs
[10:03:11] [PASSED] 63 VFs
[10:03:11] ==================== [PASSED] fair_vram ====================
[10:03:11] ================== [PASSED] pf_gt_config ===================
[10:03:11] ===================== lmtt (1 subtest) =====================
[10:03:11] ======================== test_ops =========================
[10:03:11] [PASSED] 2-level
[10:03:11] [PASSED] multi-level
[10:03:11] ==================== [PASSED] test_ops =====================
[10:03:11] ====================== [PASSED] lmtt =======================
[10:03:11] ================= pf_service (11 subtests) =================
[10:03:11] [PASSED] pf_negotiate_any
[10:03:11] [PASSED] pf_negotiate_base_match
[10:03:11] [PASSED] pf_negotiate_base_newer
[10:03:11] [PASSED] pf_negotiate_base_next
[10:03:11] [SKIPPED] pf_negotiate_base_older
[10:03:11] [PASSED] pf_negotiate_base_prev
[10:03:11] [PASSED] pf_negotiate_latest_match
[10:03:11] [PASSED] pf_negotiate_latest_newer
[10:03:11] [PASSED] pf_negotiate_latest_next
[10:03:11] [SKIPPED] pf_negotiate_latest_older
[10:03:11] [SKIPPED] pf_negotiate_latest_prev
[10:03:11] =================== [PASSED] pf_service ====================
[10:03:11] ================= xe_guc_g2g (2 subtests) ==================
[10:03:11] ============== xe_live_guc_g2g_kunit_default ==============
[10:03:11] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[10:03:11] ============== xe_live_guc_g2g_kunit_allmem ===============
[10:03:11] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[10:03:11] =================== [SKIPPED] xe_guc_g2g ===================
[10:03:11] =================== xe_mocs (2 subtests) ===================
[10:03:11] ================ xe_live_mocs_kernel_kunit ================
[10:03:11] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[10:03:11] ================ xe_live_mocs_reset_kunit =================
[10:03:11] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[10:03:11] ==================== [SKIPPED] xe_mocs =====================
[10:03:11] ================= xe_migrate (2 subtests) ==================
[10:03:11] ================= xe_migrate_sanity_kunit =================
[10:03:11] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[10:03:11] ================== xe_validate_ccs_kunit ==================
[10:03:11] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[10:03:11] =================== [SKIPPED] xe_migrate ===================
[10:03:11] ================== xe_dma_buf (1 subtest) ==================
[10:03:11] ==================== xe_dma_buf_kunit =====================
[10:03:11] ================ [SKIPPED] xe_dma_buf_kunit ================
[10:03:11] =================== [SKIPPED] xe_dma_buf ===================
[10:03:11] ================= xe_bo_shrink (1 subtest) =================
[10:03:11] =================== xe_bo_shrink_kunit ====================
[10:03:11] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[10:03:11] ================== [SKIPPED] xe_bo_shrink ==================
[10:03:11] ==================== xe_bo (2 subtests) ====================
[10:03:11] ================== xe_ccs_migrate_kunit ===================
[10:03:11] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[10:03:11] ==================== xe_bo_evict_kunit ====================
[10:03:11] =============== [SKIPPED] xe_bo_evict_kunit ================
[10:03:11] ===================== [SKIPPED] xe_bo ======================
[10:03:11] ==================== args (13 subtests) ====================
[10:03:11] [PASSED] count_args_test
[10:03:11] [PASSED] call_args_example
[10:03:11] [PASSED] call_args_test
[10:03:11] [PASSED] drop_first_arg_example
[10:03:11] [PASSED] drop_first_arg_test
[10:03:11] [PASSED] first_arg_example
[10:03:11] [PASSED] first_arg_test
[10:03:11] [PASSED] last_arg_example
[10:03:11] [PASSED] last_arg_test
[10:03:11] [PASSED] pick_arg_example
[10:03:11] [PASSED] if_args_example
[10:03:11] [PASSED] if_args_test
[10:03:11] [PASSED] sep_comma_example
[10:03:11] ====================== [PASSED] args =======================
[10:03:11] =================== xe_pci (3 subtests) ====================
[10:03:11] ==================== check_graphics_ip ====================
[10:03:11] [PASSED] 12.00 Xe_LP
[10:03:11] [PASSED] 12.10 Xe_LP+
[10:03:11] [PASSED] 12.55 Xe_HPG
[10:03:11] [PASSED] 12.60 Xe_HPC
[10:03:11] [PASSED] 12.70 Xe_LPG
[10:03:11] [PASSED] 12.71 Xe_LPG
[10:03:11] [PASSED] 12.74 Xe_LPG+
[10:03:11] [PASSED] 20.01 Xe2_HPG
[10:03:11] [PASSED] 20.02 Xe2_HPG
[10:03:11] [PASSED] 20.04 Xe2_LPG
[10:03:11] [PASSED] 30.00 Xe3_LPG
[10:03:11] [PASSED] 30.01 Xe3_LPG
[10:03:11] [PASSED] 30.03 Xe3_LPG
[10:03:11] [PASSED] 30.04 Xe3_LPG
[10:03:11] [PASSED] 30.05 Xe3_LPG
[10:03:11] [PASSED] 35.10 Xe3p_LPG
[10:03:11] [PASSED] 35.11 Xe3p_XPC
[10:03:11] ================ [PASSED] check_graphics_ip ================
[10:03:11] ===================== check_media_ip ======================
[10:03:11] [PASSED] 12.00 Xe_M
[10:03:11] [PASSED] 12.55 Xe_HPM
[10:03:11] [PASSED] 13.00 Xe_LPM+
[10:03:11] [PASSED] 13.01 Xe2_HPM
[10:03:11] [PASSED] 20.00 Xe2_LPM
[10:03:11] [PASSED] 30.00 Xe3_LPM
[10:03:11] [PASSED] 30.02 Xe3_LPM
[10:03:11] [PASSED] 35.00 Xe3p_LPM
[10:03:11] [PASSED] 35.03 Xe3p_HPM
[10:03:11] ================= [PASSED] check_media_ip ==================
[10:03:11] =================== check_platform_desc ===================
[10:03:11] [PASSED] 0x9A60 (TIGERLAKE)
[10:03:11] [PASSED] 0x9A68 (TIGERLAKE)
[10:03:11] [PASSED] 0x9A70 (TIGERLAKE)
[10:03:11] [PASSED] 0x9A40 (TIGERLAKE)
[10:03:11] [PASSED] 0x9A49 (TIGERLAKE)
[10:03:11] [PASSED] 0x9A59 (TIGERLAKE)
[10:03:11] [PASSED] 0x9A78 (TIGERLAKE)
[10:03:11] [PASSED] 0x9AC0 (TIGERLAKE)
[10:03:11] [PASSED] 0x9AC9 (TIGERLAKE)
[10:03:11] [PASSED] 0x9AD9 (TIGERLAKE)
[10:03:11] [PASSED] 0x9AF8 (TIGERLAKE)
[10:03:11] [PASSED] 0x4C80 (ROCKETLAKE)
[10:03:11] [PASSED] 0x4C8A (ROCKETLAKE)
[10:03:11] [PASSED] 0x4C8B (ROCKETLAKE)
[10:03:11] [PASSED] 0x4C8C (ROCKETLAKE)
[10:03:11] [PASSED] 0x4C90 (ROCKETLAKE)
[10:03:11] [PASSED] 0x4C9A (ROCKETLAKE)
[10:03:11] [PASSED] 0x4680 (ALDERLAKE_S)
[10:03:11] [PASSED] 0x4682 (ALDERLAKE_S)
[10:03:11] [PASSED] 0x4688 (ALDERLAKE_S)
[10:03:11] [PASSED] 0x468A (ALDERLAKE_S)
[10:03:11] [PASSED] 0x468B (ALDERLAKE_S)
[10:03:11] [PASSED] 0x4690 (ALDERLAKE_S)
[10:03:11] [PASSED] 0x4692 (ALDERLAKE_S)
[10:03:11] [PASSED] 0x4693 (ALDERLAKE_S)
[10:03:11] [PASSED] 0x46A0 (ALDERLAKE_P)
[10:03:11] [PASSED] 0x46A1 (ALDERLAKE_P)
[10:03:11] [PASSED] 0x46A2 (ALDERLAKE_P)
[10:03:11] [PASSED] 0x46A3 (ALDERLAKE_P)
[10:03:11] [PASSED] 0x46A6 (ALDERLAKE_P)
[10:03:11] [PASSED] 0x46A8 (ALDERLAKE_P)
[10:03:11] [PASSED] 0x46AA (ALDERLAKE_P)
[10:03:11] [PASSED] 0x462A (ALDERLAKE_P)
[10:03:11] [PASSED] 0x4626 (ALDERLAKE_P)
[10:03:11] [PASSED] 0x4628 (ALDERLAKE_P)
[10:03:11] [PASSED] 0x46B0 (ALDERLAKE_P)
[10:03:11] [PASSED] 0x46B1 (ALDERLAKE_P)
[10:03:11] [PASSED] 0x46B2 (ALDERLAKE_P)
[10:03:11] [PASSED] 0x46B3 (ALDERLAKE_P)
[10:03:11] [PASSED] 0x46C0 (ALDERLAKE_P)
[10:03:11] [PASSED] 0x46C1 (ALDERLAKE_P)
[10:03:11] [PASSED] 0x46C2 (ALDERLAKE_P)
[10:03:11] [PASSED] 0x46C3 (ALDERLAKE_P)
[10:03:11] [PASSED] 0x46D0 (ALDERLAKE_N)
[10:03:11] [PASSED] 0x46D1 (ALDERLAKE_N)
[10:03:11] [PASSED] 0x46D2 (ALDERLAKE_N)
[10:03:11] [PASSED] 0x46D3 (ALDERLAKE_N)
[10:03:11] [PASSED] 0x46D4 (ALDERLAKE_N)
[10:03:11] [PASSED] 0xA721 (ALDERLAKE_P)
[10:03:11] [PASSED] 0xA7A1 (ALDERLAKE_P)
[10:03:11] [PASSED] 0xA7A9 (ALDERLAKE_P)
[10:03:11] [PASSED] 0xA7AC (ALDERLAKE_P)
[10:03:11] [PASSED] 0xA7AD (ALDERLAKE_P)
[10:03:11] [PASSED] 0xA720 (ALDERLAKE_P)
[10:03:11] [PASSED] 0xA7A0 (ALDERLAKE_P)
[10:03:11] [PASSED] 0xA7A8 (ALDERLAKE_P)
[10:03:11] [PASSED] 0xA7AA (ALDERLAKE_P)
[10:03:11] [PASSED] 0xA7AB (ALDERLAKE_P)
[10:03:11] [PASSED] 0xA780 (ALDERLAKE_S)
[10:03:11] [PASSED] 0xA781 (ALDERLAKE_S)
[10:03:11] [PASSED] 0xA782 (ALDERLAKE_S)
[10:03:11] [PASSED] 0xA783 (ALDERLAKE_S)
[10:03:11] [PASSED] 0xA788 (ALDERLAKE_S)
[10:03:11] [PASSED] 0xA789 (ALDERLAKE_S)
[10:03:11] [PASSED] 0xA78A (ALDERLAKE_S)
[10:03:11] [PASSED] 0xA78B (ALDERLAKE_S)
[10:03:11] [PASSED] 0x4905 (DG1)
[10:03:11] [PASSED] 0x4906 (DG1)
[10:03:11] [PASSED] 0x4907 (DG1)
[10:03:11] [PASSED] 0x4908 (DG1)
[10:03:11] [PASSED] 0x4909 (DG1)
[10:03:11] [PASSED] 0x56C0 (DG2)
[10:03:11] [PASSED] 0x56C2 (DG2)
[10:03:11] [PASSED] 0x56C1 (DG2)
[10:03:11] [PASSED] 0x7D51 (METEORLAKE)
[10:03:11] [PASSED] 0x7DD1 (METEORLAKE)
[10:03:11] [PASSED] 0x7D41 (METEORLAKE)
[10:03:11] [PASSED] 0x7D67 (METEORLAKE)
[10:03:11] [PASSED] 0xB640 (METEORLAKE)
[10:03:11] [PASSED] 0x56A0 (DG2)
[10:03:11] [PASSED] 0x56A1 (DG2)
[10:03:11] [PASSED] 0x56A2 (DG2)
[10:03:11] [PASSED] 0x56BE (DG2)
[10:03:11] [PASSED] 0x56BF (DG2)
[10:03:11] [PASSED] 0x5690 (DG2)
[10:03:11] [PASSED] 0x5691 (DG2)
[10:03:11] [PASSED] 0x5692 (DG2)
[10:03:11] [PASSED] 0x56A5 (DG2)
[10:03:11] [PASSED] 0x56A6 (DG2)
[10:03:11] [PASSED] 0x56B0 (DG2)
[10:03:11] [PASSED] 0x56B1 (DG2)
[10:03:11] [PASSED] 0x56BA (DG2)
[10:03:11] [PASSED] 0x56BB (DG2)
[10:03:11] [PASSED] 0x56BC (DG2)
[10:03:11] [PASSED] 0x56BD (DG2)
[10:03:11] [PASSED] 0x5693 (DG2)
[10:03:11] [PASSED] 0x5694 (DG2)
[10:03:11] [PASSED] 0x5695 (DG2)
[10:03:11] [PASSED] 0x56A3 (DG2)
[10:03:11] [PASSED] 0x56A4 (DG2)
[10:03:11] [PASSED] 0x56B2 (DG2)
[10:03:11] [PASSED] 0x56B3 (DG2)
[10:03:11] [PASSED] 0x5696 (DG2)
[10:03:11] [PASSED] 0x5697 (DG2)
[10:03:11] [PASSED] 0xB69 (PVC)
[10:03:11] [PASSED] 0xB6E (PVC)
[10:03:11] [PASSED] 0xBD4 (PVC)
[10:03:11] [PASSED] 0xBD5 (PVC)
[10:03:11] [PASSED] 0xBD6 (PVC)
[10:03:11] [PASSED] 0xBD7 (PVC)
[10:03:11] [PASSED] 0xBD8 (PVC)
[10:03:11] [PASSED] 0xBD9 (PVC)
[10:03:11] [PASSED] 0xBDA (PVC)
[10:03:11] [PASSED] 0xBDB (PVC)
[10:03:11] [PASSED] 0xBE0 (PVC)
[10:03:11] [PASSED] 0xBE1 (PVC)
[10:03:11] [PASSED] 0xBE5 (PVC)
[10:03:11] [PASSED] 0x7D40 (METEORLAKE)
[10:03:11] [PASSED] 0x7D45 (METEORLAKE)
[10:03:11] [PASSED] 0x7D55 (METEORLAKE)
[10:03:11] [PASSED] 0x7D60 (METEORLAKE)
[10:03:11] [PASSED] 0x7DD5 (METEORLAKE)
[10:03:11] [PASSED] 0x6420 (LUNARLAKE)
[10:03:11] [PASSED] 0x64A0 (LUNARLAKE)
[10:03:11] [PASSED] 0x64B0 (LUNARLAKE)
[10:03:11] [PASSED] 0xE202 (BATTLEMAGE)
[10:03:11] [PASSED] 0xE209 (BATTLEMAGE)
[10:03:11] [PASSED] 0xE20B (BATTLEMAGE)
[10:03:11] [PASSED] 0xE20C (BATTLEMAGE)
[10:03:11] [PASSED] 0xE20D (BATTLEMAGE)
[10:03:11] [PASSED] 0xE210 (BATTLEMAGE)
[10:03:11] [PASSED] 0xE211 (BATTLEMAGE)
[10:03:11] [PASSED] 0xE212 (BATTLEMAGE)
[10:03:11] [PASSED] 0xE216 (BATTLEMAGE)
[10:03:11] [PASSED] 0xE220 (BATTLEMAGE)
[10:03:11] [PASSED] 0xE221 (BATTLEMAGE)
[10:03:11] [PASSED] 0xE222 (BATTLEMAGE)
[10:03:11] [PASSED] 0xE223 (BATTLEMAGE)
[10:03:11] [PASSED] 0xB080 (PANTHERLAKE)
[10:03:11] [PASSED] 0xB081 (PANTHERLAKE)
[10:03:11] [PASSED] 0xB082 (PANTHERLAKE)
[10:03:11] [PASSED] 0xB083 (PANTHERLAKE)
[10:03:11] [PASSED] 0xB084 (PANTHERLAKE)
[10:03:11] [PASSED] 0xB085 (PANTHERLAKE)
[10:03:11] [PASSED] 0xB086 (PANTHERLAKE)
[10:03:11] [PASSED] 0xB087 (PANTHERLAKE)
[10:03:11] [PASSED] 0xB08F (PANTHERLAKE)
[10:03:11] [PASSED] 0xB090 (PANTHERLAKE)
[10:03:11] [PASSED] 0xB0A0 (PANTHERLAKE)
[10:03:11] [PASSED] 0xB0B0 (PANTHERLAKE)
[10:03:11] [PASSED] 0xFD80 (PANTHERLAKE)
[10:03:11] [PASSED] 0xFD81 (PANTHERLAKE)
[10:03:11] [PASSED] 0xD740 (NOVALAKE_S)
[10:03:11] [PASSED] 0xD741 (NOVALAKE_S)
[10:03:11] [PASSED] 0xD742 (NOVALAKE_S)
[10:03:11] [PASSED] 0xD743 (NOVALAKE_S)
[10:03:11] [PASSED] 0xD745 (NOVALAKE_S)
[10:03:11] [PASSED] 0xD74A (NOVALAKE_S)
[10:03:11] [PASSED] 0xD74B (NOVALAKE_S)
[10:03:11] [PASSED] 0x674C (CRESCENTISLAND)
[10:03:11] [PASSED] 0x674D (CRESCENTISLAND)
[10:03:11] [PASSED] 0x674E (CRESCENTISLAND)
[10:03:11] [PASSED] 0x674F (CRESCENTISLAND)
[10:03:11] [PASSED] 0x6750 (CRESCENTISLAND)
[10:03:11] [PASSED] 0xD750 (NOVALAKE_P)
[10:03:11] [PASSED] 0xD751 (NOVALAKE_P)
[10:03:11] [PASSED] 0xD752 (NOVALAKE_P)
[10:03:11] [PASSED] 0xD753 (NOVALAKE_P)
[10:03:11] [PASSED] 0xD754 (NOVALAKE_P)
[10:03:11] [PASSED] 0xD755 (NOVALAKE_P)
[10:03:11] [PASSED] 0xD756 (NOVALAKE_P)
[10:03:11] [PASSED] 0xD757 (NOVALAKE_P)
[10:03:11] [PASSED] 0xD75F (NOVALAKE_P)
[10:03:11] =============== [PASSED] check_platform_desc ===============
[10:03:11] ===================== [PASSED] xe_pci ======================
[10:03:11] ============= xe_rtp_tables_test (4 subtests) ==============
[10:03:11] ================== xe_rtp_table_gt_test ===================
[10:03:11] [PASSED] gt_was/14011060649
[10:03:11] [PASSED] gt_was/14011059788
[10:03:11] [PASSED] gt_was/14015795083
[10:03:11] [PASSED] gt_was/16021867713
[10:03:11] [PASSED] gt_was/14019449301
[10:03:11] [PASSED] gt_was/16028005424
[10:03:11] [PASSED] gt_was/14026578760
[10:03:11] [PASSED] gt_was/1409420604
[10:03:11] [PASSED] gt_was/1408615072
[10:03:11] [PASSED] gt_was/22010523718
[10:03:11] [PASSED] gt_was/14011006942
[10:03:11] [PASSED] gt_was/14014830051
[10:03:11] [PASSED] gt_was/18018781329
[10:03:11] [PASSED] gt_was/1509235366
[10:03:11] [PASSED] gt_was/18018781329
[10:03:11] [PASSED] gt_was/16016694945
[10:03:11] [PASSED] gt_was/14018575942
[10:03:11] [PASSED] gt_was/22016670082
[10:03:11] [PASSED] gt_was/22016670082
[10:03:11] [PASSED] gt_was/14017421178
[10:03:11] [PASSED] gt_was/16025250150
[10:03:11] [PASSED] gt_was/14021871409
[10:03:11] [PASSED] gt_was/16021865536
[10:03:11] [PASSED] gt_was/14021486841
[10:03:11] [PASSED] gt_was/14025160223
[10:03:11] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[10:03:11] [PASSED] gt_was/14025635424
[10:03:11] [PASSED] gt_was/16028005424
[10:03:11] ============== [PASSED] xe_rtp_table_gt_test ===============
[10:03:11] ================== xe_rtp_table_gt_test ===================
[10:03:11] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[10:03:11] [PASSED] gt_tunings/Tuning: 32B Access Enable
[10:03:11] [PASSED] gt_tunings/Tuning: L3 cache
[10:03:11] [PASSED] gt_tunings/Tuning: L3 cache - media
[10:03:11] [PASSED] gt_tunings/Tuning: Compression Overfetch
[10:03:11] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[10:03:11] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[10:03:11] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[10:03:11] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[10:03:11] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[10:03:11] [PASSED] gt_tunings/Tuning: Stateless compression control
[10:03:11] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[10:03:11] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[10:03:11] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[10:03:11] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[10:03:11] ============== [PASSED] xe_rtp_table_gt_test ===============
[10:03:11] ================== xe_rtp_table_oob_test ==================
[10:03:11] [PASSED] oob_was/1607983814
[10:03:11] [PASSED] oob_was/16010904313
[10:03:11] [PASSED] oob_was/18022495364
[10:03:11] [PASSED] oob_was/22012773006
[10:03:11] [PASSED] oob_was/14014475959
[10:03:11] [PASSED] oob_was/22011391025
[10:03:11] [PASSED] oob_was/22012727170
[10:03:11] [PASSED] oob_was/22012727685
[10:03:11] [PASSED] oob_was/22016596838
[10:03:11] [PASSED] oob_was/18020744125
[10:03:11] [PASSED] oob_was/1409600907
[10:03:11] [PASSED] oob_was/22014953428
[10:03:11] [PASSED] oob_was/16017236439
[10:03:11] [PASSED] oob_was/14019821291
[10:03:11] [PASSED] oob_was/14015076503
[10:03:11] [PASSED] oob_was/14018913170
[10:03:11] [PASSED] oob_was/14018094691
[10:03:11] [PASSED] oob_was/18024947630
[10:03:11] [PASSED] oob_was/16022287689
[10:03:11] [PASSED] oob_was/13011645652
[10:03:11] [PASSED] oob_was/14022293748
[10:03:11] [PASSED] oob_was/22019794406
[10:03:11] [PASSED] oob_was/22019338487
[10:03:11] [PASSED] oob_was/16023588340
[10:03:11] [PASSED] oob_was/14019789679
[10:03:11] [PASSED] oob_was/14022866841
[10:03:11] [PASSED] oob_was/16021333562
[10:03:11] [PASSED] oob_was/14016712196
[10:03:11] [PASSED] oob_was/14015568240
[10:03:11] [PASSED] oob_was/18013179988
[10:03:11] [PASSED] oob_was/1508761755
[10:03:11] [PASSED] oob_was/16023105232
[10:03:11] [PASSED] oob_was/16026508708
[10:03:11] [PASSED] oob_was/14020001231
[10:03:11] [PASSED] oob_was/16023683509
[10:03:11] [PASSED] oob_was/14025515070
[10:03:11] [PASSED] oob_was/15015404425_disable
[10:03:11] [PASSED] oob_was/16026007364
[10:03:11] [PASSED] oob_was/14020316580
[10:03:11] [PASSED] oob_was/14025883347
[10:03:11] [PASSED] oob_was/16029380221
[10:03:11] ============== [PASSED] xe_rtp_table_oob_test ==============
[10:03:11] ================ xe_rtp_table_dev_oob_test ================
[10:03:11] [PASSED] device_oob_was/22010954014
[10:03:11] [PASSED] device_oob_was/15015404425
[10:03:11] [PASSED] device_oob_was/22019338487_display
[10:03:11] [PASSED] device_oob_was/14022085890
[10:03:11] [PASSED] device_oob_was/14026539277
[10:03:11] [PASSED] device_oob_was/14026633728
[10:03:11] [PASSED] device_oob_was/14026746987
[10:03:11] [PASSED] device_oob_was/14026779378
[10:03:11] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[10:03:11] =============== [PASSED] xe_rtp_tables_test ================
[10:03:11] =================== xe_rtp (3 subtests) ====================
[10:03:11] =================== xe_rtp_rules_tests ====================
[10:03:11] [PASSED] no
[10:03:11] [PASSED] yes
[10:03:11] [PASSED] no-and-no
[10:03:11] [PASSED] no-and-yes
[10:03:11] [PASSED] yes-and-no
[10:03:11] [PASSED] yes-and-yes
[10:03:11] [PASSED] no-or-no
[10:03:11] [PASSED] no-or-yes
[10:03:11] [PASSED] yes-or-no
[10:03:11] [PASSED] yes-or-yes
[10:03:11] [PASSED] no-yes-or-yes-no
[10:03:11] [PASSED] no-yes-or-yes-yes
[10:03:11] [PASSED] yes-yes-or-no-yes
[10:03:11] [PASSED] yes-yes-or-yes-yes
[10:03:11] [PASSED] no-no-or-yes-or-no
[10:03:11] [PASSED] or
[10:03:11] [PASSED] or-yes
[10:03:11] [PASSED] or-no
[10:03:11] [PASSED] yes-or
[10:03:11] [PASSED] no-or
[10:03:11] [PASSED] no-or-or-yes
[10:03:11] [PASSED] yes-or-or-no
[10:03:11] [PASSED] no-or-or-no
[10:03:11] [PASSED] missing-context-engine-class
[10:03:11] [PASSED] missing-context-engine-class-or-yes
[10:03:11] [PASSED] missing-context-engine-class-or-or-yes
[10:03:11] =============== [PASSED] xe_rtp_rules_tests ================
[10:03:11] =============== xe_rtp_process_to_sr_tests ================
[10:03:11] [PASSED] coalesce-same-reg
[10:03:11] [PASSED] coalesce-same-reg-literal-and-func
[10:03:11] [PASSED] no-match-no-add
[10:03:11] [PASSED] two-regs-two-entries
[10:03:11] [PASSED] clr-one-set-other
[10:03:11] [PASSED] set-field
[10:03:11] [PASSED] conflict-duplicate
[10:03:11] [PASSED] conflict-not-disjoint
[10:03:11] [PASSED] conflict-not-disjoint-literal-and-func
[10:03:11] [PASSED] conflict-reg-type
[10:03:11] [PASSED] bad-mcr-reg-forced-to-regular
[10:03:11] [PASSED] bad-regular-reg-forced-to-mcr
[10:03:11] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[10:03:11] ================== xe_rtp_process_tests ===================
[10:03:11] [PASSED] active1
[10:03:11] [PASSED] active2
[10:03:11] [PASSED] active-inactive
[10:03:11] [PASSED] inactive-active
[10:03:11] [PASSED] inactive-active-inactive
[10:03:11] [PASSED] inactive-inactive-inactive
[10:03:11] ============== [PASSED] xe_rtp_process_tests ===============
[10:03:11] ===================== [PASSED] xe_rtp ======================
[10:03:11] ==================== xe_wa (1 subtest) =====================
[10:03:11] ======================== xe_wa_gt =========================
[10:03:11] [PASSED] TIGERLAKE B0
[10:03:11] [PASSED] DG1 A0
[10:03:11] [PASSED] DG1 B0
[10:03:11] [PASSED] ALDERLAKE_S A0
[10:03:11] [PASSED] ALDERLAKE_S B0
[10:03:11] [PASSED] ALDERLAKE_S C0
[10:03:11] [PASSED] ALDERLAKE_S D0
[10:03:11] [PASSED] ALDERLAKE_P A0
[10:03:11] [PASSED] ALDERLAKE_P B0
[10:03:11] [PASSED] ALDERLAKE_P C0
[10:03:11] [PASSED] ALDERLAKE_S RPLS D0
[10:03:11] [PASSED] ALDERLAKE_P RPLU E0
[10:03:11] [PASSED] DG2 G10 C0
[10:03:11] [PASSED] DG2 G11 B1
[10:03:11] [PASSED] DG2 G12 A1
[10:03:11] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[10:03:11] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[10:03:11] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[10:03:11] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[10:03:11] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[10:03:11] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[10:03:11] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[10:03:11] ==================== [PASSED] xe_wa_gt =====================
[10:03:11] ====================== [PASSED] xe_wa ======================
[10:03:11] ============================================================
[10:03:11] Testing complete. Ran 719 tests: passed: 701, skipped: 18
[10:03:11] Elapsed time: 36.392s total, 4.303s configuring, 31.423s building, 0.652s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[10:03:12] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[10:03:13] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[10:03:37] Starting KUnit Kernel (1/1)...
[10:03:37] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[10:03:38] ============ drm_test_pick_cmdline (2 subtests) ============
[10:03:38] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[10:03:38] =============== drm_test_pick_cmdline_named ===============
[10:03:38] [PASSED] NTSC
[10:03:38] [PASSED] NTSC-J
[10:03:38] [PASSED] PAL
[10:03:38] [PASSED] PAL-M
[10:03:38] =========== [PASSED] drm_test_pick_cmdline_named ===========
[10:03:38] ============== [PASSED] drm_test_pick_cmdline ==============
[10:03:38] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[10:03:38] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[10:03:38] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[10:03:38] =========== drm_validate_clone_mode (2 subtests) ===========
[10:03:38] ============== drm_test_check_in_clone_mode ===============
[10:03:38] [PASSED] in_clone_mode
[10:03:38] [PASSED] not_in_clone_mode
[10:03:38] ========== [PASSED] drm_test_check_in_clone_mode ===========
[10:03:38] =============== drm_test_check_valid_clones ===============
[10:03:38] [PASSED] not_in_clone_mode
[10:03:38] [PASSED] valid_clone
[10:03:38] [PASSED] invalid_clone
[10:03:38] =========== [PASSED] drm_test_check_valid_clones ===========
[10:03:38] ============= [PASSED] drm_validate_clone_mode =============
[10:03:38] ============= drm_validate_modeset (1 subtest) =============
[10:03:38] [PASSED] drm_test_check_connector_changed_modeset
[10:03:38] ============== [PASSED] drm_validate_modeset ===============
[10:03:38] ====== drm_test_bridge_get_current_state (2 subtests) ======
[10:03:38] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[10:03:38] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[10:03:38] ======== [PASSED] drm_test_bridge_get_current_state ========
[10:03:38] ====== drm_test_bridge_helper_reset_crtc (4 subtests) ======
[10:03:38] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[10:03:38] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[10:03:38] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[10:03:38] [PASSED] drm_test_drm_bridge_helper_hdmi_output_bus_fmts
[10:03:38] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[10:03:38] ============== drm_bridge_alloc (2 subtests) ===============
[10:03:38] [PASSED] drm_test_drm_bridge_alloc_basic
[10:03:38] [PASSED] drm_test_drm_bridge_alloc_get_put
[10:03:38] ================ [PASSED] drm_bridge_alloc =================
[10:03:38] ============= drm_bridge_bus_fmt (5 subtests) ==============
[10:03:38] [PASSED] drm_test_bridge_rgb_yuv_rgb
[10:03:38] [PASSED] drm_test_bridge_must_convert_to_yuv444
[10:03:38] [PASSED] drm_test_bridge_hdmi_auto_rgb
[10:03:38] [PASSED] drm_test_bridge_auto_first
[10:03:38] [PASSED] drm_test_bridge_rgb_yuv_no_path
[10:03:38] =============== [PASSED] drm_bridge_bus_fmt ================
[10:03:38] ============= drm_cmdline_parser (40 subtests) =============
[10:03:38] [PASSED] drm_test_cmdline_force_d_only
[10:03:38] [PASSED] drm_test_cmdline_force_D_only_dvi
[10:03:38] [PASSED] drm_test_cmdline_force_D_only_hdmi
[10:03:38] [PASSED] drm_test_cmdline_force_D_only_not_digital
[10:03:38] [PASSED] drm_test_cmdline_force_e_only
[10:03:38] [PASSED] drm_test_cmdline_res
[10:03:38] [PASSED] drm_test_cmdline_res_vesa
[10:03:38] [PASSED] drm_test_cmdline_res_vesa_rblank
[10:03:38] [PASSED] drm_test_cmdline_res_rblank
[10:03:38] [PASSED] drm_test_cmdline_res_bpp
[10:03:38] [PASSED] drm_test_cmdline_res_refresh
[10:03:38] [PASSED] drm_test_cmdline_res_bpp_refresh
[10:03:38] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[10:03:38] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[10:03:38] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[10:03:38] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[10:03:38] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[10:03:38] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[10:03:38] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[10:03:38] [PASSED] drm_test_cmdline_res_margins_force_on
[10:03:38] [PASSED] drm_test_cmdline_res_vesa_margins
[10:03:38] [PASSED] drm_test_cmdline_name
[10:03:38] [PASSED] drm_test_cmdline_name_bpp
[10:03:38] [PASSED] drm_test_cmdline_name_option
[10:03:38] [PASSED] drm_test_cmdline_name_bpp_option
[10:03:38] [PASSED] drm_test_cmdline_rotate_0
[10:03:38] [PASSED] drm_test_cmdline_rotate_90
[10:03:38] [PASSED] drm_test_cmdline_rotate_180
[10:03:38] [PASSED] drm_test_cmdline_rotate_270
[10:03:38] [PASSED] drm_test_cmdline_hmirror
[10:03:38] [PASSED] drm_test_cmdline_vmirror
[10:03:38] [PASSED] drm_test_cmdline_margin_options
[10:03:38] [PASSED] drm_test_cmdline_multiple_options
[10:03:38] [PASSED] drm_test_cmdline_bpp_extra_and_option
[10:03:38] [PASSED] drm_test_cmdline_extra_and_option
[10:03:38] [PASSED] drm_test_cmdline_freestanding_options
[10:03:38] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[10:03:38] [PASSED] drm_test_cmdline_panel_orientation
[10:03:38] ================ drm_test_cmdline_invalid =================
[10:03:38] [PASSED] margin_only
[10:03:38] [PASSED] interlace_only
[10:03:38] [PASSED] res_missing_x
[10:03:38] [PASSED] res_missing_y
[10:03:38] [PASSED] res_bad_y
[10:03:38] [PASSED] res_missing_y_bpp
[10:03:38] [PASSED] res_bad_bpp
[10:03:38] [PASSED] res_bad_refresh
[10:03:38] [PASSED] res_bpp_refresh_force_on_off
[10:03:38] [PASSED] res_invalid_mode
[10:03:38] [PASSED] res_bpp_wrong_place_mode
[10:03:38] [PASSED] name_bpp_refresh
[10:03:38] [PASSED] name_refresh
[10:03:38] [PASSED] name_refresh_wrong_mode
[10:03:38] [PASSED] name_refresh_invalid_mode
[10:03:38] [PASSED] rotate_multiple
[10:03:38] [PASSED] rotate_invalid_val
[10:03:38] [PASSED] rotate_truncated
[10:03:38] [PASSED] invalid_option
[10:03:38] [PASSED] invalid_tv_option
[10:03:38] [PASSED] truncated_tv_option
[10:03:38] ============ [PASSED] drm_test_cmdline_invalid =============
[10:03:38] =============== drm_test_cmdline_tv_options ===============
[10:03:38] [PASSED] NTSC
[10:03:38] [PASSED] NTSC_443
[10:03:38] [PASSED] NTSC_J
[10:03:38] [PASSED] PAL
[10:03:38] [PASSED] PAL_M
[10:03:38] [PASSED] PAL_N
[10:03:38] [PASSED] SECAM
[10:03:38] [PASSED] MONO_525
[10:03:38] [PASSED] MONO_625
[10:03:38] =========== [PASSED] drm_test_cmdline_tv_options ===========
[10:03:38] =============== [PASSED] drm_cmdline_parser ================
[10:03:38] ========== drmm_connector_hdmi_init (20 subtests) ==========
[10:03:38] [PASSED] drm_test_connector_hdmi_init_valid
[10:03:38] [PASSED] drm_test_connector_hdmi_init_bpc_8
[10:03:38] [PASSED] drm_test_connector_hdmi_init_bpc_10
[10:03:38] [PASSED] drm_test_connector_hdmi_init_bpc_12
[10:03:38] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[10:03:38] [PASSED] drm_test_connector_hdmi_init_bpc_null
[10:03:38] [PASSED] drm_test_connector_hdmi_init_formats_empty
[10:03:38] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[10:03:38] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[10:03:38] [PASSED] supported_formats=0x9 yuv420_allowed=1
[10:03:38] [PASSED] supported_formats=0x9 yuv420_allowed=0
[10:03:38] [PASSED] supported_formats=0x5 yuv420_allowed=1
[10:03:38] [PASSED] supported_formats=0x5 yuv420_allowed=0
[10:03:38] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[10:03:38] [PASSED] drm_test_connector_hdmi_init_null_ddc
[10:03:38] [PASSED] drm_test_connector_hdmi_init_null_product
[10:03:38] [PASSED] drm_test_connector_hdmi_init_null_vendor
[10:03:38] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[10:03:38] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[10:03:38] [PASSED] drm_test_connector_hdmi_init_product_valid
[10:03:38] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[10:03:38] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[10:03:38] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[10:03:38] ========= drm_test_connector_hdmi_init_type_valid =========
[10:03:38] [PASSED] HDMI-A
[10:03:38] [PASSED] HDMI-B
[10:03:38] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[10:03:38] ======== drm_test_connector_hdmi_init_type_invalid ========
[10:03:38] [PASSED] Unknown
[10:03:38] [PASSED] VGA
[10:03:38] [PASSED] DVI-I
[10:03:38] [PASSED] DVI-D
[10:03:38] [PASSED] DVI-A
[10:03:38] [PASSED] Composite
[10:03:38] [PASSED] SVIDEO
[10:03:38] [PASSED] LVDS
[10:03:38] [PASSED] Component
[10:03:38] [PASSED] DIN
[10:03:38] [PASSED] DP
[10:03:38] [PASSED] TV
[10:03:38] [PASSED] eDP
[10:03:38] [PASSED] Virtual
[10:03:38] [PASSED] DSI
[10:03:38] [PASSED] DPI
[10:03:38] [PASSED] Writeback
[10:03:38] [PASSED] SPI
[10:03:38] [PASSED] USB
[10:03:38] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[10:03:38] ============ [PASSED] drmm_connector_hdmi_init =============
[10:03:38] ============= drmm_connector_init (3 subtests) =============
[10:03:38] [PASSED] drm_test_drmm_connector_init
[10:03:38] [PASSED] drm_test_drmm_connector_init_null_ddc
[10:03:38] ========= drm_test_drmm_connector_init_type_valid =========
[10:03:38] [PASSED] Unknown
[10:03:38] [PASSED] VGA
[10:03:38] [PASSED] DVI-I
[10:03:38] [PASSED] DVI-D
[10:03:38] [PASSED] DVI-A
[10:03:38] [PASSED] Composite
[10:03:38] [PASSED] SVIDEO
[10:03:38] [PASSED] LVDS
[10:03:38] [PASSED] Component
[10:03:38] [PASSED] DIN
[10:03:38] [PASSED] DP
[10:03:38] [PASSED] HDMI-A
[10:03:38] [PASSED] HDMI-B
[10:03:38] [PASSED] TV
[10:03:38] [PASSED] eDP
[10:03:38] [PASSED] Virtual
[10:03:38] [PASSED] DSI
[10:03:38] [PASSED] DPI
[10:03:38] [PASSED] Writeback
[10:03:38] [PASSED] SPI
[10:03:38] [PASSED] USB
[10:03:38] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[10:03:38] =============== [PASSED] drmm_connector_init ===============
[10:03:38] ========= drm_connector_dynamic_init (6 subtests) ==========
[10:03:38] [PASSED] drm_test_drm_connector_dynamic_init
[10:03:38] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[10:03:38] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[10:03:38] [PASSED] drm_test_drm_connector_dynamic_init_properties
[10:03:38] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[10:03:38] [PASSED] Unknown
[10:03:38] [PASSED] VGA
[10:03:38] [PASSED] DVI-I
[10:03:38] [PASSED] DVI-D
[10:03:38] [PASSED] DVI-A
[10:03:38] [PASSED] Composite
[10:03:38] [PASSED] SVIDEO
[10:03:38] [PASSED] LVDS
[10:03:38] [PASSED] Component
[10:03:38] [PASSED] DIN
[10:03:38] [PASSED] DP
[10:03:38] [PASSED] HDMI-A
[10:03:38] [PASSED] HDMI-B
[10:03:38] [PASSED] TV
[10:03:38] [PASSED] eDP
[10:03:38] [PASSED] Virtual
[10:03:38] [PASSED] DSI
[10:03:38] [PASSED] DPI
[10:03:38] [PASSED] Writeback
[10:03:38] [PASSED] SPI
[10:03:38] [PASSED] USB
[10:03:38] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[10:03:38] ======== drm_test_drm_connector_dynamic_init_name =========
[10:03:38] [PASSED] Unknown
[10:03:38] [PASSED] VGA
[10:03:38] [PASSED] DVI-I
[10:03:38] [PASSED] DVI-D
[10:03:38] [PASSED] DVI-A
[10:03:38] [PASSED] Composite
[10:03:38] [PASSED] SVIDEO
[10:03:38] [PASSED] LVDS
[10:03:38] [PASSED] Component
[10:03:38] [PASSED] DIN
[10:03:38] [PASSED] DP
[10:03:38] [PASSED] HDMI-A
[10:03:38] [PASSED] HDMI-B
[10:03:38] [PASSED] TV
[10:03:38] [PASSED] eDP
[10:03:38] [PASSED] Virtual
[10:03:38] [PASSED] DSI
[10:03:38] [PASSED] DPI
[10:03:38] [PASSED] Writeback
[10:03:38] [PASSED] SPI
[10:03:38] [PASSED] USB
[10:03:38] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[10:03:38] =========== [PASSED] drm_connector_dynamic_init ============
[10:03:38] ==== drm_connector_dynamic_register_early (4 subtests) =====
[10:03:38] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[10:03:38] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[10:03:38] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[10:03:38] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[10:03:38] ====== [PASSED] drm_connector_dynamic_register_early =======
[10:03:38] ======= drm_connector_dynamic_register (7 subtests) ========
[10:03:38] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[10:03:38] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[10:03:38] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[10:03:38] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[10:03:38] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[10:03:38] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[10:03:38] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[10:03:38] ========= [PASSED] drm_connector_dynamic_register ==========
[10:03:38] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[10:03:38] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[10:03:38] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[10:03:38] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[10:03:38] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[10:03:38] ========== drm_test_get_tv_mode_from_name_valid ===========
[10:03:38] [PASSED] NTSC
[10:03:38] [PASSED] NTSC-443
[10:03:38] [PASSED] NTSC-J
[10:03:38] [PASSED] PAL
[10:03:38] [PASSED] PAL-M
[10:03:38] [PASSED] PAL-N
[10:03:38] [PASSED] SECAM
[10:03:38] [PASSED] Mono
[10:03:38] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[10:03:38] [PASSED] drm_test_get_tv_mode_from_name_truncated
[10:03:38] ============ [PASSED] drm_get_tv_mode_from_name ============
[10:03:38] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[10:03:38] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[10:03:38] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[10:03:38] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[10:03:38] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[10:03:38] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[10:03:38] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[10:03:38] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[10:03:38] [PASSED] VIC 96
[10:03:38] [PASSED] VIC 97
[10:03:38] [PASSED] VIC 101
[10:03:38] [PASSED] VIC 102
[10:03:38] [PASSED] VIC 106
[10:03:38] [PASSED] VIC 107
[10:03:38] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[10:03:38] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[10:03:38] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[10:03:38] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[10:03:38] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[10:03:38] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[10:03:38] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[10:03:38] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[10:03:38] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[10:03:38] [PASSED] Automatic
[10:03:38] [PASSED] Full
[10:03:38] [PASSED] Limited 16:235
[10:03:38] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[10:03:38] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[10:03:38] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[10:03:38] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[10:03:38] === drm_test_drm_hdmi_connector_get_output_format_name ====
[10:03:38] [PASSED] RGB
[10:03:38] [PASSED] YUV 4:2:0
[10:03:38] [PASSED] YUV 4:2:2
[10:03:38] [PASSED] YUV 4:4:4
[10:03:38] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[10:03:38] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[10:03:38] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[10:03:38] ============= drm_damage_helper (21 subtests) ==============
[10:03:38] [PASSED] drm_test_damage_iter_no_damage
[10:03:38] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[10:03:38] [PASSED] drm_test_damage_iter_no_damage_src_moved
[10:03:38] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[10:03:38] [PASSED] drm_test_damage_iter_no_damage_not_visible
[10:03:38] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[10:03:38] [PASSED] drm_test_damage_iter_no_damage_no_fb
[10:03:38] [PASSED] drm_test_damage_iter_simple_damage
[10:03:38] [PASSED] drm_test_damage_iter_single_damage
[10:03:38] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[10:03:38] [PASSED] drm_test_damage_iter_single_damage_outside_src
[10:03:38] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[10:03:38] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[10:03:38] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[10:03:38] [PASSED] drm_test_damage_iter_single_damage_src_moved
[10:03:38] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[10:03:38] [PASSED] drm_test_damage_iter_damage
[10:03:38] [PASSED] drm_test_damage_iter_damage_one_intersect
[10:03:38] [PASSED] drm_test_damage_iter_damage_one_outside
[10:03:38] [PASSED] drm_test_damage_iter_damage_src_moved
[10:03:38] [PASSED] drm_test_damage_iter_damage_not_visible
[10:03:38] ================ [PASSED] drm_damage_helper ================
[10:03:38] ============== drm_dp_mst_helper (3 subtests) ==============
[10:03:38] ============== drm_test_dp_mst_calc_pbn_mode ==============
[10:03:38] [PASSED] Clock 154000 BPP 30 DSC disabled
[10:03:38] [PASSED] Clock 234000 BPP 30 DSC disabled
[10:03:38] [PASSED] Clock 297000 BPP 24 DSC disabled
[10:03:38] [PASSED] Clock 332880 BPP 24 DSC enabled
[10:03:38] [PASSED] Clock 324540 BPP 24 DSC enabled
[10:03:38] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[10:03:38] ============== drm_test_dp_mst_calc_pbn_div ===============
[10:03:38] [PASSED] Link rate 2000000 lane count 4
[10:03:38] [PASSED] Link rate 2000000 lane count 2
[10:03:38] [PASSED] Link rate 2000000 lane count 1
[10:03:38] [PASSED] Link rate 1350000 lane count 4
[10:03:38] [PASSED] Link rate 1350000 lane count 2
[10:03:38] [PASSED] Link rate 1350000 lane count 1
[10:03:38] [PASSED] Link rate 1000000 lane count 4
[10:03:38] [PASSED] Link rate 1000000 lane count 2
[10:03:38] [PASSED] Link rate 1000000 lane count 1
[10:03:38] [PASSED] Link rate 810000 lane count 4
[10:03:38] [PASSED] Link rate 810000 lane count 2
[10:03:38] [PASSED] Link rate 810000 lane count 1
[10:03:38] [PASSED] Link rate 540000 lane count 4
[10:03:38] [PASSED] Link rate 540000 lane count 2
[10:03:38] [PASSED] Link rate 540000 lane count 1
[10:03:38] [PASSED] Link rate 270000 lane count 4
[10:03:38] [PASSED] Link rate 270000 lane count 2
[10:03:38] [PASSED] Link rate 270000 lane count 1
[10:03:38] [PASSED] Link rate 162000 lane count 4
[10:03:38] [PASSED] Link rate 162000 lane count 2
[10:03:38] [PASSED] Link rate 162000 lane count 1
[10:03:38] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[10:03:38] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[10:03:38] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[10:03:38] [PASSED] DP_POWER_UP_PHY with port number
[10:03:38] [PASSED] DP_POWER_DOWN_PHY with port number
[10:03:38] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[10:03:38] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[10:03:38] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[10:03:38] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[10:03:38] [PASSED] DP_QUERY_PAYLOAD with port number
[10:03:38] [PASSED] DP_QUERY_PAYLOAD with VCPI
[10:03:38] [PASSED] DP_REMOTE_DPCD_READ with port number
[10:03:38] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[10:03:38] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[10:03:38] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[10:03:38] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[10:03:38] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[10:03:38] [PASSED] DP_REMOTE_I2C_READ with port number
[10:03:38] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[10:03:38] [PASSED] DP_REMOTE_I2C_READ with transactions array
[10:03:38] [PASSED] DP_REMOTE_I2C_WRITE with port number
[10:03:38] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[10:03:38] [PASSED] DP_REMOTE_I2C_WRITE with data array
[10:03:38] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[10:03:38] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[10:03:38] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[10:03:38] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[10:03:38] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[10:03:38] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[10:03:38] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[10:03:38] ================ [PASSED] drm_dp_mst_helper ================
[10:03:38] ================== drm_exec (7 subtests) ===================
[10:03:38] [PASSED] sanitycheck
[10:03:38] [PASSED] test_lock
[10:03:38] [PASSED] test_lock_unlock
[10:03:38] [PASSED] test_duplicates
[10:03:38] [PASSED] test_prepare
[10:03:38] [PASSED] test_prepare_array
[10:03:38] [PASSED] test_multiple_loops
[10:03:38] ==================== [PASSED] drm_exec =====================
[10:03:38] =========== drm_format_helper_test (17 subtests) ===========
[10:03:38] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[10:03:38] [PASSED] single_pixel_source_buffer
[10:03:38] [PASSED] single_pixel_clip_rectangle
[10:03:38] [PASSED] well_known_colors
[10:03:38] [PASSED] destination_pitch
[10:03:38] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[10:03:38] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[10:03:38] [PASSED] single_pixel_source_buffer
[10:03:38] [PASSED] single_pixel_clip_rectangle
[10:03:38] [PASSED] well_known_colors
[10:03:38] [PASSED] destination_pitch
[10:03:38] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[10:03:38] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[10:03:38] [PASSED] single_pixel_source_buffer
[10:03:38] [PASSED] single_pixel_clip_rectangle
[10:03:38] [PASSED] well_known_colors
[10:03:38] [PASSED] destination_pitch
[10:03:38] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[10:03:38] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[10:03:38] [PASSED] single_pixel_source_buffer
[10:03:38] [PASSED] single_pixel_clip_rectangle
[10:03:38] [PASSED] well_known_colors
[10:03:38] [PASSED] destination_pitch
[10:03:38] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[10:03:38] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[10:03:38] [PASSED] single_pixel_source_buffer
[10:03:38] [PASSED] single_pixel_clip_rectangle
[10:03:38] [PASSED] well_known_colors
[10:03:38] [PASSED] destination_pitch
[10:03:38] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[10:03:38] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[10:03:38] [PASSED] single_pixel_source_buffer
[10:03:38] [PASSED] single_pixel_clip_rectangle
[10:03:38] [PASSED] well_known_colors
[10:03:38] [PASSED] destination_pitch
[10:03:38] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[10:03:38] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[10:03:38] [PASSED] single_pixel_source_buffer
[10:03:38] [PASSED] single_pixel_clip_rectangle
[10:03:38] [PASSED] well_known_colors
[10:03:38] [PASSED] destination_pitch
[10:03:38] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[10:03:38] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[10:03:38] [PASSED] single_pixel_source_buffer
[10:03:38] [PASSED] single_pixel_clip_rectangle
[10:03:38] [PASSED] well_known_colors
[10:03:38] [PASSED] destination_pitch
[10:03:38] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[10:03:38] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[10:03:38] [PASSED] single_pixel_source_buffer
[10:03:38] [PASSED] single_pixel_clip_rectangle
[10:03:38] [PASSED] well_known_colors
[10:03:38] [PASSED] destination_pitch
[10:03:38] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[10:03:38] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[10:03:38] [PASSED] single_pixel_source_buffer
[10:03:38] [PASSED] single_pixel_clip_rectangle
[10:03:38] [PASSED] well_known_colors
[10:03:38] [PASSED] destination_pitch
[10:03:38] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[10:03:38] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[10:03:38] [PASSED] single_pixel_source_buffer
[10:03:38] [PASSED] single_pixel_clip_rectangle
[10:03:38] [PASSED] well_known_colors
[10:03:38] [PASSED] destination_pitch
[10:03:38] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[10:03:38] ============== drm_test_fb_xrgb8888_to_mono ===============
[10:03:38] [PASSED] single_pixel_source_buffer
[10:03:38] [PASSED] single_pixel_clip_rectangle
[10:03:38] [PASSED] well_known_colors
[10:03:38] [PASSED] destination_pitch
[10:03:38] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[10:03:38] ==================== drm_test_fb_swab =====================
[10:03:38] [PASSED] single_pixel_source_buffer
[10:03:38] [PASSED] single_pixel_clip_rectangle
[10:03:38] [PASSED] well_known_colors
[10:03:38] [PASSED] destination_pitch
[10:03:38] ================ [PASSED] drm_test_fb_swab =================
[10:03:38] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[10:03:38] [PASSED] single_pixel_source_buffer
[10:03:38] [PASSED] single_pixel_clip_rectangle
[10:03:38] [PASSED] well_known_colors
[10:03:38] [PASSED] destination_pitch
[10:03:38] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[10:03:38] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[10:03:38] [PASSED] single_pixel_source_buffer
[10:03:38] [PASSED] single_pixel_clip_rectangle
[10:03:38] [PASSED] well_known_colors
[10:03:38] [PASSED] destination_pitch
[10:03:38] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[10:03:38] ================= drm_test_fb_clip_offset =================
[10:03:38] [PASSED] pass through
[10:03:38] [PASSED] horizontal offset
[10:03:38] [PASSED] vertical offset
[10:03:38] [PASSED] horizontal and vertical offset
[10:03:38] [PASSED] horizontal offset (custom pitch)
[10:03:38] [PASSED] vertical offset (custom pitch)
[10:03:38] [PASSED] horizontal and vertical offset (custom pitch)
[10:03:38] ============= [PASSED] drm_test_fb_clip_offset =============
[10:03:38] =================== drm_test_fb_memcpy ====================
[10:03:38] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[10:03:38] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[10:03:38] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[10:03:38] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[10:03:38] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[10:03:38] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[10:03:38] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[10:03:38] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[10:03:38] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[10:03:38] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[10:03:38] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[10:03:38] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[10:03:38] =============== [PASSED] drm_test_fb_memcpy ================
[10:03:38] ============= [PASSED] drm_format_helper_test ==============
[10:03:38] ================= drm_format (18 subtests) =================
[10:03:38] [PASSED] drm_test_format_block_width_invalid
[10:03:38] [PASSED] drm_test_format_block_width_one_plane
[10:03:38] [PASSED] drm_test_format_block_width_two_plane
[10:03:38] [PASSED] drm_test_format_block_width_three_plane
[10:03:38] [PASSED] drm_test_format_block_width_tiled
[10:03:38] [PASSED] drm_test_format_block_height_invalid
[10:03:38] [PASSED] drm_test_format_block_height_one_plane
[10:03:38] [PASSED] drm_test_format_block_height_two_plane
[10:03:38] [PASSED] drm_test_format_block_height_three_plane
[10:03:38] [PASSED] drm_test_format_block_height_tiled
[10:03:38] [PASSED] drm_test_format_min_pitch_invalid
[10:03:38] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[10:03:38] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[10:03:38] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[10:03:38] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[10:03:38] [PASSED] drm_test_format_min_pitch_two_plane
[10:03:38] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[10:03:38] [PASSED] drm_test_format_min_pitch_tiled
[10:03:38] =================== [PASSED] drm_format ====================
[10:03:38] ============== drm_framebuffer (10 subtests) ===============
[10:03:38] ========== drm_test_framebuffer_check_src_coords ==========
[10:03:38] [PASSED] Success: source fits into fb
[10:03:38] [PASSED] Fail: overflowing fb with x-axis coordinate
[10:03:38] [PASSED] Fail: overflowing fb with y-axis coordinate
[10:03:38] [PASSED] Fail: overflowing fb with source width
[10:03:38] [PASSED] Fail: overflowing fb with source height
[10:03:38] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[10:03:38] [PASSED] drm_test_framebuffer_cleanup
[10:03:38] =============== drm_test_framebuffer_create ===============
[10:03:38] [PASSED] ABGR8888 normal sizes
[10:03:38] [PASSED] ABGR8888 max sizes
[10:03:38] [PASSED] ABGR8888 pitch greater than min required
[10:03:38] [PASSED] ABGR8888 pitch less than min required
[10:03:38] [PASSED] ABGR8888 Invalid width
[10:03:38] [PASSED] ABGR8888 Invalid buffer handle
[10:03:38] [PASSED] No pixel format
[10:03:38] [PASSED] ABGR8888 Width 0
[10:03:38] [PASSED] ABGR8888 Height 0
[10:03:38] [PASSED] ABGR8888 Out of bound height * pitch combination
[10:03:38] [PASSED] ABGR8888 Large buffer offset
[10:03:38] [PASSED] ABGR8888 Buffer offset for inexistent plane
[10:03:38] [PASSED] ABGR8888 Invalid flag
[10:03:38] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[10:03:38] [PASSED] ABGR8888 Valid buffer modifier
[10:03:38] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[10:03:38] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[10:03:38] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[10:03:38] [PASSED] NV12 Normal sizes
[10:03:38] [PASSED] NV12 Max sizes
[10:03:38] [PASSED] NV12 Invalid pitch
[10:03:38] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[10:03:38] [PASSED] NV12 different modifier per-plane
[10:03:38] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[10:03:38] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[10:03:38] [PASSED] NV12 Modifier for inexistent plane
[10:03:38] [PASSED] NV12 Handle for inexistent plane
[10:03:38] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[10:03:38] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[10:03:38] [PASSED] YVU420 Normal sizes
[10:03:38] [PASSED] YVU420 Max sizes
[10:03:38] [PASSED] YVU420 Invalid pitch
[10:03:38] [PASSED] YVU420 Different pitches
[10:03:38] [PASSED] YVU420 Different buffer offsets/pitches
[10:03:38] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[10:03:38] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[10:03:38] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[10:03:38] [PASSED] YVU420 Valid modifier
[10:03:38] [PASSED] YVU420 Different modifiers per plane
[10:03:38] [PASSED] YVU420 Modifier for inexistent plane
[10:03:38] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[10:03:38] [PASSED] X0L2 Normal sizes
[10:03:38] [PASSED] X0L2 Max sizes
[10:03:38] [PASSED] X0L2 Invalid pitch
[10:03:38] [PASSED] X0L2 Pitch greater than minimum required
[10:03:38] [PASSED] X0L2 Handle for inexistent plane
[10:03:38] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[10:03:38] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[10:03:38] [PASSED] X0L2 Valid modifier
[10:03:38] [PASSED] X0L2 Modifier for inexistent plane
[10:03:38] =========== [PASSED] drm_test_framebuffer_create ===========
[10:03:38] [PASSED] drm_test_framebuffer_free
[10:03:38] [PASSED] drm_test_framebuffer_init
[10:03:38] [PASSED] drm_test_framebuffer_init_bad_format
[10:03:38] [PASSED] drm_test_framebuffer_init_dev_mismatch
[10:03:38] [PASSED] drm_test_framebuffer_lookup
[10:03:38] [PASSED] drm_test_framebuffer_lookup_inexistent
[10:03:38] [PASSED] drm_test_framebuffer_modifiers_not_supported
[10:03:38] ================= [PASSED] drm_framebuffer =================
[10:03:38] ================ drm_gem_shmem (8 subtests) ================
[10:03:38] [PASSED] drm_gem_shmem_test_obj_create
[10:03:38] [PASSED] drm_gem_shmem_test_obj_create_private
[10:03:38] [PASSED] drm_gem_shmem_test_pin_pages
[10:03:38] [PASSED] drm_gem_shmem_test_vmap
[10:03:38] [PASSED] drm_gem_shmem_test_get_sg_table
[10:03:38] [PASSED] drm_gem_shmem_test_get_pages_sgt
[10:03:38] [PASSED] drm_gem_shmem_test_madvise
[10:03:38] [PASSED] drm_gem_shmem_test_purge
[10:03:38] ================== [PASSED] drm_gem_shmem ==================
[10:03:38] === drm_atomic_helper_connector_hdmi_check (29 subtests) ===
[10:03:38] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[10:03:38] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[10:03:38] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[10:03:38] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[10:03:38] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[10:03:38] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[10:03:38] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[10:03:38] [PASSED] Automatic
[10:03:38] [PASSED] Full
[10:03:38] [PASSED] Limited 16:235
[10:03:38] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[10:03:38] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[10:03:38] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[10:03:38] [PASSED] drm_test_check_disable_connector
[10:03:38] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[10:03:38] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[10:03:38] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[10:03:38] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[10:03:38] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[10:03:38] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[10:03:38] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[10:03:38] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[10:03:38] [PASSED] drm_test_check_output_bpc_dvi
[10:03:38] [PASSED] drm_test_check_output_bpc_format_vic_1
[10:03:38] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[10:03:38] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[10:03:38] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[10:03:38] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[10:03:38] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[10:03:38] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[10:03:38] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[10:03:38] ============ drm_test_check_hdmi_color_format =============
[10:03:38] [PASSED] AUTO -> RGB
[10:03:38] [PASSED] YCBCR422 -> YUV422
[10:03:38] [PASSED] YCBCR420 -> YUV420
[10:03:38] [PASSED] YCBCR444 -> YUV444
[10:03:38] [PASSED] RGB -> RGB
[10:03:38] ======== [PASSED] drm_test_check_hdmi_color_format =========
[10:03:38] ======== drm_test_check_hdmi_color_format_420_only ========
[10:03:38] [PASSED] RGB should fail
[10:03:38] [PASSED] YUV444 should fail
[10:03:38] [PASSED] YUV422 should fail
[10:03:38] [PASSED] YUV420 should work
[10:03:38] ==== [PASSED] drm_test_check_hdmi_color_format_420_only ====
[10:03:38] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[10:03:38] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[10:03:38] [PASSED] drm_test_check_broadcast_rgb_value
[10:03:38] [PASSED] drm_test_check_bpc_8_value
[10:03:38] [PASSED] drm_test_check_bpc_10_value
[10:03:38] [PASSED] drm_test_check_bpc_12_value
[10:03:38] [PASSED] drm_test_check_format_value
[10:03:38] [PASSED] drm_test_check_tmds_char_value
[10:03:38] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[10:03:38] = drm_atomic_helper_connector_hdmi_mode_valid (7 subtests) =
[10:03:38] [PASSED] drm_test_check_mode_valid
[10:03:38] [PASSED] drm_test_check_mode_valid_reject
[10:03:38] [PASSED] drm_test_check_mode_valid_reject_rate
[10:03:38] [PASSED] drm_test_check_mode_valid_reject_max_clock
[10:03:38] [PASSED] drm_test_check_mode_valid_yuv420_only_max_clock
[10:03:38] [PASSED] drm_test_check_mode_valid_reject_yuv420_only_connector
[10:03:38] [PASSED] drm_test_check_mode_valid_accept_yuv420_also_connector_rgb
[10:03:38] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[10:03:38] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[10:03:38] [PASSED] drm_test_check_infoframes
[10:03:38] [PASSED] drm_test_check_reject_avi_infoframe
[10:03:38] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[10:03:38] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[10:03:38] [PASSED] drm_test_check_reject_audio_infoframe
[10:03:38] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[10:03:38] ================= drm_managed (2 subtests) =================
[10:03:38] [PASSED] drm_test_managed_release_action
[10:03:38] [PASSED] drm_test_managed_run_action
[10:03:38] =================== [PASSED] drm_managed ===================
[10:03:38] =================== drm_mm (6 subtests) ====================
[10:03:38] [PASSED] drm_test_mm_init
[10:03:38] [PASSED] drm_test_mm_debug
[10:03:38] [PASSED] drm_test_mm_align32
[10:03:38] [PASSED] drm_test_mm_align64
[10:03:38] [PASSED] drm_test_mm_lowest
[10:03:38] [PASSED] drm_test_mm_highest
[10:03:38] ===================== [PASSED] drm_mm ======================
[10:03:38] ============= drm_modes_analog_tv (5 subtests) =============
[10:03:38] [PASSED] drm_test_modes_analog_tv_mono_576i
[10:03:38] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[10:03:38] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[10:03:38] [PASSED] drm_test_modes_analog_tv_pal_576i
[10:03:38] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[10:03:38] =============== [PASSED] drm_modes_analog_tv ===============
[10:03:38] ============== drm_plane_helper (2 subtests) ===============
[10:03:38] =============== drm_test_check_plane_state ================
[10:03:38] [PASSED] clipping_simple
[10:03:38] [PASSED] clipping_rotate_reflect
[10:03:38] [PASSED] positioning_simple
[10:03:38] [PASSED] upscaling
[10:03:38] [PASSED] downscaling
[10:03:38] [PASSED] rounding1
[10:03:38] [PASSED] rounding2
[10:03:38] [PASSED] rounding3
[10:03:38] [PASSED] rounding4
[10:03:38] =========== [PASSED] drm_test_check_plane_state ============
[10:03:38] =========== drm_test_check_invalid_plane_state ============
[10:03:38] [PASSED] positioning_invalid
[10:03:38] [PASSED] upscaling_invalid
[10:03:38] [PASSED] downscaling_invalid
[10:03:38] ======= [PASSED] drm_test_check_invalid_plane_state ========
[10:03:38] ================ [PASSED] drm_plane_helper =================
[10:03:38] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[10:03:38] ====== drm_test_connector_helper_tv_get_modes_check =======
[10:03:38] [PASSED] None
[10:03:38] [PASSED] PAL
[10:03:38] [PASSED] NTSC
[10:03:38] [PASSED] Both, NTSC Default
[10:03:38] [PASSED] Both, PAL Default
[10:03:38] [PASSED] Both, NTSC Default, with PAL on command-line
[10:03:38] [PASSED] Both, PAL Default, with NTSC on command-line
[10:03:38] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[10:03:38] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[10:03:38] ================== drm_rect (9 subtests) ===================
[10:03:38] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[10:03:38] [PASSED] drm_test_rect_clip_scaled_not_clipped
[10:03:38] [PASSED] drm_test_rect_clip_scaled_clipped
[10:03:38] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[10:03:38] ================= drm_test_rect_intersect =================
[10:03:38] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[10:03:38] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[10:03:38] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[10:03:38] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[10:03:38] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[10:03:38] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[10:03:38] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[10:03:38] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[10:03:38] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[10:03:38] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[10:03:38] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[10:03:38] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[10:03:38] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[10:03:38] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[10:03:38] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[10:03:38] ============= [PASSED] drm_test_rect_intersect =============
[10:03:38] ================ drm_test_rect_calc_hscale ================
[10:03:38] [PASSED] normal use
[10:03:38] [PASSED] out of max range
[10:03:38] [PASSED] out of min range
[10:03:38] [PASSED] zero dst
[10:03:38] [PASSED] negative src
[10:03:38] [PASSED] negative dst
[10:03:38] ============ [PASSED] drm_test_rect_calc_hscale ============
[10:03:38] ================ drm_test_rect_calc_vscale ================
[10:03:38] [PASSED] normal use
[10:03:38] [PASSED] out of max range
[10:03:38] [PASSED] out of min range
[10:03:38] [PASSED] zero dst
[10:03:38] [PASSED] negative src
[10:03:38] [PASSED] negative dst
[10:03:38] ============ [PASSED] drm_test_rect_calc_vscale ============
[10:03:38] ================== drm_test_rect_rotate ===================
[10:03:38] [PASSED] reflect-x
[10:03:38] [PASSED] reflect-y
[10:03:38] [PASSED] rotate-0
[10:03:38] [PASSED] rotate-90
[10:03:38] [PASSED] rotate-180
[10:03:38] [PASSED] rotate-270
[10:03:38] ============== [PASSED] drm_test_rect_rotate ===============
[10:03:38] ================ drm_test_rect_rotate_inv =================
[10:03:38] [PASSED] reflect-x
[10:03:38] [PASSED] reflect-y
[10:03:38] [PASSED] rotate-0
[10:03:38] [PASSED] rotate-90
[10:03:38] [PASSED] rotate-180
[10:03:38] [PASSED] rotate-270
[10:03:38] ============ [PASSED] drm_test_rect_rotate_inv =============
[10:03:38] ==================== [PASSED] drm_rect =====================
[10:03:38] ============ drm_sysfb_modeset_test (1 subtest) ============
[10:03:38] ============ drm_test_sysfb_build_fourcc_list =============
[10:03:38] [PASSED] no native formats
[10:03:38] [PASSED] XRGB8888 as native format
[10:03:38] [PASSED] remove duplicates
[10:03:38] [PASSED] convert alpha formats
[10:03:38] [PASSED] random formats
[10:03:38] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[10:03:38] ============= [PASSED] drm_sysfb_modeset_test ==============
[10:03:38] ================== drm_fixp (2 subtests) ===================
[10:03:38] [PASSED] drm_test_int2fixp
[10:03:38] [PASSED] drm_test_sm2fixp
[10:03:38] ==================== [PASSED] drm_fixp =====================
[10:03:38] ============================================================
[10:03:38] Testing complete. Ran 639 tests: passed: 639
[10:03:38] Elapsed time: 26.082s total, 1.774s configuring, 24.143s building, 0.139s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[10:03:38] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[10:03:40] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[10:03:49] Starting KUnit Kernel (1/1)...
[10:03:49] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[10:03:49] ================= ttm_device (5 subtests) ==================
[10:03:49] [PASSED] ttm_device_init_basic
[10:03:49] [PASSED] ttm_device_init_multiple
[10:03:49] [PASSED] ttm_device_fini_basic
[10:03:49] [PASSED] ttm_device_init_no_vma_man
[10:03:49] ================== ttm_device_init_pools ==================
[10:03:49] [PASSED] No DMA allocations, no DMA32 required
[10:03:49] [PASSED] DMA allocations, DMA32 required
[10:03:49] [PASSED] No DMA allocations, DMA32 required
[10:03:49] [PASSED] DMA allocations, no DMA32 required
[10:03:49] ============== [PASSED] ttm_device_init_pools ==============
[10:03:49] =================== [PASSED] ttm_device ====================
[10:03:49] ================== ttm_pool (8 subtests) ===================
[10:03:49] ================== ttm_pool_alloc_basic ===================
[10:03:49] [PASSED] One page
[10:03:49] [PASSED] More than one page
[10:03:49] [PASSED] Above the allocation limit
[10:03:49] [PASSED] One page, with coherent DMA mappings enabled
[10:03:49] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[10:03:49] ============== [PASSED] ttm_pool_alloc_basic ===============
[10:03:49] ============== ttm_pool_alloc_basic_dma_addr ==============
[10:03:49] [PASSED] One page
[10:03:49] [PASSED] More than one page
[10:03:49] [PASSED] Above the allocation limit
[10:03:49] [PASSED] One page, with coherent DMA mappings enabled
[10:03:49] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[10:03:49] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[10:03:49] [PASSED] ttm_pool_alloc_order_caching_match
[10:03:49] [PASSED] ttm_pool_alloc_caching_mismatch
[10:03:49] [PASSED] ttm_pool_alloc_order_mismatch
[10:03:49] [PASSED] ttm_pool_free_dma_alloc
[10:03:49] [PASSED] ttm_pool_free_no_dma_alloc
[10:03:49] [PASSED] ttm_pool_fini_basic
[10:03:49] ==================== [PASSED] ttm_pool =====================
[10:03:49] ================ ttm_resource (8 subtests) =================
[10:03:49] ================= ttm_resource_init_basic =================
[10:03:49] [PASSED] Init resource in TTM_PL_SYSTEM
[10:03:49] [PASSED] Init resource in TTM_PL_VRAM
[10:03:49] [PASSED] Init resource in a private placement
[10:03:49] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[10:03:49] ============= [PASSED] ttm_resource_init_basic =============
[10:03:49] [PASSED] ttm_resource_init_pinned
[10:03:49] [PASSED] ttm_resource_fini_basic
[10:03:49] [PASSED] ttm_resource_manager_init_basic
[10:03:49] [PASSED] ttm_resource_manager_usage_basic
[10:03:49] [PASSED] ttm_resource_manager_set_used_basic
[10:03:49] [PASSED] ttm_sys_man_alloc_basic
[10:03:49] [PASSED] ttm_sys_man_free_basic
[10:03:49] ================== [PASSED] ttm_resource ===================
[10:03:49] =================== ttm_tt (15 subtests) ===================
[10:03:49] ==================== ttm_tt_init_basic ====================
[10:03:49] [PASSED] Page-aligned size
[10:03:49] [PASSED] Extra pages requested
[10:03:49] ================ [PASSED] ttm_tt_init_basic ================
[10:03:49] [PASSED] ttm_tt_init_misaligned
[10:03:49] [PASSED] ttm_tt_fini_basic
[10:03:49] [PASSED] ttm_tt_fini_sg
[10:03:49] [PASSED] ttm_tt_fini_shmem
[10:03:49] [PASSED] ttm_tt_create_basic
[10:03:49] [PASSED] ttm_tt_create_invalid_bo_type
[10:03:49] [PASSED] ttm_tt_create_ttm_exists
[10:03:49] [PASSED] ttm_tt_create_failed
[10:03:49] [PASSED] ttm_tt_destroy_basic
[10:03:49] [PASSED] ttm_tt_populate_null_ttm
[10:03:49] [PASSED] ttm_tt_populate_populated_ttm
[10:03:49] [PASSED] ttm_tt_unpopulate_basic
[10:03:49] [PASSED] ttm_tt_unpopulate_empty_ttm
[10:03:49] [PASSED] ttm_tt_swapin_basic
[10:03:49] ===================== [PASSED] ttm_tt ======================
[10:03:49] =================== ttm_bo (14 subtests) ===================
[10:03:49] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[10:03:49] [PASSED] Cannot be interrupted and sleeps
[10:03:49] [PASSED] Cannot be interrupted, locks straight away
[10:03:49] [PASSED] Can be interrupted, sleeps
[10:03:49] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[10:03:49] [PASSED] ttm_bo_reserve_locked_no_sleep
[10:03:49] [PASSED] ttm_bo_reserve_no_wait_ticket
[10:03:49] [PASSED] ttm_bo_reserve_double_resv
[10:03:49] [PASSED] ttm_bo_reserve_interrupted
[10:03:49] [PASSED] ttm_bo_reserve_deadlock
[10:03:49] [PASSED] ttm_bo_unreserve_basic
[10:03:49] [PASSED] ttm_bo_unreserve_pinned
[10:03:49] [PASSED] ttm_bo_unreserve_bulk
[10:03:49] [PASSED] ttm_bo_fini_basic
[10:03:49] [PASSED] ttm_bo_fini_shared_resv
[10:03:49] [PASSED] ttm_bo_pin_basic
[10:03:49] [PASSED] ttm_bo_pin_unpin_resource
[10:03:49] [PASSED] ttm_bo_multiple_pin_one_unpin
[10:03:49] ===================== [PASSED] ttm_bo ======================
[10:03:49] ============== ttm_bo_validate (22 subtests) ===============
[10:03:49] ============== ttm_bo_init_reserved_sys_man ===============
[10:03:49] [PASSED] Buffer object for userspace
[10:03:49] [PASSED] Kernel buffer object
[10:03:49] [PASSED] Shared buffer object
[10:03:49] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[10:03:49] ============== ttm_bo_init_reserved_mock_man ==============
[10:03:49] [PASSED] Buffer object for userspace
[10:03:49] [PASSED] Kernel buffer object
[10:03:49] [PASSED] Shared buffer object
[10:03:49] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[10:03:49] [PASSED] ttm_bo_init_reserved_resv
[10:03:49] ================== ttm_bo_validate_basic ==================
[10:03:49] [PASSED] Buffer object for userspace
[10:03:49] [PASSED] Kernel buffer object
[10:03:49] [PASSED] Shared buffer object
[10:03:49] ============== [PASSED] ttm_bo_validate_basic ==============
[10:03:49] [PASSED] ttm_bo_validate_invalid_placement
[10:03:49] ============= ttm_bo_validate_same_placement ==============
[10:03:49] [PASSED] System manager
[10:03:49] [PASSED] VRAM manager
[10:03:49] ========= [PASSED] ttm_bo_validate_same_placement ==========
[10:03:49] [PASSED] ttm_bo_validate_failed_alloc
[10:03:49] [PASSED] ttm_bo_validate_pinned
[10:03:49] [PASSED] ttm_bo_validate_busy_placement
[10:03:49] ================ ttm_bo_validate_multihop =================
[10:03:49] [PASSED] Buffer object for userspace
[10:03:49] [PASSED] Kernel buffer object
[10:03:49] [PASSED] Shared buffer object
[10:03:49] ============ [PASSED] ttm_bo_validate_multihop =============
[10:03:49] ========== ttm_bo_validate_no_placement_signaled ==========
[10:03:49] [PASSED] Buffer object in system domain, no page vector
[10:03:49] [PASSED] Buffer object in system domain with an existing page vector
[10:03:49] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[10:03:49] ======== ttm_bo_validate_no_placement_not_signaled ========
[10:03:49] [PASSED] Buffer object for userspace
[10:03:49] [PASSED] Kernel buffer object
[10:03:49] [PASSED] Shared buffer object
[10:03:49] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[10:03:49] [PASSED] ttm_bo_validate_move_fence_signaled
[10:03:49] ========= ttm_bo_validate_move_fence_not_signaled =========
[10:03:49] [PASSED] Waits for GPU
[10:03:49] [PASSED] Tries to lock straight away
[10:03:49] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[10:03:49] [PASSED] ttm_bo_validate_swapout
[10:03:49] [PASSED] ttm_bo_validate_happy_evict
[10:03:49] [PASSED] ttm_bo_validate_all_pinned_evict
[10:03:49] [PASSED] ttm_bo_validate_allowed_only_evict
[10:03:49] [PASSED] ttm_bo_validate_deleted_evict
[10:03:49] [PASSED] ttm_bo_validate_busy_domain_evict
[10:03:49] [PASSED] ttm_bo_validate_evict_gutting
[10:03:49] [PASSED] ttm_bo_validate_recrusive_evict
[10:03:49] ================= [PASSED] ttm_bo_validate =================
[10:03:49] ============================================================
[10:03:49] Testing complete. Ran 102 tests: passed: 102
[10:03:49] Elapsed time: 11.623s total, 1.811s configuring, 9.547s building, 0.214s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 1/3] drm/xe/pf: Do not return an error for unrecognized VF events
2026-06-24 9:56 [PATCH 1/3] drm/xe/pf: Do not return an error for unrecognized VF events Michał Winiarski
` (3 preceding siblings ...)
2026-06-24 10:03 ` ✓ CI.KUnit: success " Patchwork
@ 2026-06-24 11:59 ` K V P, Satyanarayana
2026-06-24 12:19 ` ✓ Xe.CI.BAT: success for series starting with [1/3] " Patchwork
2026-06-24 13:32 ` ✗ Xe.CI.FULL: failure " Patchwork
6 siblings, 0 replies; 9+ messages in thread
From: K V P, Satyanarayana @ 2026-06-24 11:59 UTC (permalink / raw)
To: intel-xe
On 24-Jun-26 3:26 PM, Michał Winiarski wrote:
> Notifications about VF state are generally not considered critical
> enough to warrant PF GT-level error and subsequent reset.
> Convert the error to dmesg log.
>
> Reported-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Signed-off-by: Michał Winiarski <michal.winiarski@intel.com>
> ---
> drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c b/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c
> index 058585f063a93..65f015d0ede51 100644
> --- a/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c
> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c
> @@ -1973,7 +1973,7 @@ static int pf_handle_vf_event(struct xe_gt *gt, u32 vfid, u32 eventid)
> case GUC_PF_NOTIFY_VF_FIXUP_DONE:
> break;
> default:
> - return -ENOPKG;
> + xe_gt_sriov_notice(gt, "unrecognized VF%u event %#x\n", vfid, eventid);
> }
> return 0;
> }
LGTM.
-Satya.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 3/3] drm/xe/pf: Add the definition of VF resfix abort event
2026-06-24 9:56 ` [PATCH 3/3] drm/xe/pf: Add the definition of VF resfix " Michał Winiarski
@ 2026-06-24 12:02 ` K V P, Satyanarayana
0 siblings, 0 replies; 9+ messages in thread
From: K V P, Satyanarayana @ 2026-06-24 12:02 UTC (permalink / raw)
To: intel-xe
On 24-Jun-26 3:26 PM, Michał Winiarski wrote:
> The VF RESFIX_ABORT event is similar to FIXUP_DONE event, in that
> there's no handling required from PF perspective.
> Add the definition to avoid the "unrecognized event" message.
>
> Signed-off-by: Michał Winiarski <michal.winiarski@intel.com>
> ---
> drivers/gpu/drm/xe/abi/guc_actions_sriov_abi.h | 2 ++
> drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c | 2 ++
> 2 files changed, 4 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/abi/guc_actions_sriov_abi.h b/drivers/gpu/drm/xe/abi/guc_actions_sriov_abi.h
> index 8665b8c5b7336..59c52b7c21ab6 100644
> --- a/drivers/gpu/drm/xe/abi/guc_actions_sriov_abi.h
> +++ b/drivers/gpu/drm/xe/abi/guc_actions_sriov_abi.h
> @@ -230,6 +230,7 @@
> * | | | - _`GUC_PF_NOTIFY_VF_PAUSE_DONE` = 3 |
> * | | | - _`GUC_PF_NOTIFY_VF_FIXUP_DONE` = 4 |
> * | | | - _`GUC_PF_NOTIFY_VF_PAUSE_ABORTED` = 5 |
> + * | | | - _`GUC_PF_NOTIFY_VF_RESFIX_ABORTED` = 6 |
> * +---+-------+--------------------------------------------------------------+
> */
> #define GUC_ACTION_GUC2PF_VF_STATE_NOTIFY 0x5106u
> @@ -244,6 +245,7 @@
> #define GUC_PF_NOTIFY_VF_PAUSE_DONE 3u
> #define GUC_PF_NOTIFY_VF_FIXUP_DONE 4u
> #define GUC_PF_NOTIFY_VF_PAUSE_ABORTED 5u
> +#define GUC_PF_NOTIFY_VF_RESFIX_ABORTED 6u
>
> /**
> * DOC: VF2GUC_MATCH_VERSION
> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c b/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c
> index 82957c596b683..2762fff78f113 100644
> --- a/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c
> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c
> @@ -1986,6 +1986,8 @@ static int pf_handle_vf_event(struct xe_gt *gt, u32 vfid, u32 eventid)
> case GUC_PF_NOTIFY_VF_PAUSE_ABORTED:
> pf_handle_vf_pause_aborted(gt, vfid);
> break;
> + case GUC_PF_NOTIFY_VF_RESFIX_ABORTED:
> + break;
Better to log a message if the event is not handled.
> default:
> xe_gt_sriov_notice(gt, "unrecognized VF%u event %#x\n", vfid, eventid);
> }
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for series starting with [1/3] drm/xe/pf: Do not return an error for unrecognized VF events
2026-06-24 9:56 [PATCH 1/3] drm/xe/pf: Do not return an error for unrecognized VF events Michał Winiarski
` (4 preceding siblings ...)
2026-06-24 11:59 ` [PATCH 1/3] " K V P, Satyanarayana
@ 2026-06-24 12:19 ` Patchwork
2026-06-24 13:32 ` ✗ Xe.CI.FULL: failure " Patchwork
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-06-24 12:19 UTC (permalink / raw)
To: Michał Winiarski; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 3691 bytes --]
== Series Details ==
Series: series starting with [1/3] drm/xe/pf: Do not return an error for unrecognized VF events
URL : https://patchwork.freedesktop.org/series/169091/
State : success
== Summary ==
CI Bug Log - changes from xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82_BAT -> xe-pw-169091v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 13)
------------------------------
Additional (1): bat-ptl-vm
Known issues
------------
Here are the changes found in xe-pw-169091v1_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_evict@evict-beng-small-cm:
- bat-ptl-vm: NOTRUN -> [SKIP][1] ([Intel XE#5764]) +10 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/bat-ptl-vm/igt@xe_evict@evict-beng-small-cm.html
* igt@xe_exec_balancer@no-exec-cm-virtual-basic:
- bat-ptl-vm: NOTRUN -> [SKIP][2] ([Intel XE#7482]) +17 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/bat-ptl-vm/igt@xe_exec_balancer@no-exec-cm-virtual-basic.html
* igt@xe_exec_multi_queue@many-queues-preempt-mode-close-fd:
- bat-ptl-vm: NOTRUN -> [SKIP][3] ([Intel XE#8364]) +13 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/bat-ptl-vm/igt@xe_exec_multi_queue@many-queues-preempt-mode-close-fd.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-ptl-vm: NOTRUN -> [SKIP][4] ([Intel XE#5775])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/bat-ptl-vm/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_mmap@vram:
- bat-ptl-vm: NOTRUN -> [SKIP][5] ([Intel XE#5776])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/bat-ptl-vm/igt@xe_mmap@vram.html
* igt@xe_pat@pat-index-xehpc:
- bat-ptl-vm: NOTRUN -> [SKIP][6] ([Intel XE#5777] / [Intel XE#7590])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/bat-ptl-vm/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-ptl-vm: NOTRUN -> [SKIP][7] ([Intel XE#5771] / [Intel XE#7590])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/bat-ptl-vm/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-ptl-vm: NOTRUN -> [SKIP][8] ([Intel XE#5780] / [Intel XE#7590])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/bat-ptl-vm/igt@xe_pat@pat-index-xelpg.html
[Intel XE#5764]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5764
[Intel XE#5771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5771
[Intel XE#5775]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5775
[Intel XE#5776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5776
[Intel XE#5777]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5777
[Intel XE#5780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5780
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
Build changes
-------------
* Linux: xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82 -> xe-pw-169091v1
IGT_8982: 48befce9e6b0c0d371c4812bfff34a61319f68f1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82: b2817f6a1517bc9ecdef5229b84e8a44d983de82
xe-pw-169091v1: 169091v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/index.html
[-- Attachment #2: Type: text/html, Size: 4563 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.FULL: failure for series starting with [1/3] drm/xe/pf: Do not return an error for unrecognized VF events
2026-06-24 9:56 [PATCH 1/3] drm/xe/pf: Do not return an error for unrecognized VF events Michał Winiarski
` (5 preceding siblings ...)
2026-06-24 12:19 ` ✓ Xe.CI.BAT: success for series starting with [1/3] " Patchwork
@ 2026-06-24 13:32 ` Patchwork
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-06-24 13:32 UTC (permalink / raw)
To: Michał Winiarski; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 163538 bytes --]
== Series Details ==
Series: series starting with [1/3] drm/xe/pf: Do not return an error for unrecognized VF events
URL : https://patchwork.freedesktop.org/series/169091/
State : failure
== Summary ==
CI Bug Log - changes from xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82_FULL -> xe-pw-169091v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-169091v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-169091v1_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 (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-169091v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@wf_vblank-ts-check:
- shard-bmg: [PASS][1] -> [SKIP][2] +3345 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-9/igt@kms_flip@wf_vblank-ts-check.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-5/igt@kms_flip@wf_vblank-ts-check.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-malloc-madvise:
- shard-bmg: NOTRUN -> [SKIP][3] +178 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-malloc-madvise.html
* igt@xe_exec_system_allocator@twice-new-prefetch:
- shard-lnl: [PASS][4] -> [SKIP][5] +3351 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-4/igt@xe_exec_system_allocator@twice-new-prefetch.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-2/igt@xe_exec_system_allocator@twice-new-prefetch.html
#### Warnings ####
* igt@asahi/asahi_get_params@get-params:
- shard-lnl: [SKIP][6] ([Intel XE#8416]) -> [SKIP][7] +7 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-2/igt@asahi/asahi_get_params@get-params.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-7/igt@asahi/asahi_get_params@get-params.html
* igt@asahi/asahi_get_time@get-time-flags-uint64-max:
- shard-bmg: [SKIP][8] ([Intel XE#8416]) -> [SKIP][9] +7 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-2/igt@asahi/asahi_get_time@get-time-flags-uint64-max.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-10/igt@asahi/asahi_get_time@get-time-flags-uint64-max.html
* igt@intel_hwmon@hwmon-read:
- shard-lnl: [SKIP][10] ([Intel XE#1125] / [Intel XE#7312]) -> [SKIP][11]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@intel_hwmon@hwmon-read.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-lnl: [SKIP][12] ([Intel XE#1466]) -> [SKIP][13]
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-lnl: [SKIP][14] ([Intel XE#3157]) -> [SKIP][15]
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-lnl: [SKIP][16] ([Intel XE#3279]) -> [SKIP][17] +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: [SKIP][18] ([Intel XE#2370]) -> [SKIP][19] +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: [SKIP][20] ([Intel XE#2327]) -> [SKIP][21] +18 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-3/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-1/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-lnl: [SKIP][22] ([Intel XE#3658] / [Intel XE#7360]) -> [SKIP][23] +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-lnl: [SKIP][24] ([Intel XE#1407]) -> [SKIP][25] +22 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@kms_big_fb@linear-32bpp-rotate-90.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-lnl: [SKIP][26] ([Intel XE#7059] / [Intel XE#7085]) -> [SKIP][27] +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-5/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: [SKIP][28] ([Intel XE#7059] / [Intel XE#7085]) -> [SKIP][29] +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-10/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-7/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
- shard-lnl: [SKIP][30] ([Intel XE#1124]) -> [SKIP][31] +56 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-6/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-4/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: [SKIP][32] ([Intel XE#2328] / [Intel XE#7367]) -> [SKIP][33]
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb.html
- shard-lnl: [SKIP][34] ([Intel XE#1467] / [Intel XE#7367]) -> [SKIP][35]
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-1/igt@kms_big_fb@y-tiled-addfb.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-1/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-lnl: [SKIP][36] ([Intel XE#1477] / [Intel XE#7361]) -> [SKIP][37] +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-lnl: [SKIP][38] ([Intel XE#1428] / [Intel XE#7387]) -> [SKIP][39]
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
- shard-bmg: [SKIP][40] ([Intel XE#610] / [Intel XE#7387]) -> [SKIP][41]
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-9/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-9/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: [SKIP][42] ([Intel XE#1124]) -> [SKIP][43] +54 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: [SKIP][44] ([Intel XE#607] / [Intel XE#7361]) -> [SKIP][45]
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@connected-linear-tiling-3-displays-target-1920x1080p:
- shard-bmg: [SKIP][46] ([Intel XE#7679]) -> [SKIP][47] +4 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-3/igt@kms_bw@connected-linear-tiling-3-displays-target-1920x1080p.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-target-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p:
- shard-lnl: [SKIP][48] ([Intel XE#7679]) -> [SKIP][49] +6 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p:
- shard-lnl: [SKIP][50] ([Intel XE#8365]) -> [SKIP][51] +6 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-2/igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-target-2560x1440p:
- shard-bmg: [SKIP][52] ([Intel XE#367]) -> [SKIP][53] +13 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-target-2560x1440p.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-9/igt@kms_bw@linear-tiling-1-displays-target-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-target-2560x1440p:
- shard-lnl: [SKIP][54] ([Intel XE#367]) -> [SKIP][55] +6 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@kms_bw@linear-tiling-2-displays-target-2560x1440p.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@kms_bw@linear-tiling-2-displays-target-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: [SKIP][56] ([Intel XE#2887]) -> [SKIP][57] +76 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-8/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-4/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-lnl: [SKIP][58] ([Intel XE#2669] / [Intel XE#3433] / [Intel XE#7389]) -> [SKIP][59]
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-bmg: [SKIP][60] ([Intel XE#3432]) -> [SKIP][61] +9 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-bmg: [SKIP][62] ([Intel XE#2652]) -> [SKIP][63] +4 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-lnl: [SKIP][64] ([Intel XE#3432]) -> [SKIP][65] +10 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-lnl: [SKIP][66] ([Intel XE#2669] / [Intel XE#7389]) -> [SKIP][67] +4 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-bmg: [SKIP][68] ([Intel XE#2887]) -> [SKIP][69] +71 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-10/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: [SKIP][70] ([Intel XE#2724] / [Intel XE#7449]) -> [SKIP][71] +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-5/igt@kms_cdclk@mode-transition-all-outputs.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-5/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-lnl: [SKIP][72] ([Intel XE#7008]) -> [SKIP][73]
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-2/igt@kms_cdclk@mode-transition-all-outputs.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-7/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling:
- shard-lnl: [SKIP][74] ([Intel XE#4416] / [Intel XE#7381]) -> [SKIP][75]
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-8/igt@kms_cdclk@plane-scaling.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-4/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-bmg: [SKIP][76] ([Intel XE#2325] / [Intel XE#7358]) -> [SKIP][77] +9 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-9/igt@kms_chamelium_color@ctm-0-25.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-9/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-lnl: [SKIP][78] ([Intel XE#306] / [Intel XE#7358]) -> [SKIP][79] +10 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@kms_chamelium_color@ctm-blue-to-red.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color_pipeline@plane-lut1d:
- shard-lnl: [SKIP][80] ([Intel XE#7358]) -> [SKIP][81] +6 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-2/igt@kms_chamelium_color_pipeline@plane-lut1d.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@kms_chamelium_color_pipeline@plane-lut1d.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d:
- shard-bmg: [SKIP][82] ([Intel XE#7358]) -> [SKIP][83] +6 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-10/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-10/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: [SKIP][84] ([Intel XE#2252]) -> [SKIP][85] +37 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-6/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-lnl: [SKIP][86] ([Intel XE#373]) -> [SKIP][87] +41 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-5/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_sharpness_filter@filter-basic:
- shard-bmg: [SKIP][88] ([Intel XE#6507]) -> [SKIP][89]
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-2/igt@kms_chamelium_sharpness_filter@filter-basic.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-7/igt@kms_chamelium_sharpness_filter@filter-basic.html
- shard-lnl: [SKIP][90] ([Intel XE#6507]) -> [SKIP][91]
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-8/igt@kms_chamelium_sharpness_filter@filter-basic.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-4/igt@kms_chamelium_sharpness_filter@filter-basic.html
* igt@kms_color_pipeline@plane-lut3d-green-only:
- shard-lnl: [SKIP][92] ([Intel XE#6969] / [Intel XE#7006]) -> [SKIP][93]
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-7/igt@kms_color_pipeline@plane-lut3d-green-only.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@kms_color_pipeline@plane-lut3d-green-only.html
- shard-bmg: [SKIP][94] ([Intel XE#6969] / [Intel XE#7006]) -> [SKIP][95]
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-9/igt@kms_color_pipeline@plane-lut3d-green-only.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-9/igt@kms_color_pipeline@plane-lut3d-green-only.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: [SKIP][96] ([Intel XE#7642]) -> [SKIP][97] +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-1/igt@kms_content_protection@content-type-change.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-6/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-bmg: [SKIP][98] ([Intel XE#2390] / [Intel XE#6974]) -> [SKIP][99] +3 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-3/igt@kms_content_protection@dp-mst-lic-type-1.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-2/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-bmg: [SKIP][100] ([Intel XE#6974]) -> [SKIP][101] +3 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-5/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-5/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-lnl: [SKIP][102] ([Intel XE#6974]) -> [SKIP][103] +3 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-lnl: [SKIP][104] ([Intel XE#307] / [Intel XE#6974]) -> [SKIP][105] +3 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-1/igt@kms_content_protection@dp-mst-type-1.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-bmg: [FAIL][106] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][107] +5 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-2/igt@kms_content_protection@legacy.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-10/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@mei-interface:
- shard-lnl: [SKIP][108] ([Intel XE#1468] / [Intel XE#7396]) -> [SKIP][109]
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@kms_content_protection@mei-interface.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-2/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@suspend-resume:
- shard-lnl: [SKIP][110] ([Intel XE#7642]) -> [SKIP][111] +10 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-6/igt@kms_content_protection@suspend-resume.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-3/igt@kms_content_protection@suspend-resume.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-bmg: [FAIL][112] ([Intel XE#6707] / [Intel XE#7439]) -> [SKIP][113] +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-9/igt@kms_content_protection@uevent-hdcp14.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-5/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-bmg: [SKIP][114] ([Intel XE#2320]) -> [SKIP][115] +25 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-10/igt@kms_cursor_crc@cursor-onscreen-max-size.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-10/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-lnl: [SKIP][116] ([Intel XE#2321] / [Intel XE#7355]) -> [SKIP][117] +7 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-bmg: [SKIP][118] ([Intel XE#2321] / [Intel XE#7355]) -> [SKIP][119] +7 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-512x512.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-lnl: [SKIP][120] ([Intel XE#1424]) -> [SKIP][121] +26 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-8/igt@kms_cursor_crc@cursor-sliding-64x21.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-3/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-lnl: [SKIP][122] ([Intel XE#309] / [Intel XE#7343]) -> [SKIP][123] +22 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-bmg: [FAIL][124] ([Intel XE#7809]) -> [SKIP][125]
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-lnl: [SKIP][126] ([Intel XE#323] / [Intel XE#6035]) -> [SKIP][127] +2 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-bmg: [SKIP][128] ([Intel XE#2286] / [Intel XE#6035]) -> [SKIP][129] +2 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-lnl: [SKIP][130] ([Intel XE#1508]) -> [SKIP][131]
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-bmg: [SKIP][132] ([Intel XE#1508]) -> [SKIP][133]
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-10/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-10/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: [SKIP][134] ([Intel XE#4210] / [Intel XE#7467]) -> [SKIP][135]
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-8/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-8/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-lnl: [SKIP][136] ([Intel XE#4302]) -> [SKIP][137]
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-1/igt@kms_display_modes@extended-mode-basic.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-7/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-lnl: [SKIP][138] ([Intel XE#4354] / [Intel XE#5882]) -> [SKIP][139]
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-1/igt@kms_dp_link_training@non-uhbr-mst.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-7/igt@kms_dp_link_training@non-uhbr-mst.html
- shard-bmg: [SKIP][140] ([Intel XE#4354] / [Intel XE#5882]) -> [SKIP][141]
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-8/igt@kms_dp_link_training@non-uhbr-mst.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-2/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-lnl: [SKIP][142] ([Intel XE#4354] / [Intel XE#7450]) -> [SKIP][143]
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-8/igt@kms_dp_link_training@non-uhbr-sst.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-3/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-lnl: [SKIP][144] ([Intel XE#4354] / [Intel XE#7386]) -> [SKIP][145]
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-4/igt@kms_dp_link_training@uhbr-mst.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@kms_dp_link_training@uhbr-mst.html
- shard-bmg: [SKIP][146] ([Intel XE#4354] / [Intel XE#7386]) -> [SKIP][147]
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-4/igt@kms_dp_link_training@uhbr-mst.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-3/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-lnl: [SKIP][148] ([Intel XE#4294] / [Intel XE#7477]) -> [SKIP][149]
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@kms_dp_linktrain_fallback@dp-fallback.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-lnl: [SKIP][150] ([Intel XE#4331] / [Intel XE#7227]) -> [SKIP][151]
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-3/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-bmg: [SKIP][152] ([Intel XE#4331] / [Intel XE#7227]) -> [SKIP][153]
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-9/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-basic-bigjoiner:
- shard-bmg: [SKIP][154] ([Intel XE#8265]) -> [SKIP][155] +18 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-5/igt@kms_dsc@dsc-basic-bigjoiner.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-9/igt@kms_dsc@dsc-basic-bigjoiner.html
* igt@kms_dsc@dsc-with-output-formats-bigjoiner:
- shard-lnl: [SKIP][156] ([Intel XE#8265]) -> [SKIP][157] +20 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-4/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-2/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-bmg: [SKIP][158] ([Intel XE#4422] / [Intel XE#7442]) -> [SKIP][159] +2 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-6/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area:
- shard-lnl: [SKIP][160] ([Intel XE#4422] / [Intel XE#7442]) -> [SKIP][161] +2 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-6/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-3/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: [SKIP][162] ([Intel XE#4156] / [Intel XE#7425]) -> [SKIP][163] +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-1/igt@kms_fbcon_fbt@fbc-suspend.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-8/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: [SKIP][164] ([Intel XE#6126] / [Intel XE#776]) -> [SKIP][165] +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-1/igt@kms_fbcon_fbt@psr-suspend.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-lnl: [SKIP][166] ([Intel XE#702] / [Intel XE#7344]) -> [SKIP][167]
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-2/igt@kms_feature_discovery@display-2x.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-lnl: [SKIP][168] ([Intel XE#703] / [Intel XE#7448]) -> [SKIP][169]
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-7/igt@kms_feature_discovery@display-3x.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-3/igt@kms_feature_discovery@display-3x.html
- shard-bmg: [SKIP][170] ([Intel XE#2373] / [Intel XE#7448]) -> [SKIP][171]
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-7/igt@kms_feature_discovery@display-3x.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-9/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-lnl: [SKIP][172] ([Intel XE#1138] / [Intel XE#7344]) -> [SKIP][173]
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-8/igt@kms_feature_discovery@display-4x.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-3/igt@kms_feature_discovery@display-4x.html
- shard-bmg: [SKIP][174] ([Intel XE#1138] / [Intel XE#7344]) -> [SKIP][175]
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-3/igt@kms_feature_discovery@display-4x.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-2/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-lnl: [SKIP][176] ([Intel XE#1137] / [Intel XE#2375]) -> [SKIP][177]
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@kms_feature_discovery@dp-mst.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-2/igt@kms_feature_discovery@dp-mst.html
- shard-bmg: [SKIP][178] ([Intel XE#2375]) -> [SKIP][179]
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-10/igt@kms_feature_discovery@dp-mst.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-7/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-bmg: [SKIP][180] ([Intel XE#2374] / [Intel XE#6127]) -> [SKIP][181]
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-6/igt@kms_feature_discovery@psr1.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-3/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-bmg: [SKIP][182] ([Intel XE#2374] / [Intel XE#6128]) -> [SKIP][183]
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-4/igt@kms_feature_discovery@psr2.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-3/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-lnl: [SKIP][184] ([Intel XE#1421]) -> [SKIP][185] +41 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-4/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-bmg: [FAIL][186] ([Intel XE#6266]) -> [SKIP][187]
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-2/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-10/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-lnl: [FAIL][188] ([Intel XE#301]) -> [SKIP][189]
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-lnl: [SKIP][190] ([Intel XE#7178] / [Intel XE#7349]) -> [SKIP][191] +3 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x:
- shard-lnl: [SKIP][192] ([Intel XE#7179]) -> [SKIP][193] +3 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: [SKIP][194] ([Intel XE#7178] / [Intel XE#7349]) -> [SKIP][195] +3 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
- shard-lnl: [SKIP][196] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385]) -> [SKIP][197] +7 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-lnl: [SKIP][198] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][199] +20 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-bmg: [SKIP][200] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][201] +19 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x:
- shard-bmg: [SKIP][202] ([Intel XE#7179]) -> [SKIP][203] +3 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-6/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-7/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-lnl: [SKIP][204] ([Intel XE#352]) -> [SKIP][205] +2 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-4/igt@kms_force_connector_basic@prune-stale-modes.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-lnl: [SKIP][206] ([Intel XE#7905]) -> [SKIP][207] +253 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-2/igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-pri-indfb-draw-mmap-wc.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-render:
- shard-lnl: [SKIP][208] ([Intel XE#7061]) -> [SKIP][209] +31 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-6/igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-render.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-3/igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][210] ([Intel XE#4141]) -> [SKIP][211] +72 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-blt:
- shard-lnl: [SKIP][212] ([Intel XE#6312]) -> [SKIP][213] +89 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-blt.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][214] ([Intel XE#2311]) -> [SKIP][215] +297 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt:
- shard-lnl: [SKIP][216] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][217] +25 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render:
- shard-bmg: [SKIP][218] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][219] +23 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:
- shard-lnl: [SKIP][220] ([Intel XE#6312] / [Intel XE#651]) -> [SKIP][221] +65 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-lnl: [SKIP][222] ([Intel XE#1469] / [Intel XE#7399]) -> [SKIP][223] +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
- shard-bmg: [SKIP][224] ([Intel XE#2352] / [Intel XE#7399]) -> [SKIP][225] +1 other test skip
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-tiling-y:
- shard-lnl: [SKIP][226] ([Intel XE#7399]) -> [SKIP][227] +2 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrshdr-tiling-y.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrshdr-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y:
- shard-bmg: [SKIP][228] ([Intel XE#7399]) -> [SKIP][229] +2 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: [SKIP][230] ([Intel XE#2350] / [Intel XE#7503]) -> [SKIP][231]
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-7/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-3/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][232] ([Intel XE#2313]) -> [SKIP][233] +294 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: [SKIP][234] ([Intel XE#656] / [Intel XE#7905]) -> [SKIP][235] +213 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-plflip-blt:
- shard-lnl: [SKIP][236] ([Intel XE#7865]) -> [SKIP][237] +149 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-7/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-plflip-blt.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-blt:
- shard-bmg: [SKIP][238] ([Intel XE#7061]) -> [SKIP][239] +30 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-9/igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-blt.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-9/igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-blt.html
* igt@kms_hdmi_inject@inject-4k:
- shard-lnl: [SKIP][240] ([Intel XE#1470]) -> [SKIP][241]
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-1/igt@kms_hdmi_inject@inject-4k.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-7/igt@kms_hdmi_inject@inject-4k.html
* igt@kms_hdmi_inject@inject-audio:
- shard-lnl: [SKIP][242] ([Intel XE#1470] / [Intel XE#2853]) -> [SKIP][243]
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-6/igt@kms_hdmi_inject@inject-audio.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-6/igt@kms_hdmi_inject@inject-audio.html
- shard-bmg: [SKIP][244] ([Intel XE#7308]) -> [SKIP][245]
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-4/igt@kms_hdmi_inject@inject-audio.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-4/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@brightness-with-hdr:
- shard-lnl: [SKIP][246] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][247]
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-7/igt@kms_hdr@brightness-with-hdr.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-3/igt@kms_hdr@brightness-with-hdr.html
- shard-bmg: [SKIP][248] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][249]
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-9/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][250] ([Intel XE#1503]) -> [SKIP][251]
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-9/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-lnl: [SKIP][252] ([Intel XE#1503]) -> [SKIP][253] +4 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-4/igt@kms_hdr@invalid-metadata-sizes.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_joiner@basic-big-joiner:
- shard-lnl: [SKIP][254] ([Intel XE#6901]) -> [SKIP][255]
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-8/igt@kms_joiner@basic-big-joiner.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-1/igt@kms_joiner@basic-big-joiner.html
- shard-bmg: [SKIP][256] ([Intel XE#6901]) -> [SKIP][257]
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-1/igt@kms_joiner@basic-big-joiner.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-6/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-lnl: [SKIP][258] ([Intel XE#7086] / [Intel XE#7390]) -> [SKIP][259] +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-7/igt@kms_joiner@basic-force-big-joiner.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-3/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-lnl: [SKIP][260] ([Intel XE#4298] / [Intel XE#5873]) -> [SKIP][261]
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-6/igt@kms_joiner@basic-max-non-joiner.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-3/igt@kms_joiner@basic-max-non-joiner.html
- shard-bmg: [SKIP][262] ([Intel XE#4298] / [Intel XE#5873]) -> [SKIP][263]
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-5/igt@kms_joiner@basic-max-non-joiner.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-9/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-lnl: [SKIP][264] ([Intel XE#6900] / [Intel XE#7362]) -> [SKIP][265] +3 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-8/igt@kms_joiner@basic-ultra-joiner.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-3/igt@kms_joiner@basic-ultra-joiner.html
- shard-bmg: [SKIP][266] ([Intel XE#6911] / [Intel XE#7378]) -> [SKIP][267] +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-3/igt@kms_joiner@basic-ultra-joiner.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-2/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: [SKIP][268] ([Intel XE#6911] / [Intel XE#7466]) -> [SKIP][269] +1 other test skip
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-bmg: [SKIP][270] ([Intel XE#4090] / [Intel XE#7443]) -> [SKIP][271]
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-9/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-9/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-lnl: [SKIP][272] ([Intel XE#7173] / [Intel XE#7294]) -> [SKIP][273]
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-7/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_mst@mst-suspend-read-crc:
- shard-lnl: [SKIP][274] ([Intel XE#8348]) -> [SKIP][275]
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-5/igt@kms_mst@mst-suspend-read-crc.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@kms_mst@mst-suspend-read-crc.html
- shard-bmg: [SKIP][276] ([Intel XE#8348]) -> [SKIP][277]
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-8/igt@kms_mst@mst-suspend-read-crc.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-8/igt@kms_mst@mst-suspend-read-crc.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: [SKIP][278] ([Intel XE#7591]) -> [SKIP][279]
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-lnl: [SKIP][280] ([Intel XE#7591]) -> [SKIP][281]
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: [SKIP][282] ([Intel XE#2486]) -> [SKIP][283] +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-3/igt@kms_panel_fitting@legacy.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-2/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-lnl: [SKIP][284] ([Intel XE#6912] / [Intel XE#7375]) -> [SKIP][285]
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-bmg: [SKIP][286] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375]) -> [SKIP][287]
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-3/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-1/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
- shard-lnl: [SKIP][288] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375]) -> [SKIP][289]
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-2/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
- shard-lnl: [SKIP][290] ([Intel XE#7283]) -> [SKIP][291] +23 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
- shard-bmg: [SKIP][292] ([Intel XE#7283]) -> [SKIP][293] +23 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-1/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
* igt@kms_plane_lowres@tiling-x:
- shard-lnl: [SKIP][294] ([Intel XE#599] / [Intel XE#7382]) -> [SKIP][295] +2 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-1/igt@kms_plane_lowres@tiling-x.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-7/igt@kms_plane_lowres@tiling-x.html
* igt@kms_plane_lowres@tiling-y:
- shard-lnl: [SKIP][296] ([Intel XE#599]) -> [SKIP][297] +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-6/igt@kms_plane_lowres@tiling-y.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-4/igt@kms_plane_lowres@tiling-y.html
- shard-bmg: [SKIP][298] ([Intel XE#2393]) -> [SKIP][299] +1 other test skip
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-2/igt@kms_plane_lowres@tiling-y.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-10/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-lnl: [SKIP][300] ([Intel XE#4596] / [Intel XE#5854]) -> [SKIP][301] +3 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@kms_plane_multiple@2x-tiling-none.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: [SKIP][302] ([Intel XE#5021] / [Intel XE#7377]) -> [SKIP][303] +1 other test skip
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-yf.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-yf:
- shard-lnl: [SKIP][304] ([Intel XE#5020] / [Intel XE#7348]) -> [SKIP][305] +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-8/igt@kms_plane_multiple@tiling-yf.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-3/igt@kms_plane_multiple@tiling-yf.html
- shard-bmg: [SKIP][306] ([Intel XE#5020] / [Intel XE#7348]) -> [SKIP][307] +1 other test skip
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-3/igt@kms_plane_multiple@tiling-yf.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-2/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-bmg: [SKIP][308] ([Intel XE#2685] / [Intel XE#3307]) -> [SKIP][309]
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-6/igt@kms_plane_scaling@intel-max-src-size.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-7/igt@kms_plane_scaling@intel-max-src-size.html
- shard-lnl: [SKIP][310] ([Intel XE#3307]) -> [SKIP][311]
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@kms_plane_scaling@intel-max-src-size.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: [SKIP][312] ([Intel XE#2763] / [Intel XE#6886]) -> [SKIP][313] +2 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-10/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-lnl: [SKIP][314] ([Intel XE#2763] / [Intel XE#6886]) -> [SKIP][315] +9 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: [SKIP][316] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870]) -> [SKIP][317] +3 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-2/igt@kms_pm_backlight@bad-brightness.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-7/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: [SKIP][318] ([Intel XE#2938] / [Intel XE#7376] / [Intel XE#7760]) -> [SKIP][319]
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-1/igt@kms_pm_backlight@brightness-with-dpms.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-6/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc3co-after-dc6:
- shard-bmg: [SKIP][320] ([Intel XE#8395]) -> [SKIP][321] +3 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-1/igt@kms_pm_dc@dc3co-after-dc6.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-8/igt@kms_pm_dc@dc3co-after-dc6.html
* igt@kms_pm_dc@dc3co-vpb-framegap:
- shard-lnl: [SKIP][322] ([Intel XE#8395]) -> [SKIP][323] +3 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-4/igt@kms_pm_dc@dc3co-vpb-framegap.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-2/igt@kms_pm_dc@dc3co-vpb-framegap.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-lnl: [SKIP][324] ([Intel XE#1131]) -> [SKIP][325]
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-4/igt@kms_pm_dc@dc5-dpms-negative.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc5-pageflip-negative:
- shard-bmg: [SKIP][326] ([Intel XE#6927]) -> [SKIP][327]
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-6/igt@kms_pm_dc@dc5-pageflip-negative.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-7/igt@kms_pm_dc@dc5-pageflip-negative.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-lnl: [SKIP][328] ([Intel XE#3309] / [Intel XE#7368]) -> [SKIP][329]
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-2/igt@kms_pm_dc@dc5-retention-flops.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-7/igt@kms_pm_dc@dc5-retention-flops.html
- shard-bmg: [SKIP][330] ([Intel XE#3309] / [Intel XE#7368]) -> [SKIP][331]
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-5/igt@kms_pm_dc@dc5-retention-flops.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-5/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-psr:
- shard-bmg: [SKIP][332] ([Intel XE#7794]) -> [SKIP][333]
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-2/igt@kms_pm_dc@dc6-psr.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-10/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: [FAIL][334] ([Intel XE#2029] / [Intel XE#7395]) -> [SKIP][335]
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-8/igt@kms_pm_dc@deep-pkgc.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-4/igt@kms_pm_dc@deep-pkgc.html
- shard-bmg: [SKIP][336] ([Intel XE#2505] / [Intel XE#7447]) -> [SKIP][337]
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-2/igt@kms_pm_dc@deep-pkgc.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-7/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-bmg: [SKIP][338] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) -> [SKIP][339] +3 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-9/igt@kms_pm_rpm@dpms-lpsp.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-9/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: [SKIP][340] ([Intel XE#1439] / [Intel XE#7402] / [Intel XE#836]) -> [SKIP][341]
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-lnl: [SKIP][342] ([Intel XE#1439] / [Intel XE#7402] / [Intel XE#836]) -> [SKIP][343]
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-lnl: [SKIP][344] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383]) -> [SKIP][345] +2 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-8/igt@kms_pm_rpm@modeset-non-lpsp.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-1/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@package-g7:
- shard-lnl: [SKIP][346] ([Intel XE#6813]) -> [SKIP][347]
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-7/igt@kms_pm_rpm@package-g7.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-3/igt@kms_pm_rpm@package-g7.html
- shard-bmg: [SKIP][348] ([Intel XE#6814] / [Intel XE#7428]) -> [SKIP][349]
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-7/igt@kms_pm_rpm@package-g7.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-9/igt@kms_pm_rpm@package-g7.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-lnl: [SKIP][350] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) -> [SKIP][351] +10 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-lnl: [SKIP][352] ([Intel XE#2893] / [Intel XE#7304]) -> [SKIP][353] +20 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-7/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-bmg: [SKIP][354] ([Intel XE#1489]) -> [SKIP][355] +39 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-4/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-4/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-lnl: [SKIP][356] ([Intel XE#1128] / [Intel XE#7413]) -> [SKIP][357] +3 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: [SKIP][358] ([Intel XE#2387] / [Intel XE#7429]) -> [SKIP][359] +3 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-4/igt@kms_psr2_su@page_flip-xrgb8888.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-3/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-lnl: [SKIP][360] ([Intel XE#1406] / [Intel XE#7345]) -> [SKIP][361] +10 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-5/igt@kms_psr@fbc-psr2-sprite-render.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@pr-no-drrs:
- shard-lnl: [SKIP][362] ([Intel XE#1406]) -> [SKIP][363] +22 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-1/igt@kms_psr@pr-no-drrs.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-7/igt@kms_psr@pr-no-drrs.html
* igt@kms_psr@psr2-no-drrs:
- shard-bmg: [SKIP][364] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][365] +63 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-3/igt@kms_psr@psr2-no-drrs.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-1/igt@kms_psr@psr2-no-drrs.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: [SKIP][366] ([Intel XE#2234]) -> [SKIP][367]
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-10/igt@kms_psr@psr2-primary-render.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-10/igt@kms_psr@psr2-primary-render.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: [SKIP][368] ([Intel XE#7795]) -> [SKIP][369] +1 other test skip
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-bmg: [SKIP][370] ([Intel XE#3904] / [Intel XE#7342]) -> [SKIP][371] +7 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-4/igt@kms_rotation_crc@bad-pixel-format.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-4/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-lnl: [SKIP][372] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) -> [SKIP][373] +10 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@kms_rotation_crc@primary-rotation-90.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-2/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: [SKIP][374] ([Intel XE#2330] / [Intel XE#5813]) -> [SKIP][375] +2 other tests skip
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-lnl: [SKIP][376] ([Intel XE#1127] / [Intel XE#5813]) -> [SKIP][377] +3 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: [SKIP][378] ([Intel XE#2413]) -> [SKIP][379] +1 other test skip
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-center.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-9/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: [SKIP][380] ([Intel XE#1435]) -> [SKIP][381] +1 other test skip
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-6/igt@kms_setmode@basic-clone-single-crtc.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-7/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-lnl: [SKIP][382] ([Intel XE#1435]) -> [SKIP][383] +3 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-2/igt@kms_setmode@invalid-clone-single-crtc.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-7/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
- shard-bmg: [SKIP][384] ([Intel XE#6503]) -> [SKIP][385] +12 other tests skip
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-5/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-9/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][386] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][387]
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-lnl: [SKIP][388] ([Intel XE#362] / [Intel XE#5848]) -> [SKIP][389] +1 other test skip
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-bmg: [SKIP][390] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][391]
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@lobf:
- shard-bmg: [SKIP][392] ([Intel XE#2168] / [Intel XE#7444]) -> [SKIP][393]
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-9/igt@kms_vrr@lobf.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-5/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-bmg: [SKIP][394] ([Intel XE#1499]) -> [SKIP][395] +7 other tests skip
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-1/igt@kms_vrr@max-min.html
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-8/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-lnl: [SKIP][396] ([Intel XE#1499]) -> [SKIP][397] +3 other tests skip
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-4/igt@kms_vrr@negative-basic.html
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-2/igt@kms_vrr@negative-basic.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-lnl: [SKIP][398] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][399] +1 other test skip
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_ccs@vm-bind-fault-mode-decompress:
- shard-lnl: [SKIP][400] ([Intel XE#7644]) -> [SKIP][401] +1 other test skip
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-7/igt@xe_ccs@vm-bind-fault-mode-decompress.html
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@xe_ccs@vm-bind-fault-mode-decompress.html
* igt@xe_compute@ccs-mode-compute-kernel:
- shard-lnl: [SKIP][402] ([Intel XE#1447] / [Intel XE#7469]) -> [SKIP][403]
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@xe_compute@ccs-mode-compute-kernel.html
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@xe_compute@ccs-mode-compute-kernel.html
* igt@xe_compute@eu-busy-10s:
- shard-lnl: [SKIP][404] ([Intel XE#6592] / [Intel XE#6645] / [Intel XE#7391]) -> [SKIP][405]
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-2/igt@xe_compute@eu-busy-10s.html
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-7/igt@xe_compute@eu-busy-10s.html
- shard-bmg: [SKIP][406] ([Intel XE#6599]) -> [SKIP][407] +1 other test skip
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-5/igt@xe_compute@eu-busy-10s.html
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-5/igt@xe_compute@eu-busy-10s.html
* igt@xe_compute_preempt@compute-preempt-many-vram-evict:
- shard-lnl: [SKIP][408] ([Intel XE#5191] / [Intel XE#7316] / [Intel XE#7346]) -> [SKIP][409] +1 other test skip
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-6/igt@xe_compute_preempt@compute-preempt-many-vram-evict.html
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-6/igt@xe_compute_preempt@compute-preempt-many-vram-evict.html
* igt@xe_configfs@survivability-mode:
- shard-lnl: [SKIP][410] ([Intel XE#8428]) -> [SKIP][411]
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-6/igt@xe_configfs@survivability-mode.html
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-4/igt@xe_configfs@survivability-mode.html
* igt@xe_create@create-big-vram:
- shard-lnl: [SKIP][412] ([Intel XE#1062] / [Intel XE#7318] / [Intel XE#7457]) -> [SKIP][413]
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-5/igt@xe_create@create-big-vram.html
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@xe_create@create-big-vram.html
* igt@xe_create@multigpu-create-massive-size:
- shard-lnl: [SKIP][414] ([Intel XE#7319] / [Intel XE#7350] / [Intel XE#944]) -> [SKIP][415]
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-1/igt@xe_create@multigpu-create-massive-size.html
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-1/igt@xe_create@multigpu-create-massive-size.html
- shard-bmg: [SKIP][416] ([Intel XE#2504] / [Intel XE#7319] / [Intel XE#7350]) -> [SKIP][417]
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-1/igt@xe_create@multigpu-create-massive-size.html
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-1/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eudebug@basic-vm-access-faultable:
- shard-lnl: [SKIP][418] ([Intel XE#7636]) -> [SKIP][419] +72 other tests skip
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-5/igt@xe_eudebug@basic-vm-access-faultable.html
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@xe_eudebug@basic-vm-access-faultable.html
* igt@xe_eudebug_online@set-breakpoint-faultable:
- shard-bmg: [SKIP][420] ([Intel XE#7636]) -> [SKIP][421] +65 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-2/igt@xe_eudebug_online@set-breakpoint-faultable.html
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-10/igt@xe_eudebug_online@set-breakpoint-faultable.html
* igt@xe_eudebug_sriov@deny-sriov:
- shard-lnl: [SKIP][422] ([Intel XE#4518] / [Intel XE#7404]) -> [SKIP][423] +1 other test skip
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-8/igt@xe_eudebug_sriov@deny-sriov.html
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-3/igt@xe_eudebug_sriov@deny-sriov.html
- shard-bmg: [SKIP][424] ([Intel XE#5793] / [Intel XE#7320] / [Intel XE#7464]) -> [SKIP][425] +1 other test skip
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-3/igt@xe_eudebug_sriov@deny-sriov.html
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-2/igt@xe_eudebug_sriov@deny-sriov.html
* igt@xe_evict@evict-beng-large-external-cm:
- shard-lnl: [SKIP][426] ([Intel XE#6540] / [Intel XE#688]) -> [SKIP][427] +59 other tests skip
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-5/igt@xe_evict@evict-beng-large-external-cm.html
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@xe_evict@evict-beng-large-external-cm.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][428] ([Intel XE#6321] / [Intel XE#8355]) -> [SKIP][429] +1 other test skip
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-threads-small-multi-queue:
- shard-bmg: [SKIP][430] ([Intel XE#8370]) -> [SKIP][431] +7 other tests skip
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-8/igt@xe_evict@evict-threads-small-multi-queue.html
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-2/igt@xe_evict@evict-threads-small-multi-queue.html
* igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate-race:
- shard-lnl: [SKIP][432] ([Intel XE#7482]) -> [SKIP][433] +107 other tests skip
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate-race.html
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: [SKIP][434] ([Intel XE#2322] / [Intel XE#7372]) -> [SKIP][435] +44 other tests skip
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-no-exec-userptr:
- shard-lnl: [SKIP][436] ([Intel XE#1392]) -> [SKIP][437] +48 other tests skip
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@xe_exec_basic@multigpu-no-exec-userptr.html
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@xe_exec_basic@multigpu-no-exec-userptr.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr:
- shard-bmg: [SKIP][438] ([Intel XE#8374]) -> [SKIP][439] +63 other tests skip
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-8/igt@xe_exec_fault_mode@twice-multi-queue-userptr.html
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-8/igt@xe_exec_fault_mode@twice-multi-queue-userptr.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-imm:
- shard-lnl: [SKIP][440] ([Intel XE#8374]) -> [SKIP][441] +69 other tests skip
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-4/igt@xe_exec_fault_mode@twice-multi-queue-userptr-imm.html
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@xe_exec_fault_mode@twice-multi-queue-userptr-imm.html
* igt@xe_exec_multi_queue@many-queues-preempt-mode-userptr:
- shard-lnl: [SKIP][442] ([Intel XE#8364]) -> [SKIP][443] +160 other tests skip
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@xe_exec_multi_queue@many-queues-preempt-mode-userptr.html
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@xe_exec_multi_queue@many-queues-preempt-mode-userptr.html
* igt@xe_exec_multi_queue@two-queues-priority:
- shard-bmg: [SKIP][444] ([Intel XE#8364]) -> [SKIP][445] +148 other tests skip
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-9/igt@xe_exec_multi_queue@two-queues-priority.html
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-5/igt@xe_exec_multi_queue@two-queues-priority.html
* igt@xe_exec_reset@cm-multi-queue-cat-error:
- shard-bmg: [SKIP][446] ([Intel XE#8369]) -> [SKIP][447] +9 other tests skip
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-9/igt@xe_exec_reset@cm-multi-queue-cat-error.html
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-5/igt@xe_exec_reset@cm-multi-queue-cat-error.html
* igt@xe_exec_reset@multi-queue-gt-reset:
- shard-lnl: [SKIP][448] ([Intel XE#8369]) -> [SKIP][449] +11 other tests skip
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-1/igt@xe_exec_reset@multi-queue-gt-reset.html
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-1/igt@xe_exec_reset@multi-queue-gt-reset.html
* igt@xe_exec_system_allocator@many-stride-new-prefetch:
- shard-bmg: [INCOMPLETE][450] ([Intel XE#7098] / [Intel XE#8159]) -> [SKIP][451]
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-9/igt@xe_exec_system_allocator@many-stride-new-prefetch.html
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-5/igt@xe_exec_system_allocator@many-stride-new-prefetch.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-single-vma:
- shard-lnl: [SKIP][452] ([Intel XE#6196]) -> [SKIP][453] +3 other tests skip
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-1/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-single-vma.html
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-7/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-single-vma.html
* igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-rebind:
- shard-lnl: [SKIP][454] ([Intel XE#8378]) -> [SKIP][455] +50 other tests skip
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-6/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-rebind.html
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-3/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-rebind.html
* igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind:
- shard-bmg: [SKIP][456] ([Intel XE#8378]) -> [SKIP][457] +46 other tests skip
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind.html
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind.html
* igt@xe_gpgpu_fill@offset-4x4:
- shard-lnl: [SKIP][458] ([Intel XE#7954]) -> [SKIP][459]
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@xe_gpgpu_fill@offset-4x4.html
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-2/igt@xe_gpgpu_fill@offset-4x4.html
- shard-bmg: [SKIP][460] ([Intel XE#7954]) -> [SKIP][461]
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-10/igt@xe_gpgpu_fill@offset-4x4.html
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-7/igt@xe_gpgpu_fill@offset-4x4.html
* igt@xe_live_ktest@xe_eudebug:
- shard-lnl: [SKIP][462] ([Intel XE#2833]) -> [SKIP][463]
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@xe_live_ktest@xe_eudebug.html
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-2/igt@xe_live_ktest@xe_eudebug.html
- shard-bmg: [SKIP][464] ([Intel XE#2833]) -> [SKIP][465]
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-10/igt@xe_live_ktest@xe_eudebug.html
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-7/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_madvise@atomic-global:
- shard-lnl: [SKIP][466] ([Intel XE#7980]) -> [SKIP][467] +2 other tests skip
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-2/igt@xe_madvise@atomic-global.html
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@xe_madvise@atomic-global.html
* igt@xe_mmap@pci-membarrier:
- shard-lnl: [SKIP][468] ([Intel XE#5100] / [Intel XE#7322] / [Intel XE#7408]) -> [SKIP][469] +3 other tests skip
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-6/igt@xe_mmap@pci-membarrier.html
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-3/igt@xe_mmap@pci-membarrier.html
* igt@xe_mmap@small-bar:
- shard-lnl: [SKIP][470] ([Intel XE#512] / [Intel XE#7323] / [Intel XE#7384]) -> [SKIP][471]
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-4/igt@xe_mmap@small-bar.html
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-2/igt@xe_mmap@small-bar.html
- shard-bmg: [SKIP][472] ([Intel XE#586] / [Intel XE#7323] / [Intel XE#7384]) -> [SKIP][473]
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-9/igt@xe_mmap@small-bar.html
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-5/igt@xe_mmap@small-bar.html
* igt@xe_mmap@vram:
- shard-lnl: [SKIP][474] ([Intel XE#1416]) -> [SKIP][475]
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-2/igt@xe_mmap@vram.html
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-7/igt@xe_mmap@vram.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][476], [PASS][477], [PASS][478], [PASS][479], [PASS][480], [PASS][481], [PASS][482], [PASS][483], [PASS][484], [PASS][485], [PASS][486], [SKIP][487], [PASS][488], [PASS][489], [PASS][490], [PASS][491], [PASS][492], [PASS][493], [PASS][494], [PASS][495], [PASS][496], [PASS][497], [PASS][498], [PASS][499], [PASS][500], [PASS][501]) ([Intel XE#378] / [Intel XE#7405]) -> ([PASS][502], [PASS][503], [PASS][504], [SKIP][505], [PASS][506], [PASS][507], [PASS][508], [PASS][509], [PASS][510], [PASS][511], [PASS][512], [PASS][513], [PASS][514], [PASS][515], [PASS][516], [PASS][517], [PASS][518], [PASS][519], [PASS][520], [PASS][521], [PASS][522], [PASS][523], [PASS][524], [PASS][525], [PASS][526], [PASS][527])
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-7/igt@xe_module_load@load.html
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-2/igt@xe_module_load@load.html
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-2/igt@xe_module_load@load.html
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-1/igt@xe_module_load@load.html
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-7/igt@xe_module_load@load.html
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-6/igt@xe_module_load@load.html
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-8/igt@xe_module_load@load.html
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-6/igt@xe_module_load@load.html
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-7/igt@xe_module_load@load.html
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-5/igt@xe_module_load@load.html
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-5/igt@xe_module_load@load.html
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-7/igt@xe_module_load@load.html
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@xe_module_load@load.html
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-4/igt@xe_module_load@load.html
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-6/igt@xe_module_load@load.html
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-5/igt@xe_module_load@load.html
[492]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-2/igt@xe_module_load@load.html
[493]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-4/igt@xe_module_load@load.html
[494]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-1/igt@xe_module_load@load.html
[495]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-1/igt@xe_module_load@load.html
[496]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@xe_module_load@load.html
[497]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-2/igt@xe_module_load@load.html
[498]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@xe_module_load@load.html
[499]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-8/igt@xe_module_load@load.html
[500]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-8/igt@xe_module_load@load.html
[501]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-4/igt@xe_module_load@load.html
[502]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-7/igt@xe_module_load@load.html
[503]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@xe_module_load@load.html
[504]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@xe_module_load@load.html
[505]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@xe_module_load@load.html
[506]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@xe_module_load@load.html
[507]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-1/igt@xe_module_load@load.html
[508]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@xe_module_load@load.html
[509]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-1/igt@xe_module_load@load.html
[510]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@xe_module_load@load.html
[511]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-3/igt@xe_module_load@load.html
[512]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-2/igt@xe_module_load@load.html
[513]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-6/igt@xe_module_load@load.html
[514]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-7/igt@xe_module_load@load.html
[515]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-7/igt@xe_module_load@load.html
[516]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-6/igt@xe_module_load@load.html
[517]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-2/igt@xe_module_load@load.html
[518]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@xe_module_load@load.html
[519]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@xe_module_load@load.html
[520]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@xe_module_load@load.html
[521]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-1/igt@xe_module_load@load.html
[522]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-2/igt@xe_module_load@load.html
[523]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-4/igt@xe_module_load@load.html
[524]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-3/igt@xe_module_load@load.html
[525]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-4/igt@xe_module_load@load.html
[526]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-4/igt@xe_module_load@load.html
[527]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-3/igt@xe_module_load@load.html
- shard-bmg: ([PASS][528], [PASS][529], [PASS][530], [PASS][531], [PASS][532], [PASS][533], [PASS][534], [PASS][535], [PASS][536], [PASS][537], [PASS][538], [PASS][539], [PASS][540], [SKIP][541], [PASS][542], [PASS][543], [PASS][544], [PASS][545], [PASS][546], [PASS][547], [PASS][548], [PASS][549], [PASS][550], [PASS][551], [PASS][552], [PASS][553]) ([Intel XE#2457] / [Intel XE#7405]) -> ([PASS][554], [PASS][555], [PASS][556], [PASS][557], [PASS][558], [PASS][559], [PASS][560], [PASS][561], [PASS][562], [PASS][563], [PASS][564], [PASS][565], [PASS][566], [PASS][567], [PASS][568], [PASS][569], [PASS][570], [PASS][571], [PASS][572], [PASS][573], [SKIP][574], [PASS][575], [PASS][576], [PASS][577], [PASS][578], [PASS][579])
[528]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-10/igt@xe_module_load@load.html
[529]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-9/igt@xe_module_load@load.html
[530]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-7/igt@xe_module_load@load.html
[531]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-7/igt@xe_module_load@load.html
[532]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-7/igt@xe_module_load@load.html
[533]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-8/igt@xe_module_load@load.html
[534]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-4/igt@xe_module_load@load.html
[535]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-6/igt@xe_module_load@load.html
[536]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-10/igt@xe_module_load@load.html
[537]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-6/igt@xe_module_load@load.html
[538]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-3/igt@xe_module_load@load.html
[539]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-3/igt@xe_module_load@load.html
[540]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-4/igt@xe_module_load@load.html
[541]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-9/igt@xe_module_load@load.html
[542]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-1/igt@xe_module_load@load.html
[543]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-9/igt@xe_module_load@load.html
[544]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-1/igt@xe_module_load@load.html
[545]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-1/igt@xe_module_load@load.html
[546]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-8/igt@xe_module_load@load.html
[547]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-8/igt@xe_module_load@load.html
[548]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-5/igt@xe_module_load@load.html
[549]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-4/igt@xe_module_load@load.html
[550]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-5/igt@xe_module_load@load.html
[551]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-10/igt@xe_module_load@load.html
[552]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-2/igt@xe_module_load@load.html
[553]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-2/igt@xe_module_load@load.html
[554]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-7/igt@xe_module_load@load.html
[555]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-5/igt@xe_module_load@load.html
[556]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-2/igt@xe_module_load@load.html
[557]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-3/igt@xe_module_load@load.html
[558]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-3/igt@xe_module_load@load.html
[559]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-3/igt@xe_module_load@load.html
[560]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-9/igt@xe_module_load@load.html
[561]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-9/igt@xe_module_load@load.html
[562]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-7/igt@xe_module_load@load.html
[563]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-10/igt@xe_module_load@load.html
[564]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-4/igt@xe_module_load@load.html
[565]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-4/igt@xe_module_load@load.html
[566]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-2/igt@xe_module_load@load.html
[567]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-10/igt@xe_module_load@load.html
[568]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-8/igt@xe_module_load@load.html
[569]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-2/igt@xe_module_load@load.html
[570]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-9/igt@xe_module_load@load.html
[571]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-6/igt@xe_module_load@load.html
[572]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-6/igt@xe_module_load@load.html
[573]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-8/igt@xe_module_load@load.html
[574]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-9/igt@xe_module_load@load.html
[575]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-1/igt@xe_module_load@load.html
[576]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-10/igt@xe_module_load@load.html
[577]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-1/igt@xe_module_load@load.html
[578]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-5/igt@xe_module_load@load.html
[579]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-7/igt@xe_module_load@load.html
* igt@xe_multigpu_svm@mgpu-atomic-op-conflict:
- shard-lnl: [SKIP][580] ([Intel XE#6964]) -> [SKIP][581] +17 other tests skip
[580]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-2/igt@xe_multigpu_svm@mgpu-atomic-op-conflict.html
[581]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-7/igt@xe_multigpu_svm@mgpu-atomic-op-conflict.html
* igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch:
- shard-bmg: [SKIP][582] ([Intel XE#6964]) -> [SKIP][583] +15 other tests skip
[582]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-8/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html
[583]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-2/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html
* igt@xe_noexec_ping_pong@basic:
- shard-lnl: [SKIP][584] ([Intel XE#6259] / [Intel XE#7324] / [Intel XE#7406]) -> [SKIP][585]
[584]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-4/igt@xe_noexec_ping_pong@basic.html
[585]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-2/igt@xe_noexec_ping_pong@basic.html
* igt@xe_non_msix@walker-interrupt-notification-non-msix:
- shard-bmg: [SKIP][586] ([Intel XE#7622]) -> [SKIP][587]
[586]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-1/igt@xe_non_msix@walker-interrupt-notification-non-msix.html
[587]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-8/igt@xe_non_msix@walker-interrupt-notification-non-msix.html
- shard-lnl: [SKIP][588] ([Intel XE#7622]) -> [SKIP][589]
[588]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-7/igt@xe_non_msix@walker-interrupt-notification-non-msix.html
[589]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-1/igt@xe_non_msix@walker-interrupt-notification-non-msix.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-lnl: [SKIP][590] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393]) -> [SKIP][591]
[590]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-6/igt@xe_oa@oa-tlb-invalidate.html
[591]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-4/igt@xe_oa@oa-tlb-invalidate.html
- shard-bmg: [SKIP][592] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393]) -> [SKIP][593]
[592]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-2/igt@xe_oa@oa-tlb-invalidate.html
[593]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-10/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_page_reclaim@basic-mixed:
- shard-bmg: [SKIP][594] ([Intel XE#7793]) -> [SKIP][595] +10 other tests skip
[594]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-3/igt@xe_page_reclaim@basic-mixed.html
[595]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-2/igt@xe_page_reclaim@basic-mixed.html
* igt@xe_page_reclaim@binds-null-vma:
- shard-lnl: [SKIP][596] ([Intel XE#7793]) -> [SKIP][597] +10 other tests skip
[596]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-2/igt@xe_page_reclaim@binds-null-vma.html
[597]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-7/igt@xe_page_reclaim@binds-null-vma.html
* igt@xe_pat@pat-index-xehpc:
- shard-lnl: [SKIP][598] ([Intel XE#1420] / [Intel XE#2838] / [Intel XE#7590]) -> [SKIP][599]
[598]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-6/igt@xe_pat@pat-index-xehpc.html
[599]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-6/igt@xe_pat@pat-index-xehpc.html
- shard-bmg: [SKIP][600] ([Intel XE#1420] / [Intel XE#7590]) -> [SKIP][601]
[600]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-4/igt@xe_pat@pat-index-xehpc.html
[601]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-4/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: [SKIP][602] ([Intel XE#2236] / [Intel XE#7590]) -> [SKIP][603]
[602]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-4/igt@xe_pat@pat-index-xelpg.html
[603]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-3/igt@xe_pat@pat-index-xelpg.html
- shard-lnl: [SKIP][604] ([Intel XE#7590] / [Intel XE#979]) -> [SKIP][605]
[604]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-4/igt@xe_pat@pat-index-xelpg.html
[605]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pat@pat-sw-hw-reset-compare:
- shard-lnl: [FAIL][606] ([Intel XE#7695]) -> [SKIP][607] +2 other tests skip
[606]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-7/igt@xe_pat@pat-sw-hw-reset-compare.html
[607]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@xe_pat@pat-sw-hw-reset-compare.html
- shard-bmg: [FAIL][608] ([Intel XE#7695]) -> [SKIP][609] +2 other tests skip
[608]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-9/igt@xe_pat@pat-sw-hw-reset-compare.html
[609]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-9/igt@xe_pat@pat-sw-hw-reset-compare.html
* igt@xe_pat@xa-app-transient-media-off:
- shard-lnl: [SKIP][610] ([Intel XE#7590] / [Intel XE#7772]) -> [SKIP][611] +2 other tests skip
[610]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-6/igt@xe_pat@xa-app-transient-media-off.html
[611]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-6/igt@xe_pat@xa-app-transient-media-off.html
- shard-bmg: [SKIP][612] ([Intel XE#7590]) -> [SKIP][613] +1 other test skip
[612]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-4/igt@xe_pat@xa-app-transient-media-off.html
[613]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-4/igt@xe_pat@xa-app-transient-media-off.html
* igt@xe_peer2peer@read:
- shard-lnl: [SKIP][614] ([Intel XE#1061] / [Intel XE#7326] / [Intel XE#7353]) -> [SKIP][615] +1 other test skip
[614]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-4/igt@xe_peer2peer@read.html
[615]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-2/igt@xe_peer2peer@read.html
* igt@xe_peer2peer@write:
- shard-bmg: [SKIP][616] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353]) -> [SKIP][617] +1 other test skip
[616]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-1/igt@xe_peer2peer@write.html
[617]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-8/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-basic:
- shard-lnl: [SKIP][618] ([Intel XE#2284] / [Intel XE#366] / [Intel XE#7370]) -> [SKIP][619] +5 other tests skip
[618]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-8/igt@xe_pm@d3cold-basic.html
[619]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-3/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-i2c:
- shard-lnl: [SKIP][620] ([Intel XE#5694] / [Intel XE#7370]) -> [SKIP][621]
[620]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-7/igt@xe_pm@d3cold-i2c.html
[621]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-3/igt@xe_pm@d3cold-i2c.html
- shard-bmg: [SKIP][622] ([Intel XE#5694] / [Intel XE#7370]) -> [SKIP][623]
[622]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-7/igt@xe_pm@d3cold-i2c.html
[623]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-9/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@d3cold-mocs:
- shard-lnl: [SKIP][624] ([Intel XE#2284] / [Intel XE#7370]) -> [SKIP][625]
[624]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-6/igt@xe_pm@d3cold-mocs.html
[625]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-4/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: [SKIP][626] ([Intel XE#2284] / [Intel XE#7370]) -> [SKIP][627] +5 other tests skip
[626]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-5/igt@xe_pm@d3cold-multiple-execs.html
[627]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-5/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@d3hot-i2c:
- shard-lnl: [SKIP][628] ([Intel XE#5742] / [Intel XE#7328] / [Intel XE#7400]) -> [SKIP][629]
[628]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-8/igt@xe_pm@d3hot-i2c.html
[629]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-1/igt@xe_pm@d3hot-i2c.html
- shard-bmg: [SKIP][630] ([Intel XE#5742] / [Intel XE#7328] / [Intel XE#7400]) -> [SKIP][631]
[630]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-1/igt@xe_pm@d3hot-i2c.html
[631]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-6/igt@xe_pm@d3hot-i2c.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-lnl: [SKIP][632] ([Intel XE#1948]) -> [SKIP][633]
[632]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-4/igt@xe_pm@d3hot-mmap-vram.html
[633]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-2/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s3-mocs:
- shard-lnl: [SKIP][634] ([Intel XE#584] / [Intel XE#7369]) -> [SKIP][635] +9 other tests skip
[634]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-5/igt@xe_pm@s3-mocs.html
[635]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@xe_pm@s3-mocs.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-lnl: [SKIP][636] ([Intel XE#579] / [Intel XE#7329] / [Intel XE#7456]) -> [SKIP][637]
[636]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-4/igt@xe_pm@vram-d3cold-threshold.html
[637]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-2/igt@xe_pm@vram-d3cold-threshold.html
- shard-bmg: [SKIP][638] ([Intel XE#579] / [Intel XE#7329] / [Intel XE#7517]) -> [SKIP][639]
[638]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-9/igt@xe_pm@vram-d3cold-threshold.html
[639]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-5/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pmu@fn-engine-activity-sched-if-idle:
- shard-lnl: [SKIP][640] ([Intel XE#4650] / [Intel XE#7347]) -> [SKIP][641] +2 other tests skip
[640]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-8/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
[641]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-4/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
* igt@xe_prefetch_fault@prefetch-fault:
- shard-lnl: [SKIP][642] ([Intel XE#7599]) -> [SKIP][643]
[642]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-7/igt@xe_prefetch_fault@prefetch-fault.html
[643]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@xe_prefetch_fault@prefetch-fault.html
- shard-bmg: [SKIP][644] ([Intel XE#7599]) -> [SKIP][645]
[644]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-9/igt@xe_prefetch_fault@prefetch-fault.html
[645]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-9/igt@xe_prefetch_fault@prefetch-fault.html
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-bmg: [SKIP][646] ([Intel XE#4733] / [Intel XE#7417]) -> [SKIP][647] +11 other tests skip
[646]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-5/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
[647]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-9/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: [SKIP][648] ([Intel XE#944]) -> [SKIP][649] +13 other tests skip
[648]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-9/igt@xe_query@multigpu-query-invalid-cs-cycles.html
[649]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-5/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-pxp-status:
- shard-lnl: [SKIP][650] ([Intel XE#944]) -> [SKIP][651] +14 other tests skip
[650]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-6/igt@xe_query@multigpu-query-pxp-status.html
[651]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-4/igt@xe_query@multigpu-query-pxp-status.html
* igt@xe_sriov_admin@bulk-exec-quantum-vfs-disabled:
- shard-lnl: [SKIP][652] ([Intel XE#7174]) -> [SKIP][653] +7 other tests skip
[652]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-6/igt@xe_sriov_admin@bulk-exec-quantum-vfs-disabled.html
[653]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-4/igt@xe_sriov_admin@bulk-exec-quantum-vfs-disabled.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-lnl: [SKIP][654] ([Intel XE#4130] / [Intel XE#7366]) -> [SKIP][655] +5 other tests skip
[654]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-5/igt@xe_sriov_auto_provisioning@fair-allocation.html
[655]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-4/igt@xe_sriov_auto_provisioning@fair-allocation.html
* igt@xe_sriov_flr@flr-basic:
- shard-lnl: [SKIP][656] ([Intel XE#7569]) -> [SKIP][657]
[656]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-4/igt@xe_sriov_flr@flr-basic.html
[657]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-2/igt@xe_sriov_flr@flr-basic.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-lnl: [SKIP][658] ([Intel XE#3342]) -> [SKIP][659] +1 other test skip
[658]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-2/igt@xe_sriov_flr@flr-vf1-clear.html
[659]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@xe_sriov_flr@flr-vf1-clear.html
- shard-bmg: [FAIL][660] ([Intel XE#6569]) -> [SKIP][661]
[660]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-3/igt@xe_sriov_flr@flr-vf1-clear.html
[661]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-1/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-lnl: [SKIP][662] ([Intel XE#4273]) -> [SKIP][663]
[662]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-6/igt@xe_sriov_flr@flr-vfs-parallel.html
[663]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-3/igt@xe_sriov_flr@flr-vfs-parallel.html
* igt@xe_sriov_scheduling@equal-throughput-normal-priority:
- shard-lnl: [SKIP][664] ([Intel XE#8339]) -> [SKIP][665] +4 other tests skip
[664]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-7/igt@xe_sriov_scheduling@equal-throughput-normal-priority.html
[665]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@xe_sriov_scheduling@equal-throughput-normal-priority.html
* igt@xe_sriov_vfio@region-info:
- shard-lnl: [SKIP][666] ([Intel XE#7724]) -> [SKIP][667] +2 other tests skip
[666]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-1/igt@xe_sriov_vfio@region-info.html
[667]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-7/igt@xe_sriov_vfio@region-info.html
* igt@xe_sriov_vram@vf-access-beyond:
- shard-lnl: [SKIP][668] ([Intel XE#6376] / [Intel XE#7330] / [Intel XE#7422]) -> [SKIP][669] +2 other tests skip
[668]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-8/igt@xe_sriov_vram@vf-access-beyond.html
[669]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-4/igt@xe_sriov_vram@vf-access-beyond.html
* igt@xe_survivability@i2c-functionality:
- shard-lnl: [SKIP][670] ([Intel XE#8415]) -> [SKIP][671] +1 other test skip
[670]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-4/igt@xe_survivability@i2c-functionality.html
[671]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-5/igt@xe_survivability@i2c-functionality.html
* igt@xe_vm@out-of-memory:
- shard-lnl: [SKIP][672] ([Intel XE#5745] / [Intel XE#7892]) -> [SKIP][673]
[672]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-8/igt@xe_vm@out-of-memory.html
[673]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-4/igt@xe_vm@out-of-memory.html
* igt@xe_vm@overcommit-nonfault-vram-lr-external-nodefer:
- shard-lnl: [SKIP][674] ([Intel XE#7892]) -> [SKIP][675] +3 other tests skip
[674]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-8/igt@xe_vm@overcommit-nonfault-vram-lr-external-nodefer.html
[675]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-1/igt@xe_vm@overcommit-nonfault-vram-lr-external-nodefer.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@xe_exec_system_allocator@madvise-preffered-loc-atomic-device}:
- shard-lnl: [PASS][676] -> [SKIP][677]
[676]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-6/igt@xe_exec_system_allocator@madvise-preffered-loc-atomic-device.html
[677]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-4/igt@xe_exec_system_allocator@madvise-preffered-loc-atomic-device.html
- shard-bmg: [PASS][678] -> [SKIP][679]
[678]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-2/igt@xe_exec_system_allocator@madvise-preffered-loc-atomic-device.html
[679]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-10/igt@xe_exec_system_allocator@madvise-preffered-loc-atomic-device.html
Known issues
------------
Here are the changes found in xe-pw-169091v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_cursor_legacy@cursor-vs-flip-toggle:
- shard-bmg: [PASS][680] -> [SKIP][681] ([Intel XE#7935]) +1 other test skip
[680]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-bmg-10/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
[681]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-bmg-10/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
* igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
- shard-lnl: [PASS][682] -> [SKIP][683] ([Intel XE#7935]) +1 other test skip
[682]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82/shard-lnl-3/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
[683]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/shard-lnl-8/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[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#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[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#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[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#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
[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#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
[Intel XE#5745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5745
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5854
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[Intel XE#5873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5873
[Intel XE#5882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5882
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126
[Intel XE#6127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6127
[Intel XE#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128
[Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196
[Intel XE#6259]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6259
[Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6592]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6592
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6645]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6645
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6813
[Intel XE#6814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6814
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900
[Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
[Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927
[Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006
[Intel XE#7008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7008
[Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086
[Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098
[Intel XE#7173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7173
[Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7294
[Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7312
[Intel XE#7316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7316
[Intel XE#7318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7318
[Intel XE#7319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7319
[Intel XE#7320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7320
[Intel XE#7322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7322
[Intel XE#7323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7323
[Intel XE#7324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7324
[Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325
[Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
[Intel XE#7328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7328
[Intel XE#7329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7329
[Intel XE#7330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7330
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344
[Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345
[Intel XE#7346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7346
[Intel XE#7347]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7347
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[Intel XE#7350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7350
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7360
[Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
[Intel XE#7362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7362
[Intel XE#7366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7366
[Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367
[Intel XE#7368]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7368
[Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
[Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
[Intel XE#7381]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7381
[Intel XE#7382]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7382
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7384]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7384
[Intel XE#7385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7385
[Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386
[Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
[Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389
[Intel XE#7390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7390
[Intel XE#7391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7391
[Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393
[Intel XE#7395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7395
[Intel XE#7396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7396
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7400
[Intel XE#7402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7402
[Intel XE#7404]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7404
[Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7406
[Intel XE#7408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7408
[Intel XE#7413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7413
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7422
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425
[Intel XE#7428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7428
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7443
[Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444
[Intel XE#7447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7447
[Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448
[Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
[Intel XE#7450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7450
[Intel XE#7456]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7456
[Intel XE#7457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7457
[Intel XE#7464]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7464
[Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
[Intel XE#7467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7467
[Intel XE#7469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7469
[Intel XE#7477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7477
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7503
[Intel XE#7517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7517
[Intel XE#7569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7569
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591
[Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599
[Intel XE#7622]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7622
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#7644]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7644
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695
[Intel XE#7724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7724
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
[Intel XE#7772]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7772
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7794
[Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795
[Intel XE#7809]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7809
[Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
[Intel XE#7892]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7892
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#7935]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7935
[Intel XE#7954]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7954
[Intel XE#7980]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7980
[Intel XE#8159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8159
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8339
[Intel XE#8348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8348
[Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8365]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8365
[Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
[Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#8395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8395
[Intel XE#8415]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8415
[Intel XE#8416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8416
[Intel XE#8428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8428
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* Linux: xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82 -> xe-pw-169091v1
IGT_8982: 48befce9e6b0c0d371c4812bfff34a61319f68f1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82: b2817f6a1517bc9ecdef5229b84e8a44d983de82
xe-pw-169091v1: 169091v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169091v1/index.html
[-- Attachment #2: Type: text/html, Size: 179296 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-06-24 13:32 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-24 9:56 [PATCH 1/3] drm/xe/pf: Do not return an error for unrecognized VF events Michał Winiarski
2026-06-24 9:56 ` [PATCH 2/3] drm/xe/pf: Add support for VF Pause abort event Michał Winiarski
2026-06-24 9:56 ` [PATCH 3/3] drm/xe/pf: Add the definition of VF resfix " Michał Winiarski
2026-06-24 12:02 ` K V P, Satyanarayana
2026-06-24 10:02 ` ✗ CI.checkpatch: warning for series starting with [1/3] drm/xe/pf: Do not return an error for unrecognized VF events Patchwork
2026-06-24 10:03 ` ✓ CI.KUnit: success " Patchwork
2026-06-24 11:59 ` [PATCH 1/3] " K V P, Satyanarayana
2026-06-24 12:19 ` ✓ Xe.CI.BAT: success for series starting with [1/3] " Patchwork
2026-06-24 13:32 ` ✗ Xe.CI.FULL: failure " Patchwork
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.