* [PATCH v2 0/2] Fix mmap memory boundary calculation
@ 2024-08-05 10:25 Andi Shyti
2024-08-05 10:25 ` [PATCH v2 1/2] drm/i915/gem: Adjust vma offset for framebuffer mmap offset Andi Shyti
` (5 more replies)
0 siblings, 6 replies; 14+ messages in thread
From: Andi Shyti @ 2024-08-05 10:25 UTC (permalink / raw)
To: intel-gfx, dri-devel
Cc: Jani Nikula, Joonas Lahtinen, Rodrigo Vivi, Tvrtko Ursulin,
Jann Horn, Chris Wilson, Krzysztof Niemiec, Andi Shyti,
Andi Shyti
Hi,
this series fixes the memory limits calculation (start, end), in
order to avoid access to addresses not belonging to the mapped
page.
This series has been reviewed in other communities but, because
it needs to go through drm-tip, I am proposing it again here in
the intel-gfx mailing list.
Thanks a lot Jann for your inputs and reviews.
Rodrigo, could you please restate your review tag? I'm just
waiting for your tag in patch 1 to get this series in.
Thanks,
Andi
Changelog from v1:
==================
- Added Jonathan's and Jann's tags.
- pfn is now calculated inside the set_address_limits() as
suggested by Jonathan.
Andi Shyti (2):
drm/i915/gem: Adjust vma offset for framebuffer mmap offset
drm/i915/gem: Fix Virtual Memory mapping boundaries calculation
drivers/gpu/drm/i915/gem/i915_gem_mman.c | 64 +++++++++++++++++++++---
1 file changed, 58 insertions(+), 6 deletions(-)
--
2.45.2
^ permalink raw reply [flat|nested] 14+ messages in thread* [PATCH v2 1/2] drm/i915/gem: Adjust vma offset for framebuffer mmap offset 2024-08-05 10:25 [PATCH v2 0/2] Fix mmap memory boundary calculation Andi Shyti @ 2024-08-05 10:25 ` Andi Shyti 2024-08-05 10:25 ` [PATCH v2 2/2] drm/i915/gem: Fix Virtual Memory mapping boundaries calculation Andi Shyti ` (4 subsequent siblings) 5 siblings, 0 replies; 14+ messages in thread From: Andi Shyti @ 2024-08-05 10:25 UTC (permalink / raw) To: intel-gfx, dri-devel Cc: Jani Nikula, Joonas Lahtinen, Rodrigo Vivi, Tvrtko Ursulin, Jann Horn, Chris Wilson, Krzysztof Niemiec, Andi Shyti, Andi Shyti When mapping a framebuffer object, the virtual memory area (VMA) offset ('vm_pgoff') should be adjusted by the start of the 'vma_node' associated with the object. This ensures that the VMA offset is correctly aligned with the corresponding offset within the GGTT aperture. Increment vm_pgoff by the start of the vma_node with the offset= provided by the user. Suggested-by: Chris Wilson <chris.p.wilson@linux.intel.com> Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com> Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com> --- drivers/gpu/drm/i915/gem/i915_gem_mman.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/gpu/drm/i915/gem/i915_gem_mman.c b/drivers/gpu/drm/i915/gem/i915_gem_mman.c index a2195e28b625..ce10dd259812 100644 --- a/drivers/gpu/drm/i915/gem/i915_gem_mman.c +++ b/drivers/gpu/drm/i915/gem/i915_gem_mman.c @@ -1084,6 +1084,8 @@ int i915_gem_fb_mmap(struct drm_i915_gem_object *obj, struct vm_area_struct *vma mmo = mmap_offset_attach(obj, mmap_type, NULL); if (IS_ERR(mmo)) return PTR_ERR(mmo); + + vma->vm_pgoff += drm_vma_node_start(&mmo->vma_node); } /* -- 2.45.2 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH v2 2/2] drm/i915/gem: Fix Virtual Memory mapping boundaries calculation 2024-08-05 10:25 [PATCH v2 0/2] Fix mmap memory boundary calculation Andi Shyti 2024-08-05 10:25 ` [PATCH v2 1/2] drm/i915/gem: Adjust vma offset for framebuffer mmap offset Andi Shyti @ 2024-08-05 10:25 ` Andi Shyti 2024-08-05 11:17 ` ✗ Fi.CI.CHECKPATCH: warning for Fix mmap memory boundary calculation (rev2) Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 14+ messages in thread From: Andi Shyti @ 2024-08-05 10:25 UTC (permalink / raw) To: intel-gfx, dri-devel Cc: Jani Nikula, Joonas Lahtinen, Rodrigo Vivi, Tvrtko Ursulin, Jann Horn, Chris Wilson, Krzysztof Niemiec, Andi Shyti, Andi Shyti Calculating the size of the mapped area as the lesser value between the requested size and the actual size does not consider the partial mapping offset. This can cause page fault access. Fix the calculation of the starting and ending addresses, the total size is now deduced from the difference between the end and start addresses. Additionally, the calculations have been rewritten in a clearer and more understandable form. Fixes: c58305af1835 ("drm/i915: Use remap_io_mapping() to prefault all PTE in a single pass") Reported-by: Jann Horn <jannh@google.com> Co-developed-by: Chris Wilson <chris.p.wilson@linux.intel.com> Signed-off-by: Chris Wilson <chris.p.wilson@linux.intel.com> Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com> Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> Cc: Matthew Auld <matthew.auld@intel.com> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> Cc: <stable@vger.kernel.org> # v4.9+ Reviewed-by: Jann Horn <jannh@google.com> Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com> --- drivers/gpu/drm/i915/gem/i915_gem_mman.c | 62 +++++++++++++++++++++--- 1 file changed, 56 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/i915/gem/i915_gem_mman.c b/drivers/gpu/drm/i915/gem/i915_gem_mman.c index ce10dd259812..35e0798d254a 100644 --- a/drivers/gpu/drm/i915/gem/i915_gem_mman.c +++ b/drivers/gpu/drm/i915/gem/i915_gem_mman.c @@ -290,6 +290,48 @@ static vm_fault_t vm_fault_cpu(struct vm_fault *vmf) return i915_error_to_vmf_fault(err); } +static void set_address_limits(struct vm_area_struct *area, + struct i915_vma *vma, + unsigned long obj_offset, + resource_size_t gmadr_start, + unsigned long *start_vaddr, + unsigned long *end_vaddr, + unsigned long *pfn) +{ + unsigned long vm_start, vm_end, vma_size; /* user's memory parameters */ + long start, end; /* memory boundaries */ + + /* + * Let's move into the ">> PAGE_SHIFT" + * domain to be sure not to lose bits + */ + vm_start = area->vm_start >> PAGE_SHIFT; + vm_end = area->vm_end >> PAGE_SHIFT; + vma_size = vma->size >> PAGE_SHIFT; + + /* + * Calculate the memory boundaries by considering the offset + * provided by the user during memory mapping and the offset + * provided for the partial mapping. + */ + start = vm_start; + start -= obj_offset; + start += vma->gtt_view.partial.offset; + end = start + vma_size; + + start = max_t(long, start, vm_start); + end = min_t(long, end, vm_end); + + /* Let's move back into the "<< PAGE_SHIFT" domain */ + *start_vaddr = (unsigned long)start << PAGE_SHIFT; + *end_vaddr = (unsigned long)end << PAGE_SHIFT; + + *pfn = (gmadr_start + i915_ggtt_offset(vma)) >> PAGE_SHIFT; + *pfn += (*start_vaddr - area->vm_start) >> PAGE_SHIFT; + *pfn += obj_offset - vma->gtt_view.partial.offset; + +} + static vm_fault_t vm_fault_gtt(struct vm_fault *vmf) { #define MIN_CHUNK_PAGES (SZ_1M >> PAGE_SHIFT) @@ -302,14 +344,18 @@ static vm_fault_t vm_fault_gtt(struct vm_fault *vmf) struct i915_ggtt *ggtt = to_gt(i915)->ggtt; bool write = area->vm_flags & VM_WRITE; struct i915_gem_ww_ctx ww; + unsigned long obj_offset; + unsigned long start, end; /* memory boundaries */ intel_wakeref_t wakeref; struct i915_vma *vma; pgoff_t page_offset; + unsigned long pfn; int srcu; int ret; - /* We don't use vmf->pgoff since that has the fake offset */ + obj_offset = area->vm_pgoff - drm_vma_node_start(&mmo->vma_node); page_offset = (vmf->address - area->vm_start) >> PAGE_SHIFT; + page_offset += obj_offset; trace_i915_gem_object_fault(obj, page_offset, true, write); @@ -402,12 +448,16 @@ static vm_fault_t vm_fault_gtt(struct vm_fault *vmf) if (ret) goto err_unpin; + /* + * Dump all the necessary parameters in this function to perform the + * arithmetic calculation for the virtual address start and end and + * the PFN (Page Frame Number). + */ + set_address_limits(area, vma, obj_offset, ggtt->gmadr.start, + &start, &end, &pfn); + /* Finally, remap it using the new GTT offset */ - ret = remap_io_mapping(area, - area->vm_start + (vma->gtt_view.partial.offset << PAGE_SHIFT), - (ggtt->gmadr.start + i915_ggtt_offset(vma)) >> PAGE_SHIFT, - min_t(u64, vma->size, area->vm_end - area->vm_start), - &ggtt->iomap); + ret = remap_io_mapping(area, start, pfn, end - start, &ggtt->iomap); if (ret) goto err_fence; -- 2.45.2 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* ✗ Fi.CI.CHECKPATCH: warning for Fix mmap memory boundary calculation (rev2) 2024-08-05 10:25 [PATCH v2 0/2] Fix mmap memory boundary calculation Andi Shyti 2024-08-05 10:25 ` [PATCH v2 1/2] drm/i915/gem: Adjust vma offset for framebuffer mmap offset Andi Shyti 2024-08-05 10:25 ` [PATCH v2 2/2] drm/i915/gem: Fix Virtual Memory mapping boundaries calculation Andi Shyti @ 2024-08-05 11:17 ` Patchwork 2024-08-05 11:25 ` ✓ Fi.CI.BAT: success " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2024-08-05 11:17 UTC (permalink / raw) To: Andi Shyti; +Cc: intel-gfx == Series Details == Series: Fix mmap memory boundary calculation (rev2) URL : https://patchwork.freedesktop.org/series/136840/ State : warning == Summary == Error: dim checkpatch failed a0fdbebff8ba drm/i915/gem: Adjust vma offset for framebuffer mmap offset d845cdb8a75a drm/i915/gem: Fix Virtual Memory mapping boundaries calculation -:19: WARNING:BAD_REPORTED_BY_LINK: Reported-by: should be immediately followed by Closes: with a URL to the report #19: Reported-by: Jann Horn <jannh@google.com> Co-developed-by: Chris Wilson <chris.p.wilson@linux.intel.com> -:78: CHECK:BRACES: Blank lines aren't necessary before a close brace '}' #78: FILE: drivers/gpu/drm/i915/gem/i915_gem_mman.c:333: + +} total: 0 errors, 1 warnings, 1 checks, 88 lines checked ^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ Fi.CI.BAT: success for Fix mmap memory boundary calculation (rev2) 2024-08-05 10:25 [PATCH v2 0/2] Fix mmap memory boundary calculation Andi Shyti ` (2 preceding siblings ...) 2024-08-05 11:17 ` ✗ Fi.CI.CHECKPATCH: warning for Fix mmap memory boundary calculation (rev2) Patchwork @ 2024-08-05 11:25 ` Patchwork 2024-08-05 19:36 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-08-05 22:05 ` [PATCH v2 0/2] Fix mmap memory boundary calculation Andi Shyti 5 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2024-08-05 11:25 UTC (permalink / raw) To: Andi Shyti; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 2180 bytes --] == Series Details == Series: Fix mmap memory boundary calculation (rev2) URL : https://patchwork.freedesktop.org/series/136840/ State : success == Summary == CI Bug Log - changes from CI_DRM_15179 -> Patchwork_136840v2 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/index.html Participating hosts (40 -> 36) ------------------------------ Missing (4): bat-dg1-7 bat-arls-2 fi-snb-2520m fi-kbl-8809g Known issues ------------ Here are the changes found in Patchwork_136840v2 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_lmem_swapping@basic@lmem0: - bat-dg2-9: [PASS][1] -> [FAIL][2] ([i915#10378]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/bat-dg2-9/igt@gem_lmem_swapping@basic@lmem0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/bat-dg2-9/igt@gem_lmem_swapping@basic@lmem0.html #### Possible fixes #### * igt@i915_selftest@live@hangcheck: - bat-arls-1: [DMESG-WARN][3] ([i915#11349] / [i915#11378]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/bat-arls-1/igt@i915_selftest@live@hangcheck.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/bat-arls-1/igt@i915_selftest@live@hangcheck.html [i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378 [i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349 [i915#11378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11378 Build changes ------------- * Linux: CI_DRM_15179 -> Patchwork_136840v2 CI-20190529: 20190529 CI_DRM_15179: a0d88000f0e2352047f037e14fc7f9d1a66a6e2b @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7955: e12a8eebdc4bc7e073f2bfad88dc627006ac5771 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_136840v2: a0d88000f0e2352047f037e14fc7f9d1a66a6e2b @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/index.html [-- Attachment #2: Type: text/html, Size: 2786 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ Fi.CI.IGT: failure for Fix mmap memory boundary calculation (rev2) 2024-08-05 10:25 [PATCH v2 0/2] Fix mmap memory boundary calculation Andi Shyti ` (3 preceding siblings ...) 2024-08-05 11:25 ` ✓ Fi.CI.BAT: success " Patchwork @ 2024-08-05 19:36 ` Patchwork 2024-08-05 22:05 ` [PATCH v2 0/2] Fix mmap memory boundary calculation Andi Shyti 5 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2024-08-05 19:36 UTC (permalink / raw) To: Andi Shyti; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 73566 bytes --] == Series Details == Series: Fix mmap memory boundary calculation (rev2) URL : https://patchwork.freedesktop.org/series/136840/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15179_full -> Patchwork_136840v2_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_136840v2_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_136840v2_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_136840v2_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_await@wide-contexts: - shard-dg2: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-dg2-5/igt@gem_exec_await@wide-contexts.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-6/igt@gem_exec_await@wide-contexts.html * igt@kms_atomic_transition@modeset-transition-fencing@2x-outputs: - shard-glk: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-glk5/igt@kms_atomic_transition@modeset-transition-fencing@2x-outputs.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-glk8/igt@kms_atomic_transition@modeset-transition-fencing@2x-outputs.html Known issues ------------ Here are the changes found in Patchwork_136840v2_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-1/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@drm_fdinfo@busy-hang@bcs0: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#8414]) +4 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-13/igt@drm_fdinfo@busy-hang@bcs0.html * igt@drm_fdinfo@most-busy-check-all@bcs0: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +6 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@drm_fdinfo@most-busy-check-all@bcs0.html * igt@drm_fdinfo@virtual-busy-idle-all: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8414]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@drm_fdinfo@virtual-busy-idle-all.html * igt@gem_ccs@block-multicopy-compressed: - shard-tglu: NOTRUN -> [SKIP][9] ([i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-6/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_close_race@multigpu-basic-process: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#7697]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-1/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [PASS][11] -> [ABORT][12] ([i915#9846]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-5/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-set-pat: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#8562]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-4/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@hang: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#8555]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs0: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#5882]) +5 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs0.html * igt@gem_ctx_sseu@invalid-args: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#280]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-15/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][17] ([i915#4525]) +2 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-1/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][18] ([i915#6334]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-glk9/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#6344]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-4/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg1: NOTRUN -> [FAIL][20] ([i915#10386]) +1 other test fail [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-15/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [PASS][21] -> [FAIL][22] ([i915#2846]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-flow: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#3539] / [i915#4852]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@gem_exec_fair@basic-flow.html * igt@gem_exec_fair@basic-none: - shard-dg1: NOTRUN -> [SKIP][24] ([i915#3539] / [i915#4852]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-13/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-tglu: NOTRUN -> [FAIL][25] ([i915#2842]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-5/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [PASS][26] -> [FAIL][27] ([i915#2842]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-rkl: NOTRUN -> [FAIL][28] ([i915#2842]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-4/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_fence@syncobj-backward-timeline-chain-engines: - shard-snb: NOTRUN -> [SKIP][29] +72 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-snb6/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html * igt@gem_exec_reloc@basic-cpu-wc: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3281]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-wc.html * igt@gem_exec_reloc@basic-wc: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#3281]) +6 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-1/igt@gem_exec_reloc@basic-wc.html * igt@gem_exec_reloc@basic-wc-gtt-noreloc: - shard-dg1: NOTRUN -> [SKIP][32] ([i915#3281]) +7 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-13/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html * igt@gem_exec_reloc@basic-write-gtt-active: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#3281]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@gem_exec_reloc@basic-write-gtt-active.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#4812]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-13/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4860]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_lmem_swapping@heavy-random: - shard-glk: NOTRUN -> [SKIP][36] ([i915#4613]) +4 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-glk5/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@heavy-random@lmem0: - shard-dg1: NOTRUN -> [FAIL][37] ([i915#10378]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-15/igt@gem_lmem_swapping@heavy-random@lmem0.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg2: [PASS][38] -> [FAIL][39] ([i915#10378]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-8/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#4613]) +3 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@verify-ccs@lmem0: - shard-dg2: NOTRUN -> [FAIL][41] ([i915#10378]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@gem_lmem_swapping@verify-ccs@lmem0.html * igt@gem_lmem_swapping@verify-random: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4613]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap_gtt@basic-read-write-distinct: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4077]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@gem_mmap_gtt@basic-read-write-distinct.html * igt@gem_mmap_gtt@basic-small-copy-xy: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#4077]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-13/igt@gem_mmap_gtt@basic-small-copy-xy.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4077]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@copy: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4083]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-13/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4083]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_pread@bench: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#3282]) +5 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-1/igt@gem_pread@bench.html * igt@gem_pwrite@basic-self: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#3282]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@gem_pwrite@basic-self.html * igt@gem_pxp@create-regular-buffer: - shard-tglu: NOTRUN -> [SKIP][50] ([i915#4270]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-6/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#4270]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-4/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4270]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4270]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4270]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-13/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_readwrite@beyond-eob: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#3282]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-13/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#8428]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#5190] / [i915#8428]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4079]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-13/igt@gem_set_tiling_vs_gtt.html * igt@gem_softpin@evict-snoop: - shard-rkl: NOTRUN -> [SKIP][59] +20 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-4/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4079]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@gem_tiled_pread_basic.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4079]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#3297]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-4/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#3297]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-13/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#3282] / [i915#3297]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-4/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@readonly-unsync: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#3297]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@gem_userptr_blits@readonly-unsync.html * igt@gen3_render_linear_blits: - shard-mtlp: NOTRUN -> [SKIP][66] +4 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@gen3_render_linear_blits.html * igt@gen9_exec_parse@allowed-all: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#2856]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@allowed-single: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#2527]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-4/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@batch-without-end: - shard-tglu: NOTRUN -> [SKIP][69] ([i915#2527] / [i915#2856]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-6/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-start-far: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#2527]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-13/igt@gen9_exec_parse@bb-start-far.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][71] -> [ABORT][72] ([i915#9697] / [i915#9820]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#7178]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-15/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#8399]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-4/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rc6_residency@rc6-fence@gt0: - shard-tglu: NOTRUN -> [WARN][75] ([i915#2681]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-fence@gt0.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#6621]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@min-max-config-loaded: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#6621]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][78] ([i915#7443]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-5/igt@i915_suspend@basic-s3-without-i915.html * igt@intel_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][79] ([i915#7707]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-6/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#4212]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-13/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4212]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#4212]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-dg2: NOTRUN -> [FAIL][83] ([i915#5956]) +1 other test fail [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-vga-1: - shard-snb: NOTRUN -> [FAIL][84] ([i915#5956]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-snb7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-vga-1.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-tglu: NOTRUN -> [SKIP][85] ([i915#5286]) +3 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-6/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#5286]) +3 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#4538] / [i915#5286]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#3638]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-1/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][89] +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#3638]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-15/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#4538] / [i915#5190]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#4538]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-15/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#6095]) +43 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-15/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][94] +240 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-glk7/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#6095]) +59 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#6095]) +7 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs@pipe-c-edp-1.html * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#10307] / [i915#6095]) +135 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-5/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][98] ([i915#6095]) +19 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#10307] / [i915#10434] / [i915#6095]) +7 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#7213]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#4087]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-d-dp-4.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#7828]) +5 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-1/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-dg1: NOTRUN -> [SKIP][103] ([i915#7828]) +3 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-13/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@hdmi-hpd: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#7828]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@kms_chamelium_hpd@hdmi-hpd.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#7828]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-tglu: NOTRUN -> [SKIP][106] ([i915#7828]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-6/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_content_protection@atomic-dpms: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#7118] / [i915#9424]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-4/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#3299]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#3299]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-13/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-tglu: NOTRUN -> [SKIP][110] ([i915#3116] / [i915#3299]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-6/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#9424]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-8/igt@kms_content_protection@lic-type-0.html * igt@kms_cursor_crc@cursor-offscreen-256x85: - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#8814]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-256x85.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-tglu: NOTRUN -> [SKIP][113] ([i915#3555]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-8/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#11453] / [i915#3359]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#11453]) +3 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-1/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][116] ([i915#11453]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-8/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#4103] / [i915#4213]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-15/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#9809]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-tglu: NOTRUN -> [SKIP][119] +53 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][120] ([i915#4103]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-tglu: NOTRUN -> [SKIP][121] ([i915#9723]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#9723]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#8812]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-basic: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#3555] / [i915#3840]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-13/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-tglu: NOTRUN -> [SKIP][125] ([i915#3555] / [i915#3840]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-6/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-formats: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#3555] / [i915#3840]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@kms_dsc@dsc-with-formats.html * igt@kms_feature_discovery@display-3x: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#1839]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-8/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-tglu: NOTRUN -> [SKIP][128] ([i915#9337]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-6/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr2: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#658]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-4/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-dpms: - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#3637]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-fences: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#3637]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-6/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1: - shard-snb: [PASS][132] -> [FAIL][133] ([i915#2122]) +2 other tests fail [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-snb5/igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#9934]) +4 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-13/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@wf_vblank-ts-check@a-hdmi-a4: - shard-dg1: [PASS][135] -> [FAIL][136] ([i915#2122]) +2 other tests fail [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-dg1-16/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a4.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-18/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a4.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#2587] / [i915#2672]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#2587] / [i915#2672]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#2672]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#2672]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#2672]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt: - shard-dg2: NOTRUN -> [FAIL][142] ([i915#6880]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#5354]) +7 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu: - shard-snb: [PASS][144] -> [SKIP][145] [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu: NOTRUN -> [SKIP][146] ([i915#5439]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#3458]) +4 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][148] +21 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#8708]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#3023]) +15 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#8708]) +5 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#1825]) +7 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#1825]) +22 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][154] ([i915#8708]) +9 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#3458]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-slowdraw.html * igt@kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#3555] / [i915#8228]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-4/igt@kms_hdr@static-toggle.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#8806]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#5354] / [i915#9423]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#9423]) +3 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-13/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-hdmi-a-3.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#9423]) +3 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-5/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#9423]) +3 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#9728]) +3 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#5235] / [i915#9423]) +2 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#5235]) +2 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3555] / [i915#5235]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#9423]) +12 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#9728]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#5354]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-4/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg1: NOTRUN -> [SKIP][169] ([i915#5354]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-15/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#9685]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-5/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc6-dpms: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#10139]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@kms_pm_dc@dc6-dpms.html - shard-tglu: [PASS][172] -> [FAIL][173] ([i915#9295]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [PASS][174] -> [SKIP][175] ([i915#9519]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-dg2-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [PASS][176] -> [SKIP][177] ([i915#9519]) +2 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#6524]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-6/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-crc-vgem: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#6524]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-13/igt@kms_prime@basic-crc-vgem.html * igt@kms_prime@d3hot: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#6524] / [i915#6805]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#11520]) +2 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-4/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#11520]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-13/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf@psr2-pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#9808]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf@psr2-pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#11520]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-6/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#11520]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu: NOTRUN -> [SKIP][186] ([i915#9683]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#9683]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#9732]) +11 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-6/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr-primary-render@edp-1: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#9688]) +3 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@kms_psr@fbc-psr-primary-render@edp-1.html * igt@kms_psr@pr-cursor-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#1072] / [i915#9732]) +8 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-15/igt@kms_psr@pr-cursor-mmap-gtt.html * igt@kms_psr@pr-sprite-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#1072] / [i915#9732]) +14 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-4/igt@kms_psr@pr-sprite-mmap-gtt.html * igt@kms_psr@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#1072] / [i915#9673] / [i915#9732]) +4 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@kms_psr@psr-suspend.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#9685]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#11131] / [i915#4235]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-rotation-270: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#4235]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-2/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#5289]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-center: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#3555]) +2 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-15/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#3555]) +3 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-1/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_sysfs_edid_timing: - shard-snb: [PASS][199] -> [FAIL][200] ([IGT#2] / [i915#6493]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-snb5/igt@kms_sysfs_edid_timing.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-snb7/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][201] ([i915#10959]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-glk7/igt@kms_tiled_display@basic-test-pattern.html - shard-rkl: NOTRUN -> [SKIP][202] ([i915#8623]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-1/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#8623]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@max-min: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#9906]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-5/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-tglu: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#9906]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-8/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-check-output: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#2437]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-15/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#2437]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-glk: NOTRUN -> [SKIP][208] ([i915#2437]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-glk9/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@mi-rpc: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#2434]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-4/igt@perf@mi-rpc.html * igt@perf_pmu@frequency@gt0: - shard-dg1: NOTRUN -> [FAIL][210] ([i915#6806]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-15/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][211] ([i915#11823]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#8516]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-13/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@fence-flip-hang: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#3708]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-1/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-write-hang: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#3708]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-11/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#9917]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-6/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#9917]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-13/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-tglu: NOTRUN -> [FAIL][217] ([i915#9781]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-6/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-glk: NOTRUN -> [FAIL][218] ([i915#9781]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-glk7/igt@syncobj_wait@invalid-wait-zero-handles.html #### Possible fixes #### * igt@drm_fdinfo@idle@rcs0: - shard-rkl: [FAIL][219] ([i915#7742]) -> [PASS][220] +1 other test pass [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-rkl-6/igt@drm_fdinfo@idle@rcs0.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-5/igt@drm_fdinfo@idle@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-rkl: [FAIL][221] ([i915#2842]) -> [PASS][222] [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-rkl-4/igt@gem_exec_fair@basic-none@vcs0.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-2/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_lmem_swapping@heavy-multi@lmem0: - shard-dg1: [FAIL][223] ([i915#10378]) -> [PASS][224] [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-dg1-16/igt@gem_lmem_swapping@heavy-multi@lmem0.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg1-18/igt@gem_lmem_swapping@heavy-multi@lmem0.html * igt@gem_lmem_swapping@heavy-verify-multi@lmem0: - shard-dg2: [FAIL][225] ([i915#10378]) -> [PASS][226] [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-dg2-1/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-5/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [TIMEOUT][227] ([i915#5493]) -> [PASS][228] [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [ABORT][229] ([i915#9820]) -> [PASS][230] [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rps@reset: - shard-snb: [INCOMPLETE][231] ([i915#7790]) -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-snb2/igt@i915_pm_rps@reset.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-snb7/igt@i915_pm_rps@reset.html * igt@kms_big_fb@linear-8bpp-rotate-0: - shard-tglu: [ABORT][233] -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-tglu-7/igt@kms_big_fb@linear-8bpp-rotate-0.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-tglu-8/igt@kms_big_fb@linear-8bpp-rotate-0.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-snb: [SKIP][235] -> [PASS][236] +1 other test pass [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-snb5/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-snb7/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][237] ([i915#2346]) -> [PASS][238] [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1: - shard-snb: [FAIL][239] ([i915#2122]) -> [PASS][240] +1 other test pass [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-snb7/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-snb2/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-modesetfrombusy: - shard-dg2: [FAIL][241] ([i915#6880]) -> [PASS][242] [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [SKIP][243] ([i915#9519]) -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [SKIP][245] ([i915#9519]) -> [PASS][246] +1 other test pass [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp-stress.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - shard-mtlp: [FAIL][247] ([i915#9196]) -> [PASS][248] [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html #### Warnings #### * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg2: [FAIL][249] ([i915#10446]) -> [FAIL][250] ([i915#10378]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-5/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@kms_content_protection@atomic-dpms: - shard-snb: [SKIP][251] -> [INCOMPLETE][252] ([i915#8816]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-snb5/igt@kms_content_protection@atomic-dpms.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-snb7/igt@kms_content_protection@atomic-dpms.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg2: [SKIP][253] ([i915#11453] / [i915#3359]) -> [SKIP][254] ([i915#11453]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-dg2-11/igt@kms_cursor_crc@cursor-sliding-512x170.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt: - shard-dg2: [SKIP][255] ([i915#10433] / [i915#3458]) -> [SKIP][256] ([i915#3458]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][257] ([i915#4070] / [i915#4816]) -> [SKIP][258] ([i915#4816]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: [SKIP][259] ([i915#3361]) -> [FAIL][260] ([i915#9295]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-rkl-6/igt@kms_pm_dc@dc6-dpms.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html * igt@kms_psr@fbc-pr-primary-mmap-gtt: - shard-dg2: [SKIP][261] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][262] ([i915#1072] / [i915#9732]) +17 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15179/shard-dg2-11/igt@kms_psr@fbc-pr-primary-mmap-gtt.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/shard-dg2-2/igt@kms_psr@fbc-pr-primary-mmap-gtt.html [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [i915#10139]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10139 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378 [i915#10386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10386 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10446]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10446 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131 [i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11823 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344 [i915#6493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6493 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7178 [i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213 [i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742 [i915#7790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7790 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816 [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196 [i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9697 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9728]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9728 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820 [i915#9846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9846 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * Linux: CI_DRM_15179 -> Patchwork_136840v2 CI-20190529: 20190529 CI_DRM_15179: a0d88000f0e2352047f037e14fc7f9d1a66a6e2b @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7955: e12a8eebdc4bc7e073f2bfad88dc627006ac5771 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_136840v2: a0d88000f0e2352047f037e14fc7f9d1a66a6e2b @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_136840v2/index.html [-- Attachment #2: Type: text/html, Size: 89639 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH v2 0/2] Fix mmap memory boundary calculation 2024-08-05 10:25 [PATCH v2 0/2] Fix mmap memory boundary calculation Andi Shyti ` (4 preceding siblings ...) 2024-08-05 19:36 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2024-08-05 22:05 ` Andi Shyti 2024-08-06 6:38 ` Greg Kroah-Hartman 5 siblings, 1 reply; 14+ messages in thread From: Andi Shyti @ 2024-08-05 22:05 UTC (permalink / raw) To: Greg Kroah-Hartman Cc: intel-gfx, dri-devel, stable, Jani Nikula, Joonas Lahtinen, Rodrigo Vivi, Tvrtko Ursulin, Jann Horn, Chris Wilson, Krzysztof Niemiec, Andi Shyti Hi Greg, > Andi Shyti (2): > drm/i915/gem: Adjust vma offset for framebuffer mmap offset > drm/i915/gem: Fix Virtual Memory mapping boundaries calculation I have forgotten to Cc the stable mailing list here. These two patches need to be merged together even if only the second patch has the "Fixes:" tag. Is there anything I should still do here? I could have used the "Requires:" tag, but the commit id would change in between merges and rebases. Andi ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH v2 0/2] Fix mmap memory boundary calculation 2024-08-05 22:05 ` [PATCH v2 0/2] Fix mmap memory boundary calculation Andi Shyti @ 2024-08-06 6:38 ` Greg Kroah-Hartman 2024-08-06 9:46 ` Andi Shyti 0 siblings, 1 reply; 14+ messages in thread From: Greg Kroah-Hartman @ 2024-08-06 6:38 UTC (permalink / raw) To: Andi Shyti Cc: intel-gfx, dri-devel, stable, Jani Nikula, Joonas Lahtinen, Rodrigo Vivi, Tvrtko Ursulin, Jann Horn, Chris Wilson, Krzysztof Niemiec, Andi Shyti On Mon, Aug 05, 2024 at 11:05:22PM +0100, Andi Shyti wrote: > Hi Greg, > > > Andi Shyti (2): > > drm/i915/gem: Adjust vma offset for framebuffer mmap offset > > drm/i915/gem: Fix Virtual Memory mapping boundaries calculation > > I have forgotten to Cc the stable mailing list here. These two > patches need to be merged together even if only the second patch > has the "Fixes:" tag. > > Is there anything I should still do here? > > I could have used the "Requires:" tag, but the commit id would > change in between merges and rebases. <formletter> This is not the correct way to submit patches for inclusion in the stable kernel tree. Please read: https://www.kernel.org/doc/html/latest/process/stable-kernel-rules.html for how to do this properly. </formletter> ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH v2 0/2] Fix mmap memory boundary calculation 2024-08-06 6:38 ` Greg Kroah-Hartman @ 2024-08-06 9:46 ` Andi Shyti 2024-08-06 12:08 ` Joonas Lahtinen 0 siblings, 1 reply; 14+ messages in thread From: Andi Shyti @ 2024-08-06 9:46 UTC (permalink / raw) To: Greg Kroah-Hartman Cc: Andi Shyti, intel-gfx, dri-devel, Jani Nikula, Joonas Lahtinen, Rodrigo Vivi, Tvrtko Ursulin, Jann Horn, Chris Wilson, Krzysztof Niemiec, Andi Shyti Hi Greg, same question without the stable mailing list not to trigger the automatic reply. > Andi Shyti (2): > drm/i915/gem: Adjust vma offset for framebuffer mmap offset > drm/i915/gem: Fix Virtual Memory mapping boundaries calculation I have forgotten to actually Cc the stable mailing list here. These two patches need to be merged together even if only the second patch has the "Fixes:" tag. I could have used the "Requires:" tag, but the commit id would change in between merges and rebases. Is there anything I should still do here? Do you want me to take care and send the backports for kernels starting from 4.19? Thanks, Andi ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH v2 0/2] Fix mmap memory boundary calculation 2024-08-06 9:46 ` Andi Shyti @ 2024-08-06 12:08 ` Joonas Lahtinen 2024-08-09 14:48 ` Jann Horn 0 siblings, 1 reply; 14+ messages in thread From: Joonas Lahtinen @ 2024-08-06 12:08 UTC (permalink / raw) To: Andi Shyti, Greg Kroah-Hartman Cc: Andi Shyti, intel-gfx, dri-devel, Jani Nikula, Rodrigo Vivi, Tvrtko Ursulin, Jann Horn, Chris Wilson, Krzysztof Niemiec, Andi Shyti Quoting Andi Shyti (2024-08-06 12:46:07) > Hi Greg, > > same question without the stable mailing list not to trigger the > automatic reply. > > > Andi Shyti (2): > > drm/i915/gem: Adjust vma offset for framebuffer mmap offset > > drm/i915/gem: Fix Virtual Memory mapping boundaries calculation > > I have forgotten to actually Cc the stable mailing list here. > These two patches need to be merged together even if only the > second patch has the "Fixes:" tag. > > I could have used the "Requires:" tag, but the commit id would > change in between merges and rebases. The patches were the top two in drm-intel-gt-next and committed only few hours ago so I fixed up the patches adding Cc: stable and Requires: Regards, Joonas > > Is there anything I should still do here? Do you want me to > take care and send the backports for kernels starting from 4.19? > > Thanks, > Andi ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH v2 0/2] Fix mmap memory boundary calculation 2024-08-06 12:08 ` Joonas Lahtinen @ 2024-08-09 14:48 ` Jann Horn 2024-08-09 15:40 ` Jann Horn 0 siblings, 1 reply; 14+ messages in thread From: Jann Horn @ 2024-08-09 14:48 UTC (permalink / raw) To: Joonas Lahtinen Cc: Andi Shyti, Greg Kroah-Hartman, intel-gfx, dri-devel, Jani Nikula, Rodrigo Vivi, Tvrtko Ursulin, Chris Wilson, Krzysztof Niemiec, Andi Shyti On Tue, Aug 6, 2024 at 2:08 PM Joonas Lahtinen <joonas.lahtinen@linux.intel.com> wrote: > Quoting Andi Shyti (2024-08-06 12:46:07) > > Hi Greg, > > > > same question without the stable mailing list not to trigger the > > automatic reply. > > > > > Andi Shyti (2): > > > drm/i915/gem: Adjust vma offset for framebuffer mmap offset > > > drm/i915/gem: Fix Virtual Memory mapping boundaries calculation > > > > I have forgotten to actually Cc the stable mailing list here. > > These two patches need to be merged together even if only the > > second patch has the "Fixes:" tag. > > > > I could have used the "Requires:" tag, but the commit id would > > change in between merges and rebases. > > The patches were the top two in drm-intel-gt-next and committed > only few hours ago so I fixed up the patches adding Cc: stable > and Requires: I'm not very familiar with how the DRM trees work - shouldn't fixes in i915 go on the separate drm-intel-fixes branch so that they don't have to wait for a merge window? ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH v2 0/2] Fix mmap memory boundary calculation 2024-08-09 14:48 ` Jann Horn @ 2024-08-09 15:40 ` Jann Horn 2024-08-12 9:18 ` Joonas Lahtinen 0 siblings, 1 reply; 14+ messages in thread From: Jann Horn @ 2024-08-09 15:40 UTC (permalink / raw) To: Joonas Lahtinen Cc: Andi Shyti, Greg Kroah-Hartman, intel-gfx, dri-devel, Jani Nikula, Rodrigo Vivi, Tvrtko Ursulin, Chris Wilson, Krzysztof Niemiec, Andi Shyti On Fri, Aug 9, 2024 at 4:48 PM Jann Horn <jannh@google.com> wrote: > On Tue, Aug 6, 2024 at 2:08 PM Joonas Lahtinen > <joonas.lahtinen@linux.intel.com> wrote: > > Quoting Andi Shyti (2024-08-06 12:46:07) > > > Hi Greg, > > > > > > same question without the stable mailing list not to trigger the > > > automatic reply. > > > > > > > Andi Shyti (2): > > > > drm/i915/gem: Adjust vma offset for framebuffer mmap offset > > > > drm/i915/gem: Fix Virtual Memory mapping boundaries calculation > > > > > > I have forgotten to actually Cc the stable mailing list here. > > > These two patches need to be merged together even if only the > > > second patch has the "Fixes:" tag. > > > > > > I could have used the "Requires:" tag, but the commit id would > > > change in between merges and rebases. > > > > The patches were the top two in drm-intel-gt-next and committed > > only few hours ago so I fixed up the patches adding Cc: stable > > and Requires: > > I'm not very familiar with how the DRM trees work - shouldn't fixes in > i915 go on the separate drm-intel-fixes branch so that they don't have > to wait for a merge window? Ah, nevermind, I see it is already in drm-intel-fixes. Sorry for the noise. ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH v2 0/2] Fix mmap memory boundary calculation 2024-08-09 15:40 ` Jann Horn @ 2024-08-12 9:18 ` Joonas Lahtinen 2024-08-12 12:30 ` Jann Horn 0 siblings, 1 reply; 14+ messages in thread From: Joonas Lahtinen @ 2024-08-12 9:18 UTC (permalink / raw) To: Jann Horn Cc: Andi Shyti, Greg Kroah-Hartman, intel-gfx, dri-devel, Jani Nikula, Rodrigo Vivi, Tvrtko Ursulin, Chris Wilson, Krzysztof Niemiec, Andi Shyti Quoting Jann Horn (2024-08-09 18:40:45) > On Fri, Aug 9, 2024 at 4:48 PM Jann Horn <jannh@google.com> wrote: > > On Tue, Aug 6, 2024 at 2:08 PM Joonas Lahtinen > > <joonas.lahtinen@linux.intel.com> wrote: > > > Quoting Andi Shyti (2024-08-06 12:46:07) > > > > Hi Greg, > > > > > > > > same question without the stable mailing list not to trigger the > > > > automatic reply. > > > > > > > > > Andi Shyti (2): > > > > > drm/i915/gem: Adjust vma offset for framebuffer mmap offset > > > > > drm/i915/gem: Fix Virtual Memory mapping boundaries calculation > > > > > > > > I have forgotten to actually Cc the stable mailing list here. > > > > These two patches need to be merged together even if only the > > > > second patch has the "Fixes:" tag. > > > > > > > > I could have used the "Requires:" tag, but the commit id would > > > > change in between merges and rebases. > > > > > > The patches were the top two in drm-intel-gt-next and committed > > > only few hours ago so I fixed up the patches adding Cc: stable > > > and Requires: > > > > I'm not very familiar with how the DRM trees work - shouldn't fixes in > > i915 go on the separate drm-intel-fixes branch so that they don't have > > to wait for a merge window? > > Ah, nevermind, I see it is already in drm-intel-fixes. Sorry for the noise. Yeah, the DRM subsystem has a rather specific process. Jann, do you consider the fix released already now that it is in -rc3 or will you start the 30 day count from when 6.11 gets released? I hope the latter, but just want to make sure there are no surprises. Regards, Joonas ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH v2 0/2] Fix mmap memory boundary calculation 2024-08-12 9:18 ` Joonas Lahtinen @ 2024-08-12 12:30 ` Jann Horn 0 siblings, 0 replies; 14+ messages in thread From: Jann Horn @ 2024-08-12 12:30 UTC (permalink / raw) To: Joonas Lahtinen Cc: Andi Shyti, Greg Kroah-Hartman, intel-gfx, dri-devel, Jani Nikula, Rodrigo Vivi, Tvrtko Ursulin, Chris Wilson, Krzysztof Niemiec, Andi Shyti On Mon, Aug 12, 2024 at 11:19 AM Joonas Lahtinen <joonas.lahtinen@linux.intel.com> wrote: > Quoting Jann Horn (2024-08-09 18:40:45) > > On Fri, Aug 9, 2024 at 4:48 PM Jann Horn <jannh@google.com> wrote: > > > On Tue, Aug 6, 2024 at 2:08 PM Joonas Lahtinen > > > <joonas.lahtinen@linux.intel.com> wrote: > > > > Quoting Andi Shyti (2024-08-06 12:46:07) > > > > > Hi Greg, > > > > > > > > > > same question without the stable mailing list not to trigger the > > > > > automatic reply. > > > > > > > > > > > Andi Shyti (2): > > > > > > drm/i915/gem: Adjust vma offset for framebuffer mmap offset > > > > > > drm/i915/gem: Fix Virtual Memory mapping boundaries calculation > > > > > > > > > > I have forgotten to actually Cc the stable mailing list here. > > > > > These two patches need to be merged together even if only the > > > > > second patch has the "Fixes:" tag. > > > > > > > > > > I could have used the "Requires:" tag, but the commit id would > > > > > change in between merges and rebases. > > > > > > > > The patches were the top two in drm-intel-gt-next and committed > > > > only few hours ago so I fixed up the patches adding Cc: stable > > > > and Requires: > > > > > > I'm not very familiar with how the DRM trees work - shouldn't fixes in > > > i915 go on the separate drm-intel-fixes branch so that they don't have > > > to wait for a merge window? > > > > Ah, nevermind, I see it is already in drm-intel-fixes. Sorry for the noise. > > Yeah, the DRM subsystem has a rather specific process. > > Jann, do you consider the fix released already now that it is in -rc3 or will > you start the 30 day count from when 6.11 gets released? I hope the latter, > but just want to make sure there are no surprises. I will count the issue as fixed and start the 30 day count starting from when a fix lands in any upstream release - either a mainline release or a stable release. Since the fix has now been queued up for 6.6 and 6.10, I expect that to happen in a few days. ^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2024-08-12 12:31 UTC | newest] Thread overview: 14+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-08-05 10:25 [PATCH v2 0/2] Fix mmap memory boundary calculation Andi Shyti 2024-08-05 10:25 ` [PATCH v2 1/2] drm/i915/gem: Adjust vma offset for framebuffer mmap offset Andi Shyti 2024-08-05 10:25 ` [PATCH v2 2/2] drm/i915/gem: Fix Virtual Memory mapping boundaries calculation Andi Shyti 2024-08-05 11:17 ` ✗ Fi.CI.CHECKPATCH: warning for Fix mmap memory boundary calculation (rev2) Patchwork 2024-08-05 11:25 ` ✓ Fi.CI.BAT: success " Patchwork 2024-08-05 19:36 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-08-05 22:05 ` [PATCH v2 0/2] Fix mmap memory boundary calculation Andi Shyti 2024-08-06 6:38 ` Greg Kroah-Hartman 2024-08-06 9:46 ` Andi Shyti 2024-08-06 12:08 ` Joonas Lahtinen 2024-08-09 14:48 ` Jann Horn 2024-08-09 15:40 ` Jann Horn 2024-08-12 9:18 ` Joonas Lahtinen 2024-08-12 12:30 ` Jann Horn
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox