* [Intel-gfx] [PATCH v2 1/2] drm/i915/gtt: flush the scratch page
@ 2021-10-28 9:26 Matthew Auld
2021-10-28 9:26 ` [Intel-gfx] [PATCH v2 2/2] drm/i915/gtt: stop caching " Matthew Auld
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Matthew Auld @ 2021-10-28 9:26 UTC (permalink / raw)
To: intel-gfx; +Cc: dri-devel, Thomas Hellström, Chris Wilson, Ramalingam C
The scratch page is directly visible in the users address space, and
while this is forced as CACHE_LLC, by the kernel, we still have to
contend with things like "Bypass-LLC" MOCS. So just flush no matter
what.
v2(Thomas):
- Make sure we use drm_clflush_virt_range here, in case clflush support
is missing.
Signed-off-by: Matthew Auld <matthew.auld@intel.com>
Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Ramalingam C <ramalingam.c@intel.com>
Reviewed-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
---
drivers/gpu/drm/i915/gt/intel_gtt.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/gpu/drm/i915/gt/intel_gtt.c b/drivers/gpu/drm/i915/gt/intel_gtt.c
index 67d14afa6623..efb51e881c5a 100644
--- a/drivers/gpu/drm/i915/gt/intel_gtt.c
+++ b/drivers/gpu/drm/i915/gt/intel_gtt.c
@@ -273,6 +273,7 @@ static void poison_scratch_page(struct drm_i915_gem_object *scratch)
val = POISON_FREE;
memset(vaddr, val, scratch->base.size);
+ drm_clflush_virt_range(vaddr, scratch->base.size);
}
int setup_scratch_page(struct i915_address_space *vm)
--
2.26.3
^ permalink raw reply related [flat|nested] 5+ messages in thread* [Intel-gfx] [PATCH v2 2/2] drm/i915/gtt: stop caching the scratch page 2021-10-28 9:26 [Intel-gfx] [PATCH v2 1/2] drm/i915/gtt: flush the scratch page Matthew Auld @ 2021-10-28 9:26 ` Matthew Auld 2021-11-22 9:43 ` Tvrtko Ursulin 2021-10-28 14:46 ` [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [v2,1/2] drm/i915/gtt: flush " Patchwork 2021-10-28 18:56 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 2 siblings, 1 reply; 5+ messages in thread From: Matthew Auld @ 2021-10-28 9:26 UTC (permalink / raw) To: intel-gfx; +Cc: dri-devel, Chris Wilson, Thomas Hellström, Ramalingam C Normal users shouldn't be hitting this, likely this would indicate a userspace bug. So don't bother caching, which should be safe now that we manually flush the page. Suggested-by: Chris Wilson <chris@chris-wilson.co.uk> Signed-off-by: Matthew Auld <matthew.auld@intel.com> Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com> Cc: Chris Wilson <chris@chris-wilson.co.uk> Cc: Ramalingam C <ramalingam.c@intel.com> Reviewed-by: Thomas Hellström <thomas.hellstrom@linux.intel.com> --- drivers/gpu/drm/i915/gt/gen8_ppgtt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/i915/gt/gen8_ppgtt.c b/drivers/gpu/drm/i915/gt/gen8_ppgtt.c index 8af2f709571c..9966e9dc5218 100644 --- a/drivers/gpu/drm/i915/gt/gen8_ppgtt.c +++ b/drivers/gpu/drm/i915/gt/gen8_ppgtt.c @@ -651,7 +651,7 @@ static int gen8_init_scratch(struct i915_address_space *vm) vm->scratch[0]->encode = gen8_pte_encode(px_dma(vm->scratch[0]), - I915_CACHE_LLC, pte_flags); + I915_CACHE_NONE, pte_flags); for (i = 1; i <= vm->top; i++) { struct drm_i915_gem_object *obj; @@ -667,7 +667,7 @@ static int gen8_init_scratch(struct i915_address_space *vm) } fill_px(obj, vm->scratch[i - 1]->encode); - obj->encode = gen8_pde_encode(px_dma(obj), I915_CACHE_LLC); + obj->encode = gen8_pde_encode(px_dma(obj), I915_CACHE_NONE); vm->scratch[i] = obj; } -- 2.26.3 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Intel-gfx] [PATCH v2 2/2] drm/i915/gtt: stop caching the scratch page 2021-10-28 9:26 ` [Intel-gfx] [PATCH v2 2/2] drm/i915/gtt: stop caching " Matthew Auld @ 2021-11-22 9:43 ` Tvrtko Ursulin 0 siblings, 0 replies; 5+ messages in thread From: Tvrtko Ursulin @ 2021-11-22 9:43 UTC (permalink / raw) To: Matthew Auld, intel-gfx; +Cc: Thomas Hellström, dri-devel, Chris Wilson On 28/10/2021 10:26, Matthew Auld wrote: > Normal users shouldn't be hitting this, likely this would indicate a > userspace bug. So don't bother caching, which should be safe now that we > manually flush the page. Could this have a performance impact if "things" overfetch often enough in normal operation? Regards, Tvrtko > Suggested-by: Chris Wilson <chris@chris-wilson.co.uk> > Signed-off-by: Matthew Auld <matthew.auld@intel.com> > Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com> > Cc: Chris Wilson <chris@chris-wilson.co.uk> > Cc: Ramalingam C <ramalingam.c@intel.com> > Reviewed-by: Thomas Hellström <thomas.hellstrom@linux.intel.com> > --- > drivers/gpu/drm/i915/gt/gen8_ppgtt.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/gpu/drm/i915/gt/gen8_ppgtt.c b/drivers/gpu/drm/i915/gt/gen8_ppgtt.c > index 8af2f709571c..9966e9dc5218 100644 > --- a/drivers/gpu/drm/i915/gt/gen8_ppgtt.c > +++ b/drivers/gpu/drm/i915/gt/gen8_ppgtt.c > @@ -651,7 +651,7 @@ static int gen8_init_scratch(struct i915_address_space *vm) > > vm->scratch[0]->encode = > gen8_pte_encode(px_dma(vm->scratch[0]), > - I915_CACHE_LLC, pte_flags); > + I915_CACHE_NONE, pte_flags); > > for (i = 1; i <= vm->top; i++) { > struct drm_i915_gem_object *obj; > @@ -667,7 +667,7 @@ static int gen8_init_scratch(struct i915_address_space *vm) > } > > fill_px(obj, vm->scratch[i - 1]->encode); > - obj->encode = gen8_pde_encode(px_dma(obj), I915_CACHE_LLC); > + obj->encode = gen8_pde_encode(px_dma(obj), I915_CACHE_NONE); > > vm->scratch[i] = obj; > } > ^ permalink raw reply [flat|nested] 5+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [v2,1/2] drm/i915/gtt: flush the scratch page 2021-10-28 9:26 [Intel-gfx] [PATCH v2 1/2] drm/i915/gtt: flush the scratch page Matthew Auld 2021-10-28 9:26 ` [Intel-gfx] [PATCH v2 2/2] drm/i915/gtt: stop caching " Matthew Auld @ 2021-10-28 14:46 ` Patchwork 2021-10-28 18:56 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2021-10-28 14:46 UTC (permalink / raw) To: Matthew Auld; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 6590 bytes --] == Series Details == Series: series starting with [v2,1/2] drm/i915/gtt: flush the scratch page URL : https://patchwork.freedesktop.org/series/96380/ State : success == Summary == CI Bug Log - changes from CI_DRM_10807 -> Patchwork_21474 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/index.html Participating hosts (28 -> 32) ------------------------------ Additional (5): fi-kbl-soraka fi-bsw-n3050 fi-icl-u2 fi-bsw-kefka fi-bsw-nick Missing (1): fi-pnv-d510 Known issues ------------ Here are the changes found in Patchwork_21474 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@amdgpu/amd_basic@query-info: - fi-bsw-kefka: NOTRUN -> [SKIP][1] ([fdo#109271]) +32 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/fi-bsw-kefka/igt@amdgpu/amd_basic@query-info.html * igt@amdgpu/amd_basic@semaphore: - fi-bdw-5557u: NOTRUN -> [SKIP][2] ([fdo#109271]) +27 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/fi-bdw-5557u/igt@amdgpu/amd_basic@semaphore.html * igt@amdgpu/amd_cs_nop@fork-gfx0: - fi-icl-u2: NOTRUN -> [SKIP][3] ([fdo#109315]) +17 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/fi-icl-u2/igt@amdgpu/amd_cs_nop@fork-gfx0.html * igt@gem_exec_fence@basic-busy@bcs0: - fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271]) +8 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/fi-kbl-soraka/igt@gem_exec_fence@basic-busy@bcs0.html * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#2190]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html - fi-icl-u2: NOTRUN -> [SKIP][6] ([i915#2190]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/fi-icl-u2/igt@gem_huc_copy@huc-copy.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][7] ([i915#1886] / [i915#2291]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@kms_chamelium@common-hpd-after-suspend: - fi-kbl-soraka: NOTRUN -> [SKIP][8] ([fdo#109271] / [fdo#111827]) +8 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/fi-kbl-soraka/igt@kms_chamelium@common-hpd-after-suspend.html * igt@kms_chamelium@dp-crc-fast: - fi-bdw-5557u: NOTRUN -> [SKIP][9] ([fdo#109271] / [fdo#111827]) +8 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/fi-bdw-5557u/igt@kms_chamelium@dp-crc-fast.html - fi-bsw-nick: NOTRUN -> [SKIP][10] ([fdo#109271] / [fdo#111827]) +8 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/fi-bsw-nick/igt@kms_chamelium@dp-crc-fast.html * igt@kms_chamelium@hdmi-crc-fast: - fi-bsw-n3050: NOTRUN -> [SKIP][11] ([fdo#109271] / [fdo#111827]) +8 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/fi-bsw-n3050/igt@kms_chamelium@hdmi-crc-fast.html * igt@kms_chamelium@hdmi-edid-read: - fi-bsw-kefka: NOTRUN -> [SKIP][12] ([fdo#109271] / [fdo#111827]) +8 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/fi-bsw-kefka/igt@kms_chamelium@hdmi-edid-read.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-icl-u2: NOTRUN -> [SKIP][13] ([fdo#111827]) +8 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - fi-icl-u2: NOTRUN -> [SKIP][14] ([fdo#109278]) +2 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_force_connector_basic@force-load-detect: - fi-icl-u2: NOTRUN -> [SKIP][15] ([fdo#109285]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/fi-icl-u2/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: - fi-kbl-soraka: NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#533]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/fi-kbl-soraka/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html * igt@kms_pipe_crc_basic@hang-read-crc-pipe-a: - fi-bsw-n3050: NOTRUN -> [SKIP][17] ([fdo#109271]) +42 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/fi-bsw-n3050/igt@kms_pipe_crc_basic@hang-read-crc-pipe-a.html * igt@prime_vgem@basic-fence-flip: - fi-bsw-nick: NOTRUN -> [SKIP][18] ([fdo#109271]) +63 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/fi-bsw-nick/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-userptr: - fi-icl-u2: NOTRUN -> [SKIP][19] ([i915#3301]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/fi-icl-u2/igt@prime_vgem@basic-userptr.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2291]: https://gitlab.freedesktop.org/drm/intel/issues/2291 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 Build changes ------------- * Linux: CI_DRM_10807 -> Patchwork_21474 CI-20190529: 20190529 CI_DRM_10807: 0cd0ae01802327aedf3ab152e91376b59443a099 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_6262: d1c793b26e31cc6ae3f9fa3239805a9bbcc749fb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_21474: 40e8750cdd3fba8321c942ffa858f97a876f984f @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == 40e8750cdd3f drm/i915/gtt: stop caching the scratch page ee048a5bde55 drm/i915/gtt: flush the scratch page == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/index.html [-- Attachment #2: Type: text/html, Size: 8787 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* [Intel-gfx] ✓ Fi.CI.IGT: success for series starting with [v2,1/2] drm/i915/gtt: flush the scratch page 2021-10-28 9:26 [Intel-gfx] [PATCH v2 1/2] drm/i915/gtt: flush the scratch page Matthew Auld 2021-10-28 9:26 ` [Intel-gfx] [PATCH v2 2/2] drm/i915/gtt: stop caching " Matthew Auld 2021-10-28 14:46 ` [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [v2,1/2] drm/i915/gtt: flush " Patchwork @ 2021-10-28 18:56 ` Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2021-10-28 18:56 UTC (permalink / raw) To: Matthew Auld; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 30289 bytes --] == Series Details == Series: series starting with [v2,1/2] drm/i915/gtt: flush the scratch page URL : https://patchwork.freedesktop.org/series/96380/ State : success == Summary == CI Bug Log - changes from CI_DRM_10807_full -> Patchwork_21474_full ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in Patchwork_21474_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-tglb: [PASS][1] -> [INCOMPLETE][2] ([i915#456]) +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-tglb2/igt@gem_ctx_isolation@preservation-s3@bcs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb7/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglb: NOTRUN -> [SKIP][3] ([i915#280]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb2/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@unwedge-stress: - shard-tglb: [PASS][4] -> [TIMEOUT][5] ([i915#2369] / [i915#3063] / [i915#3648]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-tglb6/igt@gem_eio@unwedge-stress.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb8/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-deadline: - shard-apl: NOTRUN -> [FAIL][6] ([i915#2846]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-apl6/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-iclb: [PASS][7] -> [FAIL][8] ([i915#2842]) +1 similar issue [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-iclb7/igt@gem_exec_fair@basic-none-share@rcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-iclb6/igt@gem_exec_fair@basic-none-share@rcs0.html - shard-apl: [PASS][9] -> [SKIP][10] ([fdo#109271]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-apl4/igt@gem_exec_fair@basic-none-share@rcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-apl3/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-kbl: [PASS][11] -> [FAIL][12] ([i915#2842]) +2 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-kbl6/igt@gem_exec_fair@basic-none@vcs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-kbl7/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: [PASS][13] -> [SKIP][14] ([i915#2848]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-tglb8/igt@gem_exec_fair@basic-pace-share@rcs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-iclb: NOTRUN -> [FAIL][15] ([i915#2842]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-tglb: [PASS][16] -> [FAIL][17] ([i915#2842]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-tglb1/igt@gem_exec_fair@basic-pace@vecs0.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb5/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_huc_copy@huc-copy: - shard-apl: NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#2190]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-apl3/igt@gem_huc_copy@huc-copy.html * igt@gem_mmap_gtt@coherency: - shard-tglb: NOTRUN -> [SKIP][19] ([fdo#111656]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb2/igt@gem_mmap_gtt@coherency.html * igt@gem_ppgtt@flink-and-close-vma-leak: - shard-glk: [PASS][20] -> [FAIL][21] ([i915#644]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-glk8/igt@gem_ppgtt@flink-and-close-vma-leak.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-glk6/igt@gem_ppgtt@flink-and-close-vma-leak.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-tglb: NOTRUN -> [SKIP][22] ([i915#4270]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb2/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_softpin@noreloc-s3: - shard-tglb: [PASS][23] -> [INCOMPLETE][24] ([i915#1373] / [i915#456]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-tglb2/igt@gem_softpin@noreloc-s3.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb7/igt@gem_softpin@noreloc-s3.html * igt@gen3_render_tiledy_blits: - shard-tglb: NOTRUN -> [SKIP][25] ([fdo#109289]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb1/igt@gen3_render_tiledy_blits.html * igt@gen9_exec_parse@bb-start-out: - shard-tglb: NOTRUN -> [SKIP][26] ([i915#2856]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb2/igt@gen9_exec_parse@bb-start-out.html * igt@i915_selftest@mock@requests: - shard-skl: NOTRUN -> [INCOMPLETE][27] ([i915#198]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-skl9/igt@i915_selftest@mock@requests.html * igt@i915_suspend@forcewake: - shard-tglb: [PASS][28] -> [INCOMPLETE][29] ([i915#2411] / [i915#456]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-tglb8/igt@i915_suspend@forcewake.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb7/igt@i915_suspend@forcewake.html * igt@kms_async_flips@crc: - shard-skl: NOTRUN -> [FAIL][30] ([i915#4272]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-skl9/igt@kms_async_flips@crc.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-tglb: NOTRUN -> [SKIP][31] ([fdo#111614]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb1/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-skl: NOTRUN -> [FAIL][32] ([i915#3743]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-skl9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-skl: NOTRUN -> [SKIP][33] ([fdo#109271] / [i915#3777]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-skl9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-apl: NOTRUN -> [SKIP][34] ([fdo#109271] / [i915#3777]) +2 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-apl3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-kbl: NOTRUN -> [SKIP][35] ([fdo#109271]) +107 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-kbl4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-apl: NOTRUN -> [SKIP][36] ([fdo#109271]) +182 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-apl3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][37] ([i915#3689] / [i915#3886]) +1 similar issue [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb1/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_ccs: - shard-snb: NOTRUN -> [SKIP][38] ([fdo#109271]) +39 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-snb5/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc: - shard-kbl: NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#3886]) +6 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-kbl6/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-skl: NOTRUN -> [SKIP][40] ([fdo#109271] / [i915#3886]) +3 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-skl9/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#3886]) +9 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-apl6/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][42] ([i915#3689]) +5 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb2/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs.html * igt@kms_chamelium@vga-edid-read: - shard-apl: NOTRUN -> [SKIP][43] ([fdo#109271] / [fdo#111827]) +13 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-apl6/igt@kms_chamelium@vga-edid-read.html * igt@kms_chamelium@vga-frame-dump: - shard-skl: NOTRUN -> [SKIP][44] ([fdo#109271] / [fdo#111827]) +8 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-skl9/igt@kms_chamelium@vga-frame-dump.html * igt@kms_chamelium@vga-hpd-after-suspend: - shard-tglb: NOTRUN -> [SKIP][45] ([fdo#109284] / [fdo#111827]) +4 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb2/igt@kms_chamelium@vga-hpd-after-suspend.html * igt@kms_color@pipe-c-ctm-0-5: - shard-tglb: [PASS][46] -> [DMESG-WARN][47] ([i915#1149] / [i915#1982]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-tglb8/igt@kms_color@pipe-c-ctm-0-5.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb3/igt@kms_color@pipe-c-ctm-0-5.html * igt@kms_color@pipe-c-ctm-0-75: - shard-skl: [PASS][48] -> [DMESG-WARN][49] ([i915#1982]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-skl10/igt@kms_color@pipe-c-ctm-0-75.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-skl4/igt@kms_color@pipe-c-ctm-0-75.html * igt@kms_color_chamelium@pipe-c-ctm-max: - shard-kbl: NOTRUN -> [SKIP][50] ([fdo#109271] / [fdo#111827]) +7 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-kbl1/igt@kms_color_chamelium@pipe-c-ctm-max.html * igt@kms_color_chamelium@pipe-d-ctm-blue-to-red: - shard-snb: NOTRUN -> [SKIP][51] ([fdo#109271] / [fdo#111827]) +2 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-snb5/igt@kms_color_chamelium@pipe-d-ctm-blue-to-red.html * igt@kms_content_protection@atomic: - shard-kbl: NOTRUN -> [TIMEOUT][52] ([i915#1319]) +1 similar issue [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-kbl1/igt@kms_content_protection@atomic.html * igt@kms_cursor_crc@pipe-a-cursor-512x170-random: - shard-tglb: NOTRUN -> [SKIP][53] ([fdo#109279] / [i915#3359]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb2/igt@kms_cursor_crc@pipe-a-cursor-512x170-random.html * igt@kms_cursor_crc@pipe-c-cursor-max-size-rapid-movement: - shard-tglb: NOTRUN -> [SKIP][54] ([i915#3359]) +2 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb2/igt@kms_cursor_crc@pipe-c-cursor-max-size-rapid-movement.html * igt@kms_cursor_crc@pipe-c-cursor-suspend: - shard-kbl: NOTRUN -> [DMESG-WARN][55] ([i915#180]) +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-kbl1/igt@kms_cursor_crc@pipe-c-cursor-suspend.html * igt@kms_cursor_crc@pipe-d-cursor-32x32-sliding: - shard-tglb: NOTRUN -> [SKIP][56] ([i915#3319]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb1/igt@kms_cursor_crc@pipe-d-cursor-32x32-sliding.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-glk: [PASS][57] -> [FAIL][58] ([i915#72]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-glk9/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-glk6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-skl: NOTRUN -> [FAIL][59] ([i915#2346] / [i915#533]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-skl9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@pipe-d-single-bo: - shard-kbl: NOTRUN -> [SKIP][60] ([fdo#109271] / [i915#533]) +1 similar issue [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-kbl1/igt@kms_cursor_legacy@pipe-d-single-bo.html * igt@kms_draw_crc@draw-method-rgb565-pwrite-xtiled: - shard-glk: [PASS][61] -> [DMESG-WARN][62] ([i915#118]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-glk3/igt@kms_draw_crc@draw-method-rgb565-pwrite-xtiled.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-glk7/igt@kms_draw_crc@draw-method-rgb565-pwrite-xtiled.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-skl: [PASS][63] -> [FAIL][64] ([i915#79]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-skl2/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-skl1/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2: - shard-glk: [PASS][65] -> [FAIL][66] ([i915#79]) +1 similar issue [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-glk6/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-glk7/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@c-edp1: - shard-skl: [PASS][67] -> [FAIL][68] ([i915#2122]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-skl7/igt@kms_flip@plain-flip-fb-recreate-interruptible@c-edp1.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-skl1/igt@kms_flip@plain-flip-fb-recreate-interruptible@c-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile: - shard-iclb: [PASS][69] -> [SKIP][70] ([i915#3701]) +1 similar issue [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile.html * igt@kms_force_connector_basic@force-load-detect: - shard-tglb: NOTRUN -> [SKIP][71] ([fdo#109285]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu: - shard-skl: NOTRUN -> [SKIP][72] ([fdo#109271]) +102 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-skl9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-tglb: NOTRUN -> [SKIP][73] ([fdo#111825]) +15 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt@kms_hdr@bpc-switch-suspend: - shard-kbl: [PASS][74] -> [DMESG-WARN][75] ([i915#180]) +6 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-kbl1/igt@kms_hdr@bpc-switch-suspend.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-kbl7/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: - shard-skl: NOTRUN -> [SKIP][76] ([fdo#109271] / [i915#533]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-skl9/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d: - shard-apl: NOTRUN -> [SKIP][77] ([fdo#109271] / [i915#533]) +1 similar issue [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-apl6/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: - shard-apl: NOTRUN -> [DMESG-WARN][78] ([i915#180]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html * igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb: - shard-skl: NOTRUN -> [FAIL][79] ([i915#265]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-skl10/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html * igt@kms_plane_alpha_blend@pipe-c-alpha-7efc: - shard-apl: NOTRUN -> [FAIL][80] ([fdo#108145] / [i915#265]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-apl3/igt@kms_plane_alpha_blend@pipe-c-alpha-7efc.html * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb: - shard-kbl: NOTRUN -> [FAIL][81] ([fdo#108145] / [i915#265]) +3 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-kbl4/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html * igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb: - shard-apl: NOTRUN -> [FAIL][82] ([i915#265]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-apl2/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html * igt@kms_plane_lowres@pipe-b-tiling-none: - shard-tglb: NOTRUN -> [SKIP][83] ([i915#3536]) +2 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb1/igt@kms_plane_lowres@pipe-b-tiling-none.html * igt@kms_prime@basic-crc@first-to-second: - shard-tglb: NOTRUN -> [SKIP][84] ([i915#1836]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb2/igt@kms_prime@basic-crc@first-to-second.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1: - shard-apl: NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#658]) +2 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-apl3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html * igt@kms_psr2_sf@plane-move-sf-dmg-area-0: - shard-skl: NOTRUN -> [SKIP][86] ([fdo#109271] / [i915#658]) +2 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-skl9/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2: - shard-tglb: NOTRUN -> [SKIP][87] ([i915#2920]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb1/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5: - shard-kbl: NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#658]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-kbl6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html * igt@kms_psr@psr2_no_drrs: - shard-tglb: NOTRUN -> [FAIL][89] ([i915#132] / [i915#3467]) +1 similar issue [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb2/igt@kms_psr@psr2_no_drrs.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-iclb: [PASS][90] -> [SKIP][91] ([fdo#109441]) +2 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-iclb4/igt@kms_psr@psr2_sprite_mmap_gtt.html * igt@kms_setmode@basic: - shard-apl: [PASS][92] -> [FAIL][93] ([i915#31]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-apl3/igt@kms_setmode@basic.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-apl1/igt@kms_setmode@basic.html - shard-glk: [PASS][94] -> [FAIL][95] ([i915#31]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-glk1/igt@kms_setmode@basic.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-glk9/igt@kms_setmode@basic.html * igt@kms_sysfs_edid_timing: - shard-kbl: NOTRUN -> [FAIL][96] ([IGT#2]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-kbl6/igt@kms_sysfs_edid_timing.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-skl: [PASS][97] -> [INCOMPLETE][98] ([i915#198]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-skl9/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-skl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html * igt@kms_vblank@pipe-d-ts-continuation-suspend: - shard-tglb: [PASS][99] -> [INCOMPLETE][100] ([i915#3896]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-tglb5/igt@kms_vblank@pipe-d-ts-continuation-suspend.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb7/igt@kms_vblank@pipe-d-ts-continuation-suspend.html * igt@kms_writeback@writeback-check-output: - shard-kbl: NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#2437]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-kbl1/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-pixel-formats: - shard-skl: NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#2437]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-skl9/igt@kms_writeback@writeback-pixel-formats.html * igt@nouveau_crc@pipe-a-ctx-flip-skip-current-frame: - shard-tglb: NOTRUN -> [SKIP][103] ([i915#2530]) +1 similar issue [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb2/igt@nouveau_crc@pipe-a-ctx-flip-skip-current-frame.html * igt@perf@polling-parameterized: - shard-tglb: [PASS][104] -> [FAIL][105] ([i915#1542]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-tglb8/igt@perf@polling-parameterized.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb3/igt@perf@polling-parameterized.html * igt@prime_nv_pcopy@test3_1: - shard-tglb: NOTRUN -> [SKIP][106] ([fdo#109291]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb2/igt@prime_nv_pcopy@test3_1.html * igt@sysfs_clients@create: - shard-tglb: NOTRUN -> [SKIP][107] ([i915#2994]) +1 similar issue [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb2/igt@sysfs_clients@create.html - shard-apl: NOTRUN -> [SKIP][108] ([fdo#109271] / [i915#2994]) +2 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-apl2/igt@sysfs_clients@create.html * igt@sysfs_clients@recycle: - shard-kbl: NOTRUN -> [SKIP][109] ([fdo#109271] / [i915#2994]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-kbl1/igt@sysfs_clients@recycle.html * igt@sysfs_clients@sema-10: - shard-skl: NOTRUN -> [SKIP][110] ([fdo#109271] / [i915#2994]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-skl10/igt@sysfs_clients@sema-10.html #### Possible fixes #### * igt@gem_ctx_isolation@preservation-s3@vcs0: - shard-kbl: [DMESG-WARN][111] ([i915#180]) -> [PASS][112] +7 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-kbl6/igt@gem_ctx_isolation@preservation-s3@vcs0.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-kbl3/igt@gem_ctx_isolation@preservation-s3@vcs0.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-glk: [FAIL][113] ([i915#2842]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-glk8/igt@gem_exec_fair@basic-none-vip@rcs0.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-glk5/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-apl: [FAIL][115] ([i915#2842]) -> [PASS][116] [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-apl3/igt@gem_exec_fair@basic-none@vcs0.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-apl6/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-iclb: [FAIL][117] ([i915#2842]) -> [PASS][118] [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-iclb6/igt@gem_exec_fair@basic-pace@vcs0.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-kbl: [FAIL][119] ([i915#2842]) -> [PASS][120] +1 similar issue [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-kbl7/igt@gem_exec_fair@basic-pace@vecs0.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-kbl6/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-sync@rcs0: - shard-kbl: [SKIP][121] ([fdo#109271]) -> [PASS][122] [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-kbl4/igt@gem_exec_fair@basic-sync@rcs0.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-kbl6/igt@gem_exec_fair@basic-sync@rcs0.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [FAIL][123] ([i915#454]) -> [PASS][124] [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-iclb3/igt@i915_pm_dc@dc6-psr.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-iclb6/igt@i915_pm_dc@dc6-psr.html * igt@i915_selftest@live@hangcheck: - shard-snb: [INCOMPLETE][125] ([i915#3921]) -> [PASS][126] [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-snb2/igt@i915_selftest@live@hangcheck.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-snb5/igt@i915_selftest@live@hangcheck.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-apl: [DMESG-WARN][127] ([i915#180]) -> [PASS][128] +7 similar issues [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-apl1/igt@i915_suspend@fence-restore-tiled2untiled.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-apl6/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_color@pipe-b-ctm-0-75: - shard-skl: [DMESG-WARN][129] ([i915#1982]) -> [PASS][130] [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-skl1/igt@kms_color@pipe-b-ctm-0-75.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-skl7/igt@kms_color@pipe-b-ctm-0-75.html * igt@kms_cursor_crc@pipe-a-cursor-suspend: - shard-apl: [INCOMPLETE][131] ([i915#2828]) -> [PASS][132] [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-apl2/igt@kms_cursor_crc@pipe-a-cursor-suspend.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-apl2/igt@kms_cursor_crc@pipe-a-cursor-suspend.html * igt@kms_cursor_crc@pipe-b-cursor-256x256-sliding: - shard-kbl: [INCOMPLETE][133] ([i915#4393]) -> [PASS][134] [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-kbl6/igt@kms_cursor_crc@pipe-b-cursor-256x256-sliding.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-kbl6/igt@kms_cursor_crc@pipe-b-cursor-256x256-sliding.html * igt@kms_cursor_crc@pipe-c-cursor-suspend: - shard-tglb: [INCOMPLETE][135] ([i915#456]) -> [PASS][136] [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-tglb7/igt@kms_cursor_crc@pipe-c-cursor-suspend.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb1/igt@kms_cursor_crc@pipe-c-cursor-suspend.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-tglb: [INCOMPLETE][137] ([i915#2411] / [i915#456]) -> [PASS][138] [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-tglb7/igt@kms_fbcon_fbt@fbc-suspend.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-tglb2/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-skl: [FAIL][139] ([i915#2122]) -> [PASS][140] [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10807/shard-skl2/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/shard-skl1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile: - shard-iclb: [SKIP][141] ([i915#3701]) -> [PASS][142] [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21474/index.html [-- Attachment #2: Type: text/html, Size: 33625 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-11-22 9:43 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-10-28 9:26 [Intel-gfx] [PATCH v2 1/2] drm/i915/gtt: flush the scratch page Matthew Auld 2021-10-28 9:26 ` [Intel-gfx] [PATCH v2 2/2] drm/i915/gtt: stop caching " Matthew Auld 2021-11-22 9:43 ` Tvrtko Ursulin 2021-10-28 14:46 ` [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [v2,1/2] drm/i915/gtt: flush " Patchwork 2021-10-28 18:56 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox