* [PATCH v4 i-g-t] lib/intel_pat: Cache PAT config for unprivileged processes
@ 2026-03-05 18:54 himanshu.girotra
2026-03-05 20:39 ` Dixit, Ashutosh
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: himanshu.girotra @ 2026-03-05 18:54 UTC (permalink / raw)
To: matthew.d.roper, x.wang, igt-dev, nishit.sharma, ashutosh.dixit
From: Himanshu Girotra <himanshu.girotra@intel.com>
Commit 4e59b8e7779b ("lib/intel_pat: use kernel debugfs as
authoritative PAT source for Xe") changed the Xe PAT lookup to
read from debugfs, which requires root access. Some xe_oa subtests
fork a child process that drops root privileges before performing
GPU operations that internally need the PAT write-back index.
After dropping root, the debugfs read fails.
Fix this by caching the PAT configuration in struct xe_device at
xe_device_get() time. Since xe_device_get() is called while still
root, the cache is available to forked children even after
igt_drop_root(). Tests that open a new fd after forking must call
xe_device_get() explicitly before dropping root to populate the
cache for that fd.
v2: Cache PAT in struct xe_device instead of a global static;
drop the intel_pat_precache() helper — xe_device_get() already
populates the cache, so call it directly in xe_oa before
igt_drop_root() (Ashutosh Dixit)
v3: Use pat_cache pointer, NULL indicates unpopulated cache;
remove redundant xe_oa.c change (Ashutosh Dixit)
Add FIXME for multi-GPU (Zbigniew Kempczyński)
v4: nit fixes and use forward declaration in xe_query.h (Ashutosh Dixit)
Cc: Matt Roper <matthew.d.roper@intel.com>
Cc: Xin Wang <x.wang@intel.com>
Cc: Nishit Sharma <nishit.sharma@intel.com>
Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Signed-off-by: Himanshu Girotra <himanshu.girotra@intel.com>
---
lib/intel_pat.c | 17 +++++++++--------
lib/xe/xe_query.c | 20 ++++++++++++++++++++
lib/xe/xe_query.h | 5 +++++
3 files changed, 34 insertions(+), 8 deletions(-)
diff --git a/lib/intel_pat.c b/lib/intel_pat.c
index 8660a2515..9feeeb39d 100644
--- a/lib/intel_pat.c
+++ b/lib/intel_pat.c
@@ -6,6 +6,7 @@
#include <fcntl.h>
#include "igt.h"
#include "intel_pat.h"
+#include "xe/xe_query.h"
/**
* xe_get_pat_sw_config - Helper to read PAT (Page Attribute Table) software configuration
@@ -99,17 +100,17 @@ static void intel_get_pat_idx(int fd, struct intel_pat_cache *pat)
uint16_t dev_id;
/*
- * For Xe driver, query the kernel's PAT software configuration
- * via debugfs. The kernel is the authoritative source for PAT
- * indices, accounting for platform-specific workarounds
- * (e.g. Wa_16023588340) at runtime.
+ * For Xe, use the PAT cache stored in struct xe_device.
+ * xe_device_get() populates the cache while still root; forked
+ * children that inherit the xe_device can use it post-drop_root().
*/
if (is_xe_device(fd)) {
- int32_t parsed = xe_get_pat_sw_config(fd, pat);
+ struct xe_device *xe_dev = xe_device_get(fd);
- igt_assert_f(parsed > 0,
- "Failed to get PAT sw_config from debugfs (parsed=%d)\n",
- parsed);
+ igt_assert_f(xe_dev->pat_cache,
+ "PAT sw_config not available -- "
+ "debugfs not accessible (missing root or not mounted?)\n");
+ *pat = *xe_dev->pat_cache;
return;
}
diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c
index 981d76948..3afca353e 100644
--- a/lib/xe/xe_query.c
+++ b/lib/xe/xe_query.c
@@ -21,6 +21,7 @@
#include "drmtest.h"
#include "ioctl_wrappers.h"
#include "igt_map.h"
+#include "intel_pat.h"
#include "xe_query.h"
#include "xe_ioctl.h"
@@ -235,6 +236,7 @@ static void xe_device_free(struct xe_device *xe_dev)
free(xe_dev->mem_regions);
free(xe_dev->vram_size);
free(xe_dev->eu_stall);
+ free(xe_dev->pat_cache);
free(xe_dev);
}
@@ -299,6 +301,24 @@ struct xe_device *xe_device_get(int fd)
xe_dev->default_alignment = __mem_default_alignment(xe_dev->mem_regions);
xe_dev->has_vram = __mem_has_vram(xe_dev->mem_regions);
+ /*
+ * Populate the PAT cache while we still have sufficient privileges
+ * to read debugfs. Forked children that inherit this xe_device
+ * (via fork()) will be able to use the cached values even after
+ * dropping root with igt_drop_root(). pat_cache is left NULL if
+ * debugfs is not accessible.
+ *
+ * FIXME: the cache is keyed by fd; for multi-GPU support this
+ * should be extended to cache PAT entries by platform version/
+ * revision instead.
+ */
+ xe_dev->pat_cache = calloc(1, sizeof(*xe_dev->pat_cache));
+ igt_assert(xe_dev->pat_cache);
+ if (xe_get_pat_sw_config(xe_dev->fd, xe_dev->pat_cache) <= 0) {
+ free(xe_dev->pat_cache);
+ xe_dev->pat_cache = NULL;
+ }
+
/* We may get here from multiple threads, use first cached xe_dev */
pthread_mutex_lock(&cache.cache_mutex);
prev = find_in_cache_unlocked(fd);
diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h
index d7a9f95f9..05e2ad84f 100644
--- a/lib/xe/xe_query.h
+++ b/lib/xe/xe_query.h
@@ -20,6 +20,8 @@
#define XE_DEFAULT_ALIGNMENT SZ_4K
#define XE_DEFAULT_ALIGNMENT_64K SZ_64K
+struct intel_pat_cache;
+
struct xe_device {
/** @fd: xe fd */
int fd;
@@ -74,6 +76,9 @@ struct xe_device {
/** @dev_id: Device id of xe device */
uint16_t dev_id;
+
+ /** @pat_cache: cached PAT index configuration, NULL if not yet populated */
+ struct intel_pat_cache *pat_cache;
};
#define xe_for_each_engine(__fd, __hwe) \
--
2.50.1
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [PATCH v4 i-g-t] lib/intel_pat: Cache PAT config for unprivileged processes 2026-03-05 18:54 [PATCH v4 i-g-t] lib/intel_pat: Cache PAT config for unprivileged processes himanshu.girotra @ 2026-03-05 20:39 ` Dixit, Ashutosh 2026-03-07 21:22 ` Dixit, Ashutosh 2026-03-06 0:44 ` ✓ i915.CI.BAT: success for lib/intel_pat: Cache PAT config for unprivileged processes (rev4) Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 7+ messages in thread From: Dixit, Ashutosh @ 2026-03-05 20:39 UTC (permalink / raw) To: himanshu.girotra; +Cc: matthew.d.roper, x.wang, igt-dev, nishit.sharma On Thu, 05 Mar 2026 10:54:31 -0800, <himanshu.girotra@intel.com> wrote: > > From: Himanshu Girotra <himanshu.girotra@intel.com> > > Commit 4e59b8e7779b ("lib/intel_pat: use kernel debugfs as > authoritative PAT source for Xe") changed the Xe PAT lookup to > read from debugfs, which requires root access. Some xe_oa subtests > fork a child process that drops root privileges before performing > GPU operations that internally need the PAT write-back index. > After dropping root, the debugfs read fails. > > Fix this by caching the PAT configuration in struct xe_device at > xe_device_get() time. Since xe_device_get() is called while still > root, the cache is available to forked children even after > igt_drop_root(). Tests that open a new fd after forking must call > xe_device_get() explicitly before dropping root to populate the > cache for that fd. > > v2: Cache PAT in struct xe_device instead of a global static; > drop the intel_pat_precache() helper — xe_device_get() already > populates the cache, so call it directly in xe_oa before > igt_drop_root() (Ashutosh Dixit) > > v3: Use pat_cache pointer, NULL indicates unpopulated cache; > remove redundant xe_oa.c change (Ashutosh Dixit) > > Add FIXME for multi-GPU (Zbigniew Kempczyński) > > v4: nit fixes and use forward declaration in xe_query.h (Ashutosh Dixit) Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com> > > Cc: Matt Roper <matthew.d.roper@intel.com> > Cc: Xin Wang <x.wang@intel.com> > Cc: Nishit Sharma <nishit.sharma@intel.com> > Cc: Ashutosh Dixit <ashutosh.dixit@intel.com> > Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> > > Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> > Signed-off-by: Himanshu Girotra <himanshu.girotra@intel.com> > --- > lib/intel_pat.c | 17 +++++++++-------- > lib/xe/xe_query.c | 20 ++++++++++++++++++++ > lib/xe/xe_query.h | 5 +++++ > 3 files changed, 34 insertions(+), 8 deletions(-) > > diff --git a/lib/intel_pat.c b/lib/intel_pat.c > index 8660a2515..9feeeb39d 100644 > --- a/lib/intel_pat.c > +++ b/lib/intel_pat.c > @@ -6,6 +6,7 @@ > #include <fcntl.h> > #include "igt.h" > #include "intel_pat.h" > +#include "xe/xe_query.h" > > /** > * xe_get_pat_sw_config - Helper to read PAT (Page Attribute Table) software configuration > @@ -99,17 +100,17 @@ static void intel_get_pat_idx(int fd, struct intel_pat_cache *pat) > uint16_t dev_id; > > /* > - * For Xe driver, query the kernel's PAT software configuration > - * via debugfs. The kernel is the authoritative source for PAT > - * indices, accounting for platform-specific workarounds > - * (e.g. Wa_16023588340) at runtime. > + * For Xe, use the PAT cache stored in struct xe_device. > + * xe_device_get() populates the cache while still root; forked > + * children that inherit the xe_device can use it post-drop_root(). > */ > if (is_xe_device(fd)) { > - int32_t parsed = xe_get_pat_sw_config(fd, pat); > + struct xe_device *xe_dev = xe_device_get(fd); > > - igt_assert_f(parsed > 0, > - "Failed to get PAT sw_config from debugfs (parsed=%d)\n", > - parsed); > + igt_assert_f(xe_dev->pat_cache, > + "PAT sw_config not available -- " > + "debugfs not accessible (missing root or not mounted?)\n"); > + *pat = *xe_dev->pat_cache; > return; > } > > diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c > index 981d76948..3afca353e 100644 > --- a/lib/xe/xe_query.c > +++ b/lib/xe/xe_query.c > @@ -21,6 +21,7 @@ > #include "drmtest.h" > #include "ioctl_wrappers.h" > #include "igt_map.h" > +#include "intel_pat.h" > > #include "xe_query.h" > #include "xe_ioctl.h" > @@ -235,6 +236,7 @@ static void xe_device_free(struct xe_device *xe_dev) > free(xe_dev->mem_regions); > free(xe_dev->vram_size); > free(xe_dev->eu_stall); > + free(xe_dev->pat_cache); > free(xe_dev); > } > > @@ -299,6 +301,24 @@ struct xe_device *xe_device_get(int fd) > xe_dev->default_alignment = __mem_default_alignment(xe_dev->mem_regions); > xe_dev->has_vram = __mem_has_vram(xe_dev->mem_regions); > > + /* > + * Populate the PAT cache while we still have sufficient privileges > + * to read debugfs. Forked children that inherit this xe_device > + * (via fork()) will be able to use the cached values even after > + * dropping root with igt_drop_root(). pat_cache is left NULL if > + * debugfs is not accessible. > + * > + * FIXME: the cache is keyed by fd; for multi-GPU support this > + * should be extended to cache PAT entries by platform version/ > + * revision instead. > + */ > + xe_dev->pat_cache = calloc(1, sizeof(*xe_dev->pat_cache)); > + igt_assert(xe_dev->pat_cache); > + if (xe_get_pat_sw_config(xe_dev->fd, xe_dev->pat_cache) <= 0) { > + free(xe_dev->pat_cache); > + xe_dev->pat_cache = NULL; > + } > + > /* We may get here from multiple threads, use first cached xe_dev */ > pthread_mutex_lock(&cache.cache_mutex); > prev = find_in_cache_unlocked(fd); > diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h > index d7a9f95f9..05e2ad84f 100644 > --- a/lib/xe/xe_query.h > +++ b/lib/xe/xe_query.h > @@ -20,6 +20,8 @@ > #define XE_DEFAULT_ALIGNMENT SZ_4K > #define XE_DEFAULT_ALIGNMENT_64K SZ_64K > > +struct intel_pat_cache; > + > struct xe_device { > /** @fd: xe fd */ > int fd; > @@ -74,6 +76,9 @@ struct xe_device { > > /** @dev_id: Device id of xe device */ > uint16_t dev_id; > + > + /** @pat_cache: cached PAT index configuration, NULL if not yet populated */ > + struct intel_pat_cache *pat_cache; > }; > > #define xe_for_each_engine(__fd, __hwe) \ > -- > 2.50.1 > ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v4 i-g-t] lib/intel_pat: Cache PAT config for unprivileged processes 2026-03-05 20:39 ` Dixit, Ashutosh @ 2026-03-07 21:22 ` Dixit, Ashutosh 0 siblings, 0 replies; 7+ messages in thread From: Dixit, Ashutosh @ 2026-03-07 21:22 UTC (permalink / raw) To: himanshu.girotra; +Cc: matthew.d.roper, x.wang, igt-dev, nishit.sharma On Thu, 05 Mar 2026 12:39:14 -0800, Dixit, Ashutosh wrote: > > On Thu, 05 Mar 2026 10:54:31 -0800, <himanshu.girotra@intel.com> wrote: > > > > From: Himanshu Girotra <himanshu.girotra@intel.com> > > > > Commit 4e59b8e7779b ("lib/intel_pat: use kernel debugfs as > > authoritative PAT source for Xe") changed the Xe PAT lookup to > > read from debugfs, which requires root access. Some xe_oa subtests > > fork a child process that drops root privileges before performing > > GPU operations that internally need the PAT write-back index. > > After dropping root, the debugfs read fails. > > > > Fix this by caching the PAT configuration in struct xe_device at > > xe_device_get() time. Since xe_device_get() is called while still > > root, the cache is available to forked children even after > > igt_drop_root(). Tests that open a new fd after forking must call > > xe_device_get() explicitly before dropping root to populate the > > cache for that fd. > > > > v2: Cache PAT in struct xe_device instead of a global static; > > drop the intel_pat_precache() helper — xe_device_get() already > > populates the cache, so call it directly in xe_oa before > > igt_drop_root() (Ashutosh Dixit) > > > > v3: Use pat_cache pointer, NULL indicates unpopulated cache; > > remove redundant xe_oa.c change (Ashutosh Dixit) > > > > Add FIXME for multi-GPU (Zbigniew Kempczyński) > > > > v4: nit fixes and use forward declaration in xe_query.h (Ashutosh Dixit) > > Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com> Thanks for the quick turnaround on the fix. The patch is now merged! ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ i915.CI.BAT: success for lib/intel_pat: Cache PAT config for unprivileged processes (rev4) 2026-03-05 18:54 [PATCH v4 i-g-t] lib/intel_pat: Cache PAT config for unprivileged processes himanshu.girotra 2026-03-05 20:39 ` Dixit, Ashutosh @ 2026-03-06 0:44 ` Patchwork 2026-03-06 1:04 ` ✓ Xe.CI.BAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-03-06 0:44 UTC (permalink / raw) To: himanshu.girotra; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3551 bytes --] == Series Details == Series: lib/intel_pat: Cache PAT config for unprivileged processes (rev4) URL : https://patchwork.freedesktop.org/series/162386/ State : success == Summary == CI Bug Log - changes from IGT_8782 -> IGTPW_14684 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/index.html Participating hosts (40 -> 38) ------------------------------ Missing (2): bat-dg2-13 bat-adls-6 Known issues ------------ Here are the changes found in IGTPW_14684 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@mman: - bat-atsm-1: [PASS][1] -> [DMESG-FAIL][2] ([i915#14204]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8782/bat-atsm-1/igt@i915_selftest@live@mman.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/bat-atsm-1/igt@i915_selftest@live@mman.html #### Possible fixes #### * igt@i915_selftest@live: - bat-dg2-8: [DMESG-FAIL][3] ([i915#12061]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8782/bat-dg2-8/igt@i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/bat-dg2-8/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arls-5: [DMESG-FAIL][5] ([i915#12061]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8782/bat-arls-5/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/bat-arls-5/igt@i915_selftest@live@workarounds.html - bat-mtlp-9: [DMESG-FAIL][7] ([i915#12061]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8782/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/bat-mtlp-9/igt@i915_selftest@live@workarounds.html #### Warnings #### * igt@i915_selftest@live: - bat-arls-5: [DMESG-FAIL][9] ([i915#12061] / [i915#15784]) -> [DMESG-FAIL][10] ([i915#15784]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8782/bat-arls-5/igt@i915_selftest@live.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/bat-arls-5/igt@i915_selftest@live.html - bat-atsm-1: [DMESG-FAIL][11] ([i915#12061]) -> [DMESG-FAIL][12] ([i915#12061] / [i915#14204]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8782/bat-atsm-1/igt@i915_selftest@live.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/bat-atsm-1/igt@i915_selftest@live.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204 [i915#15784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15784 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8782 -> IGTPW_14684 * Linux: CI_DRM_18100 -> CI_DRM_18101 CI-20190529: 20190529 CI_DRM_18100: ce63d46cc8fc3bb754efb93026b55acaa616cfa2 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18101: 0173caacd7e64feb97afe9bd5dcd51ad20c9f77a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14684: 1aecf7c6e581e7a2fb988d8917a4e821e2ef645c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8782: eac3b04d1f76b82ac3a183fb293c44e9185d8dba @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/index.html [-- Attachment #2: Type: text/html, Size: 4770 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Xe.CI.BAT: success for lib/intel_pat: Cache PAT config for unprivileged processes (rev4) 2026-03-05 18:54 [PATCH v4 i-g-t] lib/intel_pat: Cache PAT config for unprivileged processes himanshu.girotra 2026-03-05 20:39 ` Dixit, Ashutosh 2026-03-06 0:44 ` ✓ i915.CI.BAT: success for lib/intel_pat: Cache PAT config for unprivileged processes (rev4) Patchwork @ 2026-03-06 1:04 ` Patchwork 2026-03-06 19:53 ` ✓ Xe.CI.FULL: " Patchwork 2026-03-07 4:53 ` ✗ i915.CI.Full: failure " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-03-06 1:04 UTC (permalink / raw) To: himanshu.girotra; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2514 bytes --] == Series Details == Series: lib/intel_pat: Cache PAT config for unprivileged processes (rev4) URL : https://patchwork.freedesktop.org/series/162386/ State : success == Summary == CI Bug Log - changes from XEIGT_8782_BAT -> XEIGTPW_14684_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (14 -> 14) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_14684_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1: - bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#7483]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8782/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html * igt@xe_waitfence@abstime: - bat-dg2-oem2: [PASS][3] -> [TIMEOUT][4] ([Intel XE#6506]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8782/bat-dg2-oem2/igt@xe_waitfence@abstime.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/bat-dg2-oem2/igt@xe_waitfence@abstime.html #### Possible fixes #### * igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1: - bat-adlp-7: [DMESG-WARN][5] ([Intel XE#7483]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8782/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html [Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506 [Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483 Build changes ------------- * IGT: IGT_8782 -> IGTPW_14684 * Linux: xe-4665-d927c128e21f0543a0998af896d9fe22629b3532 -> xe-4667-9565ad1c312903452467b9f685c59e2f47f512e5 IGTPW_14684: 1aecf7c6e581e7a2fb988d8917a4e821e2ef645c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8782: eac3b04d1f76b82ac3a183fb293c44e9185d8dba @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4665-d927c128e21f0543a0998af896d9fe22629b3532: d927c128e21f0543a0998af896d9fe22629b3532 xe-4667-9565ad1c312903452467b9f685c59e2f47f512e5: 9565ad1c312903452467b9f685c59e2f47f512e5 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/index.html [-- Attachment #2: Type: text/html, Size: 3222 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Xe.CI.FULL: success for lib/intel_pat: Cache PAT config for unprivileged processes (rev4) 2026-03-05 18:54 [PATCH v4 i-g-t] lib/intel_pat: Cache PAT config for unprivileged processes himanshu.girotra ` (2 preceding siblings ...) 2026-03-06 1:04 ` ✓ Xe.CI.BAT: " Patchwork @ 2026-03-06 19:53 ` Patchwork 2026-03-07 4:53 ` ✗ i915.CI.Full: failure " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-03-06 19:53 UTC (permalink / raw) To: himanshu.girotra; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 33194 bytes --] == Series Details == Series: lib/intel_pat: Cache PAT config for unprivileged processes (rev4) URL : https://patchwork.freedesktop.org/series/162386/ State : success == Summary == CI Bug Log - changes from XEIGT_8782_FULL -> XEIGTPW_14684_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_14684_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][1] ([Intel XE#3157]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][2] ([Intel XE#3658] / [Intel XE#7360]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2327]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-8/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#7059] / [Intel XE#7085]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html - shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#7059] / [Intel XE#7085]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +4 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1124]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#2191] / [Intel XE#7373]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-2/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#367] / [Intel XE#7354]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-8/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#2887]) +2 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-2/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2887]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2652]) +17 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html * igt@kms_chamelium_color@ctm-0-50: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2325] / [Intel XE#7358]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-10/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@degamma: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#306] / [Intel XE#7358]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-8/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2252]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-5/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#373]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-7/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_color_pipeline@plane-lut1d-pre-ctm3x4@pipe-b-plane-0: - shard-lnl: NOTRUN -> [FAIL][17] ([Intel XE#7305]) +9 other tests fail [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-3/igt@kms_color_pipeline@plane-lut1d-pre-ctm3x4@pipe-b-plane-0.html * igt@kms_content_protection@lic-type-1: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2341]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-10/igt@kms_content_protection@lic-type-1.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2320]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1424]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-3/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#309] / [Intel XE#7343]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1508]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#1508]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_flip@2x-plain-flip: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1421]) +2 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-7/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-lnl: [PASS][25] -> [FAIL][26] ([Intel XE#301]) +4 other tests fail [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8782/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#7178] / [Intel XE#7351]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#7179]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-8/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html * igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-blt: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#7061] / [Intel XE#7356]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2311]) +8 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#4141]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#6312] / [Intel XE#651]) +4 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2313]) +13 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#656]) +5 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_hdmi_inject@inject-4k: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1470]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-6/igt@kms_hdmi_inject@inject-4k.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [PASS][37] -> [SKIP][38] ([Intel XE#1503]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8782/shard-bmg-8/igt@kms_hdr@invalid-hdr.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-6/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#4090] / [Intel XE#7443]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-9/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#7173] / [Intel XE#7294]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-8/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#7283]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-8/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#5021] / [Intel XE#7377]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-yf.html - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#4596] / [Intel XE#5854]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-4/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2392] / [Intel XE#6927]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-10/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@package-g7: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#6813]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-4/igt@kms_pm_rpm@package-g7.html - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#6814] / [Intel XE#7428]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-7/igt@kms_pm_rpm@package-g7.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#4608]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#4608] / [Intel XE#7304]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#1489]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-8/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#2893] / [Intel XE#7304]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-8/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr@psr-primary-render: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-9/igt@kms_psr@psr-primary-render.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-lnl: [PASS][53] -> [SKIP][54] ([Intel XE#4692] / [Intel XE#7508]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8782/shard-lnl-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_setmode@basic@pipe-b-hdmi-a-3: - shard-bmg: [PASS][55] -> [FAIL][56] ([Intel XE#6361]) +2 other tests fail [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8782/shard-bmg-2/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-7/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#1435]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-5/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_sharpness_filter@filter-formats: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#6503]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-7/igt@kms_sharpness_filter@filter-formats.html * igt@kms_vrr@lobf: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2168] / [Intel XE#7444]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-10/igt@kms_vrr@lobf.html * igt@kms_vrr@lobf@pipe-a-edp-1: - shard-lnl: NOTRUN -> [FAIL][60] ([Intel XE#6390] / [Intel XE#7461]) +1 other test fail [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-2/igt@kms_vrr@lobf@pipe-a-edp-1.html * igt@xe_compute@ccs-mode-basic: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#6599]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-5/igt@xe_compute@ccs-mode-basic.html * igt@xe_eudebug@basic-vm-access-parameters-faultable: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#4837]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-3/igt@xe_eudebug@basic-vm-access-parameters-faultable.html * igt@xe_eudebug@basic-vm-bind-ufence: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#4837]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-6/igt@xe_eudebug@basic-vm-bind-ufence.html * igt@xe_eudebug_online@pagefault-read-stress: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#6665] / [Intel XE#6681]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-5/igt@xe_eudebug_online@pagefault-read-stress.html * igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-vram: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#4837] / [Intel XE#6665]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-1/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-vram.html - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#4837] / [Intel XE#6665]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-7/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-vram.html * igt@xe_evict@evict-small-multi-queue: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#7140]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-1/igt@xe_evict@evict-small-multi-queue.html - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#6540] / [Intel XE#688]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-4/igt@xe_evict@evict-small-multi-queue.html * igt@xe_exec_balancer@no-exec-parallel-userptr-rebind: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#7482]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-8/igt@xe_exec_balancer@no-exec-parallel-userptr-rebind.html * igt@xe_exec_basic@multigpu-once-basic: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1392]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-4/igt@xe_exec_basic@multigpu-once-basic.html * igt@xe_exec_basic@multigpu-once-null-defer-mmap: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-3/igt@xe_exec_basic@multigpu-once-null-defer-mmap.html * igt@xe_exec_fault_mode@many-multi-queue-userptr-rebind-prefetch: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#7136]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-9/igt@xe_exec_fault_mode@many-multi-queue-userptr-rebind-prefetch.html * igt@xe_exec_fault_mode@once-multi-queue: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#7136]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-4/igt@xe_exec_fault_mode@once-multi-queue.html * igt@xe_exec_multi_queue@few-execs-preempt-mode-priority: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#6874]) +7 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-3/igt@xe_exec_multi_queue@few-execs-preempt-mode-priority.html * igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-dyn-priority: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#6874]) +6 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-8/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-dyn-priority.html * igt@xe_exec_threads@threads-multi-queue-mixed-rebind: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#7138]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-mixed-rebind.html * igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#7138]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-2/igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-invalidate.html * igt@xe_multigpu_svm@mgpu-atomic-op-prefetch: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#6964]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-6/igt@xe_multigpu_svm@mgpu-atomic-op-prefetch.html * igt@xe_multigpu_svm@mgpu-pagefault-prefetch: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#6964]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-3/igt@xe_multigpu_svm@mgpu-pagefault-prefetch.html * igt@xe_pm@s3-vm-bind-prefetch: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#584] / [Intel XE#7369]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-2/igt@xe_pm@s3-vm-bind-prefetch.html * igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#4733] / [Intel XE#7417]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-1/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-bmg: [PASS][82] -> [FAIL][83] ([Intel XE#6569]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8782/shard-bmg-10/igt@xe_sriov_flr@flr-vf1-clear.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-7/igt@xe_sriov_flr@flr-vf1-clear.html #### Possible fixes #### * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: [FAIL][84] -> [PASS][85] [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8782/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3: - shard-bmg: [FAIL][86] ([Intel XE#3321]) -> [PASS][87] +1 other test pass [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8782/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html * igt@kms_setmode@basic@pipe-a-edp-1: - shard-lnl: [FAIL][88] ([Intel XE#6361]) -> [PASS][89] +1 other test pass [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8782/shard-lnl-5/igt@kms_setmode@basic@pipe-a-edp-1.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-4/igt@kms_setmode@basic@pipe-a-edp-1.html * igt@xe_oa@mmio-triggered-reports: - shard-bmg: [FAIL][90] ([Intel XE#7522] / [Intel XE#7555]) -> [PASS][91] +1 other test pass [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8782/shard-bmg-5/igt@xe_oa@mmio-triggered-reports.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-7/igt@xe_oa@mmio-triggered-reports.html * igt@xe_oa@mmio-triggered-reports-read: - shard-lnl: [FAIL][92] ([Intel XE#7522]) -> [PASS][93] +7 other tests pass [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8782/shard-lnl-7/igt@xe_oa@mmio-triggered-reports-read.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-4/igt@xe_oa@mmio-triggered-reports-read.html * igt@xe_oa@mmio-triggered-reports-read@oag-0: - shard-lnl: [FAIL][94] ([Intel XE#7555]) -> [PASS][95] +1 other test pass [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8782/shard-lnl-7/igt@xe_oa@mmio-triggered-reports-read@oag-0.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-lnl-4/igt@xe_oa@mmio-triggered-reports-read@oag-0.html * igt@xe_oa@mmio-triggered-reports@oag-0: - shard-bmg: [FAIL][96] ([Intel XE#7555]) -> [PASS][97] +1 other test pass [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8782/shard-bmg-5/igt@xe_oa@mmio-triggered-reports@oag-0.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-7/igt@xe_oa@mmio-triggered-reports@oag-0.html * igt@xe_oa@mmio-triggered-reports@oam-2: - shard-bmg: [FAIL][98] ([Intel XE#7522]) -> [PASS][99] +7 other tests pass [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8782/shard-bmg-5/igt@xe_oa@mmio-triggered-reports@oam-2.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-7/igt@xe_oa@mmio-triggered-reports@oam-2.html #### Warnings #### * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][100] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][101] ([Intel XE#1729] / [Intel XE#7424]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8782/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv: - shard-bmg: [ABORT][102] ([Intel XE#5466]) -> [ABORT][103] ([Intel XE#5466] / [Intel XE#6652]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8782/shard-bmg-3/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/shard-bmg-9/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [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#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#5854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5854 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361 [Intel XE#6390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6390 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599 [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [Intel XE#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681 [Intel XE#6813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6813 [Intel XE#6814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6814 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140 [Intel XE#7173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7173 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7294 [Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304 [Intel XE#7305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7305 [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7360 [Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7373 [Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424 [Intel XE#7428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7428 [Intel XE#7443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7443 [Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444 [Intel XE#7461]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7461 [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482 [Intel XE#7508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7508 [Intel XE#7522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7522 [Intel XE#7555]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7555 Build changes ------------- * IGT: IGT_8782 -> IGTPW_14684 * Linux: xe-4665-d927c128e21f0543a0998af896d9fe22629b3532 -> xe-4667-9565ad1c312903452467b9f685c59e2f47f512e5 IGTPW_14684: 1aecf7c6e581e7a2fb988d8917a4e821e2ef645c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8782: eac3b04d1f76b82ac3a183fb293c44e9185d8dba @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4665-d927c128e21f0543a0998af896d9fe22629b3532: d927c128e21f0543a0998af896d9fe22629b3532 xe-4667-9565ad1c312903452467b9f685c59e2f47f512e5: 9565ad1c312903452467b9f685c59e2f47f512e5 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14684/index.html [-- Attachment #2: Type: text/html, Size: 37304 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ i915.CI.Full: failure for lib/intel_pat: Cache PAT config for unprivileged processes (rev4) 2026-03-05 18:54 [PATCH v4 i-g-t] lib/intel_pat: Cache PAT config for unprivileged processes himanshu.girotra ` (3 preceding siblings ...) 2026-03-06 19:53 ` ✓ Xe.CI.FULL: " Patchwork @ 2026-03-07 4:53 ` Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-03-07 4:53 UTC (permalink / raw) To: himanshu.girotra; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 130649 bytes --] == Series Details == Series: lib/intel_pat: Cache PAT config for unprivileged processes (rev4) URL : https://patchwork.freedesktop.org/series/162386/ State : failure == Summary == CI Bug Log - changes from CI_DRM_18101_full -> IGTPW_14684_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14684_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14684_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. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_14684_full: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html New tests --------- New tests have been introduced between CI_DRM_18101_full and IGTPW_14684_full: ### New IGT tests (2) ### * igt@i915_pm_rps@invalid-multi-wait-unsubmitted-submitted-signaled: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@load: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_14684_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@drm_buddy@drm_buddy: - shard-dg2: NOTRUN -> [SKIP][2] ([i915#15678]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-6/igt@drm_buddy@drm_buddy.html * igt@gem_basic@multigpu-create-close: - shard-tglu-1: NOTRUN -> [SKIP][3] ([i915#7697]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#9323]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-8/igt@gem_ccs@block-multicopy-compressed.html - shard-dg1: NOTRUN -> [SKIP][5] ([i915#9323]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-16/igt@gem_ccs@block-multicopy-compressed.html - shard-tglu: NOTRUN -> [SKIP][6] ([i915#9323]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-2/igt@gem_ccs@block-multicopy-compressed.html - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#9323]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-8/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@block-multicopy-inplace: - shard-tglu: NOTRUN -> [SKIP][8] ([i915#3555] / [i915#9323]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-8/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][9] -> [INCOMPLETE][10] ([i915#13356]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#7697]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-17/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglu: NOTRUN -> [SKIP][12] ([i915#6335]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-3/igt@gem_create@create-ext-cpu-access-big.html - shard-dg2: [PASS][13] -> [FAIL][14] ([i915#15454]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-set-pat: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#8562]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-7/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@hostile: - shard-snb: NOTRUN -> [SKIP][16] ([i915#1099]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-snb5/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#280]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-7/igt@gem_ctx_sseu@mmap-args.html - shard-dg1: NOTRUN -> [SKIP][18] ([i915#280]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-14/igt@gem_ctx_sseu@mmap-args.html - shard-tglu: NOTRUN -> [SKIP][19] ([i915#280]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-3/igt@gem_ctx_sseu@mmap-args.html - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#280]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-7/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][21] ([i915#13390]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk4/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#8555]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-4/igt@gem_exec_balancer@noheartbeat.html - shard-dg1: NOTRUN -> [SKIP][23] ([i915#8555]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-17/igt@gem_exec_balancer@noheartbeat.html - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#8555]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-6/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_balancer@parallel: - shard-tglu-1: NOTRUN -> [SKIP][25] ([i915#4525]) +3 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#4525]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-7/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@capture-invisible: - shard-glk11: NOTRUN -> [SKIP][27] ([i915#6334]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk11/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg1: NOTRUN -> [FAIL][28] ([i915#11965]) +2 other tests fail [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-14/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg1: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-12/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_flush@basic-wb-pro-default: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-4/igt@gem_exec_flush@basic-wb-pro-default.html * igt@gem_exec_reloc@basic-cpu-gtt: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#3281]) +4 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-7/igt@gem_exec_reloc@basic-cpu-gtt.html - shard-rkl: NOTRUN -> [SKIP][32] ([i915#3281]) +4 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-7/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_exec_reloc@basic-wc: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#14544] / [i915#3281]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@gem_exec_reloc@basic-wc.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#3281]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-12/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#3281]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-5/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_schedule@smoketest-all: - shard-snb: NOTRUN -> [SKIP][36] +83 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-snb6/igt@gem_exec_schedule@smoketest-all.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4860]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-8/igt@gem_fence_thrash@bo-copy.html - shard-dg1: NOTRUN -> [SKIP][38] ([i915#4860]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-13/igt@gem_fence_thrash@bo-copy.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4860]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-7/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#4613] / [i915#7582]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-3/igt@gem_lmem_evict@dontneed-evict-race.html - shard-tglu: NOTRUN -> [SKIP][41] ([i915#4613] / [i915#7582]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-3/igt@gem_lmem_evict@dontneed-evict-race.html - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4613]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-7/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-glk: NOTRUN -> [SKIP][43] ([i915#4613]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk8/igt@gem_lmem_swapping@heavy-verify-multi.html - shard-rkl: NOTRUN -> [SKIP][44] ([i915#4613]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-tglu-1: NOTRUN -> [SKIP][45] ([i915#4613]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_media_vme: - shard-tglu: NOTRUN -> [SKIP][46] ([i915#284]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-5/igt@gem_media_vme.html * igt@gem_mmap@short-mmap: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#4083]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-16/igt@gem_mmap@short-mmap.html * igt@gem_mmap_gtt@basic-short: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4077]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-3/igt@gem_mmap_gtt@basic-short.html * igt@gem_mmap_gtt@basic-small-copy-xy: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4077]) +5 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-14/igt@gem_mmap_gtt@basic-small-copy-xy.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3282]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-4/igt@gem_partial_pwrite_pread@reads-uncached.html - shard-rkl: NOTRUN -> [SKIP][51] ([i915#3282]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-4/igt@gem_partial_pwrite_pread@reads-uncached.html - shard-dg1: NOTRUN -> [SKIP][52] ([i915#3282]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-13/igt@gem_partial_pwrite_pread@reads-uncached.html - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#3282]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-7/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu-1: NOTRUN -> [SKIP][54] ([i915#13398]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4270]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-14/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-rkl: [PASS][56] -> [SKIP][57] ([i915#4270]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-6/igt@gem_pxp@reject-modify-context-protection-off-1.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-3/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4270]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_render_copy@linear-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#8428]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-7/igt@gem_render_copy@linear-to-vebox-y-tiled.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#5190] / [i915#8428]) +4 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-7/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4079]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-8/igt@gem_render_tiled_blits@basic.html - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4079]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-13/igt@gem_render_tiled_blits@basic.html - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4079]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-5/igt@gem_render_tiled_blits@basic.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#8411]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_userptr_blits@unsync-overlap: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#3297]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-5/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-tglu: NOTRUN -> [SKIP][66] ([i915#3297]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-9/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gem_workarounds@suspend-resume: - shard-rkl: NOTRUN -> [ABORT][67] ([i915#15152]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-1/igt@gem_workarounds@suspend-resume.html * igt@gem_workarounds@suspend-resume-fd: - shard-rkl: [PASS][68] -> [INCOMPLETE][69] ([i915#13356]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-4/igt@gem_workarounds@suspend-resume-fd.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-3/igt@gem_workarounds@suspend-resume-fd.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#2527]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-2/igt@gen9_exec_parse@bb-oversize.html - shard-tglu-1: NOTRUN -> [SKIP][71] ([i915#2527] / [i915#2856]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@gen9_exec_parse@bb-oversize.html - shard-dg1: NOTRUN -> [SKIP][72] ([i915#2527]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-16/igt@gen9_exec_parse@bb-oversize.html - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#2856]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-3/igt@gen9_exec_parse@bb-oversize.html - shard-dg2: NOTRUN -> [SKIP][74] ([i915#2856]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-1/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@shadow-peek: - shard-tglu: NOTRUN -> [SKIP][75] ([i915#2527] / [i915#2856]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-6/igt@gen9_exec_parse@shadow-peek.html * igt@i915_drm_fdinfo@busy-idle-check-all@vcs1: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#11527]) +5 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-18/igt@i915_drm_fdinfo@busy-idle-check-all@vcs1.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-glk: NOTRUN -> [ABORT][77] ([i915#15342]) +1 other test abort [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk6/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_module_load@resize-bar: - shard-tglu: NOTRUN -> [SKIP][78] ([i915#6412]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-2/igt@i915_module_load@resize-bar.html * igt@i915_pm_rpm@gem-execbuf-stress@lmem0: - shard-dg1: [PASS][79] -> [DMESG-WARN][80] ([i915#4423]) +2 other tests dmesg-warn [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-dg1-14/igt@i915_pm_rpm@gem-execbuf-stress@lmem0.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-12/igt@i915_pm_rpm@gem-execbuf-stress@lmem0.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][81] -> [INCOMPLETE][82] ([i915#13729] / [i915#13821]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-snb6/igt@i915_pm_rps@reset.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-snb6/igt@i915_pm_rps@reset.html * igt@i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#7984]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-8/igt@i915_power@sanity.html * igt@i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#6245]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-3/igt@i915_query@hwconfig_table.html * igt@i915_suspend@fence-restore-untiled: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#4077]) +6 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-7/igt@i915_suspend@fence-restore-untiled.html * igt@i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][86] ([i915#4817]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk6/igt@i915_suspend@forcewake.html * igt@intel_hwmon@hwmon-read: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#7707]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-8/igt@intel_hwmon@hwmon-read.html - shard-tglu-1: NOTRUN -> [SKIP][88] ([i915#7707]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#5190]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-7/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu: NOTRUN -> [SKIP][90] ([i915#12454] / [i915#12712]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][91] ([i915#12761]) +1 other test incomplete [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk5/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu: NOTRUN -> [SKIP][92] ([i915#9531]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#1769] / [i915#3555]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk10: NOTRUN -> [SKIP][94] ([i915#1769]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1: - shard-mtlp: [PASS][95] -> [FAIL][96] ([i915#5956]) +1 other test fail [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-mtlp-4/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-5/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][97] ([i915#5286]) +4 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-glk11: NOTRUN -> [SKIP][98] +116 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk11/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#4538] / [i915#5286]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-13/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][100] ([i915#5286]) +5 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#5286]) +2 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#14544] / [i915#5286]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#3828]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-7/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#3638]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-4/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#3638]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-14/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#4538] / [i915#5190]) +6 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#14544]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [SKIP][108] +5 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#4538]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#6095]) +196 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-16/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#6095]) +17 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#14098] / [i915#6095]) +43 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#10307] / [i915#10434] / [i915#6095]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#14544] / [i915#6095]) +7 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#14098] / [i915#14544] / [i915#6095]) +6 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs: - shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#6095]) +34 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][117] ([i915#12313]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#6095]) +34 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-7/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][119] ([i915#6095]) +84 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#12805]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-tglu-1: NOTRUN -> [SKIP][121] ([i915#12805]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#12313]) +2 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html - shard-dg1: NOTRUN -> [SKIP][123] ([i915#12313]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-16/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][124] ([i915#12313]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#12313]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html - shard-dg2: NOTRUN -> [SKIP][126] ([i915#12313]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#10307] / [i915#6095]) +92 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#6095]) +61 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#14544] / [i915#3742]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html - shard-tglu: NOTRUN -> [SKIP][130] ([i915#3742]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-2/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#3742]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-2/igt@kms_cdclk@plane-scaling.html - shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#3742]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@ctm-negative: - shard-glk: NOTRUN -> [SKIP][133] +333 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk3/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#11151] / [i915#7828]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-17/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#11151] / [i915#7828]) +5 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#11151] / [i915#7828]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-8/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#11151] / [i915#7828]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#11151] / [i915#7828]) +4 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-3/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_color@deep-color: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#12655] / [i915#3555]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-7/igt@kms_color@deep-color.html * igt@kms_color_pipeline@plane-lut1d-post-ctm3x4@pipe-c-plane-1: - shard-mtlp: NOTRUN -> [FAIL][140] ([i915#15733]) +25 other tests fail [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-6/igt@kms_color_pipeline@plane-lut1d-post-ctm3x4@pipe-c-plane-1.html * igt@kms_content_protection@atomic-dpms: - shard-tglu-1: NOTRUN -> [SKIP][141] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@content-type-change: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#6944] / [i915#9424]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-13/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu-1: NOTRUN -> [SKIP][143] ([i915#15330] / [i915#3116] / [i915#3299]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-1-suspend-resume: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#15330]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-8/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html - shard-dg2: NOTRUN -> [SKIP][145] ([i915#15330]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-5/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][146] ([i915#15330]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-8/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html - shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#15330]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][148] ([i915#15330]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-14/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html * igt@kms_content_protection@legacy-hdcp14: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#6944]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-3/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@lic-type-0: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#6944] / [i915#9424]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-5/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@mei-interface: - shard-tglu: NOTRUN -> [SKIP][151] ([i915#6944] / [i915#9424]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-6/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#6944] / [i915#7118]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-7/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent-hdcp14: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#6944]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-6/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2: - shard-rkl: [PASS][154] -> [FAIL][155] ([i915#13566]) +6 other tests fail [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#13049]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html - shard-rkl: NOTRUN -> [SKIP][157] ([i915#13049]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][158] ([i915#13566]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#3555]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-3/igt@kms_cursor_crc@cursor-random-32x32.html - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#8814]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-4/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#14544] / [i915#3555]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#13049]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-tglu: [PASS][163] -> [FAIL][164] ([i915#13566]) +5 other tests fail [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-256x85.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#3555]) +3 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#13049]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-6/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][167] +16 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-tglu: NOTRUN -> [SKIP][168] ([i915#4103]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#13749]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-8/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dp_link_training@uhbr-mst: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#13748]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-2/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dp_link_training@uhbr-sst: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#13748]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-3/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#13707]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-3/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-dg1: NOTRUN -> [SKIP][173] ([i915#13707]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-17/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#13707]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-4/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#13707]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-2/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#3840]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#3840]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-8/igt@kms_dsc@dsc-with-formats.html - shard-rkl: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#3840]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-2/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#3555] / [i915#3840]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg1: NOTRUN -> [SKIP][180] ([i915#3840] / [i915#9053]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-14/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][181] ([i915#9878]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk3/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#3469]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-8/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#3955]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-3/igt@kms_fbcon_fbt@psr-suspend.html - shard-dg1: NOTRUN -> [SKIP][184] ([i915#3469]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-12/igt@kms_fbcon_fbt@psr-suspend.html - shard-tglu: NOTRUN -> [SKIP][185] ([i915#3469]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-3/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#1839]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-8/igt@kms_feature_discovery@display-2x.html - shard-rkl: NOTRUN -> [SKIP][187] ([i915#14544] / [i915#1839]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_feature_discovery@display-2x.html - shard-dg1: NOTRUN -> [SKIP][188] ([i915#1839]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-12/igt@kms_feature_discovery@display-2x.html - shard-tglu: NOTRUN -> [SKIP][189] ([i915#1839]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-4/igt@kms_feature_discovery@display-2x.html - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#1839]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-5/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#9337]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-4/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#9934]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-7/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html - shard-rkl: NOTRUN -> [SKIP][193] ([i915#14544] / [i915#9934]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html - shard-dg1: NOTRUN -> [SKIP][194] ([i915#9934]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-18/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3637] / [i915#9934]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-8/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][196] ([i915#3637] / [i915#9934]) +6 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-4/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#9934]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#8381]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-19/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-panning: - shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#3637] / [i915#9934]) +2 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][200] ([i915#12314] / [i915#12745] / [i915#4839]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][201] ([i915#12314] / [i915#4839]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#9934]) +4 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-tglu: [PASS][203] -> [FAIL][204] ([i915#14600]) +1 other test fail [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-tglu-8/igt@kms_flip@flip-vs-absolute-wf_vblank.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-5/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-suspend: - shard-glk10: NOTRUN -> [INCOMPLETE][205] ([i915#12745] / [i915#4839]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk10/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk10: NOTRUN -> [INCOMPLETE][206] ([i915#12745]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk10/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#15643]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html - shard-dg1: NOTRUN -> [SKIP][208] ([i915#15643]) +2 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#15643]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#15643]) +2 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html - shard-tglu: NOTRUN -> [SKIP][211] ([i915#15643]) +4 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8810] / [i915#8813]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#8810] / [i915#8813]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#15643]) +2 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#15643] / [i915#5190]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#15104]) +3 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff: - shard-dg2: [PASS][217] -> [FAIL][218] ([i915#15389] / [i915#6880]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-dg1: NOTRUN -> [SKIP][219] +21 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move: - shard-tglu: NOTRUN -> [SKIP][220] +48 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#8708]) +7 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#8708]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#8708]) +6 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#15104]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-tglu-1: NOTRUN -> [SKIP][225] ([i915#15102]) +15 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#15102] / [i915#3458]) +8 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#14544] / [i915#15102] / [i915#3023]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html - shard-dg1: NOTRUN -> [SKIP][228] ([i915#15102] / [i915#3458]) +6 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#1825]) +32 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#14544] / [i915#1825]) +3 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#5354]) +15 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#1825]) +9 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#15102] / [i915#3023]) +13 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#9766]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#15104]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#15102]) +2 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move: - shard-tglu: NOTRUN -> [SKIP][237] ([i915#15102]) +22 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][238] +34 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt@kms_hdr@brightness-with-hdr: - shard-tglu-1: NOTRUN -> [SKIP][239] ([i915#12713]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-swap: - shard-tglu: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8228]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-3/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#8228]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-dpms: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#12713] / [i915#3555] / [i915#8228]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-8/igt@kms_hdr@static-toggle-dpms.html - shard-dg2: NOTRUN -> [SKIP][243] ([i915#3555] / [i915#8228]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-7/igt@kms_hdr@static-toggle-dpms.html - shard-dg1: NOTRUN -> [SKIP][244] ([i915#3555] / [i915#8228]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-18/igt@kms_hdr@static-toggle-dpms.html * igt@kms_joiner@basic-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#15459]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-4/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#15458]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#15460]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-17/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][248] ([i915#15459]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_pipe_stress@stress-xrgb8888-4tiled: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#14712]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-7/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#15709]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html - shard-tglu-1: NOTRUN -> [SKIP][251] ([i915#15709]) +3 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#15709]) +2 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-7: - shard-tglu-1: NOTRUN -> [SKIP][253] ([i915#15608]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-7.html - shard-dg1: NOTRUN -> [SKIP][254] ([i915#15608]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-19/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping: - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#15709]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-3/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][256] ([i915#15709]) +2 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-2/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-glk11: NOTRUN -> [INCOMPLETE][257] ([i915#13026]) +1 other test incomplete [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk11/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk11: NOTRUN -> [FAIL][258] ([i915#10647] / [i915#12169]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk11/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk11: NOTRUN -> [FAIL][259] ([i915#10647]) +1 other test fail [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk11/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-4: - shard-dg1: NOTRUN -> [SKIP][260] ([i915#3555]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-17/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_lowres@tiling-yf: - shard-tglu: NOTRUN -> [SKIP][261] ([i915#3555]) +3 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-8/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-y: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#13958]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-3/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@tiling-4: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#14259]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-4/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_multiple@tiling-yf: - shard-dg1: NOTRUN -> [SKIP][264] ([i915#14259]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-13/igt@kms_plane_multiple@tiling-yf.html - shard-tglu: NOTRUN -> [SKIP][265] ([i915#14259]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-2/igt@kms_plane_multiple@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#14259]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-5/igt@kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][267] ([i915#14259]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-8/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#6953]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-8/igt@kms_plane_scaling@intel-max-src-size.html - shard-tglu-1: NOTRUN -> [SKIP][269] ([i915#6953]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#14544] / [i915#15329]) +3 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html - shard-dg1: NOTRUN -> [SKIP][271] ([i915#15329]) +4 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-12/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][272] ([i915#15329]) +9 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-4/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#15329]) +3 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#12343]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-tglu: NOTRUN -> [SKIP][275] ([i915#9812]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-5/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc6-psr: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#9685]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-3/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#15739]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-glk10: NOTRUN -> [SKIP][278] +159 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk10/igt@kms_pm_lpsp@kms-lpsp.html - shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#3828]) +2 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg1: [PASS][280] -> [SKIP][281] ([i915#15073]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-dg1-14/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-17/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][282] ([i915#15073]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-10/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [PASS][283] -> [SKIP][284] ([i915#14544] / [i915#15073]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2: [PASS][285] -> [SKIP][286] ([i915#15073]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@package-g7: - shard-tglu-1: NOTRUN -> [SKIP][287] ([i915#15403]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_pm_rpm@package-g7.html * igt@kms_pm_rpm@pc8-residency: - shard-dg2: NOTRUN -> [SKIP][288] +5 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-3/igt@kms_pm_rpm@pc8-residency.html * igt@kms_pm_rpm@system-suspend-idle: - shard-dg2: [PASS][289] -> [INCOMPLETE][290] ([i915#14419]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-dg2-3/igt@kms_pm_rpm@system-suspend-idle.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-5/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#6524] / [i915#6805]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-6/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_prime@d3hot: - shard-tglu-1: NOTRUN -> [SKIP][292] ([i915#6524]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_prime@d3hot.html * igt@kms_properties@invalid-properties-atomic: - shard-dg1: [PASS][293] -> [DMESG-WARN][294] ([i915#4391] / [i915#4423]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-dg1-12/igt@kms_properties@invalid-properties-atomic.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-16/igt@kms_properties@invalid-properties-atomic.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#11520]) +3 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html - shard-rkl: NOTRUN -> [SKIP][296] ([i915#11520] / [i915#14544]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#9808]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][298] ([i915#12316]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-tglu-1: NOTRUN -> [SKIP][299] ([i915#11520]) +5 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-glk11: NOTRUN -> [SKIP][300] ([i915#11520]) +2 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk11/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html - shard-rkl: NOTRUN -> [SKIP][301] ([i915#11520]) +8 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-4/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-glk: NOTRUN -> [SKIP][302] ([i915#11520]) +8 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-snb: NOTRUN -> [SKIP][303] ([i915#11520]) +2 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-snb1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html - shard-dg1: NOTRUN -> [SKIP][304] ([i915#11520]) +4 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-18/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html - shard-tglu: NOTRUN -> [SKIP][305] ([i915#11520]) +9 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-2/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area: - shard-glk10: NOTRUN -> [SKIP][306] ([i915#11520]) +4 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk10/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][307] ([i915#9683]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-psr-basic: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#1072] / [i915#9732]) +7 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-4/igt@kms_psr@fbc-psr-basic.html * igt@kms_psr@fbc-psr-cursor-render@edp-1: - shard-mtlp: NOTRUN -> [SKIP][309] ([i915#9688]) +4 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-3/igt@kms_psr@fbc-psr-cursor-render@edp-1.html * igt@kms_psr@fbc-psr-sprite-blt: - shard-rkl: NOTRUN -> [SKIP][310] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_psr@fbc-psr-sprite-blt.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-tglu: NOTRUN -> [SKIP][311] ([i915#9732]) +12 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-3/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#9732]) +15 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][313] ([i915#1072] / [i915#9732]) +13 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-4/igt@kms_psr@psr2-cursor-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][314] ([i915#1072] / [i915#9732]) +8 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-13/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][315] ([i915#9685]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-17/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-tglu: NOTRUN -> [SKIP][316] ([i915#9685]) +2 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg2: NOTRUN -> [SKIP][317] ([i915#9685]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-glk10: NOTRUN -> [INCOMPLETE][318] ([i915#15492]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk10/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][319] ([i915#12755] / [i915#5190]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg1: NOTRUN -> [SKIP][320] ([i915#5289]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-tglu: NOTRUN -> [SKIP][321] ([i915#5289]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-mtlp: NOTRUN -> [SKIP][322] ([i915#5289]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_selftest@drm_framebuffer: - shard-glk10: NOTRUN -> [ABORT][323] ([i915#13179]) +1 other test abort [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk10/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-mtlp: [PASS][324] -> [FAIL][325] ([i915#15106]) +2 other tests fail [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-mtlp-2/igt@kms_setmode@basic@pipe-b-edp-1.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-7/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-tglu-1: NOTRUN -> [SKIP][326] ([i915#3555]) +3 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk10: NOTRUN -> [FAIL][327] ([i915#10959]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk10/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu: NOTRUN -> [SKIP][328] ([i915#8623]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][329] ([i915#12276]) +3 other tests incomplete [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk4/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html * igt@kms_vblank@ts-continuation-suspend: - shard-rkl: [PASS][330] -> [INCOMPLETE][331] ([i915#12276]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-8/igt@kms_vblank@ts-continuation-suspend.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][332] ([i915#12276]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html * igt@kms_vrr@flip-basic: - shard-rkl: NOTRUN -> [SKIP][333] ([i915#15243] / [i915#3555]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-5/igt@kms_vrr@flip-basic.html * igt@kms_vrr@negative-basic: - shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#3555] / [i915#9906]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-1/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-dg2: NOTRUN -> [SKIP][335] ([i915#9906]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-7/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-rkl: NOTRUN -> [SKIP][336] ([i915#9906]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-dg1: NOTRUN -> [SKIP][337] ([i915#9906]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-18/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-mtlp: NOTRUN -> [SKIP][338] ([i915#8808] / [i915#9906]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-7/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-rkl: NOTRUN -> [SKIP][339] ([i915#14544] / [i915#9906]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-tglu: NOTRUN -> [SKIP][340] ([i915#9906]) +2 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-2/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@perf@gen12-group-concurrent-oa-buffer-read: - shard-rkl: [PASS][341] -> [FAIL][342] ([i915#10538]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-6/igt@perf@gen12-group-concurrent-oa-buffer-read.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-7/igt@perf@gen12-group-concurrent-oa-buffer-read.html * igt@perf_pmu@most-busy-idle-check-all: - shard-mtlp: [PASS][343] -> [FAIL][344] ([i915#15520]) +1 other test fail [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-mtlp-4/igt@perf_pmu@most-busy-idle-check-all.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-5/igt@perf_pmu@most-busy-idle-check-all.html * igt@perf_pmu@rc6-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][345] ([i915#13356] / [i915#14242]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk1/igt@perf_pmu@rc6-suspend.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-rkl: NOTRUN -> [SKIP][346] ([i915#8516]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-5/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][347] ([i915#3291] / [i915#3708]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-5/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][348] ([i915#3708] / [i915#4077]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-4/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-read-hang: - shard-dg1: NOTRUN -> [SKIP][349] ([i915#3708]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-14/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-dg1: NOTRUN -> [SKIP][350] ([i915#9917]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-12/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random: - shard-tglu: NOTRUN -> [FAIL][351] ([i915#12910]) +8 other tests fail [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-5/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html #### Possible fixes #### * igt@gem_exec_big@single: - shard-tglu: [ABORT][352] ([i915#11713]) -> [PASS][353] [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-tglu-6/igt@gem_exec_big@single.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-tglu-3/igt@gem_exec_big@single.html * igt@gem_lmem_swapping@smem-oom: - shard-dg2: [FAIL][354] ([i915#15734]) -> [PASS][355] [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-dg2-6/igt@gem_lmem_swapping@smem-oom.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-6/igt@gem_lmem_swapping@smem-oom.html - shard-dg1: [FAIL][356] ([i915#15734]) -> [PASS][357] [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-dg1-16/igt@gem_lmem_swapping@smem-oom.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-12/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [CRASH][358] ([i915#5493]) -> [PASS][359] [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html - shard-dg1: [CRASH][360] ([i915#5493]) -> [PASS][361] [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_softpin@noreloc-s3: - shard-rkl: [INCOMPLETE][362] ([i915#13809]) -> [PASS][363] [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-3/igt@gem_softpin@noreloc-s3.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-5/igt@gem_softpin@noreloc-s3.html * igt@i915_module_load@reload-no-display: - shard-dg1: [DMESG-WARN][364] ([i915#13029] / [i915#14545]) -> [PASS][365] [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-dg1-16/igt@i915_module_load@reload-no-display.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-12/igt@i915_module_load@reload-no-display.html * igt@i915_module_load@resize-bar: - shard-dg2: [DMESG-WARN][366] ([i915#14545]) -> [PASS][367] [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-dg2-3/igt@i915_module_load@resize-bar.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-8/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [INCOMPLETE][368] ([i915#13356] / [i915#13820]) -> [PASS][369] +1 other test pass [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-dg2-4/igt@i915_pm_freq_api@freq-suspend@gt0.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-1/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rpm@system-suspend: - shard-glk: [INCOMPLETE][370] ([i915#13356]) -> [PASS][371] [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-glk5/igt@i915_pm_rpm@system-suspend.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk2/igt@i915_pm_rpm@system-suspend.html - shard-rkl: [INCOMPLETE][372] ([i915#13356]) -> [PASS][373] [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-6/igt@i915_pm_rpm@system-suspend.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-3/igt@i915_pm_rpm@system-suspend.html * igt@i915_selftest@live: - shard-mtlp: [DMESG-FAIL][374] ([i915#12061] / [i915#15560]) -> [PASS][375] [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-mtlp-7/igt@i915_selftest@live.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-8/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [DMESG-FAIL][376] ([i915#12061]) -> [PASS][377] [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-mtlp-7/igt@i915_selftest@live@workarounds.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-8/igt@i915_selftest@live@workarounds.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [SKIP][378] ([i915#15073]) -> [PASS][379] [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-dg2-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [SKIP][380] ([i915#15073]) -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg1: [SKIP][382] ([i915#15073]) -> [PASS][383] [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-dg1-16/igt@kms_pm_rpm@modeset-lpsp-stress.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@perf_pmu@semaphore-busy@vcs0: - shard-mtlp: [FAIL][384] ([i915#4349]) -> [PASS][385] +3 other tests pass [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-mtlp-2/igt@perf_pmu@semaphore-busy@vcs0.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-mtlp-8/igt@perf_pmu@semaphore-busy@vcs0.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-dg1: [FAIL][386] ([i915#4349]) -> [PASS][387] +3 other tests pass [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-dg1-18/igt@perf_pmu@semaphore-busy@vcs1.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-18/igt@perf_pmu@semaphore-busy@vcs1.html * igt@perf_pmu@semaphore-busy@vecs0: - shard-dg2: [FAIL][388] ([i915#4349]) -> [PASS][389] +5 other tests pass [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-dg2-3/igt@perf_pmu@semaphore-busy@vecs0.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-7/igt@perf_pmu@semaphore-busy@vecs0.html #### Warnings #### * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: [SKIP][390] ([i915#6335]) -> [SKIP][391] ([i915#14544] / [i915#6335]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-4/igt@gem_create@create-ext-cpu-access-sanity-check.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: [SKIP][392] ([i915#14544] / [i915#4525]) -> [SKIP][393] ([i915#4525]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-submit-fence.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-2/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_reloc@basic-wc-cpu: - shard-rkl: [SKIP][394] ([i915#14544] / [i915#3281]) -> [SKIP][395] ([i915#3281]) +2 other tests skip [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-6/igt@gem_exec_reloc@basic-wc-cpu.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-2/igt@gem_exec_reloc@basic-wc-cpu.html * igt@gem_huc_copy@huc-copy: - shard-rkl: [SKIP][396] ([i915#2190]) -> [SKIP][397] ([i915#14544] / [i915#2190]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-1/igt@gem_huc_copy@huc-copy.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: [SKIP][398] ([i915#14544] / [i915#4613]) -> [SKIP][399] ([i915#4613]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_partial_pwrite_pread@reads: - shard-rkl: [SKIP][400] ([i915#3282]) -> [SKIP][401] ([i915#14544] / [i915#3282]) +2 other tests skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-3/igt@gem_partial_pwrite_pread@reads.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@gem_partial_pwrite_pread@reads.html * igt@gem_readwrite@write-bad-handle: - shard-rkl: [SKIP][402] ([i915#14544] / [i915#3282]) -> [SKIP][403] ([i915#3282]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-6/igt@gem_readwrite@write-bad-handle.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-3/igt@gem_readwrite@write-bad-handle.html * igt@gem_userptr_blits@coherency-unsync: - shard-rkl: [SKIP][404] ([i915#3297]) -> [SKIP][405] ([i915#14544] / [i915#3297]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-5/igt@gem_userptr_blits@coherency-unsync.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@gem_userptr_blits@coherency-unsync.html * igt@gen9_exec_parse@bb-start-cmd: - shard-rkl: [SKIP][406] ([i915#14544] / [i915#2527]) -> [SKIP][407] ([i915#2527]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-6/igt@gen9_exec_parse@bb-start-cmd.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-5/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@bb-start-param: - shard-rkl: [SKIP][408] ([i915#2527]) -> [SKIP][409] ([i915#14544] / [i915#2527]) +1 other test skip [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-5/igt@gen9_exec_parse@bb-start-param.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@gen9_exec_parse@bb-start-param.html * igt@i915_pm_freq_api@freq-reset: - shard-rkl: [SKIP][410] ([i915#14544] / [i915#8399]) -> [SKIP][411] ([i915#8399]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-5/igt@i915_pm_freq_api@freq-reset.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-rkl: [SKIP][412] ([i915#14544] / [i915#5286]) -> [SKIP][413] ([i915#5286]) +1 other test skip [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-7/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-rkl: [SKIP][414] ([i915#5286]) -> [SKIP][415] ([i915#14544] / [i915#5286]) +1 other test skip [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-dg1: [SKIP][416] ([i915#3638]) -> [SKIP][417] ([i915#3638] / [i915#4423]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-dg1-16/igt@kms_big_fb@linear-32bpp-rotate-270.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-19/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-rkl: [SKIP][418] ([i915#14544] / [i915#3638]) -> [SKIP][419] ([i915#3638]) +1 other test skip [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-90.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][420] ([i915#3638]) -> [SKIP][421] ([i915#14544] / [i915#3638]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-1/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-rkl: [SKIP][422] ([i915#14544]) -> [SKIP][423] +2 other tests skip [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: [SKIP][424] ([i915#12313]) -> [SKIP][425] ([i915#12313] / [i915#14544]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-3/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs: - shard-rkl: [SKIP][426] ([i915#14098] / [i915#6095]) -> [SKIP][427] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][428] ([i915#6095]) -> [SKIP][429] ([i915#14544] / [i915#6095]) +3 other tests skip [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][430] ([i915#14544] / [i915#6095]) -> [SKIP][431] ([i915#6095]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-2.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][432] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][433] ([i915#14098] / [i915#6095]) +4 other tests skip [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-rkl: [SKIP][434] ([i915#11151] / [i915#7828]) -> [SKIP][435] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-2/igt@kms_chamelium_frames@dp-frame-dump.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_chamelium_frames@hdmi-crc-single: - shard-rkl: [SKIP][436] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][437] ([i915#11151] / [i915#7828]) +1 other test skip [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-single.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-4/igt@kms_chamelium_frames@hdmi-crc-single.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-rkl: [SKIP][438] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][439] ([i915#15330] / [i915#3116]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-rkl: [SKIP][440] ([i915#15330]) -> [SKIP][441] ([i915#14544] / [i915#15330]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-8/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][442] ([i915#6944] / [i915#9424]) -> [SKIP][443] ([i915#9433]) [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-dg1-18/igt@kms_content_protection@mei-interface.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-12/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-rkl: [SKIP][444] ([i915#3555]) -> [SKIP][445] ([i915#14544] / [i915#3555]) +1 other test skip [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-max-size.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-rkl: [SKIP][446] -> [SKIP][447] ([i915#14544]) +10 other tests skip [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-3/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_dp_aux_dev: - shard-rkl: [SKIP][448] ([i915#1257]) -> [SKIP][449] ([i915#1257] / [i915#14544]) [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-2/igt@kms_dp_aux_dev.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_dp_aux_dev.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-rkl: [SKIP][450] ([i915#13707]) -> [SKIP][451] ([i915#13707] / [i915#14544]) [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-rkl: [SKIP][452] ([i915#9934]) -> [SKIP][453] ([i915#14544] / [i915#9934]) +2 other tests skip [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-2/igt@kms_flip@2x-blocking-wf_vblank.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-fences: - shard-rkl: [SKIP][454] ([i915#14544] / [i915#9934]) -> [SKIP][455] ([i915#9934]) +2 other tests skip [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-6/igt@kms_flip@2x-flip-vs-fences.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-5/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-snb: [TIMEOUT][456] ([i915#14033]) -> [TIMEOUT][457] ([i915#14033] / [i915#14350]) [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-snb1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-snb5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: [INCOMPLETE][458] ([i915#12314] / [i915#12745] / [i915#4839]) -> [INCOMPLETE][459] ([i915#12745] / [i915#4839]) [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-glk8/igt@kms_flip@flip-vs-suspend-interruptible.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk6/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk: [INCOMPLETE][460] ([i915#12314] / [i915#12745]) -> [INCOMPLETE][461] ([i915#12745]) [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-glk8/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-glk6/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg1: [SKIP][462] ([i915#15643] / [i915#4423]) -> [SKIP][463] ([i915#15643]) [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-rkl: [SKIP][464] ([i915#14544] / [i915#15643]) -> [SKIP][465] ([i915#15643]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-rkl: [SKIP][466] ([i915#15643]) -> [SKIP][467] ([i915#14544] / [i915#15643]) [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-rkl: [SKIP][468] ([i915#1825]) -> [SKIP][469] ([i915#14544] / [i915#1825]) +13 other tests skip [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-dg1: [SKIP][470] ([i915#4423]) -> [SKIP][471] [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: [SKIP][472] ([i915#5439]) -> [SKIP][473] ([i915#14544] / [i915#5439]) [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-tiling-4.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite: - shard-rkl: [SKIP][474] ([i915#14544] / [i915#15102]) -> [SKIP][475] ([i915#15102]) [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render: - shard-rkl: [SKIP][476] ([i915#15102]) -> [SKIP][477] ([i915#14544] / [i915#15102]) [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: [SKIP][478] ([i915#15102] / [i915#3458]) -> [SKIP][479] ([i915#10433] / [i915#15102] / [i915#3458]) [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: [SKIP][480] ([i915#14544] / [i915#1825]) -> [SKIP][481] ([i915#1825]) +11 other tests skip [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite: - shard-dg2: [SKIP][482] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][483] ([i915#15102] / [i915#3458]) [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-rkl: [SKIP][484] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][485] ([i915#15102] / [i915#3023]) +3 other tests skip [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-rkl: [SKIP][486] ([i915#15102] / [i915#3023]) -> [SKIP][487] ([i915#14544] / [i915#15102] / [i915#3023]) +6 other tests skip [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-suspend.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdr@invalid-hdr: - shard-rkl: [SKIP][488] ([i915#3555] / [i915#8228]) -> [SKIP][489] ([i915#14544] / [i915#3555] / [i915#8228]) [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-8/igt@kms_hdr@invalid-hdr.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@basic-ultra-joiner: - shard-rkl: [SKIP][490] ([i915#14544] / [i915#15458]) -> [SKIP][491] ([i915#15458]) [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-2/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][492] ([i915#1839] / [i915#4816]) -> [SKIP][493] ([i915#14544] / [i915#1839] / [i915#4816]) [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping: - shard-rkl: [SKIP][494] ([i915#15709]) -> [SKIP][495] ([i915#14544] / [i915#15709]) +1 other test skip [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-rkl: [SKIP][496] ([i915#14544] / [i915#15709]) -> [SKIP][497] ([i915#15709]) [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: [SKIP][498] ([i915#9685]) -> [SKIP][499] ([i915#14544] / [i915#9685]) [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-4/igt@kms_pm_dc@dc5-psr.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][500] ([i915#14544] / [i915#9340]) -> [SKIP][501] ([i915#3828]) [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-8/igt@kms_pm_lpsp@kms-lpsp.html - shard-dg1: [SKIP][502] ([i915#9340]) -> [SKIP][503] ([i915#3828]) [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-dg1-16/igt@kms_pm_lpsp@kms-lpsp.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-dg1-14/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area: - shard-rkl: [SKIP][504] ([i915#11520] / [i915#14544]) -> [SKIP][505] ([i915#11520]) +1 other test skip [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-6/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-7/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-rkl: [SKIP][506] ([i915#11520]) -> [SKIP][507] ([i915#11520] / [i915#14544]) [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-8/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: [SKIP][508] ([i915#14544] / [i915#9683]) -> [SKIP][509] ([i915#9683]) [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-7/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-rkl: [SKIP][510] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][511] ([i915#1072] / [i915#9732]) +5 other tests skip [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-6/igt@kms_psr@fbc-psr2-primary-blt.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-5/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@pr-primary-mmap-cpu: - shard-rkl: [SKIP][512] ([i915#1072] / [i915#9732]) -> [SKIP][513] ([i915#1072] / [i915#14544] / [i915#9732]) +5 other tests skip [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-3/igt@kms_psr@pr-primary-mmap-cpu.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-6/igt@kms_psr@pr-primary-mmap-cpu.html * igt@prime_vgem@basic-write: - shard-rkl: [SKIP][514] ([i915#14544] / [i915#3291] / [i915#3708]) -> [SKIP][515] ([i915#3291] / [i915#3708]) [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18101/shard-rkl-6/igt@prime_vgem@basic-write.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/shard-rkl-8/igt@prime_vgem@basic-write.html [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527 [i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713 [i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13729]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13729 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809 [i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820 [i915#13821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13821 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14242 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106 [i915#15152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15152 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389 [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403 [i915#15454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15454 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492 [i915#15520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15520 [i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15734]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15734 [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8782 -> IGTPW_14684 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18101: 0173caacd7e64feb97afe9bd5dcd51ad20c9f77a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14684: 1aecf7c6e581e7a2fb988d8917a4e821e2ef645c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8782: eac3b04d1f76b82ac3a183fb293c44e9185d8dba @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14684/index.html [-- Attachment #2: Type: text/html, Size: 173872 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-03-07 21:22 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-03-05 18:54 [PATCH v4 i-g-t] lib/intel_pat: Cache PAT config for unprivileged processes himanshu.girotra 2026-03-05 20:39 ` Dixit, Ashutosh 2026-03-07 21:22 ` Dixit, Ashutosh 2026-03-06 0:44 ` ✓ i915.CI.BAT: success for lib/intel_pat: Cache PAT config for unprivileged processes (rev4) Patchwork 2026-03-06 1:04 ` ✓ Xe.CI.BAT: " Patchwork 2026-03-06 19:53 ` ✓ Xe.CI.FULL: " Patchwork 2026-03-07 4:53 ` ✗ i915.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox