* [PATCH] drm/xe: Restrict user fences to long running VMs
@ 2024-06-03 17:53 Matthew Brost
2024-06-03 20:42 ` Thomas Hellström
` (8 more replies)
0 siblings, 9 replies; 11+ messages in thread
From: Matthew Brost @ 2024-06-03 17:53 UTC (permalink / raw)
To: intel-xe; +Cc: Matthew Brost, Thomas Hellström, stable
User fences are intended to be used on long running VMs, enforce this
restriction. This addresses possible concerns of using user fences in
dma-fence and having the dma-fence signal before the user fence.
Fixes: d1df9bfbf68c ("drm/xe: Only allow 1 ufence per exec / bind IOCTL")
Fixes: dd08ebf6c352 ("drm/xe: Introduce a new DRM driver for Intel GPUs")
Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Cc: stable@vger.kernel.org
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
---
drivers/gpu/drm/xe/xe_exec.c | 3 ++-
drivers/gpu/drm/xe/xe_vm.c | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_exec.c b/drivers/gpu/drm/xe/xe_exec.c
index 97eeb973e897..a145813ad229 100644
--- a/drivers/gpu/drm/xe/xe_exec.c
+++ b/drivers/gpu/drm/xe/xe_exec.c
@@ -168,7 +168,8 @@ int xe_exec_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
num_ufence++;
}
- if (XE_IOCTL_DBG(xe, num_ufence > 1)) {
+ if (XE_IOCTL_DBG(xe, num_ufence > 1) ||
+ XE_IOCTL_DBG(xe, num_ufence && !xe_vm_in_lr_mode(vm))) {
err = -EINVAL;
goto err_syncs;
}
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index 26b409e1b0f0..85da3a8a83b6 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -3226,7 +3226,8 @@ int xe_vm_bind_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
num_ufence++;
}
- if (XE_IOCTL_DBG(xe, num_ufence > 1)) {
+ if (XE_IOCTL_DBG(xe, num_ufence > 1) ||
+ XE_IOCTL_DBG(xe, num_ufence && !xe_vm_in_lr_mode(vm))) {
err = -EINVAL;
goto free_syncs;
}
--
2.34.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH] drm/xe: Restrict user fences to long running VMs
2024-06-03 17:53 [PATCH] drm/xe: Restrict user fences to long running VMs Matthew Brost
@ 2024-06-03 20:42 ` Thomas Hellström
2024-06-03 22:18 ` Matthew Brost
2024-06-04 19:38 ` ✓ CI.Patch_applied: success for " Patchwork
` (7 subsequent siblings)
8 siblings, 1 reply; 11+ messages in thread
From: Thomas Hellström @ 2024-06-03 20:42 UTC (permalink / raw)
To: Matthew Brost, intel-xe; +Cc: stable
Hi,
On Mon, 2024-06-03 at 10:53 -0700, Matthew Brost wrote:
> User fences are intended to be used on long running VMs, enforce this
> restriction. This addresses possible concerns of using user fences in
> dma-fence and having the dma-fence signal before the user fence.
As mentioned in a separate thread, We should not introduce an uAPI
change with the above motivation. We need to discuss potential use-
cases for !LR vms and if there are found to be none, we could consider
restricting in this way.
/Thomas
>
> Fixes: d1df9bfbf68c ("drm/xe: Only allow 1 ufence per exec / bind
> IOCTL")
> Fixes: dd08ebf6c352 ("drm/xe: Introduce a new DRM driver for Intel
> GPUs")
> Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> Cc: stable@vger.kernel.org
> Signed-off-by: Matthew Brost <matthew.brost@intel.com>
> ---
> drivers/gpu/drm/xe/xe_exec.c | 3 ++-
> drivers/gpu/drm/xe/xe_vm.c | 3 ++-
> 2 files changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_exec.c
> b/drivers/gpu/drm/xe/xe_exec.c
> index 97eeb973e897..a145813ad229 100644
> --- a/drivers/gpu/drm/xe/xe_exec.c
> +++ b/drivers/gpu/drm/xe/xe_exec.c
> @@ -168,7 +168,8 @@ int xe_exec_ioctl(struct drm_device *dev, void
> *data, struct drm_file *file)
> num_ufence++;
> }
>
> - if (XE_IOCTL_DBG(xe, num_ufence > 1)) {
> + if (XE_IOCTL_DBG(xe, num_ufence > 1) ||
> + XE_IOCTL_DBG(xe, num_ufence && !xe_vm_in_lr_mode(vm))) {
> err = -EINVAL;
> goto err_syncs;
> }
> diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
> index 26b409e1b0f0..85da3a8a83b6 100644
> --- a/drivers/gpu/drm/xe/xe_vm.c
> +++ b/drivers/gpu/drm/xe/xe_vm.c
> @@ -3226,7 +3226,8 @@ int xe_vm_bind_ioctl(struct drm_device *dev,
> void *data, struct drm_file *file)
> num_ufence++;
> }
>
> - if (XE_IOCTL_DBG(xe, num_ufence > 1)) {
> + if (XE_IOCTL_DBG(xe, num_ufence > 1) ||
> + XE_IOCTL_DBG(xe, num_ufence && !xe_vm_in_lr_mode(vm))) {
> err = -EINVAL;
> goto free_syncs;
> }
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] drm/xe: Restrict user fences to long running VMs
2024-06-03 20:42 ` Thomas Hellström
@ 2024-06-03 22:18 ` Matthew Brost
0 siblings, 0 replies; 11+ messages in thread
From: Matthew Brost @ 2024-06-03 22:18 UTC (permalink / raw)
To: Thomas Hellström; +Cc: intel-xe, stable
On Mon, Jun 03, 2024 at 10:42:19PM +0200, Thomas Hellström wrote:
> Hi,
>
> On Mon, 2024-06-03 at 10:53 -0700, Matthew Brost wrote:
> > User fences are intended to be used on long running VMs, enforce this
> > restriction. This addresses possible concerns of using user fences in
> > dma-fence and having the dma-fence signal before the user fence.
>
> As mentioned in a separate thread, We should not introduce an uAPI
> change with the above motivation. We need to discuss potential use-
Sure. Agree this is really an orthogonal change to the other thread.
Just noticed we didn't have restriction when typing in that thread.
> cases for !LR vms and if there are found to be none, we could consider
> restricting in this way.
IMO we should strongly consider this as conceptually gives a clear
seperation of synchronization between non-LR and LR VMs.
Matt
>
> /Thomas
>
>
> >
> > Fixes: d1df9bfbf68c ("drm/xe: Only allow 1 ufence per exec / bind
> > IOCTL")
> > Fixes: dd08ebf6c352 ("drm/xe: Introduce a new DRM driver for Intel
> > GPUs")
> > Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> > Cc: stable@vger.kernel.org
> > Signed-off-by: Matthew Brost <matthew.brost@intel.com>
> > ---
> > drivers/gpu/drm/xe/xe_exec.c | 3 ++-
> > drivers/gpu/drm/xe/xe_vm.c | 3 ++-
> > 2 files changed, 4 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/xe/xe_exec.c
> > b/drivers/gpu/drm/xe/xe_exec.c
> > index 97eeb973e897..a145813ad229 100644
> > --- a/drivers/gpu/drm/xe/xe_exec.c
> > +++ b/drivers/gpu/drm/xe/xe_exec.c
> > @@ -168,7 +168,8 @@ int xe_exec_ioctl(struct drm_device *dev, void
> > *data, struct drm_file *file)
> > num_ufence++;
> > }
> >
> > - if (XE_IOCTL_DBG(xe, num_ufence > 1)) {
> > + if (XE_IOCTL_DBG(xe, num_ufence > 1) ||
> > + XE_IOCTL_DBG(xe, num_ufence && !xe_vm_in_lr_mode(vm))) {
> > err = -EINVAL;
> > goto err_syncs;
> > }
> > diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
> > index 26b409e1b0f0..85da3a8a83b6 100644
> > --- a/drivers/gpu/drm/xe/xe_vm.c
> > +++ b/drivers/gpu/drm/xe/xe_vm.c
> > @@ -3226,7 +3226,8 @@ int xe_vm_bind_ioctl(struct drm_device *dev,
> > void *data, struct drm_file *file)
> > num_ufence++;
> > }
> >
> > - if (XE_IOCTL_DBG(xe, num_ufence > 1)) {
> > + if (XE_IOCTL_DBG(xe, num_ufence > 1) ||
> > + XE_IOCTL_DBG(xe, num_ufence && !xe_vm_in_lr_mode(vm))) {
> > err = -EINVAL;
> > goto free_syncs;
> > }
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ CI.Patch_applied: success for drm/xe: Restrict user fences to long running VMs
2024-06-03 17:53 [PATCH] drm/xe: Restrict user fences to long running VMs Matthew Brost
2024-06-03 20:42 ` Thomas Hellström
@ 2024-06-04 19:38 ` Patchwork
2024-06-04 19:39 ` ✓ CI.checkpatch: " Patchwork
` (6 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-06-04 19:38 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Restrict user fences to long running VMs
URL : https://patchwork.freedesktop.org/series/134392/
State : success
== Summary ==
=== Applying kernel patches on branch 'drm-tip' with base: ===
Base commit: 77588a3e3e58 drm-tip: 2024y-06m-04d-16h-44m-06s UTC integration manifest
=== git am output follows ===
Applying: drm/xe: Restrict user fences to long running VMs
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ CI.checkpatch: success for drm/xe: Restrict user fences to long running VMs
2024-06-03 17:53 [PATCH] drm/xe: Restrict user fences to long running VMs Matthew Brost
2024-06-03 20:42 ` Thomas Hellström
2024-06-04 19:38 ` ✓ CI.Patch_applied: success for " Patchwork
@ 2024-06-04 19:39 ` Patchwork
2024-06-04 19:39 ` ✓ CI.KUnit: " Patchwork
` (5 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-06-04 19:39 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Restrict user fences to long running VMs
URL : https://patchwork.freedesktop.org/series/134392/
State : success
== 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
51ce9f6cd981d42d7467409d7dbc559a450abc1e
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 80978b669228cb2b979547268a346ca18f8bfa9d
Author: Matthew Brost <matthew.brost@intel.com>
Date: Mon Jun 3 10:53:12 2024 -0700
drm/xe: Restrict user fences to long running VMs
User fences are intended to be used on long running VMs, enforce this
restriction. This addresses possible concerns of using user fences in
dma-fence and having the dma-fence signal before the user fence.
Fixes: d1df9bfbf68c ("drm/xe: Only allow 1 ufence per exec / bind IOCTL")
Fixes: dd08ebf6c352 ("drm/xe: Introduce a new DRM driver for Intel GPUs")
Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Cc: stable@vger.kernel.org
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
+ /mt/dim checkpatch 77588a3e3e58917a9b1d992aeef6f02a6b85ded5 drm-intel
80978b669228 drm/xe: Restrict user fences to long running VMs
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ CI.KUnit: success for drm/xe: Restrict user fences to long running VMs
2024-06-03 17:53 [PATCH] drm/xe: Restrict user fences to long running VMs Matthew Brost
` (2 preceding siblings ...)
2024-06-04 19:39 ` ✓ CI.checkpatch: " Patchwork
@ 2024-06-04 19:39 ` Patchwork
2024-06-04 19:51 ` ✓ CI.Build: " Patchwork
` (4 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-06-04 19:39 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Restrict user fences to long running VMs
URL : https://patchwork.freedesktop.org/series/134392/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[19:39:01] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[19:39:05] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make ARCH=um O=.kunit --jobs=48
../lib/iomap.c:156:5: warning: no previous prototype for ‘ioread64_lo_hi’ [-Wmissing-prototypes]
156 | u64 ioread64_lo_hi(const void __iomem *addr)
| ^~~~~~~~~~~~~~
../lib/iomap.c:163:5: warning: no previous prototype for ‘ioread64_hi_lo’ [-Wmissing-prototypes]
163 | u64 ioread64_hi_lo(const void __iomem *addr)
| ^~~~~~~~~~~~~~
../lib/iomap.c:170:5: warning: no previous prototype for ‘ioread64be_lo_hi’ [-Wmissing-prototypes]
170 | u64 ioread64be_lo_hi(const void __iomem *addr)
| ^~~~~~~~~~~~~~~~
../lib/iomap.c:178:5: warning: no previous prototype for ‘ioread64be_hi_lo’ [-Wmissing-prototypes]
178 | u64 ioread64be_hi_lo(const void __iomem *addr)
| ^~~~~~~~~~~~~~~~
../lib/iomap.c:264:6: warning: no previous prototype for ‘iowrite64_lo_hi’ [-Wmissing-prototypes]
264 | void iowrite64_lo_hi(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~
../lib/iomap.c:272:6: warning: no previous prototype for ‘iowrite64_hi_lo’ [-Wmissing-prototypes]
272 | void iowrite64_hi_lo(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~
../lib/iomap.c:280:6: warning: no previous prototype for ‘iowrite64be_lo_hi’ [-Wmissing-prototypes]
280 | void iowrite64be_lo_hi(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~~~
../lib/iomap.c:288:6: warning: no previous prototype for ‘iowrite64be_hi_lo’ [-Wmissing-prototypes]
288 | void iowrite64be_hi_lo(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~~~
[19:39:30] Starting KUnit Kernel (1/1)...
[19:39:30] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[19:39:30] =================== guc_dbm (7 subtests) ===================
[19:39:30] [PASSED] test_empty
[19:39:30] [PASSED] test_default
[19:39:30] ======================== test_size ========================
[19:39:30] [PASSED] 4
[19:39:30] [PASSED] 8
[19:39:30] [PASSED] 32
[19:39:30] [PASSED] 256
[19:39:30] ==================== [PASSED] test_size ====================
[19:39:30] ======================= test_reuse ========================
[19:39:30] [PASSED] 4
[19:39:30] [PASSED] 8
[19:39:30] [PASSED] 32
[19:39:30] [PASSED] 256
[19:39:30] =================== [PASSED] test_reuse ====================
[19:39:30] =================== test_range_overlap ====================
[19:39:30] [PASSED] 4
[19:39:30] [PASSED] 8
[19:39:30] [PASSED] 32
[19:39:30] [PASSED] 256
[19:39:30] =============== [PASSED] test_range_overlap ================
[19:39:30] =================== test_range_compact ====================
[19:39:30] [PASSED] 4
[19:39:30] [PASSED] 8
[19:39:30] [PASSED] 32
[19:39:30] [PASSED] 256
[19:39:30] =============== [PASSED] test_range_compact ================
[19:39:30] ==================== test_range_spare =====================
[19:39:30] [PASSED] 4
[19:39:30] [PASSED] 8
[19:39:30] [PASSED] 32
[19:39:30] [PASSED] 256
[19:39:30] ================ [PASSED] test_range_spare =================
[19:39:30] ===================== [PASSED] guc_dbm =====================
[19:39:30] =================== guc_idm (6 subtests) ===================
[19:39:30] [PASSED] bad_init
[19:39:30] [PASSED] no_init
[19:39:30] [PASSED] init_fini
[19:39:30] [PASSED] check_used
[19:39:30] [PASSED] check_quota
[19:39:31] [PASSED] check_all
[19:39:31] ===================== [PASSED] guc_idm =====================
[19:39:31] ================== no_relay (3 subtests) ===================
[19:39:31] [PASSED] xe_drops_guc2pf_if_not_ready
[19:39:31] [PASSED] xe_drops_guc2vf_if_not_ready
[19:39:31] [PASSED] xe_rejects_send_if_not_ready
[19:39:31] ==================== [PASSED] no_relay =====================
[19:39:31] ================== pf_relay (14 subtests) ==================
[19:39:31] [PASSED] pf_rejects_guc2pf_too_short
[19:39:31] [PASSED] pf_rejects_guc2pf_too_long
[19:39:31] [PASSED] pf_rejects_guc2pf_no_payload
[19:39:31] [PASSED] pf_fails_no_payload
[19:39:31] [PASSED] pf_fails_bad_origin
[19:39:31] [PASSED] pf_fails_bad_type
[19:39:31] [PASSED] pf_txn_reports_error
[19:39:31] [PASSED] pf_txn_sends_pf2guc
[19:39:31] [PASSED] pf_sends_pf2guc
[19:39:31] [SKIPPED] pf_loopback_nop
[19:39:31] [SKIPPED] pf_loopback_echo
[19:39:31] [SKIPPED] pf_loopback_fail
[19:39:31] [SKIPPED] pf_loopback_busy
[19:39:31] [SKIPPED] pf_loopback_retry
[19:39:31] ==================== [PASSED] pf_relay =====================
[19:39:31] ================== vf_relay (3 subtests) ===================
[19:39:31] [PASSED] vf_rejects_guc2vf_too_short
[19:39:31] [PASSED] vf_rejects_guc2vf_too_long
[19:39:31] [PASSED] vf_rejects_guc2vf_no_payload
[19:39:31] ==================== [PASSED] vf_relay =====================
[19:39:31] ================= pf_service (11 subtests) =================
[19:39:31] [PASSED] pf_negotiate_any
[19:39:31] [PASSED] pf_negotiate_base_match
[19:39:31] [PASSED] pf_negotiate_base_newer
[19:39:31] [PASSED] pf_negotiate_base_next
[19:39:31] [SKIPPED] pf_negotiate_base_older
[19:39:31] [PASSED] pf_negotiate_base_prev
[19:39:31] [PASSED] pf_negotiate_latest_match
[19:39:31] [PASSED] pf_negotiate_latest_newer
[19:39:31] [PASSED] pf_negotiate_latest_next
[19:39:31] [SKIPPED] pf_negotiate_latest_older
[19:39:31] [SKIPPED] pf_negotiate_latest_prev
[19:39:31] =================== [PASSED] pf_service ====================
[19:39:31] ===================== lmtt (1 subtest) =====================
[19:39:31] ======================== test_ops =========================
[19:39:31] [PASSED] 2-level
[19:39:31] [PASSED] multi-level
[19:39:31] ==================== [PASSED] test_ops =====================
[19:39:31] ====================== [PASSED] lmtt =======================
[19:39:31] ==================== xe_bo (2 subtests) ====================
[19:39:31] [SKIPPED] xe_ccs_migrate_kunit
[19:39:31] [SKIPPED] xe_bo_evict_kunit
[19:39:31] ===================== [SKIPPED] xe_bo ======================
[19:39:31] ================== xe_dma_buf (1 subtest) ==================
[19:39:31] [SKIPPED] xe_dma_buf_kunit
[19:39:31] =================== [SKIPPED] xe_dma_buf ===================
[19:39:31] ================== xe_migrate (1 subtest) ==================
[19:39:31] [SKIPPED] xe_migrate_sanity_kunit
[19:39:31] =================== [SKIPPED] xe_migrate ===================
[19:39:31] =================== xe_mocs (2 subtests) ===================
[19:39:31] [SKIPPED] xe_live_mocs_kernel_kunit
[19:39:31] [SKIPPED] xe_live_mocs_reset_kunit
[19:39:31] ==================== [SKIPPED] xe_mocs =====================
[19:39:31] ==================== args (11 subtests) ====================
[19:39:31] [PASSED] count_args_test
[19:39:31] [PASSED] call_args_example
[19:39:31] [PASSED] call_args_test
[19:39:31] [PASSED] drop_first_arg_example
[19:39:31] [PASSED] drop_first_arg_test
[19:39:31] [PASSED] first_arg_example
[19:39:31] [PASSED] first_arg_test
[19:39:31] [PASSED] last_arg_example
[19:39:31] [PASSED] last_arg_test
[19:39:31] [PASSED] pick_arg_example
[19:39:31] [PASSED] sep_comma_example
[19:39:31] ====================== [PASSED] args =======================
[19:39:31] =================== xe_pci (2 subtests) ====================
[19:39:31] [PASSED] xe_gmdid_graphics_ip
[19:39:31] [PASSED] xe_gmdid_media_ip
[19:39:31] ===================== [PASSED] xe_pci ======================
[19:39:31] ==================== xe_rtp (1 subtest) ====================
[19:39:31] ================== xe_rtp_process_tests ===================
[19:39:31] [PASSED] coalesce-same-reg
[19:39:31] [PASSED] no-match-no-add
[19:39:31] [PASSED] no-match-no-add-multiple-rules
[19:39:31] [PASSED] two-regs-two-entries
[19:39:31] [PASSED] clr-one-set-other
[19:39:31] [PASSED] set-field
[19:39:31] [PASSED] conflict-duplicate
[19:39:31] [PASSED] conflict-not-disjoint
[19:39:31] [PASSED] conflict-reg-type
[19:39:31] ============== [PASSED] xe_rtp_process_tests ===============
stty: 'standard input': Inappropriate ioctl for device
[19:39:31] ===================== [PASSED] xe_rtp ======================
[19:39:31] ==================== xe_wa (1 subtest) =====================
[19:39:31] ======================== xe_wa_gt =========================
[19:39:31] [PASSED] TIGERLAKE (B0)
[19:39:31] [PASSED] DG1 (A0)
[19:39:31] [PASSED] DG1 (B0)
[19:39:31] [PASSED] ALDERLAKE_S (A0)
[19:39:31] [PASSED] ALDERLAKE_S (B0)
[19:39:31] [PASSED] ALDERLAKE_S (C0)
[19:39:31] [PASSED] ALDERLAKE_S (D0)
[19:39:31] [PASSED] ALDERLAKE_P (A0)
[19:39:31] [PASSED] ALDERLAKE_P (B0)
[19:39:31] [PASSED] ALDERLAKE_P (C0)
[19:39:31] [PASSED] ALDERLAKE_S_RPLS (D0)
[19:39:31] [PASSED] ALDERLAKE_P_RPLU (E0)
[19:39:31] [PASSED] DG2_G10 (C0)
[19:39:31] [PASSED] DG2_G11 (B1)
[19:39:31] [PASSED] DG2_G12 (A1)
[19:39:31] [PASSED] METEORLAKE (g:A0, m:A0)
[19:39:31] [PASSED] METEORLAKE (g:A0, m:A0)
[19:39:31] [PASSED] METEORLAKE (g:A0, m:A0)
[19:39:31] [PASSED] LUNARLAKE (g:A0, m:A0)
[19:39:31] [PASSED] LUNARLAKE (g:B0, m:A0)
[19:39:31] ==================== [PASSED] xe_wa_gt =====================
[19:39:31] ====================== [PASSED] xe_wa ======================
[19:39:31] ============================================================
[19:39:31] Testing complete. Ran 109 tests: passed: 95, skipped: 14
[19:39:31] Elapsed time: 29.621s total, 4.291s configuring, 25.059s building, 0.217s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[19:39:31] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[19:39:32] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make ARCH=um O=.kunit --jobs=48
../lib/iomap.c:156:5: warning: no previous prototype for ‘ioread64_lo_hi’ [-Wmissing-prototypes]
156 | u64 ioread64_lo_hi(const void __iomem *addr)
| ^~~~~~~~~~~~~~
../lib/iomap.c:163:5: warning: no previous prototype for ‘ioread64_hi_lo’ [-Wmissing-prototypes]
163 | u64 ioread64_hi_lo(const void __iomem *addr)
| ^~~~~~~~~~~~~~
../lib/iomap.c:170:5: warning: no previous prototype for ‘ioread64be_lo_hi’ [-Wmissing-prototypes]
170 | u64 ioread64be_lo_hi(const void __iomem *addr)
| ^~~~~~~~~~~~~~~~
../lib/iomap.c:178:5: warning: no previous prototype for ‘ioread64be_hi_lo’ [-Wmissing-prototypes]
178 | u64 ioread64be_hi_lo(const void __iomem *addr)
| ^~~~~~~~~~~~~~~~
../lib/iomap.c:264:6: warning: no previous prototype for ‘iowrite64_lo_hi’ [-Wmissing-prototypes]
264 | void iowrite64_lo_hi(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~
../lib/iomap.c:272:6: warning: no previous prototype for ‘iowrite64_hi_lo’ [-Wmissing-prototypes]
272 | void iowrite64_hi_lo(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~
../lib/iomap.c:280:6: warning: no previous prototype for ‘iowrite64be_lo_hi’ [-Wmissing-prototypes]
280 | void iowrite64be_lo_hi(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~~~
../lib/iomap.c:288:6: warning: no previous prototype for ‘iowrite64be_hi_lo’ [-Wmissing-prototypes]
288 | void iowrite64be_hi_lo(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~~~
[19:39:54] Starting KUnit Kernel (1/1)...
[19:39:54] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[19:39:54] ============ drm_test_pick_cmdline (2 subtests) ============
[19:39:54] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[19:39:54] =============== drm_test_pick_cmdline_named ===============
[19:39:54] [PASSED] NTSC
[19:39:54] [PASSED] NTSC-J
[19:39:54] [PASSED] PAL
[19:39:54] [PASSED] PAL-M
[19:39:54] =========== [PASSED] drm_test_pick_cmdline_named ===========
[19:39:54] ============== [PASSED] drm_test_pick_cmdline ==============
[19:39:54] ================== drm_buddy (7 subtests) ==================
[19:39:54] [PASSED] drm_test_buddy_alloc_limit
[19:39:54] [PASSED] drm_test_buddy_alloc_optimistic
[19:39:54] [PASSED] drm_test_buddy_alloc_pessimistic
[19:39:54] [PASSED] drm_test_buddy_alloc_pathological
[19:39:54] [PASSED] drm_test_buddy_alloc_contiguous
[19:39:54] [PASSED] drm_test_buddy_alloc_clear
[19:39:54] [PASSED] drm_test_buddy_alloc_range_bias
[19:39:54] ==================== [PASSED] drm_buddy ====================
[19:39:54] ============= drm_cmdline_parser (40 subtests) =============
[19:39:54] [PASSED] drm_test_cmdline_force_d_only
[19:39:54] [PASSED] drm_test_cmdline_force_D_only_dvi
[19:39:54] [PASSED] drm_test_cmdline_force_D_only_hdmi
[19:39:54] [PASSED] drm_test_cmdline_force_D_only_not_digital
[19:39:54] [PASSED] drm_test_cmdline_force_e_only
[19:39:54] [PASSED] drm_test_cmdline_res
[19:39:54] [PASSED] drm_test_cmdline_res_vesa
[19:39:54] [PASSED] drm_test_cmdline_res_vesa_rblank
[19:39:54] [PASSED] drm_test_cmdline_res_rblank
[19:39:54] [PASSED] drm_test_cmdline_res_bpp
[19:39:54] [PASSED] drm_test_cmdline_res_refresh
[19:39:54] [PASSED] drm_test_cmdline_res_bpp_refresh
[19:39:54] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[19:39:54] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[19:39:54] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[19:39:54] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[19:39:54] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[19:39:54] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[19:39:54] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[19:39:54] [PASSED] drm_test_cmdline_res_margins_force_on
[19:39:54] [PASSED] drm_test_cmdline_res_vesa_margins
[19:39:54] [PASSED] drm_test_cmdline_name
[19:39:54] [PASSED] drm_test_cmdline_name_bpp
[19:39:54] [PASSED] drm_test_cmdline_name_option
[19:39:54] [PASSED] drm_test_cmdline_name_bpp_option
[19:39:54] [PASSED] drm_test_cmdline_rotate_0
[19:39:54] [PASSED] drm_test_cmdline_rotate_90
[19:39:54] [PASSED] drm_test_cmdline_rotate_180
[19:39:54] [PASSED] drm_test_cmdline_rotate_270
[19:39:54] [PASSED] drm_test_cmdline_hmirror
[19:39:54] [PASSED] drm_test_cmdline_vmirror
[19:39:54] [PASSED] drm_test_cmdline_margin_options
[19:39:54] [PASSED] drm_test_cmdline_multiple_options
[19:39:54] [PASSED] drm_test_cmdline_bpp_extra_and_option
[19:39:54] [PASSED] drm_test_cmdline_extra_and_option
[19:39:54] [PASSED] drm_test_cmdline_freestanding_options
[19:39:54] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[19:39:54] [PASSED] drm_test_cmdline_panel_orientation
[19:39:54] ================ drm_test_cmdline_invalid =================
[19:39:54] [PASSED] margin_only
[19:39:54] [PASSED] interlace_only
[19:39:54] [PASSED] res_missing_x
[19:39:54] [PASSED] res_missing_y
[19:39:54] [PASSED] res_bad_y
[19:39:54] [PASSED] res_missing_y_bpp
[19:39:54] [PASSED] res_bad_bpp
[19:39:54] [PASSED] res_bad_refresh
[19:39:54] [PASSED] res_bpp_refresh_force_on_off
[19:39:54] [PASSED] res_invalid_mode
[19:39:54] [PASSED] res_bpp_wrong_place_mode
[19:39:54] [PASSED] name_bpp_refresh
[19:39:54] [PASSED] name_refresh
[19:39:54] [PASSED] name_refresh_wrong_mode
[19:39:54] [PASSED] name_refresh_invalid_mode
[19:39:54] [PASSED] rotate_multiple
[19:39:54] [PASSED] rotate_invalid_val
[19:39:54] [PASSED] rotate_truncated
[19:39:54] [PASSED] invalid_option
[19:39:54] [PASSED] invalid_tv_option
[19:39:54] [PASSED] truncated_tv_option
[19:39:54] ============ [PASSED] drm_test_cmdline_invalid =============
[19:39:54] =============== drm_test_cmdline_tv_options ===============
[19:39:54] [PASSED] NTSC
[19:39:54] [PASSED] NTSC_443
[19:39:54] [PASSED] NTSC_J
[19:39:54] [PASSED] PAL
[19:39:54] [PASSED] PAL_M
[19:39:54] [PASSED] PAL_N
[19:39:54] [PASSED] SECAM
[19:39:54] =========== [PASSED] drm_test_cmdline_tv_options ===========
[19:39:54] =============== [PASSED] drm_cmdline_parser ================
[19:39:54] ========== drmm_connector_hdmi_init (19 subtests) ==========
[19:39:54] [PASSED] drm_test_connector_hdmi_init_valid
[19:39:54] [PASSED] drm_test_connector_hdmi_init_bpc_8
[19:39:54] [PASSED] drm_test_connector_hdmi_init_bpc_10
[19:39:54] [PASSED] drm_test_connector_hdmi_init_bpc_12
[19:39:54] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[19:39:54] [PASSED] drm_test_connector_hdmi_init_bpc_null
[19:39:54] [PASSED] drm_test_connector_hdmi_init_formats_empty
[19:39:54] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[19:39:54] [PASSED] drm_test_connector_hdmi_init_null_ddc
[19:39:54] [PASSED] drm_test_connector_hdmi_init_null_product
[19:39:54] [PASSED] drm_test_connector_hdmi_init_null_vendor
[19:39:54] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[19:39:54] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[19:39:54] [PASSED] drm_test_connector_hdmi_init_product_valid
[19:39:54] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[19:39:54] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[19:39:54] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[19:39:54] ========= drm_test_connector_hdmi_init_type_valid =========
[19:39:54] [PASSED] HDMI-A
[19:39:54] [PASSED] HDMI-B
[19:39:54] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[19:39:54] ======== drm_test_connector_hdmi_init_type_invalid ========
[19:39:54] [PASSED] Unknown
[19:39:54] [PASSED] VGA
[19:39:54] [PASSED] DVI-I
[19:39:54] [PASSED] DVI-D
[19:39:54] [PASSED] DVI-A
[19:39:54] [PASSED] Composite
[19:39:54] [PASSED] SVIDEO
[19:39:54] [PASSED] LVDS
[19:39:54] [PASSED] Component
[19:39:54] [PASSED] DIN
[19:39:54] [PASSED] DP
[19:39:54] [PASSED] TV
[19:39:54] [PASSED] eDP
[19:39:54] [PASSED] Virtual
[19:39:54] [PASSED] DSI
[19:39:54] [PASSED] DPI
[19:39:54] [PASSED] Writeback
[19:39:54] [PASSED] SPI
[19:39:54] [PASSED] USB
[19:39:54] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[19:39:54] ============ [PASSED] drmm_connector_hdmi_init =============
[19:39:54] ============= drmm_connector_init (3 subtests) =============
[19:39:54] [PASSED] drm_test_drmm_connector_init
[19:39:54] [PASSED] drm_test_drmm_connector_init_null_ddc
[19:39:54] ========= drm_test_drmm_connector_init_type_valid =========
[19:39:54] [PASSED] Unknown
[19:39:54] [PASSED] VGA
[19:39:54] [PASSED] DVI-I
[19:39:54] [PASSED] DVI-D
[19:39:54] [PASSED] DVI-A
[19:39:54] [PASSED] Composite
[19:39:54] [PASSED] SVIDEO
[19:39:54] [PASSED] LVDS
[19:39:54] [PASSED] Component
[19:39:54] [PASSED] DIN
[19:39:54] [PASSED] DP
[19:39:54] [PASSED] HDMI-A
[19:39:54] [PASSED] HDMI-B
[19:39:54] [PASSED] TV
[19:39:54] [PASSED] eDP
[19:39:54] [PASSED] Virtual
[19:39:54] [PASSED] DSI
[19:39:54] [PASSED] DPI
[19:39:54] [PASSED] Writeback
[19:39:54] [PASSED] SPI
[19:39:54] [PASSED] USB
[19:39:54] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[19:39:54] =============== [PASSED] drmm_connector_init ===============
[19:39:54] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[19:39:54] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[19:39:54] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[19:39:54] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[19:39:54] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[19:39:54] ========== drm_test_get_tv_mode_from_name_valid ===========
[19:39:54] [PASSED] NTSC
[19:39:54] [PASSED] NTSC-443
[19:39:54] [PASSED] NTSC-J
[19:39:54] [PASSED] PAL
[19:39:54] [PASSED] PAL-M
[19:39:54] [PASSED] PAL-N
[19:39:54] [PASSED] SECAM
[19:39:54] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[19:39:54] [PASSED] drm_test_get_tv_mode_from_name_truncated
[19:39:54] ============ [PASSED] drm_get_tv_mode_from_name ============
[19:39:54] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[19:39:54] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[19:39:54] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[19:39:54] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[19:39:54] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[19:39:54] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[19:39:54] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[19:39:54] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[19:39:54] [PASSED] VIC 96
[19:39:54] [PASSED] VIC 97
[19:39:54] [PASSED] VIC 101
[19:39:54] [PASSED] VIC 102
[19:39:54] [PASSED] VIC 106
[19:39:54] [PASSED] VIC 107
[19:39:54] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[19:39:54] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[19:39:54] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[19:39:54] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[19:39:54] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[19:39:54] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[19:39:54] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[19:39:54] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[19:39:54] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[19:39:54] [PASSED] Automatic
[19:39:54] [PASSED] Full
[19:39:54] [PASSED] Limited 16:235
[19:39:54] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[19:39:54] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[19:39:54] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[19:39:54] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[19:39:54] === drm_test_drm_hdmi_connector_get_output_format_name ====
[19:39:54] [PASSED] RGB
[19:39:54] [PASSED] YUV 4:2:0
[19:39:54] [PASSED] YUV 4:2:2
[19:39:54] [PASSED] YUV 4:4:4
[19:39:54] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[19:39:54] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[19:39:54] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[19:39:54] ============= drm_damage_helper (21 subtests) ==============
[19:39:54] [PASSED] drm_test_damage_iter_no_damage
[19:39:54] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[19:39:54] [PASSED] drm_test_damage_iter_no_damage_src_moved
[19:39:54] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[19:39:54] [PASSED] drm_test_damage_iter_no_damage_not_visible
[19:39:54] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[19:39:54] [PASSED] drm_test_damage_iter_no_damage_no_fb
[19:39:54] [PASSED] drm_test_damage_iter_simple_damage
[19:39:54] [PASSED] drm_test_damage_iter_single_damage
[19:39:54] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[19:39:54] [PASSED] drm_test_damage_iter_single_damage_outside_src
[19:39:54] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[19:39:54] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[19:39:54] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[19:39:54] [PASSED] drm_test_damage_iter_single_damage_src_moved
[19:39:54] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[19:39:54] [PASSED] drm_test_damage_iter_damage
[19:39:54] [PASSED] drm_test_damage_iter_damage_one_intersect
[19:39:54] [PASSED] drm_test_damage_iter_damage_one_outside
[19:39:54] [PASSED] drm_test_damage_iter_damage_src_moved
[19:39:54] [PASSED] drm_test_damage_iter_damage_not_visible
[19:39:54] ================ [PASSED] drm_damage_helper ================
[19:39:54] ============== drm_dp_mst_helper (3 subtests) ==============
[19:39:54] ============== drm_test_dp_mst_calc_pbn_mode ==============
[19:39:54] [PASSED] Clock 154000 BPP 30 DSC disabled
[19:39:54] [PASSED] Clock 234000 BPP 30 DSC disabled
[19:39:54] [PASSED] Clock 297000 BPP 24 DSC disabled
[19:39:54] [PASSED] Clock 332880 BPP 24 DSC enabled
[19:39:54] [PASSED] Clock 324540 BPP 24 DSC enabled
[19:39:54] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[19:39:54] ============== drm_test_dp_mst_calc_pbn_div ===============
[19:39:54] [PASSED] Link rate 2000000 lane count 4
[19:39:54] [PASSED] Link rate 2000000 lane count 2
[19:39:54] [PASSED] Link rate 2000000 lane count 1
[19:39:54] [PASSED] Link rate 1350000 lane count 4
[19:39:54] [PASSED] Link rate 1350000 lane count 2
[19:39:54] [PASSED] Link rate 1350000 lane count 1
[19:39:54] [PASSED] Link rate 1000000 lane count 4
[19:39:54] [PASSED] Link rate 1000000 lane count 2
[19:39:54] [PASSED] Link rate 1000000 lane count 1
[19:39:54] [PASSED] Link rate 810000 lane count 4
[19:39:54] [PASSED] Link rate 810000 lane count 2
[19:39:54] [PASSED] Link rate 810000 lane count 1
[19:39:54] [PASSED] Link rate 540000 lane count 4
[19:39:54] [PASSED] Link rate 540000 lane count 2
[19:39:54] [PASSED] Link rate 540000 lane count 1
[19:39:54] [PASSED] Link rate 270000 lane count 4
[19:39:54] [PASSED] Link rate 270000 lane count 2
[19:39:54] [PASSED] Link rate 270000 lane count 1
[19:39:54] [PASSED] Link rate 162000 lane count 4
[19:39:54] [PASSED] Link rate 162000 lane count 2
[19:39:54] [PASSED] Link rate 162000 lane count 1
[19:39:54] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[19:39:54] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[19:39:54] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[19:39:54] [PASSED] DP_POWER_UP_PHY with port number
[19:39:54] [PASSED] DP_POWER_DOWN_PHY with port number
[19:39:54] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[19:39:54] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[19:39:54] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[19:39:54] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[19:39:54] [PASSED] DP_QUERY_PAYLOAD with port number
[19:39:54] [PASSED] DP_QUERY_PAYLOAD with VCPI
[19:39:54] [PASSED] DP_REMOTE_DPCD_READ with port number
[19:39:54] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[19:39:54] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[19:39:54] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[19:39:54] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[19:39:54] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[19:39:54] [PASSED] DP_REMOTE_I2C_READ with port number
[19:39:54] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[19:39:54] [PASSED] DP_REMOTE_I2C_READ with transactions array
[19:39:54] [PASSED] DP_REMOTE_I2C_WRITE with port number
[19:39:54] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[19:39:54] [PASSED] DP_REMOTE_I2C_WRITE with data array
[19:39:54] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[19:39:54] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[19:39:54] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[19:39:54] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[19:39:54] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[19:39:54] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[19:39:54] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[19:39:54] ================ [PASSED] drm_dp_mst_helper ================
[19:39:54] ================== drm_exec (7 subtests) ===================
[19:39:54] [PASSED] sanitycheck
[19:39:54] [PASSED] test_lock
[19:39:54] [PASSED] test_lock_unlock
[19:39:54] [PASSED] test_duplicates
[19:39:54] [PASSED] test_prepare
[19:39:54] [PASSED] test_prepare_array
[19:39:54] [PASSED] test_multiple_loops
[19:39:54] ==================== [PASSED] drm_exec =====================
[19:39:54] =========== drm_format_helper_test (17 subtests) ===========
[19:39:54] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[19:39:54] [PASSED] single_pixel_source_buffer
[19:39:54] [PASSED] single_pixel_clip_rectangle
[19:39:54] [PASSED] well_known_colors
[19:39:54] [PASSED] destination_pitch
[19:39:54] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[19:39:54] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[19:39:54] [PASSED] single_pixel_source_buffer
[19:39:54] [PASSED] single_pixel_clip_rectangle
[19:39:54] [PASSED] well_known_colors
[19:39:54] [PASSED] destination_pitch
[19:39:54] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[19:39:54] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[19:39:54] [PASSED] single_pixel_source_buffer
[19:39:54] [PASSED] single_pixel_clip_rectangle
[19:39:54] [PASSED] well_known_colors
[19:39:54] [PASSED] destination_pitch
[19:39:54] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[19:39:54] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[19:39:54] [PASSED] single_pixel_source_buffer
[19:39:54] [PASSED] single_pixel_clip_rectangle
[19:39:54] [PASSED] well_known_colors
[19:39:54] [PASSED] destination_pitch
[19:39:54] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[19:39:54] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[19:39:54] [PASSED] single_pixel_source_buffer
[19:39:54] [PASSED] single_pixel_clip_rectangle
[19:39:54] [PASSED] well_known_colors
[19:39:54] [PASSED] destination_pitch
[19:39:54] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[19:39:54] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[19:39:54] [PASSED] single_pixel_source_buffer
[19:39:54] [PASSED] single_pixel_clip_rectangle
[19:39:54] [PASSED] well_known_colors
[19:39:54] [PASSED] destination_pitch
[19:39:54] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[19:39:54] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[19:39:54] [PASSED] single_pixel_source_buffer
[19:39:54] [PASSED] single_pixel_clip_rectangle
[19:39:54] [PASSED] well_known_colors
[19:39:54] [PASSED] destination_pitch
[19:39:54] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[19:39:54] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[19:39:54] [PASSED] single_pixel_source_buffer
[19:39:54] [PASSED] single_pixel_clip_rectangle
[19:39:54] [PASSED] well_known_colors
[19:39:54] [PASSED] destination_pitch
[19:39:54] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[19:39:54] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[19:39:54] [PASSED] single_pixel_source_buffer
[19:39:54] [PASSED] single_pixel_clip_rectangle
[19:39:54] [PASSED] well_known_colors
[19:39:54] [PASSED] destination_pitch
[19:39:54] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[19:39:54] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[19:39:54] [PASSED] single_pixel_source_buffer
[19:39:54] [PASSED] single_pixel_clip_rectangle
[19:39:54] [PASSED] well_known_colors
[19:39:54] [PASSED] destination_pitch
[19:39:54] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[19:39:54] ============== drm_test_fb_xrgb8888_to_mono ===============
[19:39:54] [PASSED] single_pixel_source_buffer
[19:39:54] [PASSED] single_pixel_clip_rectangle
[19:39:54] [PASSED] well_known_colors
[19:39:54] [PASSED] destination_pitch
[19:39:54] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[19:39:54] ==================== drm_test_fb_swab =====================
[19:39:54] [PASSED] single_pixel_source_buffer
[19:39:54] [PASSED] single_pixel_clip_rectangle
[19:39:54] [PASSED] well_known_colors
[19:39:54] [PASSED] destination_pitch
[19:39:54] ================ [PASSED] drm_test_fb_swab =================
[19:39:54] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[19:39:54] [PASSED] single_pixel_source_buffer
[19:39:54] [PASSED] single_pixel_clip_rectangle
[19:39:54] [PASSED] well_known_colors
[19:39:54] [PASSED] destination_pitch
[19:39:54] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[19:39:54] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[19:39:54] [PASSED] single_pixel_source_buffer
[19:39:54] [PASSED] single_pixel_clip_rectangle
[19:39:54] [PASSED] well_known_colors
[19:39:54] [PASSED] destination_pitch
[19:39:54] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[19:39:54] ================= drm_test_fb_clip_offset =================
[19:39:54] [PASSED] pass through
[19:39:54] [PASSED] horizontal offset
[19:39:54] [PASSED] vertical offset
[19:39:54] [PASSED] horizontal and vertical offset
[19:39:54] [PASSED] horizontal offset (custom pitch)
[19:39:54] [PASSED] vertical offset (custom pitch)
[19:39:54] [PASSED] horizontal and vertical offset (custom pitch)
[19:39:54] ============= [PASSED] drm_test_fb_clip_offset =============
[19:39:54] ============== drm_test_fb_build_fourcc_list ==============
[19:39:54] [PASSED] no native formats
[19:39:54] [PASSED] XRGB8888 as native format
[19:39:54] [PASSED] remove duplicates
[19:39:54] [PASSED] convert alpha formats
[19:39:54] [PASSED] random formats
[19:39:54] ========== [PASSED] drm_test_fb_build_fourcc_list ==========
[19:39:54] =================== drm_test_fb_memcpy ====================
[19:39:54] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[19:39:54] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[19:39:54] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[19:39:54] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[19:39:54] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[19:39:54] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[19:39:54] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[19:39:54] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[19:39:54] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[19:39:54] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[19:39:54] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[19:39:54] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[19:39:54] =============== [PASSED] drm_test_fb_memcpy ================
[19:39:54] ============= [PASSED] drm_format_helper_test ==============
[19:39:54] ================= drm_format (18 subtests) =================
[19:39:54] [PASSED] drm_test_format_block_width_invalid
[19:39:54] [PASSED] drm_test_format_block_width_one_plane
[19:39:54] [PASSED] drm_test_format_block_width_two_plane
[19:39:54] [PASSED] drm_test_format_block_width_three_plane
[19:39:54] [PASSED] drm_test_format_block_width_tiled
[19:39:54] [PASSED] drm_test_format_block_height_invalid
[19:39:54] [PASSED] drm_test_format_block_height_one_plane
[19:39:54] [PASSED] drm_test_format_block_height_two_plane
[19:39:54] [PASSED] drm_test_format_block_height_three_plane
[19:39:54] [PASSED] drm_test_format_block_height_tiled
[19:39:54] [PASSED] drm_test_format_min_pitch_invalid
[19:39:54] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[19:39:54] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[19:39:54] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[19:39:54] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[19:39:54] [PASSED] drm_test_format_min_pitch_two_plane
[19:39:54] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[19:39:54] [PASSED] drm_test_format_min_pitch_tiled
[19:39:54] =================== [PASSED] drm_format ====================
[19:39:54] =============== drm_framebuffer (1 subtest) ================
[19:39:54] =============== drm_test_framebuffer_create ===============
[19:39:54] [PASSED] ABGR8888 normal sizes
[19:39:54] [PASSED] ABGR8888 max sizes
[19:39:54] [PASSED] ABGR8888 pitch greater than min required
[19:39:54] [PASSED] ABGR8888 pitch less than min required
[19:39:54] [PASSED] ABGR8888 Invalid width
[19:39:54] [PASSED] ABGR8888 Invalid buffer handle
[19:39:54] [PASSED] No pixel format
[19:39:54] [PASSED] ABGR8888 Width 0
[19:39:54] [PASSED] ABGR8888 Height 0
[19:39:54] [PASSED] ABGR8888 Out of bound height * pitch combination
[19:39:54] [PASSED] ABGR8888 Large buffer offset
[19:39:54] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[19:39:54] [PASSED] ABGR8888 Valid buffer modifier
[19:39:54] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[19:39:54] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[19:39:54] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[19:39:54] [PASSED] NV12 Normal sizes
[19:39:54] [PASSED] NV12 Max sizes
[19:39:54] [PASSED] NV12 Invalid pitch
[19:39:54] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[19:39:54] [PASSED] NV12 different modifier per-plane
[19:39:54] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[19:39:54] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[19:39:54] [PASSED] NV12 Modifier for inexistent plane
[19:39:54] [PASSED] NV12 Handle for inexistent plane
[19:39:54] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[19:39:54] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[19:39:54] [PASSED] YVU420 Normal sizes
[19:39:54] [PASSED] YVU420 Max sizes
[19:39:54] [PASSED] YVU420 Invalid pitch
[19:39:54] [PASSED] YVU420 Different pitches
[19:39:54] [PASSED] YVU420 Different buffer offsets/pitches
[19:39:54] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[19:39:54] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[19:39:54] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[19:39:54] [PASSED] YVU420 Valid modifier
[19:39:54] [PASSED] YVU420 Different modifiers per plane
[19:39:54] [PASSED] YVU420 Modifier for inexistent plane
[19:39:54] [PASSED] X0L2 Normal sizes
[19:39:54] [PASSED] X0L2 Max sizes
[19:39:54] [PASSED] X0L2 Invalid pitch
[19:39:54] [PASSED] X0L2 Pitch greater than minimum required
[19:39:54] [PASSED] X0L2 Handle for inexistent plane
[19:39:54] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[19:39:54] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[19:39:54] [PASSED] X0L2 Valid modifier
[19:39:54] [PASSED] X0L2 Modifier for inexistent plane
[19:39:54] =========== [PASSED] drm_test_framebuffer_create ===========
[19:39:54] ================= [PASSED] drm_framebuffer =================
[19:39:54] ================ drm_gem_shmem (8 subtests) ================
[19:39:54] [PASSED] drm_gem_shmem_test_obj_create
[19:39:54] [PASSED] drm_gem_shmem_test_obj_create_private
[19:39:54] [PASSED] drm_gem_shmem_test_pin_pages
[19:39:54] [PASSED] drm_gem_shmem_test_vmap
[19:39:54] [PASSED] drm_gem_shmem_test_get_pages_sgt
[19:39:54] [PASSED] drm_gem_shmem_test_get_sg_table
[19:39:54] [PASSED] drm_gem_shmem_test_madvise
[19:39:54] [PASSED] drm_gem_shmem_test_purge
[19:39:54] ================== [PASSED] drm_gem_shmem ==================
[19:39:54] === drm_atomic_helper_connector_hdmi_check (22 subtests) ===
[19:39:54] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[19:39:54] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[19:39:54] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[19:39:54] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[19:39:54] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[19:39:54] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[19:39:54] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[19:39:54] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[19:39:54] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[19:39:54] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback
[19:39:54] [PASSED] drm_test_check_max_tmds_rate_format_fallback
[19:39:54] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[19:39:54] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[19:39:54] [PASSED] drm_test_check_output_bpc_dvi
[19:39:54] [PASSED] drm_test_check_output_bpc_format_vic_1
[19:39:54] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[19:39:54] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[19:39:54] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[19:39:54] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[19:39:54] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[19:39:54] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[19:39:54] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[19:39:54] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[19:39:54] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[19:39:54] [PASSED] drm_test_check_broadcast_rgb_value
[19:39:54] [PASSED] drm_test_check_bpc_8_value
[19:39:54] [PASSED] drm_test_check_bpc_10_value
[19:39:54] [PASSED] drm_test_check_bpc_12_value
[19:39:54] [PASSED] drm_test_check_format_value
[19:39:54] [PASSED] drm_test_check_tmds_char_value
[19:39:54] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[19:39:54] ================= drm_managed (2 subtests) =================
[19:39:54] [PASSED] drm_test_managed_release_action
[19:39:54] [PASSED] drm_test_managed_run_action
[19:39:54] =================== [PASSED] drm_managed ===================
[19:39:54] =================== drm_mm (6 subtests) ====================
[19:39:54] [PASSED] drm_test_mm_init
[19:39:54] [PASSED] drm_test_mm_debug
[19:39:54] [PASSED] drm_test_mm_align32
[19:39:54] [PASSED] drm_test_mm_align64
[19:39:54] [PASSED] drm_test_mm_lowest
[19:39:54] [PASSED] drm_test_mm_highest
[19:39:54] ===================== [PASSED] drm_mm ======================
[19:39:54] ============= drm_modes_analog_tv (4 subtests) =============
[19:39:54] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[19:39:54] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[19:39:54] [PASSED] drm_test_modes_analog_tv_pal_576i
[19:39:54] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[19:39:54] =============== [PASSED] drm_modes_analog_tv ===============
[19:39:54] ============== drm_plane_helper (2 subtests) ===============
[19:39:54] =============== drm_test_check_plane_state ================
[19:39:54] [PASSED] clipping_simple
[19:39:54] [PASSED] clipping_rotate_reflect
[19:39:54] [PASSED] positioning_simple
[19:39:54] [PASSED] upscaling
[19:39:54] [PASSED] downscaling
[19:39:54] [PASSED] rounding1
[19:39:54] [PASSED] rounding2
[19:39:54] [PASSED] rounding3
[19:39:54] [PASSED] rounding4
[19:39:54] =========== [PASSED] drm_test_check_plane_state ============
[19:39:54] =========== drm_test_check_invalid_plane_state ============
[19:39:54] [PASSED] positioning_invalid
[19:39:54] [PASSED] upscaling_invalid
[19:39:54] [PASSED] downscaling_invalid
[19:39:54] ======= [PASSED] drm_test_check_invalid_plane_state ========
[19:39:54] ================ [PASSED] drm_plane_helper =================
stty: 'standard input': Inappropriate ioctl for device
[19:39:54] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[19:39:54] ====== drm_test_connector_helper_tv_get_modes_check =======
[19:39:54] [PASSED] None
[19:39:54] [PASSED] PAL
[19:39:54] [PASSED] NTSC
[19:39:54] [PASSED] Both, NTSC Default
[19:39:54] [PASSED] Both, PAL Default
[19:39:54] [PASSED] Both, NTSC Default, with PAL on command-line
[19:39:54] [PASSED] Both, PAL Default, with NTSC on command-line
[19:39:54] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[19:39:54] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[19:39:54] ================== drm_rect (9 subtests) ===================
[19:39:54] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[19:39:54] [PASSED] drm_test_rect_clip_scaled_not_clipped
[19:39:54] [PASSED] drm_test_rect_clip_scaled_clipped
[19:39:54] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[19:39:54] ================= drm_test_rect_intersect =================
[19:39:54] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[19:39:54] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[19:39:54] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[19:39:54] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[19:39:54] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[19:39:54] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[19:39:54] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[19:39:54] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[19:39:54] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[19:39:54] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[19:39:54] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[19:39:54] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[19:39:54] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[19:39:54] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[19:39:54] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[19:39:54] ============= [PASSED] drm_test_rect_intersect =============
[19:39:54] ================ drm_test_rect_calc_hscale ================
[19:39:54] [PASSED] normal use
[19:39:54] [PASSED] out of max range
[19:39:54] [PASSED] out of min range
[19:39:54] [PASSED] zero dst
[19:39:54] [PASSED] negative src
[19:39:54] [PASSED] negative dst
[19:39:54] ============ [PASSED] drm_test_rect_calc_hscale ============
[19:39:54] ================ drm_test_rect_calc_vscale ================
[19:39:54] [PASSED] normal use
[19:39:54] [PASSED] out of max range
[19:39:54] [PASSED] out of min range
[19:39:54] [PASSED] zero dst
[19:39:54] [PASSED] negative src
[19:39:54] [PASSED] negative dst
[19:39:54] ============ [PASSED] drm_test_rect_calc_vscale ============
[19:39:54] ================== drm_test_rect_rotate ===================
[19:39:54] [PASSED] reflect-x
[19:39:54] [PASSED] reflect-y
[19:39:54] [PASSED] rotate-0
[19:39:54] [PASSED] rotate-90
[19:39:54] [PASSED] rotate-180
[19:39:54] [PASSED] rotate-270
[19:39:54] ============== [PASSED] drm_test_rect_rotate ===============
[19:39:54] ================ drm_test_rect_rotate_inv =================
[19:39:54] [PASSED] reflect-x
[19:39:54] [PASSED] reflect-y
[19:39:54] [PASSED] rotate-0
[19:39:54] [PASSED] rotate-90
[19:39:54] [PASSED] rotate-180
[19:39:54] [PASSED] rotate-270
[19:39:54] ============ [PASSED] drm_test_rect_rotate_inv =============
[19:39:54] ==================== [PASSED] drm_rect =====================
[19:39:54] ============================================================
[19:39:54] Testing complete. Ran 511 tests: passed: 511
[19:39:54] Elapsed time: 23.389s total, 1.724s configuring, 21.445s building, 0.203s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ CI.Build: success for drm/xe: Restrict user fences to long running VMs
2024-06-03 17:53 [PATCH] drm/xe: Restrict user fences to long running VMs Matthew Brost
` (3 preceding siblings ...)
2024-06-04 19:39 ` ✓ CI.KUnit: " Patchwork
@ 2024-06-04 19:51 ` Patchwork
2024-06-04 19:51 ` ✗ CI.Hooks: failure " Patchwork
` (3 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-06-04 19:51 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Restrict user fences to long running VMs
URL : https://patchwork.freedesktop.org/series/134392/
State : success
== Summary ==
lib/modules/6.10.0-rc2-xe/kernel/sound/core/seq/
lib/modules/6.10.0-rc2-xe/kernel/sound/core/seq/snd-seq.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/core/snd-seq-device.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/core/snd-hwdep.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/core/snd.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/core/snd-pcm.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/core/snd-compress.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/core/snd-timer.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soundcore.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/atom/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/atom/sst/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/atom/sst/snd-intel-sst-acpi.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/atom/sst/snd-intel-sst-core.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/common/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/common/snd-soc-acpi-intel-match.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/amd/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/amd/snd-acp-config.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-tgl.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda-mlink.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-cnl.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-lnl.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda-common.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda-generic.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-mtl.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/amd/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/amd/snd-sof-amd-renoir.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/amd/snd-sof-amd-acp.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/snd-sof-utils.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/snd-sof-pci.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/snd-sof.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/snd-sof-probes.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/xtensa/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/xtensa/snd-sof-xtensa-dsp.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/snd-soc-core.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/snd-soc-acpi.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/codecs/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/codecs/snd-soc-hdac-hda.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/hda/
lib/modules/6.10.0-rc2-xe/kernel/sound/hda/snd-intel-sdw-acpi.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/hda/ext/
lib/modules/6.10.0-rc2-xe/kernel/sound/hda/ext/snd-hda-ext-core.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/hda/snd-intel-dspcfg.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/hda/snd-hda-core.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/kernel/
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/kernel/msr.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/kernel/cpuid.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/sha512-ssse3.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/crct10dif-pclmul.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/ghash-clmulni-intel.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/sha1-ssse3.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/crc32-pclmul.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/sha256-ssse3.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/aesni-intel.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/polyval-clmulni.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/events/
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/events/intel/
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/events/intel/intel-cstate.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/events/rapl.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/kvm/
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/kvm/kvm.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/kvm/kvm-intel.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/
lib/modules/6.10.0-rc2-xe/kernel/crypto/crypto_simd.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/cmac.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/ccm.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/cryptd.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/polyval-generic.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/async_tx/
lib/modules/6.10.0-rc2-xe/kernel/crypto/async_tx/async_xor.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/async_tx/async_tx.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/async_tx/async_memcpy.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/async_tx/async_pq.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/async_tx/async_raid6_recov.ko
lib/modules/6.10.0-rc2-xe/build
lib/modules/6.10.0-rc2-xe/modules.alias.bin
lib/modules/6.10.0-rc2-xe/modules.builtin
lib/modules/6.10.0-rc2-xe/modules.softdep
lib/modules/6.10.0-rc2-xe/modules.alias
lib/modules/6.10.0-rc2-xe/modules.order
lib/modules/6.10.0-rc2-xe/modules.symbols
lib/modules/6.10.0-rc2-xe/modules.dep.bin
+ mv kernel-nodebug.tar.gz ..
+ cd ..
+ rm -rf archive
++ date +%s
+ echo -e '\e[0Ksection_end:1717530675:package_x86_64_nodebug\r\e[0K'
+ sync
^[[0Ksection_end:1717530675:package_x86_64_nodebug
^[[0K
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ CI.Hooks: failure for drm/xe: Restrict user fences to long running VMs
2024-06-03 17:53 [PATCH] drm/xe: Restrict user fences to long running VMs Matthew Brost
` (4 preceding siblings ...)
2024-06-04 19:51 ` ✓ CI.Build: " Patchwork
@ 2024-06-04 19:51 ` Patchwork
2024-06-04 19:53 ` ✓ CI.checksparse: success " Patchwork
` (2 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-06-04 19:51 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Restrict user fences to long running VMs
URL : https://patchwork.freedesktop.org/series/134392/
State : failure
== Summary ==
run-parts: executing /workspace/ci/hooks/00-showenv
+ export
+ grep -Ei '(^|\W)CI_'
declare -x CI_KERNEL_BUILD_DIR="/workspace/kernel/build64-default"
declare -x CI_KERNEL_SRC_DIR="/workspace/kernel"
declare -x CI_TOOLS_SRC_DIR="/workspace/ci"
declare -x CI_WORKSPACE_DIR="/workspace"
run-parts: executing /workspace/ci/hooks/10-build-W1
+ SRC_DIR=/workspace/kernel
+ RESTORE_DISPLAY_CONFIG=0
+ '[' -n /workspace/kernel/build64-default ']'
+ BUILD_DIR=/workspace/kernel/build64-default
+ cd /workspace/kernel
++ nproc
+ make -j48 O=/workspace/kernel/build64-default modules_prepare
make[1]: Entering directory '/workspace/kernel/build64-default'
GEN Makefile
UPD include/generated/compile.h
UPD include/config/kernel.release
mkdir -p /workspace/kernel/build64-default/tools/objtool && make O=/workspace/kernel/build64-default subdir=tools/objtool --no-print-directory -C objtool
UPD include/generated/utsrelease.h
HOSTCC /workspace/kernel/build64-default/tools/objtool/fixdep.o
CALL ../scripts/checksyscalls.sh
HOSTLD /workspace/kernel/build64-default/tools/objtool/fixdep-in.o
LINK /workspace/kernel/build64-default/tools/objtool/fixdep
INSTALL libsubcmd_headers
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/exec-cmd.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/help.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/pager.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/parse-options.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/run-command.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/sigchain.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/subcmd-config.o
LD /workspace/kernel/build64-default/tools/objtool/libsubcmd/libsubcmd-in.o
AR /workspace/kernel/build64-default/tools/objtool/libsubcmd/libsubcmd.a
CC /workspace/kernel/build64-default/tools/objtool/weak.o
CC /workspace/kernel/build64-default/tools/objtool/check.o
CC /workspace/kernel/build64-default/tools/objtool/special.o
CC /workspace/kernel/build64-default/tools/objtool/builtin-check.o
CC /workspace/kernel/build64-default/tools/objtool/elf.o
CC /workspace/kernel/build64-default/tools/objtool/objtool.o
CC /workspace/kernel/build64-default/tools/objtool/orc_gen.o
CC /workspace/kernel/build64-default/tools/objtool/orc_dump.o
CC /workspace/kernel/build64-default/tools/objtool/libstring.o
CC /workspace/kernel/build64-default/tools/objtool/libctype.o
CC /workspace/kernel/build64-default/tools/objtool/str_error_r.o
CC /workspace/kernel/build64-default/tools/objtool/librbtree.o
CC /workspace/kernel/build64-default/tools/objtool/arch/x86/special.o
CC /workspace/kernel/build64-default/tools/objtool/arch/x86/decode.o
CC /workspace/kernel/build64-default/tools/objtool/arch/x86/orc.o
LD /workspace/kernel/build64-default/tools/objtool/arch/x86/objtool-in.o
LD /workspace/kernel/build64-default/tools/objtool/objtool-in.o
LINK /workspace/kernel/build64-default/tools/objtool/objtool
make[1]: Leaving directory '/workspace/kernel/build64-default'
++ nproc
+ make -j48 O=/workspace/kernel/build64-default M=drivers/gpu/drm/xe W=1
make[1]: Entering directory '/workspace/kernel/build64-default'
../scripts/Makefile.build:41: drivers/gpu/drm/xe/Makefile: No such file or directory
make[3]: *** No rule to make target 'drivers/gpu/drm/xe/Makefile'. Stop.
make[2]: *** [/workspace/kernel/Makefile:1934: drivers/gpu/drm/xe] Error 2
make[1]: *** [/workspace/kernel/Makefile:240: __sub-make] Error 2
make[1]: Leaving directory '/workspace/kernel/build64-default'
make: *** [Makefile:240: __sub-make] Error 2
run-parts: /workspace/ci/hooks/10-build-W1 exited with return code 2
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ CI.checksparse: success for drm/xe: Restrict user fences to long running VMs
2024-06-03 17:53 [PATCH] drm/xe: Restrict user fences to long running VMs Matthew Brost
` (5 preceding siblings ...)
2024-06-04 19:51 ` ✗ CI.Hooks: failure " Patchwork
@ 2024-06-04 19:53 ` Patchwork
2024-06-04 20:21 ` ✗ CI.BAT: failure " Patchwork
2024-06-05 1:19 ` ✗ CI.FULL: " Patchwork
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-06-04 19:53 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Restrict user fences to long running VMs
URL : https://patchwork.freedesktop.org/series/134392/
State : success
== Summary ==
+ trap cleanup EXIT
+ KERNEL=/kernel
+ MT=/root/linux/maintainer-tools
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools /root/linux/maintainer-tools
Cloning into '/root/linux/maintainer-tools'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ make -C /root/linux/maintainer-tools
make: Entering directory '/root/linux/maintainer-tools'
cc -O2 -g -Wextra -o remap-log remap-log.c
make: Leaving directory '/root/linux/maintainer-tools'
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ /root/linux/maintainer-tools/dim sparse --fast 77588a3e3e58917a9b1d992aeef6f02a6b85ded5
Sparse version: 0.6.1 (Ubuntu: 0.6.1-2build1)
Fast mode used, each commit won't be checked separately.
Okay!
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ CI.BAT: failure for drm/xe: Restrict user fences to long running VMs
2024-06-03 17:53 [PATCH] drm/xe: Restrict user fences to long running VMs Matthew Brost
` (6 preceding siblings ...)
2024-06-04 19:53 ` ✓ CI.checksparse: success " Patchwork
@ 2024-06-04 20:21 ` Patchwork
2024-06-05 1:19 ` ✗ CI.FULL: " Patchwork
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-06-04 20:21 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 3408 bytes --]
== Series Details ==
Series: drm/xe: Restrict user fences to long running VMs
URL : https://patchwork.freedesktop.org/series/134392/
State : failure
== Summary ==
CI Bug Log - changes from xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5_BAT -> xe-pw-134392v1_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-134392v1_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-134392v1_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (5 -> 5)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-134392v1_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@xe_waitfence@abstime:
- bat-pvc-2: [PASS][1] -> [FAIL][2] +2 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/bat-pvc-2/igt@xe_waitfence@abstime.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/bat-pvc-2/igt@xe_waitfence@abstime.html
- bat-atsm-2: [PASS][3] -> [FAIL][4] +2 other tests fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/bat-atsm-2/igt@xe_waitfence@abstime.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/bat-atsm-2/igt@xe_waitfence@abstime.html
- bat-adlp-7: [PASS][5] -> [FAIL][6] +2 other tests fail
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/bat-adlp-7/igt@xe_waitfence@abstime.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/bat-adlp-7/igt@xe_waitfence@abstime.html
* igt@xe_waitfence@engine:
- bat-dg2-oem2: [PASS][7] -> [FAIL][8] +2 other tests fail
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/bat-dg2-oem2/igt@xe_waitfence@engine.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/bat-dg2-oem2/igt@xe_waitfence@engine.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@xe_waitfence@abstime:
- {bat-lnl-1}: [PASS][9] -> [FAIL][10] +2 other tests fail
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/bat-lnl-1/igt@xe_waitfence@abstime.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/bat-lnl-1/igt@xe_waitfence@abstime.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
Build changes
-------------
* Linux: xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5 -> xe-pw-134392v1
IGT_7877: 23b8b8a0168e1b5141e29346be1f83fdbed31037 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5: 77588a3e3e58917a9b1d992aeef6f02a6b85ded5
xe-pw-134392v1: 134392v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/index.html
[-- Attachment #2: Type: text/html, Size: 4097 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ CI.FULL: failure for drm/xe: Restrict user fences to long running VMs
2024-06-03 17:53 [PATCH] drm/xe: Restrict user fences to long running VMs Matthew Brost
` (7 preceding siblings ...)
2024-06-04 20:21 ` ✗ CI.BAT: failure " Patchwork
@ 2024-06-05 1:19 ` Patchwork
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-06-05 1:19 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 78032 bytes --]
== Series Details ==
Series: drm/xe: Restrict user fences to long running VMs
URL : https://patchwork.freedesktop.org/series/134392/
State : failure
== Summary ==
CI Bug Log - changes from xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5_full -> xe-pw-134392v1_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-134392v1_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-134392v1_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 (3 -> 3)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-134392v1_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-1:
- shard-adlp: NOTRUN -> [FAIL][1] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-1.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-adlp: NOTRUN -> [DMESG-FAIL][2] +3 other tests dmesg-fail
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-4/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@xe_exercise_blt@fast-copy-emit@linear-system-system-emit:
- shard-dg2-set2: [PASS][3] -> [ABORT][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-433/igt@xe_exercise_blt@fast-copy-emit@linear-system-system-emit.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-463/igt@xe_exercise_blt@fast-copy-emit@linear-system-system-emit.html
* igt@xe_gt_freq@freq_fixed_exec:
- shard-dg2-set2: [PASS][5] -> [FAIL][6] +4 other tests fail
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@xe_gt_freq@freq_fixed_exec.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-435/igt@xe_gt_freq@freq_fixed_exec.html
* igt@xe_waitfence@engine:
- shard-adlp: [PASS][7] -> [FAIL][8] +2 other tests fail
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-9/igt@xe_waitfence@engine.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-4/igt@xe_waitfence@engine.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-adlp: [INCOMPLETE][9] ([Intel XE#1195] / [Intel XE#927]) -> [DMESG-FAIL][10]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-9/igt@kms_frontbuffer_tracking@fbc-suspend.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-4/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-adlp: [INCOMPLETE][11] ([Intel XE#1195]) -> [DMESG-FAIL][12] +1 other test dmesg-fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1:
- shard-adlp: [FAIL][13] -> [DMESG-FAIL][14]
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-2/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-4/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1.html
* igt@xe_pm@s3-basic-exec:
- shard-adlp: [INCOMPLETE][15] ([Intel XE#1044] / [Intel XE#1195] / [Intel XE#1358]) -> [DMESG-FAIL][16]
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-9/igt@xe_pm@s3-basic-exec.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-6/igt@xe_pm@s3-basic-exec.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1:
- {shard-lnl}: NOTRUN -> [DMESG-FAIL][17] +3 other tests dmesg-fail
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-lnl-3/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html
* igt@kms_fbcon_fbt@psr-suspend:
- {shard-lnl}: NOTRUN -> [FAIL][18] +2 other tests fail
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-lnl-7/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@flip-vs-suspend:
- {shard-lnl}: [FAIL][19] ([Intel XE#1901]) -> [DMESG-FAIL][20] +1 other test dmesg-fail
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-2/igt@kms_flip@flip-vs-suspend.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-lnl-6/igt@kms_flip@flip-vs-suspend.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- {shard-lnl}: NOTRUN -> [INCOMPLETE][21]
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-lnl-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-system:
- {shard-lnl}: [FAIL][22] -> [DMESG-FAIL][23] +1 other test dmesg-fail
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-3/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-system.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-lnl-3/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-system.html
* igt@xe_ccs@suspend-resume@tile4-compressed-compfmt0-system-system:
- {shard-lnl}: [DMESG-FAIL][24] -> [FAIL][25]
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-3/igt@xe_ccs@suspend-resume@tile4-compressed-compfmt0-system-system.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-lnl-3/igt@xe_ccs@suspend-resume@tile4-compressed-compfmt0-system-system.html
* igt@xe_waitfence@reltime:
- {shard-lnl}: [PASS][26] -> [FAIL][27] +3 other tests fail
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-4/igt@xe_waitfence@reltime.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-lnl-1/igt@xe_waitfence@reltime.html
Known issues
------------
Here are the changes found in xe-pw-134392v1_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotrebind:
- shard-dg2-set2: [PASS][28] -> [INCOMPLETE][29] ([Intel XE#1195]) +2 other tests incomplete
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-434/igt@core_hotunplug@hotrebind.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-463/igt@core_hotunplug@hotrebind.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#1201] / [Intel XE#623])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-464/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y:
- shard-adlp: [PASS][31] -> [DMESG-WARN][32] ([Intel XE#1033] / [Intel XE#1214])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-adlp: NOTRUN -> [SKIP][33] ([Intel XE#1124] / [Intel XE#1201]) +7 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-adlp: NOTRUN -> [SKIP][34] ([Intel XE#1201] / [Intel XE#619])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#1201] / [Intel XE#316])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-464/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#316])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][37] ([Intel XE#1201] / [Intel XE#316]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-adlp: NOTRUN -> [FAIL][38] ([Intel XE#1204])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#1124]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-adlp: NOTRUN -> [FAIL][40] ([Intel XE#1874]) +1 other test fail
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-adlp: NOTRUN -> [FAIL][41] ([Intel XE#1231])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#1124] / [Intel XE#1201]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-464/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_bw@linear-tiling-3-displays-1920x1080p:
- shard-adlp: NOTRUN -> [SKIP][43] ([Intel XE#1201] / [Intel XE#367])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#1201] / [Intel XE#367])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-464/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
- shard-adlp: NOTRUN -> [SKIP][45] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +11 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-4/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#1201] / [Intel XE#787]) +20 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-464/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-dp-4.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#787]) +27 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][49] ([Intel XE#1201] / [Intel XE#787]) +17 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#1252])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs:
- shard-adlp: NOTRUN -> [SKIP][51] ([Intel XE#1201] / [Intel XE#1252])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-4/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +5 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-464/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#306])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_chamelium_color@ctm-0-75.html
- shard-adlp: NOTRUN -> [SKIP][54] ([Intel XE#1201] / [Intel XE#306])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-6/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_frames@hdmi-crc-planes-random:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#1201] / [Intel XE#373]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-464/igt@kms_chamelium_frames@hdmi-crc-planes-random.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-adlp: NOTRUN -> [SKIP][56] ([Intel XE#1201] / [Intel XE#373]) +6 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#373]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#307])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_cursor_crc@cursor-random-256x256:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][59] ([Intel XE#1214] / [Intel XE#282]) +2 other tests dmesg-warn
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-464/igt@kms_cursor_crc@cursor-random-256x256.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#1201] / [Intel XE#308])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-464/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][61] ([Intel XE#282])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-adlp: NOTRUN -> [SKIP][62] ([Intel XE#1201] / [Intel XE#309]) +3 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_cursor_legacy@forked-move@pipe-b:
- shard-dg2-set2: [PASS][63] -> [DMESG-WARN][64] ([Intel XE#1214] / [Intel XE#282]) +3 other tests dmesg-warn
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-436/igt@kms_cursor_legacy@forked-move@pipe-b.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-435/igt@kms_cursor_legacy@forked-move@pipe-b.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#323])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-adlp: NOTRUN -> [SKIP][66] ([Intel XE#1201] / [Intel XE#323])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_fbcon_fbt@psr:
- shard-adlp: NOTRUN -> [SKIP][67] ([Intel XE#1201] / [Intel XE#776])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-2x:
- shard-adlp: NOTRUN -> [SKIP][68] ([Intel XE#1201] / [Intel XE#702])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-adlp: NOTRUN -> [SKIP][69] ([Intel XE#1201] / [Intel XE#310]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][70] ([Intel XE#1162] / [Intel XE#1214]) +1 other test dmesg-warn
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-464/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-adlp: NOTRUN -> [SKIP][71] ([Intel XE#1201] / [Intel XE#455]) +8 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-x:
- shard-adlp: [PASS][72] -> [FAIL][73] ([Intel XE#1874]) +6 other tests fail
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-x.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-x.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt:
- shard-adlp: NOTRUN -> [SKIP][74] ([Intel XE#1201] / [Intel XE#651]) +11 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#651]) +8 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt:
- shard-adlp: NOTRUN -> [FAIL][76] ([Intel XE#1861])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#1201] / [Intel XE#651]) +6 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
- shard-adlp: NOTRUN -> [SKIP][78] ([Intel XE#1201] / [Intel XE#653]) +9 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#1201] / [Intel XE#653]) +4 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#653]) +5 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-adlp: NOTRUN -> [SKIP][81] ([Intel XE#1201] / [Intel XE#656]) +28 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_getfb@getfb2-accept-ccs:
- shard-adlp: NOTRUN -> [SKIP][82] ([Intel XE#1201] / [Intel XE#1339])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@kms_getfb@getfb2-accept-ccs.html
* igt@kms_hdmi_inject@inject-audio:
- shard-adlp: NOTRUN -> [SKIP][83] ([Intel XE#1201] / [Intel XE#417])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#870])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_pm_backlight@fade.html
* igt@kms_psr2_sf@cursor-plane-update-sf:
- shard-adlp: NOTRUN -> [SKIP][85] ([Intel XE#1201]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-6/igt@kms_psr2_sf@cursor-plane-update-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-adlp: NOTRUN -> [SKIP][86] ([Intel XE#1122] / [Intel XE#1201])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr2-cursor-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#1201] / [Intel XE#929]) +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-464/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#929]) +5 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@psr-cursor-blt:
- shard-adlp: NOTRUN -> [SKIP][89] ([Intel XE#1201] / [Intel XE#929]) +8 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-4/igt@kms_psr@psr-cursor-blt.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#1201] / [Intel XE#327])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-464/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-adlp: NOTRUN -> [SKIP][91] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#1201] / [Intel XE#455]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-464/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_vrr@flipline:
- shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#455]) +9 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_vrr@flipline.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#1201] / [Intel XE#756])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-464/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@xe_ccs@block-multicopy-inplace:
- shard-adlp: NOTRUN -> [SKIP][95] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#488])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@xe_ccs@block-multicopy-inplace.html
* igt@xe_compute@ccs-mode-basic:
- shard-adlp: NOTRUN -> [SKIP][96] ([Intel XE#1201] / [Intel XE#1447])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-4/igt@xe_compute@ccs-mode-basic.html
* igt@xe_copy_basic@mem-set-linear-0x369:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#1126])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0x369.html
* igt@xe_evict@evict-beng-mixed-threads-large:
- shard-dg2-set2: [PASS][98] -> [TIMEOUT][99] ([Intel XE#1473] / [Intel XE#392])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-434/igt@xe_evict@evict-beng-mixed-threads-large.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-466/igt@xe_evict@evict-beng-mixed-threads-large.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-dg2-set2: NOTRUN -> [FAIL][100] ([Intel XE#1600])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-adlp: NOTRUN -> [SKIP][101] ([Intel XE#1201] / [Intel XE#261]) +2 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-4/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_evict@evict-threads-small:
- shard-adlp: NOTRUN -> [SKIP][102] ([Intel XE#1201] / [Intel XE#261] / [Intel XE#688]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@xe_evict@evict-threads-small.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
- shard-adlp: NOTRUN -> [SKIP][103] ([Intel XE#1201] / [Intel XE#688])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap:
- shard-adlp: NOTRUN -> [SKIP][104] ([Intel XE#1201] / [Intel XE#1392]) +4 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html
* igt@xe_exec_fault_mode@many-basic-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#288]) +5 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@xe_exec_fault_mode@many-basic-prefetch.html
* igt@xe_exec_fault_mode@many-execqueues-rebind:
- shard-adlp: NOTRUN -> [SKIP][106] ([Intel XE#1201] / [Intel XE#288]) +16 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@xe_exec_fault_mode@many-execqueues-rebind.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#1201] / [Intel XE#288]) +5 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-464/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_exec_threads@threads-bal-mixed-fd-userptr-invalidate:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][108] ([Intel XE#1169] / [Intel XE#1195] / [Intel XE#1356])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-464/igt@xe_exec_threads@threads-bal-mixed-fd-userptr-invalidate.html
* igt@xe_exercise_blt@fast-copy-emit:
- shard-dg2-set2: [PASS][109] -> [ABORT][110] ([Intel XE#1553])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-433/igt@xe_exercise_blt@fast-copy-emit.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-463/igt@xe_exercise_blt@fast-copy-emit.html
* igt@xe_exercise_blt@fast-copy-emit@linear-system-vram01-emit:
- shard-dg2-set2: [PASS][111] -> [DMESG-WARN][112] ([Intel XE#1214] / [Intel XE#1553])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-433/igt@xe_exercise_blt@fast-copy-emit@linear-system-vram01-emit.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-463/igt@xe_exercise_blt@fast-copy-emit@linear-system-vram01-emit.html
* igt@xe_mmap@vram:
- shard-adlp: NOTRUN -> [SKIP][113] ([Intel XE#1008] / [Intel XE#1201])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@xe_mmap@vram.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#979])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@s2idle-mocs:
- shard-adlp: NOTRUN -> [FAIL][115] ([Intel XE#1924])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@xe_pm@s2idle-mocs.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][116] ([Intel XE#1162]) +2 other tests dmesg-warn
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s4-basic-exec:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][117] ([Intel XE#1358])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@xe_pm@s4-basic-exec.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#1201] / [Intel XE#366])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-464/igt@xe_pm@s4-d3cold-basic-exec.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-adlp: NOTRUN -> [SKIP][119] ([Intel XE#1201] / [Intel XE#944]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@xe_query@multigpu-query-invalid-cs-cycles.html
#### Possible fixes ####
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- {shard-lnl}: [FAIL][120] ([Intel XE#1659]) -> [PASS][121]
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-dg2-set2: [DMESG-WARN][122] ([Intel XE#282]) -> [PASS][123]
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-433/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-dg2-set2: [DMESG-WARN][124] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][125] +3 other tests pass
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-436/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-linear-to-x:
- {shard-lnl}: [FAIL][126] ([Intel XE#1491]) -> [PASS][127] +1 other test pass
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-2/igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-linear-to-x.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-lnl-5/igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-linear-to-x.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y:
- shard-adlp: [FAIL][128] ([Intel XE#1874]) -> [PASS][129] +4 other tests pass
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y.html
* igt@kms_plane@plane-panning-bottom-right:
- shard-dg2-set2: [INCOMPLETE][130] ([Intel XE#1035] / [Intel XE#1195]) -> [PASS][131]
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-436/igt@kms_plane@plane-panning-bottom-right.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_plane@plane-panning-bottom-right.html
* igt@kms_plane@plane-panning-bottom-right@pipe-a:
- shard-dg2-set2: [INCOMPLETE][132] ([Intel XE#1195]) -> [PASS][133]
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-436/igt@kms_plane@plane-panning-bottom-right@pipe-a.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_plane@plane-panning-bottom-right@pipe-a.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: [FAIL][134] ([Intel XE#361]) -> [PASS][135]
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-433/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* igt@kms_vblank@accuracy-idle:
- {shard-lnl}: [FAIL][136] ([Intel XE#1523]) -> [PASS][137] +1 other test pass
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-2/igt@kms_vblank@accuracy-idle.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-lnl-5/igt@kms_vblank@accuracy-idle.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race:
- {shard-lnl}: [ABORT][138] ([Intel XE#1761]) -> [PASS][139]
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-6/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-lnl-2/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_threads@threads-hang-userptr:
- {shard-lnl}: [FAIL][140] ([Intel XE#1256]) -> [PASS][141]
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-8/igt@xe_exec_threads@threads-hang-userptr.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-lnl-8/igt@xe_exec_threads@threads-hang-userptr.html
* igt@xe_gt_freq@freq_reset_multiple:
- {shard-lnl}: [DMESG-WARN][142] ([Intel XE#1620]) -> [PASS][143]
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-7/igt@xe_gt_freq@freq_reset_multiple.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-lnl-1/igt@xe_gt_freq@freq_reset_multiple.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-adlp: [INCOMPLETE][144] ([Intel XE#1195] / [Intel XE#1358]) -> [PASS][145] +1 other test pass
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-1/igt@xe_pm@s4-d3hot-basic-exec.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-8/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-adlp: [DMESG-WARN][146] ([Intel XE#1214]) -> [PASS][147]
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-6/igt@xe_pm@s4-vm-bind-unbind-all.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-1/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_pm@s4-vm-bind-userptr:
- {shard-lnl}: [ABORT][148] ([Intel XE#1794]) -> [PASS][149]
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-lnl-7/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_vm@mmap-style-bind-either-side-partial-hammer:
- {shard-lnl}: [FAIL][150] ([Intel XE#1081]) -> [PASS][151]
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-1/igt@xe_vm@mmap-style-bind-either-side-partial-hammer.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-lnl-6/igt@xe_vm@mmap-style-bind-either-side-partial-hammer.html
#### Warnings ####
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2-set2: [SKIP][152] ([Intel XE#873]) -> [SKIP][153] ([Intel XE#1201] / [Intel XE#873])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_async_flips@invalid-async-flip.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-433/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-dg2-set2: [SKIP][154] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][155] ([Intel XE#316]) +2 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-466/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-dg2-set2: [SKIP][156] ([Intel XE#316]) -> [SKIP][157] ([Intel XE#1201] / [Intel XE#316]) +2 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-463/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-adlp: [FAIL][158] ([Intel XE#1204]) -> [DMESG-FAIL][159] ([Intel XE#324])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-adlp: [DMESG-FAIL][160] ([Intel XE#324]) -> [FAIL][161] ([Intel XE#1231])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-adlp: [FAIL][162] ([Intel XE#1231]) -> [DMESG-FAIL][163] ([Intel XE#324])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][164] ([Intel XE#1124]) -> [SKIP][165] ([Intel XE#1124] / [Intel XE#1201]) +11 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-433/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][166] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][167] ([Intel XE#1124]) +2 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-436/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-dg2-set2: [SKIP][168] ([Intel XE#367]) -> [SKIP][169] ([Intel XE#1201] / [Intel XE#367]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-435/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs:
- shard-dg2-set2: [SKIP][170] ([Intel XE#1201] / [Intel XE#1252]) -> [SKIP][171] ([Intel XE#1252])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [SKIP][172] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][173] ([Intel XE#787]) +27 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-436/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][174] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][175] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +21 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-463/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6:
- shard-dg2-set2: [SKIP][176] ([Intel XE#787]) -> [SKIP][177] ([Intel XE#1201] / [Intel XE#787]) +76 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][178] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][179] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
* igt@kms_cdclk@mode-transition@pipe-c-dp-4:
- shard-dg2-set2: [SKIP][180] ([Intel XE#314]) -> [SKIP][181] ([Intel XE#1201] / [Intel XE#314]) +3 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-c-dp-4.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-435/igt@kms_cdclk@mode-transition@pipe-c-dp-4.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-dg2-set2: [SKIP][182] ([Intel XE#306]) -> [SKIP][183] ([Intel XE#1201] / [Intel XE#306]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_chamelium_color@ctm-0-25.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-433/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@degamma:
- shard-dg2-set2: [SKIP][184] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][185] ([Intel XE#306])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-436/igt@kms_chamelium_color@degamma.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-dg2-set2: [SKIP][186] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][187] ([Intel XE#373]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-466/igt@kms_chamelium_hpd@dp-hpd-storm.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: [SKIP][188] ([Intel XE#373]) -> [SKIP][189] ([Intel XE#1201] / [Intel XE#373]) +8 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_cursor_crc@cursor-rapid-movement-256x256@pipe-a-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][190] ([Intel XE#282]) -> [DMESG-WARN][191] ([Intel XE#1214] / [Intel XE#282]) +7 other tests dmesg-warn
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_cursor_crc@cursor-rapid-movement-256x256@pipe-a-hdmi-a-6.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-463/igt@kms_cursor_crc@cursor-rapid-movement-256x256@pipe-a-hdmi-a-6.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-4:
- shard-dg2-set2: [SKIP][192] ([Intel XE#455] / [Intel XE#929]) -> [SKIP][193] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#929])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-4.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-433/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-4.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-6:
- shard-dg2-set2: [SKIP][194] ([Intel XE#1927]) -> [SKIP][195] ([Intel XE#1201] / [Intel XE#1927])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-6.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-433/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-6.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2-set2: [SKIP][196] ([Intel XE#307]) -> [SKIP][197] ([Intel XE#1201] / [Intel XE#307]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_display_modes@mst-extended-mode-negative.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-435/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: [SKIP][198] ([Intel XE#776]) -> [SKIP][199] ([Intel XE#1201] / [Intel XE#776]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_fbcon_fbt@psr.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-463/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2-set2: [SKIP][200] ([Intel XE#703]) -> [SKIP][201] ([Intel XE#1201] / [Intel XE#703])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_feature_discovery@display-3x.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-433/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-adlp: [DMESG-FAIL][202] -> [INCOMPLETE][203] ([Intel XE#1195] / [Intel XE#927]) +1 other test incomplete
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-8/igt@kms_flip@flip-vs-suspend-interruptible.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-9/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-adlp: [DMESG-FAIL][204] -> [INCOMPLETE][205] ([Intel XE#1195]) +1 other test incomplete
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-8/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-9/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6:
- shard-dg2-set2: [DMESG-WARN][206] ([Intel XE#1162] / [Intel XE#1214]) -> [DMESG-WARN][207] ([Intel XE#1162]) +1 other test dmesg-warn
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-dg2-set2: [SKIP][208] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][209] ([Intel XE#455]) +2 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: [SKIP][210] ([Intel XE#455]) -> [SKIP][211] ([Intel XE#1201] / [Intel XE#455]) +18 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2-set2: [SKIP][212] ([Intel XE#1201] / [i915#5274]) -> [SKIP][213] ([i915#5274])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-466/igt@kms_force_connector_basic@prune-stale-modes.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [SKIP][214] ([Intel XE#651]) -> [SKIP][215] ([Intel XE#1201] / [Intel XE#651]) +29 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: [SKIP][216] ([Intel XE#658]) -> [SKIP][217] ([Intel XE#1201] / [Intel XE#658])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][218] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][219] ([Intel XE#651]) +6 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: [SKIP][220] ([Intel XE#1201] / [Intel XE#658]) -> [SKIP][221] ([Intel XE#658])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][222] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][223] ([Intel XE#653]) +6 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][224] ([Intel XE#653]) -> [SKIP][225] ([Intel XE#1201] / [Intel XE#653]) +28 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg2-set2: [SKIP][226] ([Intel XE#417]) -> [SKIP][227] ([Intel XE#1201] / [Intel XE#417])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_hdmi_inject@inject-audio.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-463/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-dg2-set2: [SKIP][228] ([Intel XE#455] / [Intel XE#498]) -> [SKIP][229] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) +1 other test skip
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-6:
- shard-dg2-set2: [SKIP][230] ([Intel XE#498]) -> [SKIP][231] ([Intel XE#1201] / [Intel XE#498]) +2 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-6.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-6.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: [SKIP][232] ([Intel XE#870]) -> [SKIP][233] ([Intel XE#1201] / [Intel XE#870])
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_pm_backlight@fade-with-suspend.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-433/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: [SKIP][234] ([Intel XE#1129]) -> [SKIP][235] ([Intel XE#1129] / [Intel XE#1201])
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_pm_dc@dc5-psr.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-435/igt@kms_pm_dc@dc5-psr.html
* igt@kms_psr@fbc-psr2-basic:
- shard-dg2-set2: [SKIP][236] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][237] ([Intel XE#929]) +2 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-466/igt@kms_psr@fbc-psr2-basic.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@kms_psr@fbc-psr2-basic.html
* igt@kms_psr@fbc-psr2-suspend:
- shard-dg2-set2: [SKIP][238] ([Intel XE#929]) -> [SKIP][239] ([Intel XE#1201] / [Intel XE#929]) +19 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_psr@fbc-psr2-suspend.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-463/igt@kms_psr@fbc-psr2-suspend.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2-set2: [SKIP][240] ([Intel XE#1127]) -> [SKIP][241] ([Intel XE#1127] / [Intel XE#1201])
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2-set2: [SKIP][242] ([Intel XE#327]) -> [SKIP][243] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: [SKIP][244] ([Intel XE#330]) -> [SKIP][245] ([Intel XE#1201] / [Intel XE#330])
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_tv_load_detect@load-detect.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-433/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-adlp: [DMESG-FAIL][246] -> [INCOMPLETE][247] ([Intel XE#1034] / [Intel XE#1195] / [Intel XE#927])
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-8/igt@kms_vblank@ts-continuation-suspend.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-9/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1:
- shard-adlp: [DMESG-FAIL][248] -> [INCOMPLETE][249] ([Intel XE#1034] / [Intel XE#1195])
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-8/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-9/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg2-set2: [SKIP][250] ([Intel XE#756]) -> [SKIP][251] ([Intel XE#1201] / [Intel XE#756])
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_writeback@writeback-invalid-parameters.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-433/igt@kms_writeback@writeback-invalid-parameters.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: [SKIP][252] ([Intel XE#1091] / [Intel XE#1201]) -> [SKIP][253] ([Intel XE#1091])
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-436/igt@sriov_basic@enable-vfs-autoprobe-off.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute:
- shard-dg2-set2: [SKIP][254] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][255] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) +1 other test skip
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-435/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
* igt@xe_create@multigpu-create-massive-size:
- shard-dg2-set2: [SKIP][256] ([Intel XE#944]) -> [SKIP][257] ([Intel XE#1201] / [Intel XE#944]) +3 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@xe_create@multigpu-create-massive-size.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-433/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_exec_fault_mode@twice-invalid-fault:
- shard-dg2-set2: [SKIP][258] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][259] ([Intel XE#288]) +5 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-466/igt@xe_exec_fault_mode@twice-invalid-fault.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@xe_exec_fault_mode@twice-invalid-fault.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][260] ([Intel XE#288]) -> [SKIP][261] ([Intel XE#1201] / [Intel XE#288]) +25 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_exec_threads@threads-hang-fd-basic:
- shard-dg2-set2: [DMESG-WARN][262] ([Intel XE#358]) -> [DMESG-WARN][263] ([Intel XE#1214] / [Intel XE#358])
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@xe_exec_threads@threads-hang-fd-basic.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-433/igt@xe_exec_threads@threads-hang-fd-basic.html
* igt@xe_huc_copy@huc_copy:
- shard-dg2-set2: [SKIP][264] ([Intel XE#255]) -> [SKIP][265] ([Intel XE#1201] / [Intel XE#255])
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@xe_huc_copy@huc_copy.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-433/igt@xe_huc_copy@huc_copy.html
* igt@xe_module_load@force-load:
- shard-dg2-set2: [SKIP][266] ([Intel XE#378]) -> [SKIP][267] ([Intel XE#1201] / [Intel XE#378])
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@xe_module_load@force-load.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-433/igt@xe_module_load@force-load.html
* igt@xe_module_load@load:
- shard-dg2-set2: [SKIP][268] ([Intel XE#1201] / [Intel XE#378]) -> [SKIP][269] ([Intel XE#378])
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-436/igt@xe_module_load@load.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@xe_module_load@load.html
* igt@xe_pm@s2idle-multiple-execs:
- shard-adlp: [DMESG-FAIL][270] -> [INCOMPLETE][271] ([Intel XE#1195] / [Intel XE#1358] / [Intel XE#927])
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-4/igt@xe_pm@s2idle-multiple-execs.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-1/igt@xe_pm@s2idle-multiple-execs.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][272] ([Intel XE#1201] / [Intel XE#366]) -> [SKIP][273] ([Intel XE#366])
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-466/igt@xe_pm@s3-d3cold-basic-exec.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-dg2-set2: [DMESG-WARN][274] ([Intel XE#1162] / [Intel XE#1551]) -> [DMESG-WARN][275] ([Intel XE#1162] / [Intel XE#1214] / [Intel XE#1551])
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@xe_pm@s3-vm-bind-prefetch.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-435/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pm_residency@gt-c6-freeze:
- shard-dg2-set2: [DMESG-WARN][276] -> [DMESG-WARN][277] ([Intel XE#1214])
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@xe_pm_residency@gt-c6-freeze.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-433/igt@xe_pm_residency@gt-c6-freeze.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-dg2-set2: [SKIP][278] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][279] ([Intel XE#944])
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-466/igt@xe_query@multigpu-query-invalid-size.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-dg2-432/igt@xe_query@multigpu-query-invalid-size.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-adlp: [DMESG-WARN][280] ([Intel XE#1214] / [Intel XE#1330] / [Intel XE#1760]) -> [DMESG-WARN][281] ([Intel XE#1214] / [Intel XE#1760])
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-4/igt@xe_wedged@wedged-at-any-timeout.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/shard-adlp-6/igt@xe_wedged@wedged-at-any-timeout.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1008
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1034]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1034
[Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
[Intel XE#1044]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1044
[Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[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#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
[Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
[Intel XE#1169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1169
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204
[Intel XE#1211]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1211
[Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214
[Intel XE#1231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1231
[Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
[Intel XE#1256]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1256
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1330
[Intel XE#1339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1339
[Intel XE#1356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1356
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413
[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#1446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1446
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1491]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1491
[Intel XE#1523]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1523
[Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
[Intel XE#1553]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1553
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
[Intel XE#1761]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1761
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#1901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1901
[Intel XE#1924]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1924
[Intel XE#1927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1927
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/358
[Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[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#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392
[Intel XE#417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/417
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
[Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/927
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
Build changes
-------------
* Linux: xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5 -> xe-pw-134392v1
IGT_7877: 23b8b8a0168e1b5141e29346be1f83fdbed31037 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5: 77588a3e3e58917a9b1d992aeef6f02a6b85ded5
xe-pw-134392v1: 134392v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134392v1/index.html
[-- Attachment #2: Type: text/html, Size: 100671 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-06-05 1:19 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-03 17:53 [PATCH] drm/xe: Restrict user fences to long running VMs Matthew Brost
2024-06-03 20:42 ` Thomas Hellström
2024-06-03 22:18 ` Matthew Brost
2024-06-04 19:38 ` ✓ CI.Patch_applied: success for " Patchwork
2024-06-04 19:39 ` ✓ CI.checkpatch: " Patchwork
2024-06-04 19:39 ` ✓ CI.KUnit: " Patchwork
2024-06-04 19:51 ` ✓ CI.Build: " Patchwork
2024-06-04 19:51 ` ✗ CI.Hooks: failure " Patchwork
2024-06-04 19:53 ` ✓ CI.checksparse: success " Patchwork
2024-06-04 20:21 ` ✗ CI.BAT: failure " Patchwork
2024-06-05 1:19 ` ✗ CI.FULL: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox