* [Intel-gfx] [PATCH] drm/i915/debugfs: add noreclaim annotations
@ 2021-12-13 12:55 Matthew Auld
2021-12-13 12:58 ` Thomas Hellström
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Matthew Auld @ 2021-12-13 12:55 UTC (permalink / raw)
To: intel-gfx; +Cc: Thomas Hellström, dri-devel
We have a debugfs hook to directly call into i915_gem_shrink() with the
fs_reclaim acquire annotations to simulate hitting direct reclaim.
However we should also annotate this with memalloc_noreclaim, which will
set PF_MEMALLOC for us on the current context, to ensure we can't
re-enter direct reclaim(just like "real" direct reclaim does). This is
an issue now that ttm_bo_validate could potentially be called here,
which might try to allocate a tiny amount of memory to hold the new
ttm_resource struct, as per the below splat:
[ 2507.913844] WARNING: possible recursive locking detected
[ 2507.913848] 5.16.0-rc4+ #5 Tainted: G U
[ 2507.913853] --------------------------------------------
[ 2507.913856] gem_exec_captur/1825 is trying to acquire lock:
[ 2507.913861] ffffffffb9df2500 (fs_reclaim){..}-{0:0}, at: kmem_cache_alloc_trace+0x30/0x390
[ 2507.913875]
but task is already holding lock:
[ 2507.913879] ffffffffb9df2500 (fs_reclaim){..}-{0:0}, at: i915_drop_caches_set+0x1c9/0x2c0 [i915]
[ 2507.913962]
other info that might help us debug this:
[ 2507.913966] Possible unsafe locking scenario:
[ 2507.913970] CPU0
[ 2507.913973] ----
[ 2507.913975] lock(fs_reclaim);
[ 2507.913979] lock(fs_reclaim);
[ 2507.913983]
DEADLOCK ***
[ 2507.913988] May be due to missing lock nesting notation
[ 2507.913992] 4 locks held by gem_exec_captur/1825:
[ 2507.913997] #0: ffff888101f6e460 (sb_writers#17){..}-{0:0}, at: ksys_write+0xe9/0x1b0
[ 2507.914009] #1: ffff88812d99e2b8 (&attr->mutex){..}-{3:3}, at: simple_attr_write+0xbb/0x220
[ 2507.914019] #2: ffffffffb9df2500 (fs_reclaim){..}-{0:0}, at: i915_drop_caches_set+0x1c9/0x2c0 [i915]
[ 2507.914085] #3: ffff8881b4a11b20 (reservation_ww_class_mutex){..}-{3:3}, at: ww_mutex_trylock+0x43f/0xcb0
[ 2507.914097]
stack backtrace:
[ 2507.914102] CPU: 0 PID: 1825 Comm: gem_exec_captur Tainted: G U 5.16.0-rc4+ #5
[ 2507.914109] Hardware name: ASUS System Product Name/PRIME B560M-A AC, BIOS 0403 01/26/2021
[ 2507.914115] Call Trace:
[ 2507.914118] <TASK>
[ 2507.914121] dump_stack_lvl+0x59/0x73
[ 2507.914128] __lock_acquire.cold+0x227/0x3b0
[ 2507.914135] ? lockdep_hardirqs_on_prepare+0x410/0x410
[ 2507.914141] ? __lock_acquire+0x23ca/0x5000
[ 2507.914147] lock_acquire+0x19c/0x4b0
[ 2507.914152] ? kmem_cache_alloc_trace+0x30/0x390
[ 2507.914157] ? lock_release+0x690/0x690
[ 2507.914163] ? lock_is_held_type+0xe4/0x140
[ 2507.914170] ? ttm_sys_man_alloc+0x47/0xb0 [ttm]
[ 2507.914178] fs_reclaim_acquire+0x11a/0x160
[ 2507.914183] ? kmem_cache_alloc_trace+0x30/0x390
[ 2507.914188] kmem_cache_alloc_trace+0x30/0x390
[ 2507.914192] ? lock_release+0x37f/0x690
[ 2507.914198] ttm_sys_man_alloc+0x47/0xb0 [ttm]
[ 2507.914206] ttm_bo_pipeline_gutting+0x70/0x440 [ttm]
[ 2507.914214] ? ttm_mem_io_free+0x150/0x150 [ttm]
[ 2507.914221] ? lock_is_held_type+0xe4/0x140
[ 2507.914227] ttm_bo_validate+0x2fb/0x370 [ttm]
[ 2507.914234] ? lock_acquire+0x19c/0x4b0
[ 2507.914239] ? ttm_bo_bounce_temp_buffer.constprop.0+0xf0/0xf0 [ttm]
[ 2507.914246] ? lock_acquire+0x131/0x4b0
[ 2507.914251] ? lock_is_held_type+0xe4/0x140
[ 2507.914257] i915_ttm_shrinker_release_pages+0x2bc/0x490 [i915]
[ 2507.914339] ? i915_ttm_swap_notify+0x130/0x130 [i915]
[ 2507.914429] ? i915_gem_object_release_mmap_offset+0x32/0x250 [i915]
[ 2507.914529] i915_gem_shrink+0xb14/0x1290 [i915]
[ 2507.914616] ? ___i915_gem_object_make_shrinkable+0x3e0/0x3e0 [i915]
[ 2507.914698] ? _raw_spin_unlock_irqrestore+0x2d/0x60
[ 2507.914705] ? track_intel_runtime_pm_wakeref+0x180/0x230 [i915]
[ 2507.914777] i915_gem_shrink_all+0x4b/0x70 [i915]
[ 2507.914857] i915_drop_caches_set+0x227/0x2c0 [i915]
Reported-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Signed-off-by: Matthew Auld <matthew.auld@intel.com>
---
drivers/gpu/drm/i915/i915_debugfs.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c
index bafb902269de..359d8ffc6e36 100644
--- a/drivers/gpu/drm/i915/i915_debugfs.c
+++ b/drivers/gpu/drm/i915/i915_debugfs.c
@@ -666,6 +666,7 @@ static int
i915_drop_caches_set(void *data, u64 val)
{
struct drm_i915_private *i915 = data;
+ unsigned int flags;
int ret;
DRM_DEBUG("Dropping caches: 0x%08llx [0x%08llx]\n",
@@ -676,6 +677,7 @@ i915_drop_caches_set(void *data, u64 val)
return ret;
fs_reclaim_acquire(GFP_KERNEL);
+ flags = memalloc_noreclaim_save();
if (val & DROP_BOUND)
i915_gem_shrink(NULL, i915, LONG_MAX, NULL, I915_SHRINK_BOUND);
@@ -684,6 +686,7 @@ i915_drop_caches_set(void *data, u64 val)
if (val & DROP_SHRINK_ALL)
i915_gem_shrink_all(i915);
+ memalloc_noreclaim_restore(flags);
fs_reclaim_release(GFP_KERNEL);
if (val & DROP_RCU)
--
2.31.1
^ permalink raw reply related [flat|nested] 9+ messages in thread* Re: [Intel-gfx] [PATCH] drm/i915/debugfs: add noreclaim annotations 2021-12-13 12:55 [Intel-gfx] [PATCH] drm/i915/debugfs: add noreclaim annotations Matthew Auld @ 2021-12-13 12:58 ` Thomas Hellström 2021-12-13 18:15 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 9+ messages in thread From: Thomas Hellström @ 2021-12-13 12:58 UTC (permalink / raw) To: Matthew Auld, intel-gfx; +Cc: dri-devel On 12/13/21 13:55, Matthew Auld wrote: > We have a debugfs hook to directly call into i915_gem_shrink() with the > fs_reclaim acquire annotations to simulate hitting direct reclaim. > However we should also annotate this with memalloc_noreclaim, which will > set PF_MEMALLOC for us on the current context, to ensure we can't > re-enter direct reclaim(just like "real" direct reclaim does). This is > an issue now that ttm_bo_validate could potentially be called here, > which might try to allocate a tiny amount of memory to hold the new > ttm_resource struct, as per the below splat: > > [ 2507.913844] WARNING: possible recursive locking detected > [ 2507.913848] 5.16.0-rc4+ #5 Tainted: G U > [ 2507.913853] -------------------------------------------- > [ 2507.913856] gem_exec_captur/1825 is trying to acquire lock: > [ 2507.913861] ffffffffb9df2500 (fs_reclaim){..}-{0:0}, at: kmem_cache_alloc_trace+0x30/0x390 > [ 2507.913875] > but task is already holding lock: > [ 2507.913879] ffffffffb9df2500 (fs_reclaim){..}-{0:0}, at: i915_drop_caches_set+0x1c9/0x2c0 [i915] > [ 2507.913962] > other info that might help us debug this: > [ 2507.913966] Possible unsafe locking scenario: > > [ 2507.913970] CPU0 > [ 2507.913973] ---- > [ 2507.913975] lock(fs_reclaim); > [ 2507.913979] lock(fs_reclaim); > [ 2507.913983] > > DEADLOCK *** > > [ 2507.913988] May be due to missing lock nesting notation > > [ 2507.913992] 4 locks held by gem_exec_captur/1825: > [ 2507.913997] #0: ffff888101f6e460 (sb_writers#17){..}-{0:0}, at: ksys_write+0xe9/0x1b0 > [ 2507.914009] #1: ffff88812d99e2b8 (&attr->mutex){..}-{3:3}, at: simple_attr_write+0xbb/0x220 > [ 2507.914019] #2: ffffffffb9df2500 (fs_reclaim){..}-{0:0}, at: i915_drop_caches_set+0x1c9/0x2c0 [i915] > [ 2507.914085] #3: ffff8881b4a11b20 (reservation_ww_class_mutex){..}-{3:3}, at: ww_mutex_trylock+0x43f/0xcb0 > [ 2507.914097] > stack backtrace: > [ 2507.914102] CPU: 0 PID: 1825 Comm: gem_exec_captur Tainted: G U 5.16.0-rc4+ #5 > [ 2507.914109] Hardware name: ASUS System Product Name/PRIME B560M-A AC, BIOS 0403 01/26/2021 > [ 2507.914115] Call Trace: > [ 2507.914118] <TASK> > [ 2507.914121] dump_stack_lvl+0x59/0x73 > [ 2507.914128] __lock_acquire.cold+0x227/0x3b0 > [ 2507.914135] ? lockdep_hardirqs_on_prepare+0x410/0x410 > [ 2507.914141] ? __lock_acquire+0x23ca/0x5000 > [ 2507.914147] lock_acquire+0x19c/0x4b0 > [ 2507.914152] ? kmem_cache_alloc_trace+0x30/0x390 > [ 2507.914157] ? lock_release+0x690/0x690 > [ 2507.914163] ? lock_is_held_type+0xe4/0x140 > [ 2507.914170] ? ttm_sys_man_alloc+0x47/0xb0 [ttm] > [ 2507.914178] fs_reclaim_acquire+0x11a/0x160 > [ 2507.914183] ? kmem_cache_alloc_trace+0x30/0x390 > [ 2507.914188] kmem_cache_alloc_trace+0x30/0x390 > [ 2507.914192] ? lock_release+0x37f/0x690 > [ 2507.914198] ttm_sys_man_alloc+0x47/0xb0 [ttm] > [ 2507.914206] ttm_bo_pipeline_gutting+0x70/0x440 [ttm] > [ 2507.914214] ? ttm_mem_io_free+0x150/0x150 [ttm] > [ 2507.914221] ? lock_is_held_type+0xe4/0x140 > [ 2507.914227] ttm_bo_validate+0x2fb/0x370 [ttm] > [ 2507.914234] ? lock_acquire+0x19c/0x4b0 > [ 2507.914239] ? ttm_bo_bounce_temp_buffer.constprop.0+0xf0/0xf0 [ttm] > [ 2507.914246] ? lock_acquire+0x131/0x4b0 > [ 2507.914251] ? lock_is_held_type+0xe4/0x140 > [ 2507.914257] i915_ttm_shrinker_release_pages+0x2bc/0x490 [i915] > [ 2507.914339] ? i915_ttm_swap_notify+0x130/0x130 [i915] > [ 2507.914429] ? i915_gem_object_release_mmap_offset+0x32/0x250 [i915] > [ 2507.914529] i915_gem_shrink+0xb14/0x1290 [i915] > [ 2507.914616] ? ___i915_gem_object_make_shrinkable+0x3e0/0x3e0 [i915] > [ 2507.914698] ? _raw_spin_unlock_irqrestore+0x2d/0x60 > [ 2507.914705] ? track_intel_runtime_pm_wakeref+0x180/0x230 [i915] > [ 2507.914777] i915_gem_shrink_all+0x4b/0x70 [i915] > [ 2507.914857] i915_drop_caches_set+0x227/0x2c0 [i915] > > Reported-by: Thomas Hellström <thomas.hellstrom@linux.intel.com> > Signed-off-by: Matthew Auld <matthew.auld@intel.com> > --- > drivers/gpu/drm/i915/i915_debugfs.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c > index bafb902269de..359d8ffc6e36 100644 > --- a/drivers/gpu/drm/i915/i915_debugfs.c > +++ b/drivers/gpu/drm/i915/i915_debugfs.c > @@ -666,6 +666,7 @@ static int > i915_drop_caches_set(void *data, u64 val) > { > struct drm_i915_private *i915 = data; > + unsigned int flags; > int ret; > > DRM_DEBUG("Dropping caches: 0x%08llx [0x%08llx]\n", > @@ -676,6 +677,7 @@ i915_drop_caches_set(void *data, u64 val) > return ret; > > fs_reclaim_acquire(GFP_KERNEL); > + flags = memalloc_noreclaim_save(); > if (val & DROP_BOUND) > i915_gem_shrink(NULL, i915, LONG_MAX, NULL, I915_SHRINK_BOUND); > > @@ -684,6 +686,7 @@ i915_drop_caches_set(void *data, u64 val) > > if (val & DROP_SHRINK_ALL) > i915_gem_shrink_all(i915); > + memalloc_noreclaim_restore(flags); > fs_reclaim_release(GFP_KERNEL); > > if (val & DROP_RCU) Reviewed-by: Thomas Hellström <thomas.hellstrom@linux.intel.com> ^ permalink raw reply [flat|nested] 9+ messages in thread
* [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/debugfs: add noreclaim annotations 2021-12-13 12:55 [Intel-gfx] [PATCH] drm/i915/debugfs: add noreclaim annotations Matthew Auld 2021-12-13 12:58 ` Thomas Hellström @ 2021-12-13 18:15 ` Patchwork 2021-12-14 9:24 ` Matthew Auld 2021-12-13 21:32 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/debugfs: add noreclaim annotations (rev2) Patchwork ` (2 subsequent siblings) 4 siblings, 1 reply; 9+ messages in thread From: Patchwork @ 2021-12-13 18:15 UTC (permalink / raw) To: Matthew Auld; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 5956 bytes --] == Series Details == Series: drm/i915/debugfs: add noreclaim annotations URL : https://patchwork.freedesktop.org/series/97966/ State : failure == Summary == CI Bug Log - changes from CI_DRM_10995 -> Patchwork_21838 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_21838 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_21838, please notify your bug team 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/Patchwork_21838/index.html Participating hosts (40 -> 33) ------------------------------ Missing (7): bat-dg1-6 fi-bsw-cyan bat-adlp-6 bat-adlp-4 fi-ctg-p8600 fi-pnv-d510 fi-bdw-samus Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_21838: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@gem: - fi-blb-e6850: [PASS][1] -> [DMESG-FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10995/fi-blb-e6850/igt@i915_selftest@live@gem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21838/fi-blb-e6850/igt@i915_selftest@live@gem.html Known issues ------------ Here are the changes found in Patchwork_21838 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@amdgpu/amd_basic@cs-gfx: - fi-rkl-guc: NOTRUN -> [SKIP][3] ([fdo#109315]) +17 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21838/fi-rkl-guc/igt@amdgpu/amd_basic@cs-gfx.html * igt@amdgpu/amd_basic@semaphore: - fi-bdw-5557u: NOTRUN -> [SKIP][4] ([fdo#109271]) +31 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21838/fi-bdw-5557u/igt@amdgpu/amd_basic@semaphore.html * igt@amdgpu/amd_cs_nop@sync-fork-gfx0: - fi-skl-6600u: NOTRUN -> [SKIP][5] ([fdo#109271]) +21 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21838/fi-skl-6600u/igt@amdgpu/amd_cs_nop@sync-fork-gfx0.html * igt@gem_huc_copy@huc-copy: - fi-skl-6600u: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#2190]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21838/fi-skl-6600u/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@verify-random: - fi-skl-6600u: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#4613]) +3 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21838/fi-skl-6600u/igt@gem_lmem_swapping@verify-random.html * igt@kms_chamelium@dp-crc-fast: - fi-bdw-5557u: NOTRUN -> [SKIP][8] ([fdo#109271] / [fdo#111827]) +8 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21838/fi-bdw-5557u/igt@kms_chamelium@dp-crc-fast.html * igt@kms_chamelium@vga-edid-read: - fi-skl-6600u: NOTRUN -> [SKIP][9] ([fdo#109271] / [fdo#111827]) +8 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21838/fi-skl-6600u/igt@kms_chamelium@vga-edid-read.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: - fi-skl-6600u: NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#533]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21838/fi-skl-6600u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html * igt@runner@aborted: - fi-blb-e6850: NOTRUN -> [FAIL][11] ([fdo#109271] / [i915#2403] / [i915#4312]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21838/fi-blb-e6850/igt@runner@aborted.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s3: - fi-bdw-5557u: [INCOMPLETE][12] ([i915#146]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10995/fi-bdw-5557u/igt@gem_exec_suspend@basic-s3.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21838/fi-bdw-5557u/igt@gem_exec_suspend@basic-s3.html * igt@gem_flink_basic@bad-flink: - fi-skl-6600u: [INCOMPLETE][14] ([i915#198]) -> [PASS][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10995/fi-skl-6600u/igt@gem_flink_basic@bad-flink.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21838/fi-skl-6600u/igt@gem_flink_basic@bad-flink.html * igt@i915_selftest@live@workarounds: - fi-rkl-guc: [INCOMPLETE][16] -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10995/fi-rkl-guc/igt@i915_selftest@live@workarounds.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21838/fi-rkl-guc/igt@i915_selftest@live@workarounds.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#146]: https://gitlab.freedesktop.org/drm/intel/issues/146 [i915#198]: https://gitlab.freedesktop.org/drm/intel/issues/198 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2403]: https://gitlab.freedesktop.org/drm/intel/issues/2403 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 Build changes ------------- * Linux: CI_DRM_10995 -> Patchwork_21838 CI-20190529: 20190529 CI_DRM_10995: 9ed632ca6db2fb2c6ae01f833fd825114bce97d5 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_6307: be84fe4f151bc092e068cab5cd0cd19c34948b40 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_21838: 98e6b86a912b39c6f8d9d748e6f531be585ef1e0 @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == 98e6b86a912b drm/i915/debugfs: add noreclaim annotations == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21838/index.html [-- Attachment #2: Type: text/html, Size: 7417 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/debugfs: add noreclaim annotations 2021-12-13 18:15 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for " Patchwork @ 2021-12-14 9:24 ` Matthew Auld 0 siblings, 0 replies; 9+ messages in thread From: Matthew Auld @ 2021-12-14 9:24 UTC (permalink / raw) To: intel-gfx, Vudum, Lakshminarayana On 13/12/2021 18:15, Patchwork wrote: > *Patch Details* > *Series:* drm/i915/debugfs: add noreclaim annotations > *URL:* https://patchwork.freedesktop.org/series/97966/ > <https://patchwork.freedesktop.org/series/97966/> > *State:* failure > *Details:* > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21838/index.html > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21838/index.html> > > > CI Bug Log - changes from CI_DRM_10995 -> Patchwork_21838 > > > Summary > > *FAILURE* > > Serious unknown changes coming with Patchwork_21838 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in Patchwork_21838, please notify your bug team 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/Patchwork_21838/index.html > > > Participating hosts (40 -> 33) > > Missing (7): bat-dg1-6 fi-bsw-cyan bat-adlp-6 bat-adlp-4 fi-ctg-p8600 > fi-pnv-d510 fi-bdw-samus > > > Possible new issues > > Here are the unknown changes that may have been introduced in > Patchwork_21838: > > > IGT changes > > > Possible regressions > > * igt@i915_selftest@live@gem: > o fi-blb-e6850: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10995/fi-blb-e6850/igt@i915_selftest@live@gem.html> > -> DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21838/fi-blb-e6850/igt@i915_selftest@live@gem.html> Unrelated, looks like an object leaked. > > > Known issues > > Here are the changes found in Patchwork_21838 that come from known issues: > > > IGT changes > > > Issues hit > > * > > igt@amdgpu/amd_basic@cs-gfx: > > o fi-rkl-guc: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21838/fi-rkl-guc/igt@amdgpu/amd_basic@cs-gfx.html> > (fdo#109315 > <https://bugs.freedesktop.org/show_bug.cgi?id=109315>) +17 > similar issues > * > > igt@amdgpu/amd_basic@semaphore: > > o fi-bdw-5557u: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21838/fi-bdw-5557u/igt@amdgpu/amd_basic@semaphore.html> > (fdo#109271 > <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +31 > similar issues > * > > igt@amdgpu/amd_cs_nop@sync-fork-gfx0: > > o fi-skl-6600u: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21838/fi-skl-6600u/igt@amdgpu/amd_cs_nop@sync-fork-gfx0.html> > (fdo#109271 > <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +21 > similar issues > * > > igt@gem_huc_copy@huc-copy: > > o fi-skl-6600u: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21838/fi-skl-6600u/igt@gem_huc_copy@huc-copy.html> > (fdo#109271 > <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#2190 <https://gitlab.freedesktop.org/drm/intel/issues/2190>) > * > > igt@gem_lmem_swapping@verify-random: > > o fi-skl-6600u: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21838/fi-skl-6600u/igt@gem_lmem_swapping@verify-random.html> > (fdo#109271 > <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#4613 > <https://gitlab.freedesktop.org/drm/intel/issues/4613>) +3 > similar issues > * > > igt@kms_chamelium@dp-crc-fast: > > o fi-bdw-5557u: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21838/fi-bdw-5557u/igt@kms_chamelium@dp-crc-fast.html> > (fdo#109271 > <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > fdo#111827 > <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +8 > similar issues > * > > igt@kms_chamelium@vga-edid-read: > > o fi-skl-6600u: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21838/fi-skl-6600u/igt@kms_chamelium@vga-edid-read.html> > (fdo#109271 > <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > fdo#111827 > <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +8 > similar issues > * > > igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: > > o fi-skl-6600u: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21838/fi-skl-6600u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html> > (fdo#109271 > <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533 > <https://gitlab.freedesktop.org/drm/intel/issues/533>) > * > > igt@runner@aborted: > > o fi-blb-e6850: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21838/fi-blb-e6850/igt@runner@aborted.html> > (fdo#109271 > <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#2403 <https://gitlab.freedesktop.org/drm/intel/issues/2403> > / i915#4312 <https://gitlab.freedesktop.org/drm/intel/issues/4312>) > > > Possible fixes > > * > > igt@gem_exec_suspend@basic-s3: > > o fi-bdw-5557u: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10995/fi-bdw-5557u/igt@gem_exec_suspend@basic-s3.html> > (i915#146 <https://gitlab.freedesktop.org/drm/intel/issues/146>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21838/fi-bdw-5557u/igt@gem_exec_suspend@basic-s3.html> > * > > igt@gem_flink_basic@bad-flink: > > o fi-skl-6600u: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10995/fi-skl-6600u/igt@gem_flink_basic@bad-flink.html> > (i915#198 <https://gitlab.freedesktop.org/drm/intel/issues/198>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21838/fi-skl-6600u/igt@gem_flink_basic@bad-flink.html> > * > > igt@i915_selftest@live@workarounds: > > o fi-rkl-guc: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10995/fi-rkl-guc/igt@i915_selftest@live@workarounds.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21838/fi-rkl-guc/igt@i915_selftest@live@workarounds.html> > > > Build changes > > * Linux: CI_DRM_10995 -> Patchwork_21838 > > CI-20190529: 20190529 > CI_DRM_10995: 9ed632ca6db2fb2c6ae01f833fd825114bce97d5 @ > git://anongit.freedesktop.org/gfx-ci/linux > IGT_6307: be84fe4f151bc092e068cab5cd0cd19c34948b40 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > Patchwork_21838: 98e6b86a912b39c6f8d9d748e6f531be585ef1e0 @ > git://anongit.freedesktop.org/gfx-ci/linux > > == Linux commits == > > 98e6b86a912b drm/i915/debugfs: add noreclaim annotations > ^ permalink raw reply [flat|nested] 9+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/debugfs: add noreclaim annotations (rev2) 2021-12-13 12:55 [Intel-gfx] [PATCH] drm/i915/debugfs: add noreclaim annotations Matthew Auld 2021-12-13 12:58 ` Thomas Hellström 2021-12-13 18:15 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for " Patchwork @ 2021-12-13 21:32 ` Patchwork 2021-12-14 4:55 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 2021-12-14 17:12 ` [Intel-gfx] ✓ Fi.CI.IGT: success " Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2021-12-13 21:32 UTC (permalink / raw) To: Matthew Auld; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 3351 bytes --] == Series Details == Series: drm/i915/debugfs: add noreclaim annotations (rev2) URL : https://patchwork.freedesktop.org/series/97966/ State : success == Summary == CI Bug Log - changes from CI_DRM_10996 -> Patchwork_21842 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/index.html Participating hosts (42 -> 33) ------------------------------ Missing (9): bat-dg1-6 fi-tgl-u2 fi-bsw-cyan bat-adlp-6 bat-adlp-4 fi-ctg-p8600 fi-pnv-d510 bat-jsl-2 fi-bdw-samus Known issues ------------ Here are the changes found in Patchwork_21842 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@amdgpu/amd_basic@cs-gfx: - fi-hsw-4770: NOTRUN -> [SKIP][1] ([fdo#109271] / [fdo#109315]) +17 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/fi-hsw-4770/igt@amdgpu/amd_basic@cs-gfx.html * igt@gem_exec_suspend@basic-s3: - fi-skl-6600u: [PASS][2] -> [INCOMPLETE][3] ([i915#4547]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/fi-skl-6600u/igt@gem_exec_suspend@basic-s3.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/fi-skl-6600u/igt@gem_exec_suspend@basic-s3.html * igt@i915_selftest@live@hangcheck: - fi-snb-2600: [PASS][4] -> [INCOMPLETE][5] ([i915#3921]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/fi-snb-2600/igt@i915_selftest@live@hangcheck.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/fi-snb-2600/igt@i915_selftest@live@hangcheck.html * igt@runner@aborted: - fi-skl-6600u: NOTRUN -> [FAIL][6] ([i915#4312]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/fi-skl-6600u/igt@runner@aborted.html #### Possible fixes #### * igt@i915_selftest@live@hangcheck: - fi-hsw-4770: [INCOMPLETE][7] -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4547]: https://gitlab.freedesktop.org/drm/intel/issues/4547 [i915#541]: https://gitlab.freedesktop.org/drm/intel/issues/541 Build changes ------------- * Linux: CI_DRM_10996 -> Patchwork_21842 CI-20190529: 20190529 CI_DRM_10996: 59009ef4515e78f00029de810df0985852bc7abb @ git://anongit.freedesktop.org/gfx-ci/linux IGT_6307: be84fe4f151bc092e068cab5cd0cd19c34948b40 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_21842: c80c74c368d35298a67327c8fb61e47d904d9867 @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == c80c74c368d3 drm/i915/debugfs: add noreclaim annotations == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/index.html [-- Attachment #2: Type: text/html, Size: 4006 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/debugfs: add noreclaim annotations (rev2) 2021-12-13 12:55 [Intel-gfx] [PATCH] drm/i915/debugfs: add noreclaim annotations Matthew Auld ` (2 preceding siblings ...) 2021-12-13 21:32 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/debugfs: add noreclaim annotations (rev2) Patchwork @ 2021-12-14 4:55 ` Patchwork 2021-12-14 9:25 ` Matthew Auld 2021-12-14 17:12 ` [Intel-gfx] ✓ Fi.CI.IGT: success " Patchwork 4 siblings, 1 reply; 9+ messages in thread From: Patchwork @ 2021-12-14 4:55 UTC (permalink / raw) To: Matthew Auld; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 30273 bytes --] == Series Details == Series: drm/i915/debugfs: add noreclaim annotations (rev2) URL : https://patchwork.freedesktop.org/series/97966/ State : failure == Summary == CI Bug Log - changes from CI_DRM_10996_full -> Patchwork_21842_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_21842_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_21842_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_21842_full: ### IGT changes ### #### Possible regressions #### * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-iclb: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html - shard-tglb: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@perf@enable-disable: - shard-glk: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-glk1/igt@perf@enable-disable.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-glk1/igt@perf@enable-disable.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - {shard-rkl}: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-1/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html Known issues ------------ Here are the changes found in Patchwork_21842_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-apl: [PASS][6] -> [DMESG-WARN][7] ([i915#180]) +2 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-apl4/igt@gem_ctx_isolation@preservation-s3@rcs0.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl2/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_isolation@preservation-s3@vcs0: - shard-kbl: [PASS][8] -> [DMESG-WARN][9] ([i915#180]) +5 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-kbl6/igt@gem_ctx_isolation@preservation-s3@vcs0.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@vcs0.html * igt@gem_exec_fair@basic-deadline: - shard-kbl: [PASS][10] -> [FAIL][11] ([i915#2846]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-kbl7/igt@gem_exec_fair@basic-deadline.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [PASS][12] -> [FAIL][13] ([i915#2842]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-glk8/igt@gem_exec_fair@basic-none-share@rcs0.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-glk3/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-kbl: NOTRUN -> [FAIL][14] ([i915#2842]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-kbl: [PASS][15] -> [FAIL][16] ([i915#2842]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-kbl6/igt@gem_exec_fair@basic-pace@vcs1.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl3/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_lmem_swapping@parallel-multi: - shard-tglb: NOTRUN -> [SKIP][17] ([i915#4613]) +2 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb2/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@random: - shard-apl: NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#4613]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl6/igt@gem_lmem_swapping@random.html - shard-kbl: NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#4613]) +1 similar issue [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@gem_lmem_swapping@random.html - shard-skl: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#4613]) +1 similar issue [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@smem-oom: - shard-iclb: NOTRUN -> [SKIP][21] ([i915#4613]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@gem_lmem_swapping@smem-oom.html * igt@gem_pwrite@basic-exhaustion: - shard-skl: NOTRUN -> [WARN][22] ([i915#2658]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@gem_pwrite@basic-exhaustion.html - shard-kbl: NOTRUN -> [WARN][23] ([i915#2658]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@gem_pwrite@basic-exhaustion.html - shard-apl: NOTRUN -> [WARN][24] ([i915#2658]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl6/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@fail-invalid-protected-context: - shard-iclb: NOTRUN -> [SKIP][25] ([i915#4270]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-tglb: NOTRUN -> [SKIP][26] ([i915#4270]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_userptr_blits@coherency-unsync: - shard-tglb: NOTRUN -> [SKIP][27] ([i915#3297]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_workarounds@suspend-resume: - shard-kbl: NOTRUN -> [DMESG-WARN][28] ([i915#180]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@gem_workarounds@suspend-resume.html * igt@gen9_exec_parse@batch-without-end: - shard-iclb: NOTRUN -> [SKIP][29] ([i915#2856]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-start-param: - shard-tglb: NOTRUN -> [SKIP][30] ([i915#2856]) +1 similar issue [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@gen9_exec_parse@bb-start-param.html * igt@i915_pm_dc@dc6-dpms: - shard-kbl: NOTRUN -> [FAIL][31] ([i915#454]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl7/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_dc@dc9-dpms: - shard-tglb: NOTRUN -> [SKIP][32] ([i915#4281]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp: - shard-kbl: NOTRUN -> [SKIP][33] ([fdo#109271] / [i915#1937]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl3/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-kbl: NOTRUN -> [SKIP][34] ([fdo#109271] / [i915#3777]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-apl: NOTRUN -> [SKIP][35] ([fdo#109271] / [i915#3777]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-skl: NOTRUN -> [SKIP][36] ([fdo#109271] / [i915#3777]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-tglb: NOTRUN -> [SKIP][37] ([fdo#111614]) +2 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html - shard-iclb: NOTRUN -> [SKIP][38] ([fdo#110725] / [fdo#111614]) +1 similar issue [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-tglb: NOTRUN -> [SKIP][39] ([fdo#111615]) +2 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][40] ([i915#3689] / [i915#3886]) +1 similar issue [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-kbl: NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#3886]) +5 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl2/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_rc_ccs_cc: - shard-skl: NOTRUN -> [SKIP][42] ([fdo#109271] / [i915#3886]) +1 similar issue [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html - shard-apl: NOTRUN -> [SKIP][43] ([fdo#109271] / [i915#3886]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl6/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][44] ([fdo#111615] / [i915#3689]) +3 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-iclb: NOTRUN -> [SKIP][45] ([fdo#109278] / [i915#3886]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs: - shard-kbl: NOTRUN -> [SKIP][46] ([fdo#109271]) +86 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][47] ([i915#3689]) +1 similar issue [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_cdclk@mode-transition: - shard-apl: NOTRUN -> [SKIP][48] ([fdo#109271]) +60 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl6/igt@kms_cdclk@mode-transition.html * igt@kms_color@pipe-d-ctm-green-to-red: - shard-iclb: NOTRUN -> [SKIP][49] ([fdo#109278] / [i915#1149]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_color@pipe-d-ctm-green-to-red.html * igt@kms_color_chamelium@pipe-a-ctm-blue-to-red: - shard-kbl: NOTRUN -> [SKIP][50] ([fdo#109271] / [fdo#111827]) +8 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html * igt@kms_color_chamelium@pipe-a-ctm-green-to-red: - shard-iclb: NOTRUN -> [SKIP][51] ([fdo#109284] / [fdo#111827]) +2 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_color_chamelium@pipe-a-ctm-green-to-red.html * igt@kms_color_chamelium@pipe-c-degamma: - shard-tglb: NOTRUN -> [SKIP][52] ([fdo#109284] / [fdo#111827]) +5 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_color_chamelium@pipe-c-degamma.html * igt@kms_color_chamelium@pipe-d-ctm-0-25: - shard-skl: NOTRUN -> [SKIP][53] ([fdo#109271] / [fdo#111827]) +2 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@kms_color_chamelium@pipe-d-ctm-0-25.html - shard-apl: NOTRUN -> [SKIP][54] ([fdo#109271] / [fdo#111827]) +4 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl6/igt@kms_color_chamelium@pipe-d-ctm-0-25.html * igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding: - shard-tglb: NOTRUN -> [SKIP][55] ([i915#3359]) +4 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding.html * igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen: - shard-tglb: NOTRUN -> [SKIP][56] ([i915#3319]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen.html * igt@kms_cursor_crc@pipe-d-cursor-512x512-rapid-movement: - shard-tglb: NOTRUN -> [SKIP][57] ([fdo#109279] / [i915#3359]) +2 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_cursor_crc@pipe-d-cursor-512x512-rapid-movement.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-iclb: NOTRUN -> [SKIP][58] ([fdo#109274] / [fdo#109278]) +1 similar issue [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_dsc@basic-dsc-enable: - shard-iclb: NOTRUN -> [SKIP][59] ([i915#3840]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_dsc@basic-dsc-enable.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-iclb: NOTRUN -> [SKIP][60] ([fdo#109274]) +1 similar issue [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2: - shard-glk: [PASS][61] -> [FAIL][62] ([i915#79]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [PASS][63] -> [FAIL][64] ([i915#2122]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-glk1/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-glk1/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-iclb: [PASS][65] -> [FAIL][66] ([i915#79]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-iclb5/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb6/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1: - shard-skl: [PASS][67] -> [FAIL][68] ([i915#2122]) +2 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-skl9/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-skl: NOTRUN -> [SKIP][69] ([fdo#109271]) +49 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite: - shard-iclb: NOTRUN -> [SKIP][70] ([fdo#109280]) +6 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-tglb: NOTRUN -> [SKIP][71] ([fdo#111825]) +22 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt@kms_hdr@bpc-switch: - shard-skl: NOTRUN -> [FAIL][72] ([i915#1188]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-dpms: - shard-skl: [PASS][73] -> [FAIL][74] ([i915#1188]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-skl4/igt@kms_hdr@bpc-switch-dpms.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl4/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@static-swap: - shard-tglb: NOTRUN -> [SKIP][75] ([i915#1187]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_hdr@static-swap.html - shard-iclb: NOTRUN -> [SKIP][76] ([i915#1187]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_hdr@static-swap.html * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d: - shard-skl: NOTRUN -> [SKIP][77] ([fdo#109271] / [i915#533]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl9/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb: - shard-apl: NOTRUN -> [FAIL][78] ([fdo#108145] / [i915#265]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl4/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html - shard-kbl: NOTRUN -> [FAIL][79] ([fdo#108145] / [i915#265]) +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl3/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb: - shard-kbl: NOTRUN -> [FAIL][80] ([i915#265]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl2/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc: - shard-skl: [PASS][81] -> [FAIL][82] ([fdo#108145] / [i915#265]) +2 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-skl8/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl9/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html * igt@kms_plane_alpha_blend@pipe-d-alpha-transparent-fb: - shard-iclb: NOTRUN -> [SKIP][83] ([fdo#109278]) +7 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_plane_alpha_blend@pipe-d-alpha-transparent-fb.html * igt@kms_plane_lowres@pipe-b-tiling-none: - shard-tglb: NOTRUN -> [SKIP][84] ([i915#3536]) +1 similar issue [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_plane_lowres@pipe-b-tiling-none.html * igt@kms_plane_lowres@pipe-c-tiling-y: - shard-iclb: NOTRUN -> [SKIP][85] ([i915#3536]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_plane_lowres@pipe-c-tiling-y.html * igt@kms_plane_lowres@pipe-c-tiling-yf: - shard-tglb: NOTRUN -> [SKIP][86] ([fdo#111615] / [fdo#112054]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_plane_lowres@pipe-c-tiling-yf.html * igt@kms_psr@psr2_basic: - shard-tglb: NOTRUN -> [FAIL][87] ([i915#132] / [i915#3467]) +1 similar issue [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_psr@psr2_basic.html - shard-iclb: NOTRUN -> [SKIP][88] ([fdo#109441]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_psr@psr2_basic.html * igt@kms_psr@psr2_sprite_mmap_cpu: - shard-iclb: [PASS][89] -> [SKIP][90] ([fdo#109441]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_cpu.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_psr@psr2_sprite_mmap_cpu.html * igt@kms_tv_load_detect@load-detect: - shard-tglb: NOTRUN -> [SKIP][91] ([fdo#109309]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_tv_load_detect@load-detect.html - shard-iclb: NOTRUN -> [SKIP][92] ([fdo#109309]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend: - shard-kbl: [PASS][93] -> [INCOMPLETE][94] ([i915#2828]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-kbl3/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl4/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html * igt@nouveau_crc@pipe-b-ctx-flip-detection: - shard-tglb: NOTRUN -> [SKIP][95] ([i915#2530]) +3 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@nouveau_crc@pipe-b-ctx-flip-detection.html * igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame: - shard-iclb: NOTRUN -> [SKIP][96] ([i915#2530]) +1 similar issue [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame.html * igt@perf@polling-parameterized: - shard-glk: [PASS][97] -> [FAIL][98] ([i915#1542]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-glk2/igt@perf@polling-parameterized.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-glk3/igt@perf@polling-parameterized.html * igt@perf@unprivileged-single-ctx-counters: - shard-tglb: NOTRUN -> [SKIP][99] ([fdo#109289]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@perf@unprivileged-single-ctx-counters.html * igt@prime_nv_pcopy@test3_1: - shard-tglb: NOTRUN -> [SKIP][100] ([fdo#109291]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@prime_nv_pcopy@test3_1.html * igt@sysfs_clients@fair-0: - shard-skl: NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#2994]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl10/igt@sysfs_clients@fair-0.html - shard-tglb: NOTRUN -> [SKIP][102] ([i915#2994]) +2 similar issues [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb2/igt@sysfs_clients@fair-0.html * igt@sysfs_clients@recycle-many: - shard-apl: NOTRUN -> [SKIP][103] ([fdo#109271] / [i915#2994]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl4/igt@sysfs_clients@recycle-many.html * igt@sysfs_clients@sema-25: - shard-iclb: NOTRUN -> [SKIP][104] ([i915#2994]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@sysfs_clients@sema-25.html * igt@sysfs_clients@sema-50: - shard-kbl: NOTRUN -> [SKIP][105] ([fdo#109271] / [i915#2994]) +1 similar issue [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl7/igt@sysfs_clients@sema-50.html #### Possible fixes #### * igt@drm_read@short-buffer-block: - {shard-rkl}: [SKIP][106] ([i915#4098]) -> [PASS][107] [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-1/igt@drm_read@short-buffer-block.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@drm_read@short-buffer-block.html * igt@fbdev@nullptr: - {shard-rkl}: ([SKIP][108], [SKIP][109]) ([i915#2582]) -> [PASS][110] [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-4/igt@fbdev@nullptr.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-1/igt@fbdev@nullptr.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@fbdev@nullptr.html * igt@feature_discovery@psr2: - shard-iclb: [SKIP][111] ([i915#658]) -> [PASS][112] [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-iclb8/igt@feature_discovery@psr2.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb2/igt@feature_discovery@psr2.html * igt@gem_exec_fair@basic-none@vecs0: - shard-apl: [FAIL][113] ([i915#2842]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-apl8/igt@gem_exec_fair@basic-none@vecs0.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl4/igt@gem_exec_fair@basic-none@vecs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglb: [FAIL][115] ([i915#2842]) -> [PASS][116] [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-tglb8/igt@gem_exec_fair@basic-pace@rcs0.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb8/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-kbl: [SKIP][117] ([fdo#109271]) -> [PASS][118] +1 similar issue [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-kbl6/igt@gem_exec_fair@basic-pace@vecs0.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl3/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-iclb: [FAIL][119] ([i915#2849]) -> [PASS][120] [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-iclb5/igt@gem_exec_fair@basic-throttle@rcs0.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb4/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@i915_pm_backlight@fade_with_dpms: - {shard-rkl}: [SKIP][121] ([i915#3012]) -> [PASS][122] [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-2/igt@i915_pm_backlight@fade_with_dpms.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@i915_pm_backlight@fade_with_dpms.html * igt@i915_pm_rpm@gem-mmap-type@uc: - {shard-rkl}: [SKIP][123] ([fdo#109308]) -> [PASS][124] +4 similar issues [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-2/igt@i915_pm_rpm@gem-mmap-type@uc.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@i915_pm_rpm@gem-mmap-type@uc.html * igt@i915_pm_rpm@modeset-lpsp: - {shard-rkl}: [SKIP][125] ([i915#1397]) -> [PASS][126] +1 similar issue [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-1/igt@i915_pm_rpm@modeset-lpsp.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp.html * igt@kms_big_fb@y-tiled-32bpp-rotate-270: - {shard-rkl}: ([SKIP][127], [SKIP][128]) ([i915#1845]) -> [PASS][129] +7 similar issues [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-4/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-2/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html * igt@kms_color@pipe-a-ctm-0-5: - {shard-rkl}: [SKIP][130] ([i915#1149] / [i915#1849] / [i915#4070]) -> [PASS][131] [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-2/igt@kms_color@pipe-a-ctm-0-5.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@kms_color@pipe-a-ctm-0-5.html * igt@kms_color@pipe-c-ctm-0-75: - shard-skl: [DMESG-WARN][132] ([i915#1982]) -> [PASS][133] +1 similar issue [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-skl7/igt@kms_color@pipe-c-ctm-0-75.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl6/igt@kms_color@pipe-c-ctm-0-75.html * igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding: - {shard-rkl}: [SKIP][134] ([fdo#112022] / [i915#4070]) -> [PASS][135] +7 similar issues [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-2/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html * igt@kms_cursor_crc@pipe-a-cursor-suspend: - shard-kbl: [DMESG-WARN][136] ([i915#180]) -> [PASS][137] +6 similar issues [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-kbl1/igt@kms_cursor_crc@pipe-a-cursor-suspend.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl3/igt@kms_cursor_crc@pipe-a-cursor-suspend.html * igt@kms_cursor_crc@pipe-b-c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/index.html [-- Attachment #2: Type: text/html, Size: 33680 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/debugfs: add noreclaim annotations (rev2) 2021-12-14 4:55 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork @ 2021-12-14 9:25 ` Matthew Auld 2021-12-14 17:13 ` Vudum, Lakshminarayana 0 siblings, 1 reply; 9+ messages in thread From: Matthew Auld @ 2021-12-14 9:25 UTC (permalink / raw) To: intel-gfx, Vudum, Lakshminarayana On 14/12/2021 04:55, Patchwork wrote: > *Patch Details* > *Series:* drm/i915/debugfs: add noreclaim annotations (rev2) > *URL:* https://patchwork.freedesktop.org/series/97966/ > <https://patchwork.freedesktop.org/series/97966/> > *State:* failure > *Details:* > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/index.html > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/index.html> > > > CI Bug Log - changes from CI_DRM_10996_full -> Patchwork_21842_full > > > Summary > > *FAILURE* > > Serious unknown changes coming with Patchwork_21842_full absolutely need > to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in Patchwork_21842_full, please notify your bug team to allow > them > to document this new failure mode, which will reduce false positives in CI. > > > Participating hosts (10 -> 10) > > No changes in participating hosts > > > Possible new issues > > Here are the unknown changes that may have been introduced in > Patchwork_21842_full: > > > IGT changes > > > Possible regressions > > * > > igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: > > o > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html> > > o > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html> > > * > > igt@perf@enable-disable: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-glk1/igt@perf@enable-disable.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-glk1/igt@perf@enable-disable.html> > > > Suppressed > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: > o {shard-rkl}: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-1/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html> > These all look to be unrelated. > > Known issues > > Here are the changes found in Patchwork_21842_full that come from known > issues: > > > IGT changes > > > Issues hit > > * > > igt@gem_ctx_isolation@preservation-s3@rcs0: > > o shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-apl4/igt@gem_ctx_isolation@preservation-s3@rcs0.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl2/igt@gem_ctx_isolation@preservation-s3@rcs0.html> > ([i915#180]) +2 similar issues > * > > igt@gem_ctx_isolation@preservation-s3@vcs0: > > o shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-kbl6/igt@gem_ctx_isolation@preservation-s3@vcs0.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@vcs0.html> > ([i915#180]) +5 similar issues > * > > igt@gem_exec_fair@basic-deadline: > > o shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-kbl7/igt@gem_exec_fair@basic-deadline.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@gem_exec_fair@basic-deadline.html> > ([i915#2846]) > * > > igt@gem_exec_fair@basic-none-share@rcs0: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-glk8/igt@gem_exec_fair@basic-none-share@rcs0.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-glk3/igt@gem_exec_fair@basic-none-share@rcs0.html> > ([i915#2842]) > * > > igt@gem_exec_fair@basic-none-solo@rcs0: > > o shard-kbl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@gem_exec_fair@basic-none-solo@rcs0.html> > ([i915#2842]) > * > > igt@gem_exec_fair@basic-pace@vcs1: > > o shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-kbl6/igt@gem_exec_fair@basic-pace@vcs1.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl3/igt@gem_exec_fair@basic-pace@vcs1.html> > ([i915#2842]) +1 similar issue > * > > igt@gem_lmem_swapping@parallel-multi: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb2/igt@gem_lmem_swapping@parallel-multi.html> > ([i915#4613]) +2 similar issues > * > > igt@gem_lmem_swapping@random: > > o > > shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl6/igt@gem_lmem_swapping@random.html> > ([fdo#109271] / [i915#4613]) > > o > > shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@gem_lmem_swapping@random.html> > ([fdo#109271] / [i915#4613]) +1 similar issue > > o > > shard-skl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@gem_lmem_swapping@random.html> > ([fdo#109271] / [i915#4613]) +1 similar issue > > * > > igt@gem_lmem_swapping@smem-oom: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@gem_lmem_swapping@smem-oom.html> > ([i915#4613]) > * > > igt@gem_pwrite@basic-exhaustion: > > o > > shard-skl: NOTRUN -> WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@gem_pwrite@basic-exhaustion.html> > ([i915#2658]) > > o > > shard-kbl: NOTRUN -> WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@gem_pwrite@basic-exhaustion.html> > ([i915#2658]) > > o > > shard-apl: NOTRUN -> WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl6/igt@gem_pwrite@basic-exhaustion.html> > ([i915#2658]) > > * > > igt@gem_pxp@fail-invalid-protected-context: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@gem_pxp@fail-invalid-protected-context.html> > ([i915#4270]) > * > > igt@gem_pxp@reject-modify-context-protection-on: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@gem_pxp@reject-modify-context-protection-on.html> > ([i915#4270]) > * > > igt@gem_userptr_blits@coherency-unsync: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@gem_userptr_blits@coherency-unsync.html> > ([i915#3297]) > * > > igt@gem_workarounds@suspend-resume: > > o shard-kbl: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@gem_workarounds@suspend-resume.html> > ([i915#180]) > * > > igt@gen9_exec_parse@batch-without-end: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@gen9_exec_parse@batch-without-end.html> > ([i915#2856]) > * > > igt@gen9_exec_parse@bb-start-param: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@gen9_exec_parse@bb-start-param.html> > ([i915#2856]) +1 similar issue > * > > igt@i915_pm_dc@dc6-dpms: > > o shard-kbl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl7/igt@i915_pm_dc@dc6-dpms.html> > ([i915#454]) > * > > igt@i915_pm_dc@dc9-dpms: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@i915_pm_dc@dc9-dpms.html> > ([i915#4281]) > * > > igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl3/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html> > ([fdo#109271] / [i915#1937]) > * > > igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip: > > o > > shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> > ([fdo#109271] / [i915#3777]) > > o > > shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> > ([fdo#109271] / [i915#3777]) > > o > > shard-skl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> > ([fdo#109271] / [i915#3777]) > > * > > igt@kms_big_fb@y-tiled-64bpp-rotate-270: > > o > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html> > ([fdo#111614]) +2 similar issues > > o > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html> > ([fdo#110725] / [fdo#111614]) +1 similar issue > > * > > igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html> > ([fdo#111615]) +2 similar issues > * > > igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html> > ([i915#3689] / [i915#3886]) +1 similar issue > * > > igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl2/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html> > ([fdo#109271] / [i915#3886]) +5 similar issues > * > > igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_rc_ccs_cc: > > o > > shard-skl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html> > ([fdo#109271] / [i915#3886]) +1 similar issue > > o > > shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl6/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html> > ([fdo#109271] / [i915#3886]) +1 similar issue > > * > > igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html> > ([fdo#111615] / [i915#3689]) +3 similar issues > * > > igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html> > ([fdo#109278] / [i915#3886]) > * > > igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs.html> > ([fdo#109271]) +86 similar issues > * > > igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html> > ([i915#3689]) +1 similar issue > * > > igt@kms_cdclk@mode-transition: > > o shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl6/igt@kms_cdclk@mode-transition.html> > ([fdo#109271]) +60 similar issues > * > > igt@kms_color@pipe-d-ctm-green-to-red: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_color@pipe-d-ctm-green-to-red.html> > ([fdo#109278] / [i915#1149]) > * > > igt@kms_color_chamelium@pipe-a-ctm-blue-to-red: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html> > ([fdo#109271] / [fdo#111827]) +8 similar issues > * > > igt@kms_color_chamelium@pipe-a-ctm-green-to-red: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_color_chamelium@pipe-a-ctm-green-to-red.html> > ([fdo#109284] / [fdo#111827]) +2 similar issues > * > > igt@kms_color_chamelium@pipe-c-degamma: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_color_chamelium@pipe-c-degamma.html> > ([fdo#109284] / [fdo#111827]) +5 similar issues > * > > igt@kms_color_chamelium@pipe-d-ctm-0-25: > > o > > shard-skl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@kms_color_chamelium@pipe-d-ctm-0-25.html> > ([fdo#109271] / [fdo#111827]) +2 similar issues > > o > > shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl6/igt@kms_color_chamelium@pipe-d-ctm-0-25.html> > ([fdo#109271] / [fdo#111827]) +4 similar issues > > * > > igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding.html> > ([i915#3359]) +4 similar issues > * > > igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen.html> > ([i915#3319]) > * > > igt@kms_cursor_crc@pipe-d-cursor-512x512-rapid-movement: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_cursor_crc@pipe-d-cursor-512x512-rapid-movement.html> > ([fdo#109279] / [i915#3359]) +2 similar issues > * > > igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html> > ([fdo#109274] / [fdo#109278]) +1 similar issue > * > > igt@kms_dsc@basic-dsc-enable: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_dsc@basic-dsc-enable.html> > ([i915#3840]) > * > > igt@kms_flip@2x-blocking-wf_vblank: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_flip@2x-blocking-wf_vblank.html> > ([fdo#109274]) +1 similar issue > * > > igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html> > ([i915#79]) > * > > igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-glk1/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-glk1/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html> > ([i915#2122]) > * > > igt@kms_flip@flip-vs-expired-vblank@c-edp1: > > o shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-iclb5/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb6/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html> > ([i915#79]) > * > > igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1: > > o shard-skl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-skl9/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html> > ([i915#2122]) +2 similar issues > * > > igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: > > o shard-skl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html> > ([fdo#109271]) +49 similar issues > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite.html> > ([fdo#109280]) +6 similar issues > * > > igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite.html> > ([fdo#111825]) +22 similar issues > * > > igt@kms_hdr@bpc-switch: > > o shard-skl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@kms_hdr@bpc-switch.html> > ([i915#1188]) > * > > igt@kms_hdr@bpc-switch-dpms: > > o shard-skl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-skl4/igt@kms_hdr@bpc-switch-dpms.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl4/igt@kms_hdr@bpc-switch-dpms.html> > ([i915#1188]) > * > > igt@kms_hdr@static-swap: > > o > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_hdr@static-swap.html> > ([i915#1187]) > > o > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_hdr@static-swap.html> > ([i915#1187]) > > * > > igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d: > > o shard-skl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl9/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html> > ([fdo#109271] / [i915#533]) > * > > igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb: > > o > > shard-apl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl4/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html> > ([fdo#108145] / [i915#265]) > > o > > shard-kbl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl3/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html> > ([fdo#108145] / [i915#265]) +1 similar issue > > * > > igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb: > > o shard-kbl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl2/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html> > ([i915#265]) > * > > igt@kms_plane_alpha_blend@pipe-b-coverage-7efc: > > o shard-skl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-skl8/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl9/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html> > ([fdo#108145] / [i915#265]) +2 similar issues > * > > igt@kms_plane_alpha_blend@pipe-d-alpha-transparent-fb: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_plane_alpha_blend@pipe-d-alpha-transparent-fb.html> > ([fdo#109278]) +7 similar issues > * > > igt@kms_plane_lowres@pipe-b-tiling-none: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_plane_lowres@pipe-b-tiling-none.html> > ([i915#3536]) +1 similar issue > * > > igt@kms_plane_lowres@pipe-c-tiling-y: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_plane_lowres@pipe-c-tiling-y.html> > ([i915#3536]) > * > > igt@kms_plane_lowres@pipe-c-tiling-yf: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_plane_lowres@pipe-c-tiling-yf.html> > ([fdo#111615] / [fdo#112054]) > * > > igt@kms_psr@psr2_basic: > > o > > shard-tglb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_psr@psr2_basic.html> > ([i915#132] / [i915#3467]) +1 similar issue > > o > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_psr@psr2_basic.html> > ([fdo#109441]) > > * > > igt@kms_psr@psr2_sprite_mmap_cpu: > > o shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_cpu.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_psr@psr2_sprite_mmap_cpu.html> > ([fdo#109441]) > * > > igt@kms_tv_load_detect@load-detect: > > o > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_tv_load_detect@load-detect.html> > ([fdo#109309]) > > o > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_tv_load_detect@load-detect.html> > ([fdo#109309]) > > * > > igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend: > > o shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-kbl3/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl4/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html> > ([i915#2828]) > * > > igt@nouveau_crc@pipe-b-ctx-flip-detection: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@nouveau_crc@pipe-b-ctx-flip-detection.html> > ([i915#2530]) +3 similar issues > * > > igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame.html> > ([i915#2530]) +1 similar issue > * > > igt@perf@polling-parameterized: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-glk2/igt@perf@polling-parameterized.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-glk3/igt@perf@polling-parameterized.html> > ([i915#1542]) > * > > igt@perf@unprivileged-single-ctx-counters: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@perf@unprivileged-single-ctx-counters.html> > ([fdo#109289]) > * > > igt@prime_nv_pcopy@test3_1: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@prime_nv_pcopy@test3_1.html> > ([fdo#109291]) > * > > igt@sysfs_clients@fair-0: > > o > > shard-skl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl10/igt@sysfs_clients@fair-0.html> > ([fdo#109271] / [i915#2994]) > > o > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb2/igt@sysfs_clients@fair-0.html> > ([i915#2994]) +2 similar issues > > * > > igt@sysfs_clients@recycle-many: > > o shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl4/igt@sysfs_clients@recycle-many.html> > ([fdo#109271] / [i915#2994]) > * > > igt@sysfs_clients@sema-25: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@sysfs_clients@sema-25.html> > ([i915#2994]) > * > > igt@sysfs_clients@sema-50: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl7/igt@sysfs_clients@sema-50.html> > ([fdo#109271] / [i915#2994]) +1 similar issue > > > Possible fixes > > * > > igt@drm_read@short-buffer-block: > > o {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-1/igt@drm_read@short-buffer-block.html> > ([i915#4098]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@drm_read@short-buffer-block.html> > * > > igt@fbdev@nullptr: > > o {shard-rkl}: (SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-4/igt@fbdev@nullptr.html>, > SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-1/igt@fbdev@nullptr.html>) > ([i915#2582]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@fbdev@nullptr.html> > * > > igt@feature_discovery@psr2: > > o shard-iclb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-iclb8/igt@feature_discovery@psr2.html> > ([i915#658]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb2/igt@feature_discovery@psr2.html> > * > > igt@gem_exec_fair@basic-none@vecs0: > > o shard-apl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-apl8/igt@gem_exec_fair@basic-none@vecs0.html> > ([i915#2842]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl4/igt@gem_exec_fair@basic-none@vecs0.html> > * > > igt@gem_exec_fair@basic-pace@rcs0: > > o shard-tglb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-tglb8/igt@gem_exec_fair@basic-pace@rcs0.html> > ([i915#2842]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb8/igt@gem_exec_fair@basic-pace@rcs0.html> > * > > igt@gem_exec_fair@basic-pace@vecs0: > > o shard-kbl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-kbl6/igt@gem_exec_fair@basic-pace@vecs0.html> > ([fdo#109271]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl3/igt@gem_exec_fair@basic-pace@vecs0.html> > +1 similar issue > * > > igt@gem_exec_fair@basic-throttle@rcs0: > > o shard-iclb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-iclb5/igt@gem_exec_fair@basic-throttle@rcs0.html> > ([i915#2849]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb4/igt@gem_exec_fair@basic-throttle@rcs0.html> > * > > igt@i915_pm_backlight@fade_with_dpms: > > o {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-2/igt@i915_pm_backlight@fade_with_dpms.html> > ([i915#3012]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@i915_pm_backlight@fade_with_dpms.html> > * > > igt@i915_pm_rpm@gem-mmap-type@uc: > > o {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-2/igt@i915_pm_rpm@gem-mmap-type@uc.html> > ([fdo#109308]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@i915_pm_rpm@gem-mmap-type@uc.html> > +4 similar issues > * > > igt@i915_pm_rpm@modeset-lpsp: > > o {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-1/igt@i915_pm_rpm@modeset-lpsp.html> > ([i915#1397]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp.html> > +1 similar issue > * > > igt@kms_big_fb@y-tiled-32bpp-rotate-270: > > o {shard-rkl}: (SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-4/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html>, > SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-2/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html>) > ([i915#1845]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html> > +7 similar issues > * > > igt@kms_color@pipe-a-ctm-0-5: > > o {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-2/igt@kms_color@pipe-a-ctm-0-5.html> > ([i915#1149] / [i915#1849] / [i915#4070]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@kms_color@pipe-a-ctm-0-5.html> > * > > igt@kms_color@pipe-c-ctm-0-75: > > o shard-skl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-skl7/igt@kms_color@pipe-c-ctm-0-75.html> > ([i915#1982]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl6/igt@kms_color@pipe-c-ctm-0-75.html> > +1 similar issue > * > > igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding: > > o {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-2/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html> > ([fdo#112022] / [i915#4070]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html> > +7 similar issues > * > > igt@kms_cursor_crc@pipe-a-cursor-suspend: > > o shard-kbl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-kbl1/igt@kms_cursor_crc@pipe-a-cursor-suspend.html> > ([i915#180]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl3/igt@kms_cursor_crc@pipe-a-cursor-suspend.html> > +6 similar issues > * > > igt@kms_cursor_crc@pipe-b-c > ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/debugfs: add noreclaim annotations (rev2) 2021-12-14 9:25 ` Matthew Auld @ 2021-12-14 17:13 ` Vudum, Lakshminarayana 0 siblings, 0 replies; 9+ messages in thread From: Vudum, Lakshminarayana @ 2021-12-14 17:13 UTC (permalink / raw) To: Auld, Matthew, intel-gfx@lists.freedesktop.org All are known issues. Re-reported the results. -----Original Message----- From: Auld, Matthew <matthew.auld@intel.com> Sent: Tuesday, December 14, 2021 1:26 AM To: intel-gfx@lists.freedesktop.org; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com> Subject: Re: ✗ Fi.CI.IGT: failure for drm/i915/debugfs: add noreclaim annotations (rev2) On 14/12/2021 04:55, Patchwork wrote: > *Patch Details* > *Series:* drm/i915/debugfs: add noreclaim annotations (rev2) > *URL:* https://patchwork.freedesktop.org/series/97966/ > <https://patchwork.freedesktop.org/series/97966/> > *State:* failure > *Details:* > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/index.html > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/index.html> > > > CI Bug Log - changes from CI_DRM_10996_full -> Patchwork_21842_full > > > Summary > > *FAILURE* > > Serious unknown changes coming with Patchwork_21842_full absolutely > need to be verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in Patchwork_21842_full, please notify your bug team to > allow them to document this new failure mode, which will reduce false > positives in CI. > > > Participating hosts (10 -> 10) > > No changes in participating hosts > > > Possible new issues > > Here are the unknown changes that may have been introduced in > Patchwork_21842_full: > > > IGT changes > > > Possible regressions > > * > > igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: > > o > > shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/ > igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html> > > o > > shard-tglb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/ > igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html> > > * > > igt@perf@enable-disable: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-glk1/igt@perf@enable-disable.html> > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-glk1/i > gt@perf@enable-disable.html> > > > Suppressed > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: > o {shard-rkl}: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-1/ > igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html> > These all look to be unrelated. > > Known issues > > Here are the changes found in Patchwork_21842_full that come from > known > issues: > > > IGT changes > > > Issues hit > > * > > igt@gem_ctx_isolation@preservation-s3@rcs0: > > o shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-apl4/igt@gem_ctx_isolation@preservation-s3@rcs0.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl2/igt@gem_ctx_isolation@preservation-s3@rcs0.html> > ([i915#180]) +2 similar issues > * > > igt@gem_ctx_isolation@preservation-s3@vcs0: > > o shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-kbl6/igt@gem_ctx_isolation@preservation-s3@vcs0.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@vcs0.html> > ([i915#180]) +5 similar issues > * > > igt@gem_exec_fair@basic-deadline: > > o shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-kbl7/igt@gem_exec_fair@basic-deadline.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@gem_exec_fair@basic-deadline.html> > ([i915#2846]) > * > > igt@gem_exec_fair@basic-none-share@rcs0: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-glk8/igt@gem_exec_fair@basic-none-share@rcs0.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-glk3/igt@gem_exec_fair@basic-none-share@rcs0.html> > ([i915#2842]) > * > > igt@gem_exec_fair@basic-none-solo@rcs0: > > o shard-kbl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@gem_exec_fair@basic-none-solo@rcs0.html> > ([i915#2842]) > * > > igt@gem_exec_fair@basic-pace@vcs1: > > o shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-kbl6/igt@gem_exec_fair@basic-pace@vcs1.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl3/igt@gem_exec_fair@basic-pace@vcs1.html> > ([i915#2842]) +1 similar issue > * > > igt@gem_lmem_swapping@parallel-multi: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb2/igt@gem_lmem_swapping@parallel-multi.html> > ([i915#4613]) +2 similar issues > * > > igt@gem_lmem_swapping@random: > > o > > shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl6/igt@gem_lmem_swapping@random.html> > ([fdo#109271] / [i915#4613]) > > o > > shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@gem_lmem_swapping@random.html> > ([fdo#109271] / [i915#4613]) +1 similar issue > > o > > shard-skl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@gem_lmem_swapping@random.html> > ([fdo#109271] / [i915#4613]) +1 similar issue > > * > > igt@gem_lmem_swapping@smem-oom: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@gem_lmem_swapping@smem-oom.html> > ([i915#4613]) > * > > igt@gem_pwrite@basic-exhaustion: > > o > > shard-skl: NOTRUN -> WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@gem_pwrite@basic-exhaustion.html> > ([i915#2658]) > > o > > shard-kbl: NOTRUN -> WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@gem_pwrite@basic-exhaustion.html> > ([i915#2658]) > > o > > shard-apl: NOTRUN -> WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl6/igt@gem_pwrite@basic-exhaustion.html> > ([i915#2658]) > > * > > igt@gem_pxp@fail-invalid-protected-context: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@gem_pxp@fail-invalid-protected-context.html> > ([i915#4270]) > * > > igt@gem_pxp@reject-modify-context-protection-on: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@gem_pxp@reject-modify-context-protection-on.html> > ([i915#4270]) > * > > igt@gem_userptr_blits@coherency-unsync: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@gem_userptr_blits@coherency-unsync.html> > ([i915#3297]) > * > > igt@gem_workarounds@suspend-resume: > > o shard-kbl: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@gem_workarounds@suspend-resume.html> > ([i915#180]) > * > > igt@gen9_exec_parse@batch-without-end: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@gen9_exec_parse@batch-without-end.html> > ([i915#2856]) > * > > igt@gen9_exec_parse@bb-start-param: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@gen9_exec_parse@bb-start-param.html> > ([i915#2856]) +1 similar issue > * > > igt@i915_pm_dc@dc6-dpms: > > o shard-kbl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl7/igt@i915_pm_dc@dc6-dpms.html> > ([i915#454]) > * > > igt@i915_pm_dc@dc9-dpms: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@i915_pm_dc@dc9-dpms.html> > ([i915#4281]) > * > > igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl3/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html> > ([fdo#109271] / [i915#1937]) > * > > igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip: > > o > > shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> > ([fdo#109271] / [i915#3777]) > > o > > shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> > ([fdo#109271] / [i915#3777]) > > o > > shard-skl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> > ([fdo#109271] / [i915#3777]) > > * > > igt@kms_big_fb@y-tiled-64bpp-rotate-270: > > o > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html> > ([fdo#111614]) +2 similar issues > > o > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html> > ([fdo#110725] / [fdo#111614]) +1 similar issue > > * > > igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html> > ([fdo#111615]) +2 similar issues > * > > igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html> > ([i915#3689] / [i915#3886]) +1 similar issue > * > > igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl2/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html> > ([fdo#109271] / [i915#3886]) +5 similar issues > * > > igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_rc_ccs_cc: > > o > > shard-skl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html> > ([fdo#109271] / [i915#3886]) +1 similar issue > > o > > shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl6/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html> > ([fdo#109271] / [i915#3886]) +1 similar issue > > * > > igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html> > ([fdo#111615] / [i915#3689]) +3 similar issues > * > > igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html> > ([fdo#109278] / [i915#3886]) > * > > igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs.html> > ([fdo#109271]) +86 similar issues > * > > igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html> > ([i915#3689]) +1 similar issue > * > > igt@kms_cdclk@mode-transition: > > o shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl6/igt@kms_cdclk@mode-transition.html> > ([fdo#109271]) +60 similar issues > * > > igt@kms_color@pipe-d-ctm-green-to-red: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_color@pipe-d-ctm-green-to-red.html> > ([fdo#109278] / [i915#1149]) > * > > igt@kms_color_chamelium@pipe-a-ctm-blue-to-red: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html> > ([fdo#109271] / [fdo#111827]) +8 similar issues > * > > igt@kms_color_chamelium@pipe-a-ctm-green-to-red: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_color_chamelium@pipe-a-ctm-green-to-red.html> > ([fdo#109284] / [fdo#111827]) +2 similar issues > * > > igt@kms_color_chamelium@pipe-c-degamma: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_color_chamelium@pipe-c-degamma.html> > ([fdo#109284] / [fdo#111827]) +5 similar issues > * > > igt@kms_color_chamelium@pipe-d-ctm-0-25: > > o > > shard-skl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@kms_color_chamelium@pipe-d-ctm-0-25.html> > ([fdo#109271] / [fdo#111827]) +2 similar issues > > o > > shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl6/igt@kms_color_chamelium@pipe-d-ctm-0-25.html> > ([fdo#109271] / [fdo#111827]) +4 similar issues > > * > > igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding.html> > ([i915#3359]) +4 similar issues > * > > igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen.html> > ([i915#3319]) > * > > igt@kms_cursor_crc@pipe-d-cursor-512x512-rapid-movement: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_cursor_crc@pipe-d-cursor-512x512-rapid-movement.html> > ([fdo#109279] / [i915#3359]) +2 similar issues > * > > igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html> > ([fdo#109274] / [fdo#109278]) +1 similar issue > * > > igt@kms_dsc@basic-dsc-enable: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_dsc@basic-dsc-enable.html> > ([i915#3840]) > * > > igt@kms_flip@2x-blocking-wf_vblank: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_flip@2x-blocking-wf_vblank.html> > ([fdo#109274]) +1 similar issue > * > > igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html> > ([i915#79]) > * > > igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-glk1/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-glk1/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html> > ([i915#2122]) > * > > igt@kms_flip@flip-vs-expired-vblank@c-edp1: > > o shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-iclb5/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb6/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html> > ([i915#79]) > * > > igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1: > > o shard-skl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-skl9/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html> > ([i915#2122]) +2 similar issues > * > > igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: > > o shard-skl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html> > ([fdo#109271]) +49 similar issues > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite.html> > ([fdo#109280]) +6 similar issues > * > > igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite.html> > ([fdo#111825]) +22 similar issues > * > > igt@kms_hdr@bpc-switch: > > o shard-skl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@kms_hdr@bpc-switch.html> > ([i915#1188]) > * > > igt@kms_hdr@bpc-switch-dpms: > > o shard-skl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-skl4/igt@kms_hdr@bpc-switch-dpms.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl4/igt@kms_hdr@bpc-switch-dpms.html> > ([i915#1188]) > * > > igt@kms_hdr@static-swap: > > o > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_hdr@static-swap.html> > ([i915#1187]) > > o > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_hdr@static-swap.html> > ([i915#1187]) > > * > > igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d: > > o shard-skl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl9/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html> > ([fdo#109271] / [i915#533]) > * > > igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb: > > o > > shard-apl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl4/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html> > ([fdo#108145] / [i915#265]) > > o > > shard-kbl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl3/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html> > ([fdo#108145] / [i915#265]) +1 similar issue > > * > > igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb: > > o shard-kbl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl2/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html> > ([i915#265]) > * > > igt@kms_plane_alpha_blend@pipe-b-coverage-7efc: > > o shard-skl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-skl8/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl9/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html> > ([fdo#108145] / [i915#265]) +2 similar issues > * > > igt@kms_plane_alpha_blend@pipe-d-alpha-transparent-fb: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_plane_alpha_blend@pipe-d-alpha-transparent-fb.html> > ([fdo#109278]) +7 similar issues > * > > igt@kms_plane_lowres@pipe-b-tiling-none: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_plane_lowres@pipe-b-tiling-none.html> > ([i915#3536]) +1 similar issue > * > > igt@kms_plane_lowres@pipe-c-tiling-y: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_plane_lowres@pipe-c-tiling-y.html> > ([i915#3536]) > * > > igt@kms_plane_lowres@pipe-c-tiling-yf: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_plane_lowres@pipe-c-tiling-yf.html> > ([fdo#111615] / [fdo#112054]) > * > > igt@kms_psr@psr2_basic: > > o > > shard-tglb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_psr@psr2_basic.html> > ([i915#132] / [i915#3467]) +1 similar issue > > o > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_psr@psr2_basic.html> > ([fdo#109441]) > > * > > igt@kms_psr@psr2_sprite_mmap_cpu: > > o shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_cpu.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_psr@psr2_sprite_mmap_cpu.html> > ([fdo#109441]) > * > > igt@kms_tv_load_detect@load-detect: > > o > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_tv_load_detect@load-detect.html> > ([fdo#109309]) > > o > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_tv_load_detect@load-detect.html> > ([fdo#109309]) > > * > > igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend: > > o shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-kbl3/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl4/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html> > ([i915#2828]) > * > > igt@nouveau_crc@pipe-b-ctx-flip-detection: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@nouveau_crc@pipe-b-ctx-flip-detection.html> > ([i915#2530]) +3 similar issues > * > > igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame.html> > ([i915#2530]) +1 similar issue > * > > igt@perf@polling-parameterized: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-glk2/igt@perf@polling-parameterized.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-glk3/igt@perf@polling-parameterized.html> > ([i915#1542]) > * > > igt@perf@unprivileged-single-ctx-counters: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@perf@unprivileged-single-ctx-counters.html> > ([fdo#109289]) > * > > igt@prime_nv_pcopy@test3_1: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@prime_nv_pcopy@test3_1.html> > ([fdo#109291]) > * > > igt@sysfs_clients@fair-0: > > o > > shard-skl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl10/igt@sysfs_clients@fair-0.html> > ([fdo#109271] / [i915#2994]) > > o > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb2/igt@sysfs_clients@fair-0.html> > ([i915#2994]) +2 similar issues > > * > > igt@sysfs_clients@recycle-many: > > o shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl4/igt@sysfs_clients@recycle-many.html> > ([fdo#109271] / [i915#2994]) > * > > igt@sysfs_clients@sema-25: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@sysfs_clients@sema-25.html> > ([i915#2994]) > * > > igt@sysfs_clients@sema-50: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl7/igt@sysfs_clients@sema-50.html> > ([fdo#109271] / [i915#2994]) +1 similar issue > > > Possible fixes > > * > > igt@drm_read@short-buffer-block: > > o {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-1/igt@drm_read@short-buffer-block.html> > ([i915#4098]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@drm_read@short-buffer-block.html> > * > > igt@fbdev@nullptr: > > o {shard-rkl}: (SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-4/igt@fbdev@nullptr.html>, > SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-1/igt@fbdev@nullptr.html>) > ([i915#2582]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@fbdev@nullptr.html> > * > > igt@feature_discovery@psr2: > > o shard-iclb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-iclb8/igt@feature_discovery@psr2.html> > ([i915#658]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb2/igt@feature_discovery@psr2.html> > * > > igt@gem_exec_fair@basic-none@vecs0: > > o shard-apl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-apl8/igt@gem_exec_fair@basic-none@vecs0.html> > ([i915#2842]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl4/igt@gem_exec_fair@basic-none@vecs0.html> > * > > igt@gem_exec_fair@basic-pace@rcs0: > > o shard-tglb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-tglb8/igt@gem_exec_fair@basic-pace@rcs0.html> > ([i915#2842]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb8/igt@gem_exec_fair@basic-pace@rcs0.html> > * > > igt@gem_exec_fair@basic-pace@vecs0: > > o shard-kbl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-kbl6/igt@gem_exec_fair@basic-pace@vecs0.html> > ([fdo#109271]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl3/igt@gem_exec_fair@basic-pace@vecs0.html> > +1 similar issue > * > > igt@gem_exec_fair@basic-throttle@rcs0: > > o shard-iclb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-iclb5/igt@gem_exec_fair@basic-throttle@rcs0.html> > ([i915#2849]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb4/igt@gem_exec_fair@basic-throttle@rcs0.html> > * > > igt@i915_pm_backlight@fade_with_dpms: > > o {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-2/igt@i915_pm_backlight@fade_with_dpms.html> > ([i915#3012]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@i915_pm_backlight@fade_with_dpms.html> > * > > igt@i915_pm_rpm@gem-mmap-type@uc: > > o {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-2/igt@i915_pm_rpm@gem-mmap-type@uc.html> > ([fdo#109308]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@i915_pm_rpm@gem-mmap-type@uc.html> > +4 similar issues > * > > igt@i915_pm_rpm@modeset-lpsp: > > o {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-1/igt@i915_pm_rpm@modeset-lpsp.html> > ([i915#1397]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp.html> > +1 similar issue > * > > igt@kms_big_fb@y-tiled-32bpp-rotate-270: > > o {shard-rkl}: (SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-4/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html>, > SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-2/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html>) > ([i915#1845]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html> > +7 similar issues > * > > igt@kms_color@pipe-a-ctm-0-5: > > o {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-2/igt@kms_color@pipe-a-ctm-0-5.html> > ([i915#1149] / [i915#1849] / [i915#4070]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@kms_color@pipe-a-ctm-0-5.html> > * > > igt@kms_color@pipe-c-ctm-0-75: > > o shard-skl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-skl7/igt@kms_color@pipe-c-ctm-0-75.html> > ([i915#1982]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl6/igt@kms_color@pipe-c-ctm-0-75.html> > +1 similar issue > * > > igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding: > > o {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-2/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html> > ([fdo#112022] / [i915#4070]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html> > +7 similar issues > * > > igt@kms_cursor_crc@pipe-a-cursor-suspend: > > o shard-kbl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-kbl1/igt@kms_cursor_crc@pipe-a-cursor-suspend.html> > ([i915#180]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl3/igt@kms_cursor_crc@pipe-a-cursor-suspend.html> > +6 similar issues > * > > igt@kms_cursor_crc@pipe-b-c > ^ permalink raw reply [flat|nested] 9+ messages in thread
* [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/debugfs: add noreclaim annotations (rev2) 2021-12-13 12:55 [Intel-gfx] [PATCH] drm/i915/debugfs: add noreclaim annotations Matthew Auld ` (3 preceding siblings ...) 2021-12-14 4:55 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork @ 2021-12-14 17:12 ` Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2021-12-14 17:12 UTC (permalink / raw) To: Matthew Auld; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 30273 bytes --] == Series Details == Series: drm/i915/debugfs: add noreclaim annotations (rev2) URL : https://patchwork.freedesktop.org/series/97966/ State : success == Summary == CI Bug Log - changes from CI_DRM_10996_full -> Patchwork_21842_full ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in Patchwork_21842_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-apl: [PASS][1] -> [DMESG-WARN][2] ([i915#180]) +2 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-apl4/igt@gem_ctx_isolation@preservation-s3@rcs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl2/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_isolation@preservation-s3@vcs0: - shard-kbl: [PASS][3] -> [DMESG-WARN][4] ([i915#180]) +5 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-kbl6/igt@gem_ctx_isolation@preservation-s3@vcs0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@vcs0.html * igt@gem_exec_fair@basic-deadline: - shard-kbl: [PASS][5] -> [FAIL][6] ([i915#2846]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-kbl7/igt@gem_exec_fair@basic-deadline.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [PASS][7] -> [FAIL][8] ([i915#2842]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-glk8/igt@gem_exec_fair@basic-none-share@rcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-glk3/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-kbl: NOTRUN -> [FAIL][9] ([i915#2842]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-kbl: [PASS][10] -> [FAIL][11] ([i915#2842]) +1 similar issue [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-kbl6/igt@gem_exec_fair@basic-pace@vcs1.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl3/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_lmem_swapping@parallel-multi: - shard-tglb: NOTRUN -> [SKIP][12] ([i915#4613]) +2 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb2/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@random: - shard-apl: NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#4613]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl6/igt@gem_lmem_swapping@random.html - shard-kbl: NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#4613]) +1 similar issue [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@gem_lmem_swapping@random.html - shard-skl: NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#4613]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@smem-oom: - shard-iclb: NOTRUN -> [SKIP][16] ([i915#4613]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@gem_lmem_swapping@smem-oom.html * igt@gem_pwrite@basic-exhaustion: - shard-skl: NOTRUN -> [WARN][17] ([i915#2658]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@gem_pwrite@basic-exhaustion.html - shard-kbl: NOTRUN -> [WARN][18] ([i915#2658]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@gem_pwrite@basic-exhaustion.html - shard-apl: NOTRUN -> [WARN][19] ([i915#2658]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl6/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@fail-invalid-protected-context: - shard-iclb: NOTRUN -> [SKIP][20] ([i915#4270]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-tglb: NOTRUN -> [SKIP][21] ([i915#4270]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_userptr_blits@coherency-unsync: - shard-tglb: NOTRUN -> [SKIP][22] ([i915#3297]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_workarounds@suspend-resume: - shard-kbl: NOTRUN -> [DMESG-WARN][23] ([i915#180]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@gem_workarounds@suspend-resume.html * igt@gen9_exec_parse@batch-without-end: - shard-iclb: NOTRUN -> [SKIP][24] ([i915#2856]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-start-param: - shard-tglb: NOTRUN -> [SKIP][25] ([i915#2856]) +1 similar issue [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@gen9_exec_parse@bb-start-param.html * igt@i915_pm_dc@dc6-dpms: - shard-kbl: NOTRUN -> [FAIL][26] ([i915#454]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl7/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_dc@dc9-dpms: - shard-tglb: NOTRUN -> [SKIP][27] ([i915#4281]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp: - shard-kbl: NOTRUN -> [SKIP][28] ([fdo#109271] / [i915#1937]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl3/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-kbl: NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#3777]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-apl: NOTRUN -> [SKIP][30] ([fdo#109271] / [i915#3777]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-skl: NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#3777]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-tglb: NOTRUN -> [SKIP][32] ([fdo#111614]) +2 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html - shard-iclb: NOTRUN -> [SKIP][33] ([fdo#110725] / [fdo#111614]) +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-tglb: NOTRUN -> [SKIP][34] ([fdo#111615]) +2 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][35] ([i915#3689] / [i915#3886]) +1 similar issue [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-kbl: NOTRUN -> [SKIP][36] ([fdo#109271] / [i915#3886]) +5 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl2/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_rc_ccs_cc: - shard-skl: NOTRUN -> [SKIP][37] ([fdo#109271] / [i915#3886]) +1 similar issue [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html - shard-apl: NOTRUN -> [SKIP][38] ([fdo#109271] / [i915#3886]) +1 similar issue [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl6/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][39] ([fdo#111615] / [i915#3689]) +3 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-iclb: NOTRUN -> [SKIP][40] ([fdo#109278] / [i915#3886]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs: - shard-kbl: NOTRUN -> [SKIP][41] ([fdo#109271]) +86 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][42] ([i915#3689]) +1 similar issue [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_cdclk@mode-transition: - shard-apl: NOTRUN -> [SKIP][43] ([fdo#109271]) +60 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl6/igt@kms_cdclk@mode-transition.html * igt@kms_color@pipe-d-ctm-green-to-red: - shard-iclb: NOTRUN -> [SKIP][44] ([fdo#109278] / [i915#1149]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_color@pipe-d-ctm-green-to-red.html * igt@kms_color_chamelium@pipe-a-ctm-blue-to-red: - shard-kbl: NOTRUN -> [SKIP][45] ([fdo#109271] / [fdo#111827]) +8 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl1/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html * igt@kms_color_chamelium@pipe-a-ctm-green-to-red: - shard-iclb: NOTRUN -> [SKIP][46] ([fdo#109284] / [fdo#111827]) +2 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_color_chamelium@pipe-a-ctm-green-to-red.html * igt@kms_color_chamelium@pipe-c-degamma: - shard-tglb: NOTRUN -> [SKIP][47] ([fdo#109284] / [fdo#111827]) +5 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_color_chamelium@pipe-c-degamma.html * igt@kms_color_chamelium@pipe-d-ctm-0-25: - shard-skl: NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +2 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@kms_color_chamelium@pipe-d-ctm-0-25.html - shard-apl: NOTRUN -> [SKIP][49] ([fdo#109271] / [fdo#111827]) +4 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl6/igt@kms_color_chamelium@pipe-d-ctm-0-25.html * igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding: - shard-tglb: NOTRUN -> [SKIP][50] ([i915#3359]) +4 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding.html * igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen: - shard-tglb: NOTRUN -> [SKIP][51] ([i915#3319]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen.html * igt@kms_cursor_crc@pipe-d-cursor-512x512-rapid-movement: - shard-tglb: NOTRUN -> [SKIP][52] ([fdo#109279] / [i915#3359]) +2 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_cursor_crc@pipe-d-cursor-512x512-rapid-movement.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-iclb: NOTRUN -> [SKIP][53] ([fdo#109274] / [fdo#109278]) +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_dsc@basic-dsc-enable: - shard-iclb: NOTRUN -> [SKIP][54] ([i915#3840]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_dsc@basic-dsc-enable.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-iclb: NOTRUN -> [SKIP][55] ([fdo#109274]) +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2: - shard-glk: [PASS][56] -> [FAIL][57] ([i915#79]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [PASS][58] -> [FAIL][59] ([i915#2122]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-glk1/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-glk1/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-iclb: [PASS][60] -> [FAIL][61] ([i915#79]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-iclb5/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb6/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1: - shard-skl: [PASS][62] -> [FAIL][63] ([i915#2122]) +2 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-skl9/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-skl: NOTRUN -> [SKIP][64] ([fdo#109271]) +49 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite: - shard-iclb: NOTRUN -> [SKIP][65] ([fdo#109280]) +6 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-tglb: NOTRUN -> [SKIP][66] ([fdo#111825]) +22 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt@kms_hdr@bpc-switch: - shard-skl: NOTRUN -> [FAIL][67] ([i915#1188]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl1/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-dpms: - shard-skl: [PASS][68] -> [FAIL][69] ([i915#1188]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-skl4/igt@kms_hdr@bpc-switch-dpms.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl4/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@static-swap: - shard-tglb: NOTRUN -> [SKIP][70] ([i915#1187]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_hdr@static-swap.html - shard-iclb: NOTRUN -> [SKIP][71] ([i915#1187]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_hdr@static-swap.html * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d: - shard-skl: NOTRUN -> [SKIP][72] ([fdo#109271] / [i915#533]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl9/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb: - shard-apl: NOTRUN -> [FAIL][73] ([fdo#108145] / [i915#265]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl4/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html - shard-kbl: NOTRUN -> [FAIL][74] ([fdo#108145] / [i915#265]) +1 similar issue [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl3/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb: - shard-kbl: NOTRUN -> [FAIL][75] ([i915#265]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl2/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc: - shard-skl: [PASS][76] -> [FAIL][77] ([fdo#108145] / [i915#265]) +2 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-skl8/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl9/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html * igt@kms_plane_alpha_blend@pipe-d-alpha-transparent-fb: - shard-iclb: NOTRUN -> [SKIP][78] ([fdo#109278]) +7 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_plane_alpha_blend@pipe-d-alpha-transparent-fb.html * igt@kms_plane_lowres@pipe-b-tiling-none: - shard-tglb: NOTRUN -> [SKIP][79] ([i915#3536]) +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_plane_lowres@pipe-b-tiling-none.html * igt@kms_plane_lowres@pipe-c-tiling-y: - shard-iclb: NOTRUN -> [SKIP][80] ([i915#3536]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_plane_lowres@pipe-c-tiling-y.html * igt@kms_plane_lowres@pipe-c-tiling-yf: - shard-tglb: NOTRUN -> [SKIP][81] ([fdo#111615] / [fdo#112054]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@kms_plane_lowres@pipe-c-tiling-yf.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-iclb: NOTRUN -> [SKIP][82] ([i915#658]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html - shard-tglb: NOTRUN -> [SKIP][83] ([i915#2920]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_psr@psr2_basic: - shard-tglb: NOTRUN -> [FAIL][84] ([i915#132] / [i915#3467]) +1 similar issue [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_psr@psr2_basic.html - shard-iclb: NOTRUN -> [SKIP][85] ([fdo#109441]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_psr@psr2_basic.html * igt@kms_psr@psr2_sprite_mmap_cpu: - shard-iclb: [PASS][86] -> [SKIP][87] ([fdo#109441]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_cpu.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_psr@psr2_sprite_mmap_cpu.html * igt@kms_tv_load_detect@load-detect: - shard-tglb: NOTRUN -> [SKIP][88] ([fdo#109309]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@kms_tv_load_detect@load-detect.html - shard-iclb: NOTRUN -> [SKIP][89] ([fdo#109309]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend: - shard-kbl: [PASS][90] -> [INCOMPLETE][91] ([i915#2828]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-kbl3/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl4/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html * igt@nouveau_crc@pipe-b-ctx-flip-detection: - shard-tglb: NOTRUN -> [SKIP][92] ([i915#2530]) +3 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb3/igt@nouveau_crc@pipe-b-ctx-flip-detection.html * igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame: - shard-iclb: NOTRUN -> [SKIP][93] ([i915#2530]) +1 similar issue [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame.html * igt@perf@enable-disable: - shard-glk: [PASS][94] -> [FAIL][95] ([i915#1352]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-glk1/igt@perf@enable-disable.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-glk1/igt@perf@enable-disable.html * igt@perf@polling-parameterized: - shard-glk: [PASS][96] -> [FAIL][97] ([i915#1542]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-glk2/igt@perf@polling-parameterized.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-glk3/igt@perf@polling-parameterized.html * igt@perf@unprivileged-single-ctx-counters: - shard-tglb: NOTRUN -> [SKIP][98] ([fdo#109289]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@perf@unprivileged-single-ctx-counters.html * igt@prime_nv_pcopy@test3_1: - shard-tglb: NOTRUN -> [SKIP][99] ([fdo#109291]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb6/igt@prime_nv_pcopy@test3_1.html * igt@sysfs_clients@fair-0: - shard-skl: NOTRUN -> [SKIP][100] ([fdo#109271] / [i915#2994]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl10/igt@sysfs_clients@fair-0.html - shard-tglb: NOTRUN -> [SKIP][101] ([i915#2994]) +2 similar issues [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb2/igt@sysfs_clients@fair-0.html * igt@sysfs_clients@recycle-many: - shard-apl: NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#2994]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl4/igt@sysfs_clients@recycle-many.html * igt@sysfs_clients@sema-25: - shard-iclb: NOTRUN -> [SKIP][103] ([i915#2994]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb8/igt@sysfs_clients@sema-25.html * igt@sysfs_clients@sema-50: - shard-kbl: NOTRUN -> [SKIP][104] ([fdo#109271] / [i915#2994]) +1 similar issue [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl7/igt@sysfs_clients@sema-50.html #### Possible fixes #### * igt@drm_read@short-buffer-block: - {shard-rkl}: [SKIP][105] ([i915#4098]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-1/igt@drm_read@short-buffer-block.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@drm_read@short-buffer-block.html * igt@fbdev@nullptr: - {shard-rkl}: ([SKIP][107], [SKIP][108]) ([i915#2582]) -> [PASS][109] [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-4/igt@fbdev@nullptr.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-1/igt@fbdev@nullptr.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@fbdev@nullptr.html * igt@feature_discovery@psr2: - shard-iclb: [SKIP][110] ([i915#658]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-iclb8/igt@feature_discovery@psr2.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb2/igt@feature_discovery@psr2.html * igt@gem_exec_fair@basic-none@vecs0: - shard-apl: [FAIL][112] ([i915#2842]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-apl8/igt@gem_exec_fair@basic-none@vecs0.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-apl4/igt@gem_exec_fair@basic-none@vecs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglb: [FAIL][114] ([i915#2842]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-tglb8/igt@gem_exec_fair@basic-pace@rcs0.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-tglb8/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-kbl: [SKIP][116] ([fdo#109271]) -> [PASS][117] +1 similar issue [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-kbl6/igt@gem_exec_fair@basic-pace@vecs0.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl3/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-iclb: [FAIL][118] ([i915#2849]) -> [PASS][119] [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-iclb5/igt@gem_exec_fair@basic-throttle@rcs0.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-iclb4/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@i915_pm_backlight@fade_with_dpms: - {shard-rkl}: [SKIP][120] ([i915#3012]) -> [PASS][121] [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-2/igt@i915_pm_backlight@fade_with_dpms.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@i915_pm_backlight@fade_with_dpms.html * igt@i915_pm_rpm@gem-mmap-type@uc: - {shard-rkl}: [SKIP][122] ([fdo#109308]) -> [PASS][123] +4 similar issues [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-2/igt@i915_pm_rpm@gem-mmap-type@uc.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@i915_pm_rpm@gem-mmap-type@uc.html * igt@i915_pm_rpm@modeset-lpsp: - {shard-rkl}: [SKIP][124] ([i915#1397]) -> [PASS][125] +1 similar issue [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-1/igt@i915_pm_rpm@modeset-lpsp.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp.html * igt@kms_big_fb@y-tiled-32bpp-rotate-270: - {shard-rkl}: ([SKIP][126], [SKIP][127]) ([i915#1845]) -> [PASS][128] +7 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-4/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-2/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html * igt@kms_color@pipe-a-ctm-0-5: - {shard-rkl}: [SKIP][129] ([i915#1149] / [i915#1849] / [i915#4070]) -> [PASS][130] [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-2/igt@kms_color@pipe-a-ctm-0-5.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@kms_color@pipe-a-ctm-0-5.html * igt@kms_color@pipe-c-ctm-0-75: - shard-skl: [DMESG-WARN][131] ([i915#1982]) -> [PASS][132] +1 similar issue [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-skl7/igt@kms_color@pipe-c-ctm-0-75.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-skl6/igt@kms_color@pipe-c-ctm-0-75.html * igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding: - {shard-rkl}: [SKIP][133] ([fdo#112022] / [i915#4070]) -> [PASS][134] +7 similar issues [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-2/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html * igt@kms_cursor_crc@pipe-a-cursor-suspend: - shard-kbl: [DMESG-WARN][135] ([i915#180]) -> [PASS][136] +6 similar issues [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-kbl1/igt@kms_cursor_crc@pipe-a-cursor-suspend.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-kbl3/igt@kms_cursor_crc@pipe-a-cursor-suspend.html * igt@kms_cursor_crc@pipe-b-cursor-64x64-random: - {shard-rkl}: ([SKIP][137], [SKIP][138]) ([fdo#112022] / [i915#4070]) -> [PASS][139] +2 similar issues [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-1/igt@kms_cursor_crc@pipe-b-cursor-64x64-random.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-4/igt@kms_cursor_crc@pipe-b-cursor-64x64-random.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/shard-rkl-6/igt@kms_cursor_crc@pipe-b-cursor-64x64-random.html * igt@kms_cursor_edge_walk@pipe-a-128x128-left-edge: - {shard-rkl}: [SKIP][140] ([i915#1849] / [i915#4070]) -> [PASS][141] +7 similar issues [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10996/shard-rkl-2/igt@kms_cursor_edge_walk@pipe-a-128x128-left-edge.html [141]: https://intel-gf == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21842/index.html [-- Attachment #2: Type: text/html, Size: 33660 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2021-12-14 17:17 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-12-13 12:55 [Intel-gfx] [PATCH] drm/i915/debugfs: add noreclaim annotations Matthew Auld 2021-12-13 12:58 ` Thomas Hellström 2021-12-13 18:15 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for " Patchwork 2021-12-14 9:24 ` Matthew Auld 2021-12-13 21:32 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/debugfs: add noreclaim annotations (rev2) Patchwork 2021-12-14 4:55 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 2021-12-14 9:25 ` Matthew Auld 2021-12-14 17:13 ` Vudum, Lakshminarayana 2021-12-14 17:12 ` [Intel-gfx] ✓ Fi.CI.IGT: success " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox