* [igt-dev] [PATCH i-g-t] lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels
@ 2021-07-26 9:49 Bhanuprakash Modem
2021-07-26 11:33 ` [igt-dev] ✗ Fi.CI.BUILD: failure for " Patchwork
` (6 more replies)
0 siblings, 7 replies; 13+ messages in thread
From: Bhanuprakash Modem @ 2021-07-26 9:49 UTC (permalink / raw)
To: igt-dev
While checking for LMEM support on older kernels with the
DRM_I915_QUERY_MEMORY_REGIONS, it may fail with EINVAL.
Instead of abort/asserting the test, we must handle this
case properly.
Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
Cc: Vidya Srinivas <vidya.srinivas@intel.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
lib/i915/intel_memory_region.c | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/lib/i915/intel_memory_region.c b/lib/i915/intel_memory_region.c
index 144ae12ca..51e50471f 100644
--- a/lib/i915/intel_memory_region.c
+++ b/lib/i915/intel_memory_region.c
@@ -114,17 +114,19 @@ uint32_t gem_get_batch_size(int fd, uint8_t mem_region_type)
struct drm_i915_query_memory_regions *gem_get_query_memory_regions(int fd)
{
struct drm_i915_query_item item;
- struct drm_i915_query_memory_regions *query_info;
+ struct drm_i915_query_memory_regions *query_info = NULL;
memset(&item, 0, sizeof(item));
item.query_id = DRM_I915_QUERY_MEMORY_REGIONS;
- i915_query_items(fd, &item, 1);
+ if (__i915_query_items(fd, &item, 1) || item.length < 0)
+ goto out;
query_info = calloc(1, item.length);
item.data_ptr = to_user_pointer(query_info);
i915_query_items(fd, &item, 1);
+out:
return query_info;
}
@@ -143,6 +145,9 @@ uint8_t gem_get_lmem_region_count(int fd)
uint8_t lmem_regions = 0;
query_info = gem_get_query_memory_regions(fd);
+ if (!query_info)
+ goto out;
+
num_regions = query_info->num_regions;
for (int i = 0; i < num_regions; i++) {
@@ -151,6 +156,7 @@ uint8_t gem_get_lmem_region_count(int fd)
}
free(query_info);
+out:
return lmem_regions;
}
--
2.32.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 13+ messages in thread* [igt-dev] ✗ Fi.CI.BUILD: failure for lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels 2021-07-26 9:49 [igt-dev] [PATCH i-g-t] lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels Bhanuprakash Modem @ 2021-07-26 11:33 ` Patchwork 2021-07-26 12:26 ` [igt-dev] [i-g-t V2] " Bhanuprakash Modem ` (5 subsequent siblings) 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2021-07-26 11:33 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev == Series Details == Series: lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels URL : https://patchwork.freedesktop.org/series/93006/ State : failure == Summary == Applying: lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels Using index info to reconstruct a base tree... M lib/i915/intel_memory_region.c Falling back to patching base and 3-way merge... Auto-merging lib/i915/intel_memory_region.c CONFLICT (content): Merge conflict in lib/i915/intel_memory_region.c Patch failed at 0001 lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels When you have resolved this problem, run "git am --continue". If you prefer to skip this patch, run "git am --skip" instead. To restore the original branch and stop patching, run "git am --abort". _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] [i-g-t V2] lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels 2021-07-26 9:49 [igt-dev] [PATCH i-g-t] lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels Bhanuprakash Modem 2021-07-26 11:33 ` [igt-dev] ✗ Fi.CI.BUILD: failure for " Patchwork @ 2021-07-26 12:26 ` Bhanuprakash Modem 2021-07-26 20:54 ` Dixit, Ashutosh 2021-07-27 1:32 ` [igt-dev] [i-g-t V3] " Bhanuprakash Modem 2021-07-26 13:50 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels (rev2) Patchwork ` (4 subsequent siblings) 6 siblings, 2 replies; 13+ messages in thread From: Bhanuprakash Modem @ 2021-07-26 12:26 UTC (permalink / raw) To: igt-dev While checking for LMEM support on older kernels with the DRM_I915_QUERY_MEMORY_REGIONS, it may fail with EINVAL. Instead of abort/asserting the test, we must handle this case properly. V2: * Rebase Cc: Ashutosh Dixit <ashutosh.dixit@intel.com> Cc: Vidya Srinivas <vidya.srinivas@intel.com> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> --- lib/i915/intel_memory_region.c | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/lib/i915/intel_memory_region.c b/lib/i915/intel_memory_region.c index e1e210f2c..72e337af3 100644 --- a/lib/i915/intel_memory_region.c +++ b/lib/i915/intel_memory_region.c @@ -114,7 +114,7 @@ uint32_t gem_get_batch_size(int fd, uint8_t mem_region_type) struct drm_i915_query_memory_regions *gem_get_query_memory_regions(int fd) { struct drm_i915_query_item item; - struct drm_i915_query_memory_regions *query_info; + struct drm_i915_query_memory_regions *query_info = NULL; memset(&item, 0, sizeof(item)); item.query_id = DRM_I915_QUERY_MEMORY_REGIONS; @@ -123,15 +123,18 @@ struct drm_i915_query_memory_regions *gem_get_query_memory_regions(int fd) * Any DRM_I915_QUERY_MEMORY_REGIONS specific errors are encoded in the * item.length, even though the ioctl might still return success. */ - igt_assert_f(item.length > 0, - "DRM_I915_QUERY_MEMORY_REGIONS failed with %d\n", - item.length); + if (item.length < 0) { + igt_critical("DRM_I915_QUERY_MEMORY_REGIONS failed with %d\n", + item.length); + goto out; + } query_info = calloc(1, item.length); item.data_ptr = to_user_pointer(query_info); i915_query_items(fd, &item, 1); +out: return query_info; } @@ -150,6 +153,9 @@ uint8_t gem_get_lmem_region_count(int fd) uint8_t lmem_regions = 0; query_info = gem_get_query_memory_regions(fd); + if (!query_info) + goto out; + num_regions = query_info->num_regions; for (int i = 0; i < num_regions; i++) { @@ -158,6 +164,7 @@ uint8_t gem_get_lmem_region_count(int fd) } free(query_info); +out: return lmem_regions; } -- 2.32.0 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [igt-dev] [i-g-t V2] lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels 2021-07-26 12:26 ` [igt-dev] [i-g-t V2] " Bhanuprakash Modem @ 2021-07-26 20:54 ` Dixit, Ashutosh 2021-07-27 1:32 ` [igt-dev] [i-g-t V3] " Bhanuprakash Modem 1 sibling, 0 replies; 13+ messages in thread From: Dixit, Ashutosh @ 2021-07-26 20:54 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev On Mon, 26 Jul 2021 05:26:36 -0700, Bhanuprakash Modem wrote: > > While checking for LMEM support on older kernels with the > DRM_I915_QUERY_MEMORY_REGIONS, it may fail with EINVAL. > > Instead of abort/asserting the test, we must handle this > case properly. The patch is fine now. But I would still state clearly in the commit message what the objective for the patch is. So something like: "Instead of abort/asserting the test make sure gem_has_lmem remains functional". With a suitable commit message this is: Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com> > V2: > * Rebase > > Cc: Ashutosh Dixit <ashutosh.dixit@intel.com> > Cc: Vidya Srinivas <vidya.srinivas@intel.com> > Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > --- > lib/i915/intel_memory_region.c | 15 +++++++++++---- > 1 file changed, 11 insertions(+), 4 deletions(-) > > diff --git a/lib/i915/intel_memory_region.c b/lib/i915/intel_memory_region.c > index e1e210f2c..72e337af3 100644 > --- a/lib/i915/intel_memory_region.c > +++ b/lib/i915/intel_memory_region.c > @@ -114,7 +114,7 @@ uint32_t gem_get_batch_size(int fd, uint8_t mem_region_type) > struct drm_i915_query_memory_regions *gem_get_query_memory_regions(int fd) > { > struct drm_i915_query_item item; > - struct drm_i915_query_memory_regions *query_info; > + struct drm_i915_query_memory_regions *query_info = NULL; > > memset(&item, 0, sizeof(item)); > item.query_id = DRM_I915_QUERY_MEMORY_REGIONS; > @@ -123,15 +123,18 @@ struct drm_i915_query_memory_regions *gem_get_query_memory_regions(int fd) > * Any DRM_I915_QUERY_MEMORY_REGIONS specific errors are encoded in the > * item.length, even though the ioctl might still return success. > */ > - igt_assert_f(item.length > 0, > - "DRM_I915_QUERY_MEMORY_REGIONS failed with %d\n", > - item.length); > + if (item.length < 0) { > + igt_critical("DRM_I915_QUERY_MEMORY_REGIONS failed with %d\n", > + item.length); > + goto out; > + } > > query_info = calloc(1, item.length); > > item.data_ptr = to_user_pointer(query_info); > i915_query_items(fd, &item, 1); > > +out: > return query_info; > } > > @@ -150,6 +153,9 @@ uint8_t gem_get_lmem_region_count(int fd) > uint8_t lmem_regions = 0; > > query_info = gem_get_query_memory_regions(fd); > + if (!query_info) > + goto out; > + > num_regions = query_info->num_regions; > > for (int i = 0; i < num_regions; i++) { > @@ -158,6 +164,7 @@ uint8_t gem_get_lmem_region_count(int fd) > } > free(query_info); > > +out: > return lmem_regions; > } > > -- > 2.32.0 > _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] [i-g-t V3] lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels 2021-07-26 12:26 ` [igt-dev] [i-g-t V2] " Bhanuprakash Modem 2021-07-26 20:54 ` Dixit, Ashutosh @ 2021-07-27 1:32 ` Bhanuprakash Modem 1 sibling, 0 replies; 13+ messages in thread From: Bhanuprakash Modem @ 2021-07-27 1:32 UTC (permalink / raw) To: igt-dev While checking for LMEM support on older kernels with the DRM_I915_QUERY_MEMORY_REGIONS, it may fail with EINVAL. Instead of abort/asserting the test, make sure gem_has_lmem remains functional. V2: * Rebase V3: * Update commit message (Ashutosh) Cc: Ashutosh Dixit <ashutosh.dixit@intel.com> Cc: Vidya Srinivas <vidya.srinivas@intel.com> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com> --- lib/i915/intel_memory_region.c | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/lib/i915/intel_memory_region.c b/lib/i915/intel_memory_region.c index e1e210f2c..72e337af3 100644 --- a/lib/i915/intel_memory_region.c +++ b/lib/i915/intel_memory_region.c @@ -114,7 +114,7 @@ uint32_t gem_get_batch_size(int fd, uint8_t mem_region_type) struct drm_i915_query_memory_regions *gem_get_query_memory_regions(int fd) { struct drm_i915_query_item item; - struct drm_i915_query_memory_regions *query_info; + struct drm_i915_query_memory_regions *query_info = NULL; memset(&item, 0, sizeof(item)); item.query_id = DRM_I915_QUERY_MEMORY_REGIONS; @@ -123,15 +123,18 @@ struct drm_i915_query_memory_regions *gem_get_query_memory_regions(int fd) * Any DRM_I915_QUERY_MEMORY_REGIONS specific errors are encoded in the * item.length, even though the ioctl might still return success. */ - igt_assert_f(item.length > 0, - "DRM_I915_QUERY_MEMORY_REGIONS failed with %d\n", - item.length); + if (item.length < 0) { + igt_critical("DRM_I915_QUERY_MEMORY_REGIONS failed with %d\n", + item.length); + goto out; + } query_info = calloc(1, item.length); item.data_ptr = to_user_pointer(query_info); i915_query_items(fd, &item, 1); +out: return query_info; } @@ -150,6 +153,9 @@ uint8_t gem_get_lmem_region_count(int fd) uint8_t lmem_regions = 0; query_info = gem_get_query_memory_regions(fd); + if (!query_info) + goto out; + num_regions = query_info->num_regions; for (int i = 0; i < num_regions; i++) { @@ -158,6 +164,7 @@ uint8_t gem_get_lmem_region_count(int fd) } free(query_info); +out: return lmem_regions; } -- 2.32.0 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels (rev2) 2021-07-26 9:49 [igt-dev] [PATCH i-g-t] lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels Bhanuprakash Modem 2021-07-26 11:33 ` [igt-dev] ✗ Fi.CI.BUILD: failure for " Patchwork 2021-07-26 12:26 ` [igt-dev] [i-g-t V2] " Bhanuprakash Modem @ 2021-07-26 13:50 ` Patchwork 2021-07-26 17:31 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork ` (3 subsequent siblings) 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2021-07-26 13:50 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 3721 bytes --] == Series Details == Series: lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels (rev2) URL : https://patchwork.freedesktop.org/series/93006/ State : success == Summary == CI Bug Log - changes from IGT_6151 -> IGTPW_6058 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/index.html Known issues ------------ Here are the changes found in IGTPW_6058 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@amdgpu/amd_basic@semaphore: - fi-bdw-5557u: NOTRUN -> [SKIP][1] ([fdo#109271]) +29 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/fi-bdw-5557u/igt@amdgpu/amd_basic@semaphore.html * igt@core_hotunplug@unbind-rebind: - fi-bdw-5557u: NOTRUN -> [WARN][2] ([i915#3718]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/fi-bdw-5557u/igt@core_hotunplug@unbind-rebind.html * igt@gem_exec_suspend@basic-s0: - fi-tgl-u2: [PASS][3] -> [FAIL][4] ([i915#1888]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/fi-tgl-u2/igt@gem_exec_suspend@basic-s0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/fi-tgl-u2/igt@gem_exec_suspend@basic-s0.html - fi-tgl-1115g4: [PASS][5] -> [FAIL][6] ([i915#1888]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s0.html * igt@i915_pm_rpm@basic-rte: - fi-bdw-5557u: NOTRUN -> [FAIL][7] ([i915#579]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/fi-bdw-5557u/igt@i915_pm_rpm@basic-rte.html * igt@i915_selftest@live@gt_pm: - fi-icl-y: [PASS][8] -> [DMESG-FAIL][9] ([i915#2291]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/fi-icl-y/igt@i915_selftest@live@gt_pm.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/fi-icl-y/igt@i915_selftest@live@gt_pm.html * igt@kms_chamelium@dp-crc-fast: - fi-kbl-7500u: [PASS][10] -> [FAIL][11] ([i915#1372]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html - fi-bdw-5557u: NOTRUN -> [SKIP][12] ([fdo#109271] / [fdo#111827]) +8 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/fi-bdw-5557u/igt@kms_chamelium@dp-crc-fast.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1372]: https://gitlab.freedesktop.org/drm/intel/issues/1372 [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888 [i915#2291]: https://gitlab.freedesktop.org/drm/intel/issues/2291 [i915#3718]: https://gitlab.freedesktop.org/drm/intel/issues/3718 [i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579 Participating hosts (39 -> 35) ------------------------------ Missing (4): fi-ilk-m540 fi-bsw-cyan fi-bdw-samus fi-hsw-4200u Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6151 -> IGTPW_6058 CI-20190529: 20190529 CI_DRM_10394: e2ddb2cf7c4ae6795fa72f072e5caac4d332cd49 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_6058: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/index.html IGT_6151: c3170c2d3744521b8351a4b9c579792bc9a5f835 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/index.html [-- Attachment #1.2: Type: text/html, Size: 4626 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels (rev2) 2021-07-26 9:49 [igt-dev] [PATCH i-g-t] lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels Bhanuprakash Modem ` (2 preceding siblings ...) 2021-07-26 13:50 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels (rev2) Patchwork @ 2021-07-26 17:31 ` Patchwork 2021-07-27 1:44 ` Modem, Bhanuprakash 2021-07-27 1:44 ` Modem, Bhanuprakash 2021-07-27 1:57 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork ` (2 subsequent siblings) 6 siblings, 2 replies; 13+ messages in thread From: Patchwork @ 2021-07-26 17:31 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 30279 bytes --] == Series Details == Series: lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels (rev2) URL : https://patchwork.freedesktop.org/series/93006/ State : failure == Summary == CI Bug Log - changes from IGT_6151_full -> IGTPW_6058_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_6058_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_6058_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_6058_full: ### IGT changes ### #### Possible regressions #### * igt@prime_self_import@export-vs-gem_close-race: - shard-tglb: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb6/igt@prime_self_import@export-vs-gem_close-race.html Known issues ------------ Here are the changes found in IGTPW_6058_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-apl: [PASS][2] -> [DMESG-WARN][3] ([i915#180]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl3/igt@gem_ctx_isolation@preservation-s3@rcs0.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@legacy-engines-queued: - shard-snb: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#1099]) +8 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-snb2/igt@gem_ctx_persistence@legacy-engines-queued.html * igt@gem_ctx_sseu@mmap-args: - shard-tglb: NOTRUN -> [SKIP][5] ([i915#280]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_fair@basic-deadline: - shard-apl: NOTRUN -> [FAIL][6] ([i915#2846]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl6/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-tglb: NOTRUN -> [FAIL][7] ([i915#2842]) +5 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb2/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-none@rcs0: - shard-glk: NOTRUN -> [FAIL][8] ([i915#2842]) +1 similar issue [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk7/igt@gem_exec_fair@basic-none@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-apl: NOTRUN -> [FAIL][9] ([i915#2842]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-none@vecs0: - shard-iclb: NOTRUN -> [FAIL][10] ([i915#2842]) +3 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb3/igt@gem_exec_fair@basic-none@vecs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: [PASS][11] -> [FAIL][12] ([i915#2842]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-tglb6/igt@gem_exec_fair@basic-pace-share@rcs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-kbl: [PASS][13] -> [FAIL][14] ([i915#2842]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-kbl7/igt@gem_exec_fair@basic-pace-solo@rcs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-iclb: [PASS][15] -> [FAIL][16] ([i915#2849]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb8/igt@gem_exec_fair@basic-throttle@rcs0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb1/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_mmap_gtt@cpuset-medium-copy: - shard-glk: [PASS][17] -> [FAIL][18] ([i915#1888] / [i915#307]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-glk5/igt@gem_mmap_gtt@cpuset-medium-copy.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk5/igt@gem_mmap_gtt@cpuset-medium-copy.html * igt@gem_render_copy@yf-tiled-to-vebox-linear: - shard-iclb: NOTRUN -> [SKIP][19] ([i915#768]) +3 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb3/igt@gem_render_copy@yf-tiled-to-vebox-linear.html * igt@gem_softpin@noreloc-s3: - shard-kbl: [PASS][20] -> [DMESG-WARN][21] ([i915#180]) +1 similar issue [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-kbl3/igt@gem_softpin@noreloc-s3.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl3/igt@gem_softpin@noreloc-s3.html * igt@gem_userptr_blits@vma-merge: - shard-apl: NOTRUN -> [FAIL][22] ([i915#3318]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl7/igt@gem_userptr_blits@vma-merge.html * igt@gen7_exec_parse@basic-allocation: - shard-tglb: NOTRUN -> [SKIP][23] ([fdo#109289]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@gen7_exec_parse@basic-allocation.html - shard-iclb: NOTRUN -> [SKIP][24] ([fdo#109289]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@gen7_exec_parse@basic-allocation.html * igt@gen9_exec_parse@batch-without-end: - shard-iclb: NOTRUN -> [SKIP][25] ([i915#2856]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb4/igt@gen9_exec_parse@batch-without-end.html - shard-tglb: NOTRUN -> [SKIP][26] ([i915#2856]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@gen9_exec_parse@batch-without-end.html * igt@i915_pm_dc@dc6-psr: - shard-tglb: NOTRUN -> [FAIL][27] ([i915#454]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb7/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_rpm@pm-caching: - shard-tglb: NOTRUN -> [SKIP][28] ([i915#579]) +1 similar issue [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb2/igt@i915_pm_rpm@pm-caching.html * igt@i915_pm_rpm@sysfs-read: - shard-iclb: NOTRUN -> [SKIP][29] ([i915#579]) +1 similar issue [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb1/igt@i915_pm_rpm@sysfs-read.html * igt@i915_selftest@live@hangcheck: - shard-snb: NOTRUN -> [INCOMPLETE][30] ([i915#2782]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-snb5/igt@i915_selftest@live@hangcheck.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-iclb: NOTRUN -> [SKIP][31] ([i915#1769]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html - shard-tglb: NOTRUN -> [SKIP][32] ([i915#1769]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_big_fb@x-tiled-32bpp-rotate-180: - shard-glk: [PASS][33] -> [DMESG-WARN][34] ([i915#118] / [i915#95]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-glk7/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk8/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html * igt@kms_big_fb@y-tiled-32bpp-rotate-270: - shard-iclb: [PASS][35] -> [DMESG-WARN][36] ([i915#3621]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb7/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb1/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: - shard-tglb: NOTRUN -> [SKIP][37] ([fdo#111615]) +2 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb6/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-apl: NOTRUN -> [SKIP][38] ([fdo#109271] / [i915#3777]) +1 similar issue [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-iclb: NOTRUN -> [SKIP][39] ([fdo#110723]) +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_joiner@basic: - shard-tglb: NOTRUN -> [SKIP][40] ([i915#2705]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb7/igt@kms_big_joiner@basic.html - shard-iclb: NOTRUN -> [SKIP][41] ([i915#2705]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb4/igt@kms_big_joiner@basic.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs: - shard-iclb: NOTRUN -> [SKIP][42] ([fdo#109278]) +24 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][43] ([i915#3689]) +9 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb6/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs: - shard-snb: NOTRUN -> [SKIP][44] ([fdo#109271]) +404 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-snb5/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs.html * igt@kms_cdclk@mode-transition: - shard-apl: NOTRUN -> [SKIP][45] ([fdo#109271]) +278 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium@common-hpd-after-suspend: - shard-glk: NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +4 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk2/igt@kms_chamelium@common-hpd-after-suspend.html * igt@kms_chamelium@dp-crc-multiple: - shard-apl: NOTRUN -> [SKIP][47] ([fdo#109271] / [fdo#111827]) +20 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl7/igt@kms_chamelium@dp-crc-multiple.html * igt@kms_chamelium@dp-hpd-for-each-pipe: - shard-iclb: NOTRUN -> [SKIP][48] ([fdo#109284] / [fdo#111827]) +3 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb4/igt@kms_chamelium@dp-hpd-for-each-pipe.html * igt@kms_color@pipe-d-ctm-red-to-blue: - shard-iclb: NOTRUN -> [SKIP][49] ([fdo#109278] / [i915#1149]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb8/igt@kms_color@pipe-d-ctm-red-to-blue.html * igt@kms_color_chamelium@pipe-a-ctm-0-75: - shard-kbl: NOTRUN -> [SKIP][50] ([fdo#109271] / [fdo#111827]) +3 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl6/igt@kms_color_chamelium@pipe-a-ctm-0-75.html - shard-tglb: NOTRUN -> [SKIP][51] ([fdo#109284] / [fdo#111827]) +4 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb2/igt@kms_color_chamelium@pipe-a-ctm-0-75.html * igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes: - shard-snb: NOTRUN -> [SKIP][52] ([fdo#109271] / [fdo#111827]) +21 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-snb2/igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes.html * igt@kms_cursor_crc@pipe-a-cursor-512x512-rapid-movement: - shard-iclb: NOTRUN -> [SKIP][53] ([fdo#109278] / [fdo#109279]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb3/igt@kms_cursor_crc@pipe-a-cursor-512x512-rapid-movement.html * igt@kms_cursor_crc@pipe-c-cursor-32x32-onscreen: - shard-tglb: NOTRUN -> [SKIP][54] ([i915#3319]) +1 similar issue [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb5/igt@kms_cursor_crc@pipe-c-cursor-32x32-onscreen.html * igt@kms_cursor_crc@pipe-d-cursor-512x512-onscreen: - shard-tglb: NOTRUN -> [SKIP][55] ([fdo#109279] / [i915#3359]) +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb7/igt@kms_cursor_crc@pipe-d-cursor-512x512-onscreen.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-iclb: NOTRUN -> [SKIP][56] ([fdo#109274] / [fdo#109278]) +2 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-tglb: NOTRUN -> [SKIP][57] ([fdo#111825]) +18 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_flip@2x-nonexisting-fb: - shard-iclb: NOTRUN -> [SKIP][58] ([fdo#109274]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb4/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@flip-vs-suspend@a-dp1: - shard-kbl: [PASS][59] -> [INCOMPLETE][60] ([i915#155]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-kbl4/igt@kms_flip@flip-vs-suspend@a-dp1.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl4/igt@kms_flip@flip-vs-suspend@a-dp1.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-iclb: NOTRUN -> [SKIP][61] ([fdo#109280]) +13 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-glk: NOTRUN -> [SKIP][62] ([fdo#109271]) +49 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk7/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_pipe_crc_basic@read-crc-pipe-d: - shard-kbl: NOTRUN -> [SKIP][63] ([fdo#109271] / [i915#533]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl6/igt@kms_pipe_crc_basic@read-crc-pipe-d.html - shard-glk: NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#533]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk7/igt@kms_pipe_crc_basic@read-crc-pipe-d.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c: - shard-apl: NOTRUN -> [DMESG-WARN][65] ([i915#180]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb: - shard-apl: NOTRUN -> [FAIL][66] ([fdo#108145] / [i915#265]) +4 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html - shard-glk: NOTRUN -> [FAIL][67] ([fdo#108145] / [i915#265]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk7/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html - shard-kbl: NOTRUN -> [FAIL][68] ([fdo#108145] / [i915#265]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl3/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html * igt@kms_plane_alpha_blend@pipe-c-coverage-vs-premult-vs-constant: - shard-iclb: [PASS][69] -> [SKIP][70] ([fdo#109278]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb7/igt@kms_plane_alpha_blend@pipe-c-coverage-vs-premult-vs-constant.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@kms_plane_alpha_blend@pipe-c-coverage-vs-premult-vs-constant.html * igt@kms_plane_lowres@pipe-a-tiling-x: - shard-iclb: NOTRUN -> [SKIP][71] ([i915#3536]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb3/igt@kms_plane_lowres@pipe-a-tiling-x.html - shard-tglb: NOTRUN -> [SKIP][72] ([i915#3536]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb6/igt@kms_plane_lowres@pipe-a-tiling-x.html * igt@kms_plane_multiple@atomic-pipe-d-tiling-yf: - shard-tglb: NOTRUN -> [SKIP][73] ([fdo#112054]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb7/igt@kms_plane_multiple@atomic-pipe-d-tiling-yf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2: - shard-apl: NOTRUN -> [SKIP][74] ([fdo#109271] / [i915#658]) +6 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5: - shard-tglb: NOTRUN -> [SKIP][75] ([i915#2920]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5.html - shard-iclb: NOTRUN -> [SKIP][76] ([i915#658]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5.html * igt@kms_psr@cursor_plane_onoff: - shard-kbl: NOTRUN -> [SKIP][77] ([fdo#109271]) +55 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl1/igt@kms_psr@cursor_plane_onoff.html * igt@kms_psr@psr2_cursor_mmap_cpu: - shard-iclb: NOTRUN -> [SKIP][78] ([fdo#109441]) +1 similar issue [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb5/igt@kms_psr@psr2_cursor_mmap_cpu.html * igt@kms_psr@psr2_cursor_plane_move: - shard-iclb: [PASS][79] -> [SKIP][80] ([fdo#109441]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb2/igt@kms_psr@psr2_cursor_plane_move.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb5/igt@kms_psr@psr2_cursor_plane_move.html * igt@kms_psr@psr2_sprite_mmap_cpu: - shard-tglb: NOTRUN -> [FAIL][81] ([i915#132] / [i915#3467]) +1 similar issue [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@kms_psr@psr2_sprite_mmap_cpu.html * igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm: - shard-tglb: NOTRUN -> [SKIP][82] ([i915#3841]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb2/igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm.html * igt@kms_vblank@pipe-d-wait-idle: - shard-apl: NOTRUN -> [SKIP][83] ([fdo#109271] / [i915#533]) +4 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl8/igt@kms_vblank@pipe-d-wait-idle.html * igt@nouveau_crc@pipe-a-ctx-flip-skip-current-frame: - shard-iclb: NOTRUN -> [SKIP][84] ([i915#2530]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb8/igt@nouveau_crc@pipe-a-ctx-flip-skip-current-frame.html * igt@nouveau_crc@pipe-d-ctx-flip-detection: - shard-tglb: NOTRUN -> [SKIP][85] ([i915#2530]) +1 similar issue [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb5/igt@nouveau_crc@pipe-d-ctx-flip-detection.html - shard-iclb: NOTRUN -> [SKIP][86] ([fdo#109278] / [i915#2530]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@nouveau_crc@pipe-d-ctx-flip-detection.html * igt@prime_nv_api@i915_nv_import_twice_check_flink_name: - shard-iclb: NOTRUN -> [SKIP][87] ([fdo#109291]) +3 similar issues [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@prime_nv_api@i915_nv_import_twice_check_flink_name.html * igt@prime_nv_pcopy@test3_1: - shard-tglb: NOTRUN -> [SKIP][88] ([fdo#109291]) +3 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb1/igt@prime_nv_pcopy@test3_1.html * igt@sysfs_clients@fair-3: - shard-tglb: NOTRUN -> [SKIP][89] ([i915#2994]) +1 similar issue [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@sysfs_clients@fair-3.html - shard-iclb: NOTRUN -> [SKIP][90] ([i915#2994]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb5/igt@sysfs_clients@fair-3.html * igt@sysfs_clients@recycle-many: - shard-apl: NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#2994]) +4 similar issues [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl8/igt@sysfs_clients@recycle-many.html #### Possible fixes #### * igt@gem_ctx_persistence@many-contexts: - shard-tglb: [FAIL][92] ([i915#2410]) -> [PASS][93] [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-tglb5/igt@gem_ctx_persistence@many-contexts.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb5/igt@gem_ctx_persistence@many-contexts.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][94] ([i915#2842]) -> [PASS][95] [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_huc_copy@huc-copy: - shard-tglb: [SKIP][96] ([i915#2190]) -> [PASS][97] [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-tglb6/igt@gem_huc_copy@huc-copy.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb1/igt@gem_huc_copy@huc-copy.html * igt@i915_selftest@live@gt_pm: - shard-iclb: [INCOMPLETE][98] -> [PASS][99] [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb3/igt@i915_selftest@live@gt_pm.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb5/igt@i915_selftest@live@gt_pm.html * igt@i915_suspend@forcewake: - shard-apl: [DMESG-WARN][100] ([i915#180]) -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl8/igt@i915_suspend@forcewake.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl8/igt@i915_suspend@forcewake.html * igt@kms_big_fb@linear-32bpp-rotate-180: - shard-glk: [DMESG-WARN][102] ([i915#118] / [i915#95]) -> [PASS][103] [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-glk5/igt@kms_big_fb@linear-32bpp-rotate-180.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk4/igt@kms_big_fb@linear-32bpp-rotate-180.html * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic: - shard-glk: [DMESG-WARN][104] ([IGT#6]) -> [PASS][105] [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-iclb: [SKIP][106] ([fdo#109441]) -> [PASS][107] +1 similar issue [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb8/igt@kms_psr@psr2_sprite_mmap_gtt.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html #### Warnings #### * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-tglb: [FAIL][108] ([i915#2849]) -> [FAIL][109] ([i915#2842]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-tglb5/igt@gem_exec_fair@basic-none-solo@rcs0.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-iclb: [SKIP][110] ([i915#658]) -> [SKIP][111] ([i915#588]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb6/igt@i915_pm_dc@dc3co-vpb-simulation.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-iclb: [WARN][112] ([i915#2684]) -> [WARN][113] ([i915#1804] / [i915#2684]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb2/igt@i915_pm_rc6_residency@rc6-idle.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb4/igt@i915_pm_rc6_residency@rc6-idle.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2: - shard-iclb: [SKIP][114] ([i915#2920]) -> [SKIP][115] ([i915#658]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb7/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4: - shard-iclb: [SKIP][116] ([i915#658]) -> [SKIP][117] ([i915#2920]) +1 similar issue [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb7/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4.html * igt@runner@aborted: - shard-kbl: ([FAIL][118], [FAIL][119]) ([i915#2505] / [i915#3002] / [i915#3363]) -> ([FAIL][120], [FAIL][121], [FAIL][122]) ([i915#180] / [i915#1814] / [i915#3002] / [i915#3363] / [i915#602]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-kbl7/igt@runner@aborted.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-kbl6/igt@runner@aborted.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl3/igt@runner@aborted.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl3/igt@runner@aborted.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl3/igt@runner@aborted.html - shard-iclb: ([FAIL][123], [FAIL][124]) ([i915#3002]) -> ([FAIL][125], [FAIL][126], [FAIL][127]) ([i915#1814] / [i915#3002]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb1/igt@runner@aborted.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb8/igt@runner@aborted.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb8/igt@runner@aborted.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb1/igt@runner@aborted.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb7/igt@runner@aborted.html - shard-apl: ([FAIL][128], [FAIL][129], [FAIL][130], [FAIL][131], [FAIL][132]) ([i915#180] / [i915#1814] / [i915#3002] / [i915#3363]) -> ([FAIL][133], [FAIL][134], [FAIL][135], [FAIL][136]) ([fdo#109271] / [i915#180] / [i915#1814] / [i915#3002] / [i915#3363]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl6/igt@runner@aborted.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl8/igt@runner@aborted.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl3/igt@runner@aborted.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl6/igt@runner@aborted.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl3/igt@runner@aborted.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@runner@aborted.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@runner@aborted.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl1/igt@runner@aborted.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl6/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#6]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/6 [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1804]: https://gitlab.freedesktop.org/drm/intel/issues/1804 [i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814 [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2410]: https://gitla == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/index.html [-- Attachment #1.2: Type: text/html, Size: 36841 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels (rev2) 2021-07-26 17:31 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2021-07-27 1:44 ` Modem, Bhanuprakash 2021-07-27 1:44 ` Modem, Bhanuprakash 1 sibling, 0 replies; 13+ messages in thread From: Modem, Bhanuprakash @ 2021-07-27 1:44 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org [-- Attachment #1.1: Type: text/plain, Size: 30429 bytes --] Hi Lakshmi, Can you please re-report below false positive? failures are not related to this patch. Thanks, Bhanu From: Patchwork <patchwork@emeril.freedesktop.org> Sent: Monday, July 26, 2021 11:01 PM To: Modem, Bhanuprakash <bhanuprakash.modem@intel.com> Cc: igt-dev@lists.freedesktop.org Subject: ✗ Fi.CI.IGT: failure for lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels (rev2) Patch Details Series: lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels (rev2) URL: https://patchwork.freedesktop.org/series/93006/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/index.html CI Bug Log - changes from IGT_6151_full -> IGTPW_6058_full Summary FAILURE Serious unknown changes coming with IGTPW_6058_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_6058_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/index.html Possible new issues Here are the unknown changes that may have been introduced in IGTPW_6058_full: IGT changes Possible regressions * igt@prime_self_import@export-vs-gem_close-race: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb6/igt@prime_self_import@export-vs-gem_close-race.html> Known issues Here are the changes found in IGTPW_6058_full that come from known issues: IGT changes Issues hit * igt@gem_ctx_isolation@preservation-s3@rcs0: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl3/igt@gem_ctx_isolation@preservation-s3@rcs0.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@gem_ctx_isolation@preservation-s3@rcs0.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) * igt@gem_ctx_persistence@legacy-engines-queued: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-snb2/igt@gem_ctx_persistence@legacy-engines-queued.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1099<https://gitlab.freedesktop.org/drm/intel/issues/1099>) +8 similar issues * igt@gem_ctx_sseu@mmap-args: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@gem_ctx_sseu@mmap-args.html> ([i915#280]) * igt@gem_exec_fair@basic-deadline: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl6/igt@gem_exec_fair@basic-deadline.html> ([i915#2846]) * igt@gem_exec_fair@basic-none-vip@rcs0: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb2/igt@gem_exec_fair@basic-none-vip@rcs0.html> ([i915#2842]) +5 similar issues * igt@gem_exec_fair@basic-none@rcs0: * shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk7/igt@gem_exec_fair@basic-none@rcs0.html> ([i915#2842]) +1 similar issue * igt@gem_exec_fair@basic-none@vcs0: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@gem_exec_fair@basic-none@vcs0.html> ([i915#2842]) * igt@gem_exec_fair@basic-none@vecs0: * shard-iclb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb3/igt@gem_exec_fair@basic-none@vecs0.html> ([i915#2842]) +3 similar issues * igt@gem_exec_fair@basic-pace-share@rcs0: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-tglb6/igt@gem_exec_fair@basic-pace-share@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@gem_exec_fair@basic-pace-share@rcs0.html> ([i915#2842]) * igt@gem_exec_fair@basic-pace-solo@rcs0: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-kbl7/igt@gem_exec_fair@basic-pace-solo@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html> ([i915#2842]) * igt@gem_exec_fair@basic-throttle@rcs0: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb8/igt@gem_exec_fair@basic-throttle@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb1/igt@gem_exec_fair@basic-throttle@rcs0.html> ([i915#2849]) * igt@gem_mmap_gtt@cpuset-medium-copy: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-glk5/igt@gem_mmap_gtt@cpuset-medium-copy.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk5/igt@gem_mmap_gtt@cpuset-medium-copy.html> (i915#1888<https://gitlab.freedesktop.org/drm/intel/issues/1888> / [i915#307]) * igt@gem_render_copy@yf-tiled-to-vebox-linear: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb3/igt@gem_render_copy@yf-tiled-to-vebox-linear.html> ([i915#768]) +3 similar issues * igt@gem_softpin@noreloc-s3: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-kbl3/igt@gem_softpin@noreloc-s3.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl3/igt@gem_softpin@noreloc-s3.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) +1 similar issue * igt@gem_userptr_blits@vma-merge: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl7/igt@gem_userptr_blits@vma-merge.html> ([i915#3318]) * igt@gen7_exec_parse@basic-allocation: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@gen7_exec_parse@basic-allocation.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@gen7_exec_parse@basic-allocation.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) * igt@gen9_exec_parse@batch-without-end: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb4/igt@gen9_exec_parse@batch-without-end.html> ([i915#2856]) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@gen9_exec_parse@batch-without-end.html> ([i915#2856]) * igt@i915_pm_dc@dc6-psr: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb7/igt@i915_pm_dc@dc6-psr.html> ([i915#454]) * igt@i915_pm_rpm@pm-caching: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb2/igt@i915_pm_rpm@pm-caching.html> ([i915#579]) +1 similar issue * igt@i915_pm_rpm@sysfs-read: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb1/igt@i915_pm_rpm@sysfs-read.html> ([i915#579]) +1 similar issue * igt@i915_selftest@live@hangcheck: * shard-snb: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-snb5/igt@i915_selftest@live@hangcheck.html> ([i915#2782]) * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html> (i915#1769<https://gitlab.freedesktop.org/drm/intel/issues/1769>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html> (i915#1769<https://gitlab.freedesktop.org/drm/intel/issues/1769>) * igt@kms_big_fb@x-tiled-32bpp-rotate-180: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-glk7/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk8/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html> (i915#118<https://gitlab.freedesktop.org/drm/intel/issues/118> / [i915#95]) * igt@kms_big_fb@y-tiled-32bpp-rotate-270: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb7/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb1/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html> ([i915#3621]) * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb6/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615>) +2 similar issues * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#3777]) +1 similar issue * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> (fdo#110723<https://bugs.freedesktop.org/show_bug.cgi?id=110723>) +1 similar issue * igt@kms_big_joiner@basic: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb7/igt@kms_big_joiner@basic.html> ([i915#2705]) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb4/igt@kms_big_joiner@basic.html> ([i915#2705]) * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278>) +24 similar issues * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb6/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html> ([i915#3689]) +9 similar issues * igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-snb5/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +404 similar issues * igt@kms_cdclk@mode-transition: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@kms_cdclk@mode-transition.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +278 similar issues * igt@kms_chamelium@common-hpd-after-suspend: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk2/igt@kms_chamelium@common-hpd-after-suspend.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +4 similar issues * igt@kms_chamelium@dp-crc-multiple: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl7/igt@kms_chamelium@dp-crc-multiple.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +20 similar issues * igt@kms_chamelium@dp-hpd-for-each-pipe: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb4/igt@kms_chamelium@dp-hpd-for-each-pipe.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3 similar issues * igt@kms_color@pipe-d-ctm-red-to-blue: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb8/igt@kms_color@pipe-d-ctm-red-to-blue.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / i915#1149<https://gitlab.freedesktop.org/drm/intel/issues/1149>) * igt@kms_color_chamelium@pipe-a-ctm-0-75: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl6/igt@kms_color_chamelium@pipe-a-ctm-0-75.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3 similar issues * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb2/igt@kms_color_chamelium@pipe-a-ctm-0-75.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +4 similar issues * igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-snb2/igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +21 similar issues * igt@kms_cursor_crc@pipe-a-cursor-512x512-rapid-movement: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb3/igt@kms_cursor_crc@pipe-a-cursor-512x512-rapid-movement.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / fdo#109279<https://bugs.freedesktop.org/show_bug.cgi?id=109279>) * igt@kms_cursor_crc@pipe-c-cursor-32x32-onscreen: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb5/igt@kms_cursor_crc@pipe-c-cursor-32x32-onscreen.html> ([i915#3319]) +1 similar issue * igt@kms_cursor_crc@pipe-d-cursor-512x512-onscreen: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb7/igt@kms_cursor_crc@pipe-d-cursor-512x512-onscreen.html> (fdo#109279<https://bugs.freedesktop.org/show_bug.cgi?id=109279> / [i915#3359]) +1 similar issue * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278>) +2 similar issues * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html> (fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +18 similar issues * igt@kms_flip@2x-nonexisting-fb: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb4/igt@kms_flip@2x-nonexisting-fb.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274>) * igt@kms_flip@flip-vs-suspend@a-dp1: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-kbl4/igt@kms_flip@flip-vs-suspend@a-dp1.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl4/igt@kms_flip@flip-vs-suspend@a-dp1.html> (i915#155<https://gitlab.freedesktop.org/drm/intel/issues/155>) * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +13 similar issues * igt@kms_frontbuffer_tracking@fbcpsr-suspend: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk7/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +49 similar issues * igt@kms_pipe_crc_basic@read-crc-pipe-d: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl6/igt@kms_pipe_crc_basic@read-crc-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#533]) * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk7/igt@kms_pipe_crc_basic@read-crc-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#533]) * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c: * shard-apl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html> (fdo#108145<https://bugs.freedesktop.org/show_bug.cgi?id=108145> / [i915#265]) +4 similar issues * shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk7/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html> (fdo#108145<https://bugs.freedesktop.org/show_bug.cgi?id=108145> / [i915#265]) * shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl3/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html> (fdo#108145<https://bugs.freedesktop.org/show_bug.cgi?id=108145> / [i915#265]) * igt@kms_plane_alpha_blend@pipe-c-coverage-vs-premult-vs-constant: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb7/igt@kms_plane_alpha_blend@pipe-c-coverage-vs-premult-vs-constant.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@kms_plane_alpha_blend@pipe-c-coverage-vs-premult-vs-constant.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278>) * igt@kms_plane_lowres@pipe-a-tiling-x: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb3/igt@kms_plane_lowres@pipe-a-tiling-x.html> ([i915#3536]) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb6/igt@kms_plane_lowres@pipe-a-tiling-x.html> ([i915#3536]) * igt@kms_plane_multiple@atomic-pipe-d-tiling-yf: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb7/igt@kms_plane_multiple@atomic-pipe-d-tiling-yf.html> (fdo#112054<https://bugs.freedesktop.org/show_bug.cgi?id=112054>) * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#658]) +6 similar issues * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5.html> ([i915#2920]) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5.html> ([i915#658]) * igt@kms_psr@cursor_plane_onoff: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl1/igt@kms_psr@cursor_plane_onoff.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +55 similar issues * igt@kms_psr@psr2_cursor_mmap_cpu: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb5/igt@kms_psr@psr2_cursor_mmap_cpu.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) +1 similar issue * igt@kms_psr@psr2_cursor_plane_move: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb2/igt@kms_psr@psr2_cursor_plane_move.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb5/igt@kms_psr@psr2_cursor_plane_move.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) * igt@kms_psr@psr2_sprite_mmap_cpu: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@kms_psr@psr2_sprite_mmap_cpu.html> (i915#132<https://gitlab.freedesktop.org/drm/intel/issues/132> / [i915#3467]) +1 similar issue * igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb2/igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm.html> ([i915#3841]) * igt@kms_vblank@pipe-d-wait-idle: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl8/igt@kms_vblank@pipe-d-wait-idle.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#533]) +4 similar issues * igt@nouveau_crc@pipe-a-ctx-flip-skip-current-frame: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb8/igt@nouveau_crc@pipe-a-ctx-flip-skip-current-frame.html> ([i915#2530]) * igt@nouveau_crc@pipe-d-ctx-flip-detection: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb5/igt@nouveau_crc@pipe-d-ctx-flip-detection.html> ([i915#2530]) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@nouveau_crc@pipe-d-ctx-flip-detection.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / [i915#2530]) * igt@prime_nv_api@i915_nv_import_twice_check_flink_name: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@prime_nv_api@i915_nv_import_twice_check_flink_name.html> (fdo#109291<https://bugs.freedesktop.org/show_bug.cgi?id=109291>) +3 similar issues * igt@prime_nv_pcopy@test3_1: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb1/igt@prime_nv_pcopy@test3_1.html> (fdo#109291<https://bugs.freedesktop.org/show_bug.cgi?id=109291>) +3 similar issues * igt@sysfs_clients@fair-3: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@sysfs_clients@fair-3.html> ([i915#2994]) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb5/igt@sysfs_clients@fair-3.html> ([i915#2994]) * igt@sysfs_clients@recycle-many: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl8/igt@sysfs_clients@recycle-many.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#2994]) +4 similar issues Possible fixes * igt@gem_ctx_persistence@many-contexts: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-tglb5/igt@gem_ctx_persistence@many-contexts.html> (i915#2410<https://gitla>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb5/igt@gem_ctx_persistence@many-contexts.html> * igt@gem_exec_fair@basic-pace-share@rcs0: * shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html> * igt@gem_huc_copy@huc-copy: * shard-tglb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-tglb6/igt@gem_huc_copy@huc-copy.html> (i915#2190<https://gitlab.freedesktop.org/drm/intel/issues/2190>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb1/igt@gem_huc_copy@huc-copy.html> * igt@i915_selftest@live@gt_pm: * shard-iclb: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb3/igt@i915_selftest@live@gt_pm.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb5/igt@i915_selftest@live@gt_pm.html> * igt@i915_suspend@forcewake: * shard-apl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl8/igt@i915_suspend@forcewake.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl8/igt@i915_suspend@forcewake.html> * igt@kms_big_fb@linear-32bpp-rotate-180: * shard-glk: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-glk5/igt@kms_big_fb@linear-32bpp-rotate-180.html> (i915#118<https://gitlab.freedesktop.org/drm/intel/issues/118> / [i915#95]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk4/igt@kms_big_fb@linear-32bpp-rotate-180.html> * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic: * shard-glk: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html> (IGT#6<https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/6>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html> * igt@kms_psr@psr2_sprite_mmap_gtt: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb8/igt@kms_psr@psr2_sprite_mmap_gtt.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html> +1 similar issue Warnings * igt@gem_exec_fair@basic-none-solo@rcs0: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-tglb5/igt@gem_exec_fair@basic-none-solo@rcs0.html> ([i915#2849]) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@gem_exec_fair@basic-none-solo@rcs0.html> ([i915#2842]) * igt@i915_pm_dc@dc3co-vpb-simulation: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb6/igt@i915_pm_dc@dc3co-vpb-simulation.html> ([i915#658]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html> ([i915#588]) * igt@i915_pm_rc6_residency@rc6-idle: * shard-iclb: WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb2/igt@i915_pm_rc6_residency@rc6-idle.html> ([i915#2684]) -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb4/igt@i915_pm_rc6_residency@rc6-idle.html> (i915#1804<https://gitlab.freedesktop.org/drm/intel/issues/1804> / [i915#2684]) * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html> ([i915#2920]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb7/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html> ([i915#658]) * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb7/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4.html> ([i915#658]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4.html> ([i915#2920]) +1 similar issue * igt@runner@aborted: * shard-kbl: (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-kbl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-kbl6/igt@runner@aborted.html>) ([i915#2505] / [i915#3002] / [i915#3363]) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl3/igt@runner@aborted.html>) (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#1814<https://gitlab.freedesktop.org/drm/intel/issues/1814> / [i915#3002] / [i915#3363] / [i915#602]) * shard-iclb: (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb8/igt@runner@aborted.html>) ([i915#3002]) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb8/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb7/igt@runner@aborted.html>) (i915#1814<https://gitlab.freedesktop.org/drm/intel/issues/1814> / [i915#3002]) * shard-apl: (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl6/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl8/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl6/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl3/igt@runner@aborted.html>) (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#1814<https://gitlab.freedesktop.org/drm/intel/issues/1814> / [i915#3002] / [i915#3363]) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl6/igt@runner@aborted.html>) (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#1814<https://gitlab.freedesktop.org/drm/intel/issues/1814> / [i915#3002] / [i915#3363]) {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [-- Attachment #1.2: Type: text/html, Size: 67523 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels (rev2) 2021-07-26 17:31 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2021-07-27 1:44 ` Modem, Bhanuprakash @ 2021-07-27 1:44 ` Modem, Bhanuprakash 2021-07-27 4:57 ` Vudum, Lakshminarayana 1 sibling, 1 reply; 13+ messages in thread From: Modem, Bhanuprakash @ 2021-07-27 1:44 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org, Vudum, Lakshminarayana [-- Attachment #1.1: Type: text/plain, Size: 30429 bytes --] Hi Lakshmi, Can you please re-report below false positive? failures are not related to this patch. Thanks, Bhanu From: Patchwork <patchwork@emeril.freedesktop.org> Sent: Monday, July 26, 2021 11:01 PM To: Modem, Bhanuprakash <bhanuprakash.modem@intel.com> Cc: igt-dev@lists.freedesktop.org Subject: ✗ Fi.CI.IGT: failure for lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels (rev2) Patch Details Series: lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels (rev2) URL: https://patchwork.freedesktop.org/series/93006/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/index.html CI Bug Log - changes from IGT_6151_full -> IGTPW_6058_full Summary FAILURE Serious unknown changes coming with IGTPW_6058_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_6058_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/index.html Possible new issues Here are the unknown changes that may have been introduced in IGTPW_6058_full: IGT changes Possible regressions * igt@prime_self_import@export-vs-gem_close-race: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb6/igt@prime_self_import@export-vs-gem_close-race.html> Known issues Here are the changes found in IGTPW_6058_full that come from known issues: IGT changes Issues hit * igt@gem_ctx_isolation@preservation-s3@rcs0: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl3/igt@gem_ctx_isolation@preservation-s3@rcs0.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@gem_ctx_isolation@preservation-s3@rcs0.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) * igt@gem_ctx_persistence@legacy-engines-queued: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-snb2/igt@gem_ctx_persistence@legacy-engines-queued.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1099<https://gitlab.freedesktop.org/drm/intel/issues/1099>) +8 similar issues * igt@gem_ctx_sseu@mmap-args: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@gem_ctx_sseu@mmap-args.html> ([i915#280]) * igt@gem_exec_fair@basic-deadline: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl6/igt@gem_exec_fair@basic-deadline.html> ([i915#2846]) * igt@gem_exec_fair@basic-none-vip@rcs0: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb2/igt@gem_exec_fair@basic-none-vip@rcs0.html> ([i915#2842]) +5 similar issues * igt@gem_exec_fair@basic-none@rcs0: * shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk7/igt@gem_exec_fair@basic-none@rcs0.html> ([i915#2842]) +1 similar issue * igt@gem_exec_fair@basic-none@vcs0: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@gem_exec_fair@basic-none@vcs0.html> ([i915#2842]) * igt@gem_exec_fair@basic-none@vecs0: * shard-iclb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb3/igt@gem_exec_fair@basic-none@vecs0.html> ([i915#2842]) +3 similar issues * igt@gem_exec_fair@basic-pace-share@rcs0: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-tglb6/igt@gem_exec_fair@basic-pace-share@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@gem_exec_fair@basic-pace-share@rcs0.html> ([i915#2842]) * igt@gem_exec_fair@basic-pace-solo@rcs0: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-kbl7/igt@gem_exec_fair@basic-pace-solo@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html> ([i915#2842]) * igt@gem_exec_fair@basic-throttle@rcs0: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb8/igt@gem_exec_fair@basic-throttle@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb1/igt@gem_exec_fair@basic-throttle@rcs0.html> ([i915#2849]) * igt@gem_mmap_gtt@cpuset-medium-copy: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-glk5/igt@gem_mmap_gtt@cpuset-medium-copy.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk5/igt@gem_mmap_gtt@cpuset-medium-copy.html> (i915#1888<https://gitlab.freedesktop.org/drm/intel/issues/1888> / [i915#307]) * igt@gem_render_copy@yf-tiled-to-vebox-linear: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb3/igt@gem_render_copy@yf-tiled-to-vebox-linear.html> ([i915#768]) +3 similar issues * igt@gem_softpin@noreloc-s3: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-kbl3/igt@gem_softpin@noreloc-s3.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl3/igt@gem_softpin@noreloc-s3.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) +1 similar issue * igt@gem_userptr_blits@vma-merge: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl7/igt@gem_userptr_blits@vma-merge.html> ([i915#3318]) * igt@gen7_exec_parse@basic-allocation: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@gen7_exec_parse@basic-allocation.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@gen7_exec_parse@basic-allocation.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) * igt@gen9_exec_parse@batch-without-end: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb4/igt@gen9_exec_parse@batch-without-end.html> ([i915#2856]) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@gen9_exec_parse@batch-without-end.html> ([i915#2856]) * igt@i915_pm_dc@dc6-psr: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb7/igt@i915_pm_dc@dc6-psr.html> ([i915#454]) * igt@i915_pm_rpm@pm-caching: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb2/igt@i915_pm_rpm@pm-caching.html> ([i915#579]) +1 similar issue * igt@i915_pm_rpm@sysfs-read: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb1/igt@i915_pm_rpm@sysfs-read.html> ([i915#579]) +1 similar issue * igt@i915_selftest@live@hangcheck: * shard-snb: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-snb5/igt@i915_selftest@live@hangcheck.html> ([i915#2782]) * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html> (i915#1769<https://gitlab.freedesktop.org/drm/intel/issues/1769>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html> (i915#1769<https://gitlab.freedesktop.org/drm/intel/issues/1769>) * igt@kms_big_fb@x-tiled-32bpp-rotate-180: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-glk7/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk8/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html> (i915#118<https://gitlab.freedesktop.org/drm/intel/issues/118> / [i915#95]) * igt@kms_big_fb@y-tiled-32bpp-rotate-270: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb7/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb1/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html> ([i915#3621]) * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb6/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615>) +2 similar issues * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#3777]) +1 similar issue * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> (fdo#110723<https://bugs.freedesktop.org/show_bug.cgi?id=110723>) +1 similar issue * igt@kms_big_joiner@basic: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb7/igt@kms_big_joiner@basic.html> ([i915#2705]) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb4/igt@kms_big_joiner@basic.html> ([i915#2705]) * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278>) +24 similar issues * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb6/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html> ([i915#3689]) +9 similar issues * igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-snb5/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +404 similar issues * igt@kms_cdclk@mode-transition: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@kms_cdclk@mode-transition.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +278 similar issues * igt@kms_chamelium@common-hpd-after-suspend: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk2/igt@kms_chamelium@common-hpd-after-suspend.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +4 similar issues * igt@kms_chamelium@dp-crc-multiple: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl7/igt@kms_chamelium@dp-crc-multiple.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +20 similar issues * igt@kms_chamelium@dp-hpd-for-each-pipe: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb4/igt@kms_chamelium@dp-hpd-for-each-pipe.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3 similar issues * igt@kms_color@pipe-d-ctm-red-to-blue: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb8/igt@kms_color@pipe-d-ctm-red-to-blue.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / i915#1149<https://gitlab.freedesktop.org/drm/intel/issues/1149>) * igt@kms_color_chamelium@pipe-a-ctm-0-75: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl6/igt@kms_color_chamelium@pipe-a-ctm-0-75.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3 similar issues * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb2/igt@kms_color_chamelium@pipe-a-ctm-0-75.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +4 similar issues * igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-snb2/igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +21 similar issues * igt@kms_cursor_crc@pipe-a-cursor-512x512-rapid-movement: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb3/igt@kms_cursor_crc@pipe-a-cursor-512x512-rapid-movement.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / fdo#109279<https://bugs.freedesktop.org/show_bug.cgi?id=109279>) * igt@kms_cursor_crc@pipe-c-cursor-32x32-onscreen: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb5/igt@kms_cursor_crc@pipe-c-cursor-32x32-onscreen.html> ([i915#3319]) +1 similar issue * igt@kms_cursor_crc@pipe-d-cursor-512x512-onscreen: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb7/igt@kms_cursor_crc@pipe-d-cursor-512x512-onscreen.html> (fdo#109279<https://bugs.freedesktop.org/show_bug.cgi?id=109279> / [i915#3359]) +1 similar issue * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278>) +2 similar issues * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html> (fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +18 similar issues * igt@kms_flip@2x-nonexisting-fb: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb4/igt@kms_flip@2x-nonexisting-fb.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274>) * igt@kms_flip@flip-vs-suspend@a-dp1: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-kbl4/igt@kms_flip@flip-vs-suspend@a-dp1.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl4/igt@kms_flip@flip-vs-suspend@a-dp1.html> (i915#155<https://gitlab.freedesktop.org/drm/intel/issues/155>) * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +13 similar issues * igt@kms_frontbuffer_tracking@fbcpsr-suspend: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk7/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +49 similar issues * igt@kms_pipe_crc_basic@read-crc-pipe-d: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl6/igt@kms_pipe_crc_basic@read-crc-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#533]) * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk7/igt@kms_pipe_crc_basic@read-crc-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#533]) * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c: * shard-apl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html> (fdo#108145<https://bugs.freedesktop.org/show_bug.cgi?id=108145> / [i915#265]) +4 similar issues * shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk7/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html> (fdo#108145<https://bugs.freedesktop.org/show_bug.cgi?id=108145> / [i915#265]) * shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl3/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html> (fdo#108145<https://bugs.freedesktop.org/show_bug.cgi?id=108145> / [i915#265]) * igt@kms_plane_alpha_blend@pipe-c-coverage-vs-premult-vs-constant: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb7/igt@kms_plane_alpha_blend@pipe-c-coverage-vs-premult-vs-constant.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@kms_plane_alpha_blend@pipe-c-coverage-vs-premult-vs-constant.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278>) * igt@kms_plane_lowres@pipe-a-tiling-x: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb3/igt@kms_plane_lowres@pipe-a-tiling-x.html> ([i915#3536]) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb6/igt@kms_plane_lowres@pipe-a-tiling-x.html> ([i915#3536]) * igt@kms_plane_multiple@atomic-pipe-d-tiling-yf: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb7/igt@kms_plane_multiple@atomic-pipe-d-tiling-yf.html> (fdo#112054<https://bugs.freedesktop.org/show_bug.cgi?id=112054>) * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#658]) +6 similar issues * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5.html> ([i915#2920]) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5.html> ([i915#658]) * igt@kms_psr@cursor_plane_onoff: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl1/igt@kms_psr@cursor_plane_onoff.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +55 similar issues * igt@kms_psr@psr2_cursor_mmap_cpu: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb5/igt@kms_psr@psr2_cursor_mmap_cpu.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) +1 similar issue * igt@kms_psr@psr2_cursor_plane_move: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb2/igt@kms_psr@psr2_cursor_plane_move.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb5/igt@kms_psr@psr2_cursor_plane_move.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) * igt@kms_psr@psr2_sprite_mmap_cpu: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@kms_psr@psr2_sprite_mmap_cpu.html> (i915#132<https://gitlab.freedesktop.org/drm/intel/issues/132> / [i915#3467]) +1 similar issue * igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb2/igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm.html> ([i915#3841]) * igt@kms_vblank@pipe-d-wait-idle: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl8/igt@kms_vblank@pipe-d-wait-idle.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#533]) +4 similar issues * igt@nouveau_crc@pipe-a-ctx-flip-skip-current-frame: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb8/igt@nouveau_crc@pipe-a-ctx-flip-skip-current-frame.html> ([i915#2530]) * igt@nouveau_crc@pipe-d-ctx-flip-detection: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb5/igt@nouveau_crc@pipe-d-ctx-flip-detection.html> ([i915#2530]) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@nouveau_crc@pipe-d-ctx-flip-detection.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / [i915#2530]) * igt@prime_nv_api@i915_nv_import_twice_check_flink_name: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@prime_nv_api@i915_nv_import_twice_check_flink_name.html> (fdo#109291<https://bugs.freedesktop.org/show_bug.cgi?id=109291>) +3 similar issues * igt@prime_nv_pcopy@test3_1: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb1/igt@prime_nv_pcopy@test3_1.html> (fdo#109291<https://bugs.freedesktop.org/show_bug.cgi?id=109291>) +3 similar issues * igt@sysfs_clients@fair-3: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@sysfs_clients@fair-3.html> ([i915#2994]) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb5/igt@sysfs_clients@fair-3.html> ([i915#2994]) * igt@sysfs_clients@recycle-many: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl8/igt@sysfs_clients@recycle-many.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#2994]) +4 similar issues Possible fixes * igt@gem_ctx_persistence@many-contexts: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-tglb5/igt@gem_ctx_persistence@many-contexts.html> (i915#2410<https://gitla>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb5/igt@gem_ctx_persistence@many-contexts.html> * igt@gem_exec_fair@basic-pace-share@rcs0: * shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html> * igt@gem_huc_copy@huc-copy: * shard-tglb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-tglb6/igt@gem_huc_copy@huc-copy.html> (i915#2190<https://gitlab.freedesktop.org/drm/intel/issues/2190>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb1/igt@gem_huc_copy@huc-copy.html> * igt@i915_selftest@live@gt_pm: * shard-iclb: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb3/igt@i915_selftest@live@gt_pm.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb5/igt@i915_selftest@live@gt_pm.html> * igt@i915_suspend@forcewake: * shard-apl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl8/igt@i915_suspend@forcewake.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl8/igt@i915_suspend@forcewake.html> * igt@kms_big_fb@linear-32bpp-rotate-180: * shard-glk: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-glk5/igt@kms_big_fb@linear-32bpp-rotate-180.html> (i915#118<https://gitlab.freedesktop.org/drm/intel/issues/118> / [i915#95]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk4/igt@kms_big_fb@linear-32bpp-rotate-180.html> * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic: * shard-glk: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html> (IGT#6<https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/6>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html> * igt@kms_psr@psr2_sprite_mmap_gtt: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb8/igt@kms_psr@psr2_sprite_mmap_gtt.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html> +1 similar issue Warnings * igt@gem_exec_fair@basic-none-solo@rcs0: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-tglb5/igt@gem_exec_fair@basic-none-solo@rcs0.html> ([i915#2849]) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@gem_exec_fair@basic-none-solo@rcs0.html> ([i915#2842]) * igt@i915_pm_dc@dc3co-vpb-simulation: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb6/igt@i915_pm_dc@dc3co-vpb-simulation.html> ([i915#658]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html> ([i915#588]) * igt@i915_pm_rc6_residency@rc6-idle: * shard-iclb: WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb2/igt@i915_pm_rc6_residency@rc6-idle.html> ([i915#2684]) -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb4/igt@i915_pm_rc6_residency@rc6-idle.html> (i915#1804<https://gitlab.freedesktop.org/drm/intel/issues/1804> / [i915#2684]) * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html> ([i915#2920]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb7/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html> ([i915#658]) * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb7/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4.html> ([i915#658]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4.html> ([i915#2920]) +1 similar issue * igt@runner@aborted: * shard-kbl: (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-kbl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-kbl6/igt@runner@aborted.html>) ([i915#2505] / [i915#3002] / [i915#3363]) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl3/igt@runner@aborted.html>) (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#1814<https://gitlab.freedesktop.org/drm/intel/issues/1814> / [i915#3002] / [i915#3363] / [i915#602]) * shard-iclb: (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb8/igt@runner@aborted.html>) ([i915#3002]) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb8/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb7/igt@runner@aborted.html>) (i915#1814<https://gitlab.freedesktop.org/drm/intel/issues/1814> / [i915#3002]) * shard-apl: (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl6/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl8/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl6/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl3/igt@runner@aborted.html>) (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#1814<https://gitlab.freedesktop.org/drm/intel/issues/1814> / [i915#3002] / [i915#3363]) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl6/igt@runner@aborted.html>) (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#1814<https://gitlab.freedesktop.org/drm/intel/issues/1814> / [i915#3002] / [i915#3363]) {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [-- Attachment #1.2: Type: text/html, Size: 67489 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels (rev2) 2021-07-27 1:44 ` Modem, Bhanuprakash @ 2021-07-27 4:57 ` Vudum, Lakshminarayana 0 siblings, 0 replies; 13+ messages in thread From: Vudum, Lakshminarayana @ 2021-07-27 4:57 UTC (permalink / raw) To: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org [-- Attachment #1.1: Type: text/plain, Size: 30870 bytes --] Re-reported. From: Modem, Bhanuprakash <bhanuprakash.modem@intel.com> Sent: Monday, July 26, 2021 6:45 PM To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com> Subject: RE: ✗ Fi.CI.IGT: failure for lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels (rev2) Hi Lakshmi, Can you please re-report below false positive? failures are not related to this patch. Thanks, Bhanu From: Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>> Sent: Monday, July 26, 2021 11:01 PM To: Modem, Bhanuprakash <bhanuprakash.modem@intel.com<mailto:bhanuprakash.modem@intel.com>> Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org> Subject: ✗ Fi.CI.IGT: failure for lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels (rev2) Patch Details Series: lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels (rev2) URL: https://patchwork.freedesktop.org/series/93006/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/index.html CI Bug Log - changes from IGT_6151_full -> IGTPW_6058_full Summary FAILURE Serious unknown changes coming with IGTPW_6058_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_6058_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/index.html Possible new issues Here are the unknown changes that may have been introduced in IGTPW_6058_full: IGT changes Possible regressions * igt@prime_self_import@export-vs-gem_close-race: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb6/igt@prime_self_import@export-vs-gem_close-race.html> Known issues Here are the changes found in IGTPW_6058_full that come from known issues: IGT changes Issues hit * igt@gem_ctx_isolation@preservation-s3@rcs0: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl3/igt@gem_ctx_isolation@preservation-s3@rcs0.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@gem_ctx_isolation@preservation-s3@rcs0.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) * igt@gem_ctx_persistence@legacy-engines-queued: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-snb2/igt@gem_ctx_persistence@legacy-engines-queued.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1099<https://gitlab.freedesktop.org/drm/intel/issues/1099>) +8 similar issues * igt@gem_ctx_sseu@mmap-args: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@gem_ctx_sseu@mmap-args.html> ([i915#280]) * igt@gem_exec_fair@basic-deadline: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl6/igt@gem_exec_fair@basic-deadline.html> ([i915#2846]) * igt@gem_exec_fair@basic-none-vip@rcs0: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb2/igt@gem_exec_fair@basic-none-vip@rcs0.html> ([i915#2842]) +5 similar issues * igt@gem_exec_fair@basic-none@rcs0: * shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk7/igt@gem_exec_fair@basic-none@rcs0.html> ([i915#2842]) +1 similar issue * igt@gem_exec_fair@basic-none@vcs0: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@gem_exec_fair@basic-none@vcs0.html> ([i915#2842]) * igt@gem_exec_fair@basic-none@vecs0: * shard-iclb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb3/igt@gem_exec_fair@basic-none@vecs0.html> ([i915#2842]) +3 similar issues * igt@gem_exec_fair@basic-pace-share@rcs0: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-tglb6/igt@gem_exec_fair@basic-pace-share@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@gem_exec_fair@basic-pace-share@rcs0.html> ([i915#2842]) * igt@gem_exec_fair@basic-pace-solo@rcs0: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-kbl7/igt@gem_exec_fair@basic-pace-solo@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html> ([i915#2842]) * igt@gem_exec_fair@basic-throttle@rcs0: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb8/igt@gem_exec_fair@basic-throttle@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb1/igt@gem_exec_fair@basic-throttle@rcs0.html> ([i915#2849]) * igt@gem_mmap_gtt@cpuset-medium-copy: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-glk5/igt@gem_mmap_gtt@cpuset-medium-copy.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk5/igt@gem_mmap_gtt@cpuset-medium-copy.html> (i915#1888<https://gitlab.freedesktop.org/drm/intel/issues/1888> / [i915#307]) * igt@gem_render_copy@yf-tiled-to-vebox-linear: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb3/igt@gem_render_copy@yf-tiled-to-vebox-linear.html> ([i915#768]) +3 similar issues * igt@gem_softpin@noreloc-s3: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-kbl3/igt@gem_softpin@noreloc-s3.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl3/igt@gem_softpin@noreloc-s3.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) +1 similar issue * igt@gem_userptr_blits@vma-merge: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl7/igt@gem_userptr_blits@vma-merge.html> ([i915#3318]) * igt@gen7_exec_parse@basic-allocation: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@gen7_exec_parse@basic-allocation.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@gen7_exec_parse@basic-allocation.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) * igt@gen9_exec_parse@batch-without-end: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb4/igt@gen9_exec_parse@batch-without-end.html> ([i915#2856]) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@gen9_exec_parse@batch-without-end.html> ([i915#2856]) * igt@i915_pm_dc@dc6-psr: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb7/igt@i915_pm_dc@dc6-psr.html> ([i915#454]) * igt@i915_pm_rpm@pm-caching: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb2/igt@i915_pm_rpm@pm-caching.html> ([i915#579]) +1 similar issue * igt@i915_pm_rpm@sysfs-read: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb1/igt@i915_pm_rpm@sysfs-read.html> ([i915#579]) +1 similar issue * igt@i915_selftest@live@hangcheck: * shard-snb: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-snb5/igt@i915_selftest@live@hangcheck.html> ([i915#2782]) * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html> (i915#1769<https://gitlab.freedesktop.org/drm/intel/issues/1769>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html> (i915#1769<https://gitlab.freedesktop.org/drm/intel/issues/1769>) * igt@kms_big_fb@x-tiled-32bpp-rotate-180: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-glk7/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk8/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html> (i915#118<https://gitlab.freedesktop.org/drm/intel/issues/118> / [i915#95]) * igt@kms_big_fb@y-tiled-32bpp-rotate-270: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb7/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb1/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html> ([i915#3621]) * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb6/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615>) +2 similar issues * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#3777]) +1 similar issue * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> (fdo#110723<https://bugs.freedesktop.org/show_bug.cgi?id=110723>) +1 similar issue * igt@kms_big_joiner@basic: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb7/igt@kms_big_joiner@basic.html> ([i915#2705]) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb4/igt@kms_big_joiner@basic.html> ([i915#2705]) * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278>) +24 similar issues * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb6/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html> ([i915#3689]) +9 similar issues * igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-snb5/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +404 similar issues * igt@kms_cdclk@mode-transition: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@kms_cdclk@mode-transition.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +278 similar issues * igt@kms_chamelium@common-hpd-after-suspend: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk2/igt@kms_chamelium@common-hpd-after-suspend.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +4 similar issues * igt@kms_chamelium@dp-crc-multiple: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl7/igt@kms_chamelium@dp-crc-multiple.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +20 similar issues * igt@kms_chamelium@dp-hpd-for-each-pipe: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb4/igt@kms_chamelium@dp-hpd-for-each-pipe.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3 similar issues * igt@kms_color@pipe-d-ctm-red-to-blue: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb8/igt@kms_color@pipe-d-ctm-red-to-blue.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / i915#1149<https://gitlab.freedesktop.org/drm/intel/issues/1149>) * igt@kms_color_chamelium@pipe-a-ctm-0-75: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl6/igt@kms_color_chamelium@pipe-a-ctm-0-75.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3 similar issues * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb2/igt@kms_color_chamelium@pipe-a-ctm-0-75.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +4 similar issues * igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-snb2/igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +21 similar issues * igt@kms_cursor_crc@pipe-a-cursor-512x512-rapid-movement: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb3/igt@kms_cursor_crc@pipe-a-cursor-512x512-rapid-movement.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / fdo#109279<https://bugs.freedesktop.org/show_bug.cgi?id=109279>) * igt@kms_cursor_crc@pipe-c-cursor-32x32-onscreen: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb5/igt@kms_cursor_crc@pipe-c-cursor-32x32-onscreen.html> ([i915#3319]) +1 similar issue * igt@kms_cursor_crc@pipe-d-cursor-512x512-onscreen: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb7/igt@kms_cursor_crc@pipe-d-cursor-512x512-onscreen.html> (fdo#109279<https://bugs.freedesktop.org/show_bug.cgi?id=109279> / [i915#3359]) +1 similar issue * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278>) +2 similar issues * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html> (fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +18 similar issues * igt@kms_flip@2x-nonexisting-fb: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb4/igt@kms_flip@2x-nonexisting-fb.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274>) * igt@kms_flip@flip-vs-suspend@a-dp1: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-kbl4/igt@kms_flip@flip-vs-suspend@a-dp1.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl4/igt@kms_flip@flip-vs-suspend@a-dp1.html> (i915#155<https://gitlab.freedesktop.org/drm/intel/issues/155>) * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +13 similar issues * igt@kms_frontbuffer_tracking@fbcpsr-suspend: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk7/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +49 similar issues * igt@kms_pipe_crc_basic@read-crc-pipe-d: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl6/igt@kms_pipe_crc_basic@read-crc-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#533]) * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk7/igt@kms_pipe_crc_basic@read-crc-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#533]) * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c: * shard-apl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html> (fdo#108145<https://bugs.freedesktop.org/show_bug.cgi?id=108145> / [i915#265]) +4 similar issues * shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk7/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html> (fdo#108145<https://bugs.freedesktop.org/show_bug.cgi?id=108145> / [i915#265]) * shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl3/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html> (fdo#108145<https://bugs.freedesktop.org/show_bug.cgi?id=108145> / [i915#265]) * igt@kms_plane_alpha_blend@pipe-c-coverage-vs-premult-vs-constant: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb7/igt@kms_plane_alpha_blend@pipe-c-coverage-vs-premult-vs-constant.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@kms_plane_alpha_blend@pipe-c-coverage-vs-premult-vs-constant.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278>) * igt@kms_plane_lowres@pipe-a-tiling-x: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb3/igt@kms_plane_lowres@pipe-a-tiling-x.html> ([i915#3536]) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb6/igt@kms_plane_lowres@pipe-a-tiling-x.html> ([i915#3536]) * igt@kms_plane_multiple@atomic-pipe-d-tiling-yf: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb7/igt@kms_plane_multiple@atomic-pipe-d-tiling-yf.html> (fdo#112054<https://bugs.freedesktop.org/show_bug.cgi?id=112054>) * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#658]) +6 similar issues * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5.html> ([i915#2920]) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5.html> ([i915#658]) * igt@kms_psr@cursor_plane_onoff: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl1/igt@kms_psr@cursor_plane_onoff.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +55 similar issues * igt@kms_psr@psr2_cursor_mmap_cpu: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb5/igt@kms_psr@psr2_cursor_mmap_cpu.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) +1 similar issue * igt@kms_psr@psr2_cursor_plane_move: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb2/igt@kms_psr@psr2_cursor_plane_move.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb5/igt@kms_psr@psr2_cursor_plane_move.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) * igt@kms_psr@psr2_sprite_mmap_cpu: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@kms_psr@psr2_sprite_mmap_cpu.html> (i915#132<https://gitlab.freedesktop.org/drm/intel/issues/132> / [i915#3467]) +1 similar issue * igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb2/igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm.html> ([i915#3841]) * igt@kms_vblank@pipe-d-wait-idle: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl8/igt@kms_vblank@pipe-d-wait-idle.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#533]) +4 similar issues * igt@nouveau_crc@pipe-a-ctx-flip-skip-current-frame: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb8/igt@nouveau_crc@pipe-a-ctx-flip-skip-current-frame.html> ([i915#2530]) * igt@nouveau_crc@pipe-d-ctx-flip-detection: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb5/igt@nouveau_crc@pipe-d-ctx-flip-detection.html> ([i915#2530]) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@nouveau_crc@pipe-d-ctx-flip-detection.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / [i915#2530]) * igt@prime_nv_api@i915_nv_import_twice_check_flink_name: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@prime_nv_api@i915_nv_import_twice_check_flink_name.html> (fdo#109291<https://bugs.freedesktop.org/show_bug.cgi?id=109291>) +3 similar issues * igt@prime_nv_pcopy@test3_1: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb1/igt@prime_nv_pcopy@test3_1.html> (fdo#109291<https://bugs.freedesktop.org/show_bug.cgi?id=109291>) +3 similar issues * igt@sysfs_clients@fair-3: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@sysfs_clients@fair-3.html> ([i915#2994]) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb5/igt@sysfs_clients@fair-3.html> ([i915#2994]) * igt@sysfs_clients@recycle-many: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl8/igt@sysfs_clients@recycle-many.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#2994]) +4 similar issues Possible fixes * igt@gem_ctx_persistence@many-contexts: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-tglb5/igt@gem_ctx_persistence@many-contexts.html> (i915#2410<https://gitla>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb5/igt@gem_ctx_persistence@many-contexts.html> * igt@gem_exec_fair@basic-pace-share@rcs0: * shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html> * igt@gem_huc_copy@huc-copy: * shard-tglb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-tglb6/igt@gem_huc_copy@huc-copy.html> (i915#2190<https://gitlab.freedesktop.org/drm/intel/issues/2190>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb1/igt@gem_huc_copy@huc-copy.html> * igt@i915_selftest@live@gt_pm: * shard-iclb: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb3/igt@i915_selftest@live@gt_pm.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb5/igt@i915_selftest@live@gt_pm.html> * igt@i915_suspend@forcewake: * shard-apl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl8/igt@i915_suspend@forcewake.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl8/igt@i915_suspend@forcewake.html> * igt@kms_big_fb@linear-32bpp-rotate-180: * shard-glk: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-glk5/igt@kms_big_fb@linear-32bpp-rotate-180.html> (i915#118<https://gitlab.freedesktop.org/drm/intel/issues/118> / [i915#95]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk4/igt@kms_big_fb@linear-32bpp-rotate-180.html> * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic: * shard-glk: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html> (IGT#6<https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/6>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html> * igt@kms_psr@psr2_sprite_mmap_gtt: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb8/igt@kms_psr@psr2_sprite_mmap_gtt.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html> +1 similar issue Warnings * igt@gem_exec_fair@basic-none-solo@rcs0: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-tglb5/igt@gem_exec_fair@basic-none-solo@rcs0.html> ([i915#2849]) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@gem_exec_fair@basic-none-solo@rcs0.html> ([i915#2842]) * igt@i915_pm_dc@dc3co-vpb-simulation: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb6/igt@i915_pm_dc@dc3co-vpb-simulation.html> ([i915#658]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html> ([i915#588]) * igt@i915_pm_rc6_residency@rc6-idle: * shard-iclb: WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb2/igt@i915_pm_rc6_residency@rc6-idle.html> ([i915#2684]) -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb4/igt@i915_pm_rc6_residency@rc6-idle.html> (i915#1804<https://gitlab.freedesktop.org/drm/intel/issues/1804> / [i915#2684]) * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html> ([i915#2920]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb7/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html> ([i915#658]) * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb7/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4.html> ([i915#658]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4.html> ([i915#2920]) +1 similar issue * igt@runner@aborted: * shard-kbl: (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-kbl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-kbl6/igt@runner@aborted.html>) ([i915#2505] / [i915#3002] / [i915#3363]) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl3/igt@runner@aborted.html>) (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#1814<https://gitlab.freedesktop.org/drm/intel/issues/1814> / [i915#3002] / [i915#3363] / [i915#602]) * shard-iclb: (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb8/igt@runner@aborted.html>) ([i915#3002]) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb8/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb7/igt@runner@aborted.html>) (i915#1814<https://gitlab.freedesktop.org/drm/intel/issues/1814> / [i915#3002]) * shard-apl: (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl6/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl8/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl6/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl3/igt@runner@aborted.html>) (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#1814<https://gitlab.freedesktop.org/drm/intel/issues/1814> / [i915#3002] / [i915#3363]) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl6/igt@runner@aborted.html>) (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#1814<https://gitlab.freedesktop.org/drm/intel/issues/1814> / [i915#3002] / [i915#3363]) {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [-- Attachment #1.2: Type: text/html, Size: 81210 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels (rev2) 2021-07-26 9:49 [igt-dev] [PATCH i-g-t] lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels Bhanuprakash Modem ` (3 preceding siblings ...) 2021-07-26 17:31 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2021-07-27 1:57 ` Patchwork 2021-07-27 2:02 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels (rev3) Patchwork 2021-07-27 6:31 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2021-07-27 1:57 UTC (permalink / raw) To: Modem, Bhanuprakash; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 30279 bytes --] == Series Details == Series: lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels (rev2) URL : https://patchwork.freedesktop.org/series/93006/ State : success == Summary == CI Bug Log - changes from IGT_6151_full -> IGTPW_6058_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/index.html Known issues ------------ Here are the changes found in IGTPW_6058_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-apl: [PASS][1] -> [DMESG-WARN][2] ([i915#180]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl3/igt@gem_ctx_isolation@preservation-s3@rcs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@legacy-engines-queued: - shard-snb: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#1099]) +8 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-snb2/igt@gem_ctx_persistence@legacy-engines-queued.html * igt@gem_ctx_sseu@mmap-args: - shard-tglb: NOTRUN -> [SKIP][4] ([i915#280]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_fair@basic-deadline: - shard-apl: NOTRUN -> [FAIL][5] ([i915#2846]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl6/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-tglb: NOTRUN -> [FAIL][6] ([i915#2842]) +5 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb2/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-none@rcs0: - shard-glk: NOTRUN -> [FAIL][7] ([i915#2842]) +1 similar issue [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk7/igt@gem_exec_fair@basic-none@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-apl: NOTRUN -> [FAIL][8] ([i915#2842]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-none@vecs0: - shard-iclb: NOTRUN -> [FAIL][9] ([i915#2842]) +3 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb3/igt@gem_exec_fair@basic-none@vecs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: [PASS][10] -> [FAIL][11] ([i915#2842]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-tglb6/igt@gem_exec_fair@basic-pace-share@rcs0.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-kbl: [PASS][12] -> [FAIL][13] ([i915#2842]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-kbl7/igt@gem_exec_fair@basic-pace-solo@rcs0.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-iclb: [PASS][14] -> [FAIL][15] ([i915#2849]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb8/igt@gem_exec_fair@basic-throttle@rcs0.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb1/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_mmap_gtt@cpuset-medium-copy: - shard-glk: [PASS][16] -> [FAIL][17] ([i915#1888] / [i915#307]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-glk5/igt@gem_mmap_gtt@cpuset-medium-copy.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk5/igt@gem_mmap_gtt@cpuset-medium-copy.html * igt@gem_render_copy@yf-tiled-to-vebox-linear: - shard-iclb: NOTRUN -> [SKIP][18] ([i915#768]) +3 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb3/igt@gem_render_copy@yf-tiled-to-vebox-linear.html * igt@gem_softpin@noreloc-s3: - shard-kbl: [PASS][19] -> [DMESG-WARN][20] ([i915#180]) +1 similar issue [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-kbl3/igt@gem_softpin@noreloc-s3.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl3/igt@gem_softpin@noreloc-s3.html * igt@gem_userptr_blits@vma-merge: - shard-apl: NOTRUN -> [FAIL][21] ([i915#3318]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl7/igt@gem_userptr_blits@vma-merge.html * igt@gen7_exec_parse@basic-allocation: - shard-tglb: NOTRUN -> [SKIP][22] ([fdo#109289]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@gen7_exec_parse@basic-allocation.html - shard-iclb: NOTRUN -> [SKIP][23] ([fdo#109289]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@gen7_exec_parse@basic-allocation.html * igt@gen9_exec_parse@batch-without-end: - shard-iclb: NOTRUN -> [SKIP][24] ([i915#2856]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb4/igt@gen9_exec_parse@batch-without-end.html - shard-tglb: NOTRUN -> [SKIP][25] ([i915#2856]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@gen9_exec_parse@batch-without-end.html * igt@i915_pm_dc@dc6-psr: - shard-tglb: NOTRUN -> [FAIL][26] ([i915#454]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb7/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_rpm@pm-caching: - shard-tglb: NOTRUN -> [SKIP][27] ([i915#579]) +1 similar issue [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb2/igt@i915_pm_rpm@pm-caching.html * igt@i915_pm_rpm@sysfs-read: - shard-iclb: NOTRUN -> [SKIP][28] ([i915#579]) +1 similar issue [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb1/igt@i915_pm_rpm@sysfs-read.html * igt@i915_selftest@live@hangcheck: - shard-snb: NOTRUN -> [INCOMPLETE][29] ([i915#2782]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-snb5/igt@i915_selftest@live@hangcheck.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-iclb: NOTRUN -> [SKIP][30] ([i915#1769]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html - shard-tglb: NOTRUN -> [SKIP][31] ([i915#1769]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_big_fb@x-tiled-32bpp-rotate-180: - shard-glk: [PASS][32] -> [DMESG-WARN][33] ([i915#118] / [i915#95]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-glk7/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk8/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html * igt@kms_big_fb@y-tiled-32bpp-rotate-270: - shard-iclb: [PASS][34] -> [DMESG-WARN][35] ([i915#3621]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb7/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb1/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: - shard-tglb: NOTRUN -> [SKIP][36] ([fdo#111615]) +2 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb6/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-apl: NOTRUN -> [SKIP][37] ([fdo#109271] / [i915#3777]) +1 similar issue [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-iclb: NOTRUN -> [SKIP][38] ([fdo#110723]) +1 similar issue [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_joiner@basic: - shard-tglb: NOTRUN -> [SKIP][39] ([i915#2705]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb7/igt@kms_big_joiner@basic.html - shard-iclb: NOTRUN -> [SKIP][40] ([i915#2705]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb4/igt@kms_big_joiner@basic.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs: - shard-iclb: NOTRUN -> [SKIP][41] ([fdo#109278]) +24 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][42] ([i915#3689]) +9 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb6/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs: - shard-snb: NOTRUN -> [SKIP][43] ([fdo#109271]) +404 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-snb5/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs.html * igt@kms_cdclk@mode-transition: - shard-apl: NOTRUN -> [SKIP][44] ([fdo#109271]) +278 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium@common-hpd-after-suspend: - shard-glk: NOTRUN -> [SKIP][45] ([fdo#109271] / [fdo#111827]) +4 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk2/igt@kms_chamelium@common-hpd-after-suspend.html * igt@kms_chamelium@dp-crc-multiple: - shard-apl: NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +20 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl7/igt@kms_chamelium@dp-crc-multiple.html * igt@kms_chamelium@dp-hpd-for-each-pipe: - shard-iclb: NOTRUN -> [SKIP][47] ([fdo#109284] / [fdo#111827]) +3 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb4/igt@kms_chamelium@dp-hpd-for-each-pipe.html * igt@kms_color@pipe-d-ctm-red-to-blue: - shard-iclb: NOTRUN -> [SKIP][48] ([fdo#109278] / [i915#1149]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb8/igt@kms_color@pipe-d-ctm-red-to-blue.html * igt@kms_color_chamelium@pipe-a-ctm-0-75: - shard-kbl: NOTRUN -> [SKIP][49] ([fdo#109271] / [fdo#111827]) +3 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl6/igt@kms_color_chamelium@pipe-a-ctm-0-75.html - shard-tglb: NOTRUN -> [SKIP][50] ([fdo#109284] / [fdo#111827]) +4 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb2/igt@kms_color_chamelium@pipe-a-ctm-0-75.html * igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes: - shard-snb: NOTRUN -> [SKIP][51] ([fdo#109271] / [fdo#111827]) +21 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-snb2/igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes.html * igt@kms_cursor_crc@pipe-a-cursor-512x512-rapid-movement: - shard-iclb: NOTRUN -> [SKIP][52] ([fdo#109278] / [fdo#109279]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb3/igt@kms_cursor_crc@pipe-a-cursor-512x512-rapid-movement.html * igt@kms_cursor_crc@pipe-c-cursor-32x32-onscreen: - shard-tglb: NOTRUN -> [SKIP][53] ([i915#3319]) +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb5/igt@kms_cursor_crc@pipe-c-cursor-32x32-onscreen.html * igt@kms_cursor_crc@pipe-d-cursor-512x512-onscreen: - shard-tglb: NOTRUN -> [SKIP][54] ([fdo#109279] / [i915#3359]) +1 similar issue [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb7/igt@kms_cursor_crc@pipe-d-cursor-512x512-onscreen.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-iclb: NOTRUN -> [SKIP][55] ([fdo#109274] / [fdo#109278]) +2 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-tglb: NOTRUN -> [SKIP][56] ([fdo#111825]) +18 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_flip@2x-nonexisting-fb: - shard-iclb: NOTRUN -> [SKIP][57] ([fdo#109274]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb4/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@flip-vs-suspend@a-dp1: - shard-kbl: [PASS][58] -> [INCOMPLETE][59] ([i915#155]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-kbl4/igt@kms_flip@flip-vs-suspend@a-dp1.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl4/igt@kms_flip@flip-vs-suspend@a-dp1.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-iclb: NOTRUN -> [SKIP][60] ([fdo#109280]) +13 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-glk: NOTRUN -> [SKIP][61] ([fdo#109271]) +49 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk7/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_pipe_crc_basic@read-crc-pipe-d: - shard-kbl: NOTRUN -> [SKIP][62] ([fdo#109271] / [i915#533]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl6/igt@kms_pipe_crc_basic@read-crc-pipe-d.html - shard-glk: NOTRUN -> [SKIP][63] ([fdo#109271] / [i915#533]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk7/igt@kms_pipe_crc_basic@read-crc-pipe-d.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c: - shard-apl: NOTRUN -> [DMESG-WARN][64] ([i915#180]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb: - shard-apl: NOTRUN -> [FAIL][65] ([fdo#108145] / [i915#265]) +4 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html - shard-glk: NOTRUN -> [FAIL][66] ([fdo#108145] / [i915#265]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk7/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html - shard-kbl: NOTRUN -> [FAIL][67] ([fdo#108145] / [i915#265]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl3/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html * igt@kms_plane_alpha_blend@pipe-c-coverage-vs-premult-vs-constant: - shard-iclb: [PASS][68] -> [SKIP][69] ([fdo#109278]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb7/igt@kms_plane_alpha_blend@pipe-c-coverage-vs-premult-vs-constant.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@kms_plane_alpha_blend@pipe-c-coverage-vs-premult-vs-constant.html * igt@kms_plane_lowres@pipe-a-tiling-x: - shard-iclb: NOTRUN -> [SKIP][70] ([i915#3536]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb3/igt@kms_plane_lowres@pipe-a-tiling-x.html - shard-tglb: NOTRUN -> [SKIP][71] ([i915#3536]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb6/igt@kms_plane_lowres@pipe-a-tiling-x.html * igt@kms_plane_multiple@atomic-pipe-d-tiling-yf: - shard-tglb: NOTRUN -> [SKIP][72] ([fdo#112054]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb7/igt@kms_plane_multiple@atomic-pipe-d-tiling-yf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2: - shard-apl: NOTRUN -> [SKIP][73] ([fdo#109271] / [i915#658]) +6 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5: - shard-tglb: NOTRUN -> [SKIP][74] ([i915#2920]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5.html - shard-iclb: NOTRUN -> [SKIP][75] ([i915#658]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5.html * igt@kms_psr@cursor_plane_onoff: - shard-kbl: NOTRUN -> [SKIP][76] ([fdo#109271]) +55 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl1/igt@kms_psr@cursor_plane_onoff.html * igt@kms_psr@psr2_cursor_mmap_cpu: - shard-iclb: NOTRUN -> [SKIP][77] ([fdo#109441]) +1 similar issue [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb5/igt@kms_psr@psr2_cursor_mmap_cpu.html * igt@kms_psr@psr2_cursor_plane_move: - shard-iclb: [PASS][78] -> [SKIP][79] ([fdo#109441]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb2/igt@kms_psr@psr2_cursor_plane_move.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb5/igt@kms_psr@psr2_cursor_plane_move.html * igt@kms_psr@psr2_sprite_mmap_cpu: - shard-tglb: NOTRUN -> [FAIL][80] ([i915#132] / [i915#3467]) +1 similar issue [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@kms_psr@psr2_sprite_mmap_cpu.html * igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm: - shard-tglb: NOTRUN -> [SKIP][81] ([i915#3841]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb2/igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm.html * igt@kms_vblank@pipe-d-wait-idle: - shard-apl: NOTRUN -> [SKIP][82] ([fdo#109271] / [i915#533]) +4 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl8/igt@kms_vblank@pipe-d-wait-idle.html * igt@nouveau_crc@pipe-a-ctx-flip-skip-current-frame: - shard-iclb: NOTRUN -> [SKIP][83] ([i915#2530]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb8/igt@nouveau_crc@pipe-a-ctx-flip-skip-current-frame.html * igt@nouveau_crc@pipe-d-ctx-flip-detection: - shard-tglb: NOTRUN -> [SKIP][84] ([i915#2530]) +1 similar issue [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb5/igt@nouveau_crc@pipe-d-ctx-flip-detection.html - shard-iclb: NOTRUN -> [SKIP][85] ([fdo#109278] / [i915#2530]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@nouveau_crc@pipe-d-ctx-flip-detection.html * igt@prime_nv_api@i915_nv_import_twice_check_flink_name: - shard-iclb: NOTRUN -> [SKIP][86] ([fdo#109291]) +3 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@prime_nv_api@i915_nv_import_twice_check_flink_name.html * igt@prime_nv_pcopy@test3_1: - shard-tglb: NOTRUN -> [SKIP][87] ([fdo#109291]) +3 similar issues [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb1/igt@prime_nv_pcopy@test3_1.html * igt@prime_self_import@export-vs-gem_close-race: - shard-tglb: NOTRUN -> [FAIL][88] ([i915#3514]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb6/igt@prime_self_import@export-vs-gem_close-race.html * igt@sysfs_clients@fair-3: - shard-tglb: NOTRUN -> [SKIP][89] ([i915#2994]) +1 similar issue [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@sysfs_clients@fair-3.html - shard-iclb: NOTRUN -> [SKIP][90] ([i915#2994]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb5/igt@sysfs_clients@fair-3.html * igt@sysfs_clients@recycle-many: - shard-apl: NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#2994]) +4 similar issues [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl8/igt@sysfs_clients@recycle-many.html #### Possible fixes #### * igt@gem_ctx_persistence@many-contexts: - shard-tglb: [FAIL][92] ([i915#2410]) -> [PASS][93] [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-tglb5/igt@gem_ctx_persistence@many-contexts.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb5/igt@gem_ctx_persistence@many-contexts.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][94] ([i915#2842]) -> [PASS][95] [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_huc_copy@huc-copy: - shard-tglb: [SKIP][96] ([i915#2190]) -> [PASS][97] [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-tglb6/igt@gem_huc_copy@huc-copy.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb1/igt@gem_huc_copy@huc-copy.html * igt@i915_selftest@live@gt_pm: - shard-iclb: [INCOMPLETE][98] -> [PASS][99] [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb3/igt@i915_selftest@live@gt_pm.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb5/igt@i915_selftest@live@gt_pm.html * igt@i915_suspend@forcewake: - shard-apl: [DMESG-WARN][100] ([i915#180]) -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl8/igt@i915_suspend@forcewake.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl8/igt@i915_suspend@forcewake.html * igt@kms_big_fb@linear-32bpp-rotate-180: - shard-glk: [DMESG-WARN][102] ([i915#118] / [i915#95]) -> [PASS][103] [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-glk5/igt@kms_big_fb@linear-32bpp-rotate-180.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk4/igt@kms_big_fb@linear-32bpp-rotate-180.html * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic: - shard-glk: [DMESG-WARN][104] ([IGT#6]) -> [PASS][105] [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-iclb: [SKIP][106] ([fdo#109441]) -> [PASS][107] +1 similar issue [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb8/igt@kms_psr@psr2_sprite_mmap_gtt.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html #### Warnings #### * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-tglb: [FAIL][108] ([i915#2849]) -> [FAIL][109] ([i915#2842]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-tglb5/igt@gem_exec_fair@basic-none-solo@rcs0.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-tglb3/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-iclb: [SKIP][110] ([i915#658]) -> [SKIP][111] ([i915#588]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb6/igt@i915_pm_dc@dc3co-vpb-simulation.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-iclb: [WARN][112] ([i915#2684]) -> [WARN][113] ([i915#1804] / [i915#2684]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb2/igt@i915_pm_rc6_residency@rc6-idle.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb4/igt@i915_pm_rc6_residency@rc6-idle.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2: - shard-iclb: [SKIP][114] ([i915#2920]) -> [SKIP][115] ([i915#658]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb7/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4: - shard-iclb: [SKIP][116] ([i915#658]) -> [SKIP][117] ([i915#2920]) +1 similar issue [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb7/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4.html * igt@runner@aborted: - shard-kbl: ([FAIL][118], [FAIL][119]) ([i915#2505] / [i915#3002] / [i915#3363]) -> ([FAIL][120], [FAIL][121], [FAIL][122]) ([i915#180] / [i915#1814] / [i915#3002] / [i915#3363] / [i915#602]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-kbl7/igt@runner@aborted.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-kbl6/igt@runner@aborted.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl3/igt@runner@aborted.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl3/igt@runner@aborted.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-kbl3/igt@runner@aborted.html - shard-iclb: ([FAIL][123], [FAIL][124]) ([i915#3002]) -> ([FAIL][125], [FAIL][126], [FAIL][127]) ([i915#1814] / [i915#3002]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb1/igt@runner@aborted.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-iclb8/igt@runner@aborted.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb8/igt@runner@aborted.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb1/igt@runner@aborted.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-iclb7/igt@runner@aborted.html - shard-apl: ([FAIL][128], [FAIL][129], [FAIL][130], [FAIL][131], [FAIL][132]) ([i915#180] / [i915#1814] / [i915#3002] / [i915#3363]) -> ([FAIL][133], [FAIL][134], [FAIL][135], [FAIL][136]) ([fdo#109271] / [i915#180] / [i915#1814] / [i915#3002] / [i915#3363]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl6/igt@runner@aborted.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl8/igt@runner@aborted.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl3/igt@runner@aborted.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl6/igt@runner@aborted.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6151/shard-apl3/igt@runner@aborted.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@runner@aborted.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl3/igt@runner@aborted.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl1/igt@runner@aborted.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/shard-apl6/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#6]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/6 [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1804]: https://gitlab.freedesktop.org/drm/intel/issues/1804 [i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814 [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2505]: https://gitlab.freedesktop.org/drm/intel/issues/2505 [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530 [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265 [i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#2782]: https://gitlab.freedesktop.org/drm/intel/issues/2782 [i915#280]: https: == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6058/index.html [-- Attachment #1.2: Type: text/html, Size: 37193 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels (rev3) 2021-07-26 9:49 [igt-dev] [PATCH i-g-t] lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels Bhanuprakash Modem ` (4 preceding siblings ...) 2021-07-27 1:57 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork @ 2021-07-27 2:02 ` Patchwork 2021-07-27 6:31 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2021-07-27 2:02 UTC (permalink / raw) To: Modem, Bhanuprakash; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 3216 bytes --] == Series Details == Series: lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels (rev3) URL : https://patchwork.freedesktop.org/series/93006/ State : success == Summary == CI Bug Log - changes from CI_DRM_10399 -> IGTPW_6062 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/index.html Known issues ------------ Here are the changes found in IGTPW_6062 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s3: - fi-tgl-1115g4: [PASS][1] -> [FAIL][2] ([i915#1888]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s3.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s3.html * igt@prime_vgem@basic-userptr: - fi-pnv-d510: NOTRUN -> [SKIP][3] ([fdo#109271]) +48 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/fi-pnv-d510/igt@prime_vgem@basic-userptr.html * igt@runner@aborted: - fi-bdw-5557u: NOTRUN -> [FAIL][4] ([i915#1602] / [i915#2029]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/fi-bdw-5557u/igt@runner@aborted.html #### Possible fixes #### * igt@gem_exec_parallel@engines@userptr: - fi-pnv-d510: [INCOMPLETE][5] ([i915#299]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/fi-pnv-d510/igt@gem_exec_parallel@engines@userptr.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/fi-pnv-d510/igt@gem_exec_parallel@engines@userptr.html * igt@kms_flip@basic-flip-vs-dpms@a-dsi1: - {fi-tgl-dsi}: [DMESG-WARN][7] ([i915#1982]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/fi-tgl-dsi/igt@kms_flip@basic-flip-vs-dpms@a-dsi1.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/fi-tgl-dsi/igt@kms_flip@basic-flip-vs-dpms@a-dsi1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602 [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2029]: https://gitlab.freedesktop.org/drm/intel/issues/2029 [i915#299]: https://gitlab.freedesktop.org/drm/intel/issues/299 Participating hosts (39 -> 35) ------------------------------ Missing (4): fi-ilk-m540 fi-bsw-cyan fi-bdw-samus fi-hsw-4200u Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6151 -> IGTPW_6062 CI-20190529: 20190529 CI_DRM_10399: 669037414c99bf454019d7e2497fe29995e31e61 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_6062: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/index.html IGT_6151: c3170c2d3744521b8351a4b9c579792bc9a5f835 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/index.html [-- Attachment #1.2: Type: text/html, Size: 3936 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels (rev3) 2021-07-26 9:49 [igt-dev] [PATCH i-g-t] lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels Bhanuprakash Modem ` (5 preceding siblings ...) 2021-07-27 2:02 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels (rev3) Patchwork @ 2021-07-27 6:31 ` Patchwork 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2021-07-27 6:31 UTC (permalink / raw) To: Modem, Bhanuprakash; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 30279 bytes --] == Series Details == Series: lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels (rev3) URL : https://patchwork.freedesktop.org/series/93006/ State : success == Summary == CI Bug Log - changes from CI_DRM_10399_full -> IGTPW_6062_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/index.html Known issues ------------ Here are the changes found in IGTPW_6062_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@feature_discovery@psr2: - shard-iclb: [PASS][1] -> [SKIP][2] ([i915#658]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/shard-iclb2/igt@feature_discovery@psr2.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb1/igt@feature_discovery@psr2.html * igt@gem_ctx_persistence@legacy-engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#1099]) +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-snb6/igt@gem_ctx_persistence@legacy-engines-mixed-process.html * igt@gem_ctx_persistence@many-contexts: - shard-iclb: [PASS][4] -> [INCOMPLETE][5] ([i915#3057]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/shard-iclb1/igt@gem_ctx_persistence@many-contexts.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb6/igt@gem_ctx_persistence@many-contexts.html * igt@gem_ctx_sseu@mmap-args: - shard-tglb: NOTRUN -> [SKIP][6] ([i915#280]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-tglb2/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@unwedge-stress: - shard-tglb: [PASS][7] -> [TIMEOUT][8] ([i915#2369] / [i915#3063] / [i915#3648]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/shard-tglb2/igt@gem_eio@unwedge-stress.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-tglb1/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [PASS][9] -> [FAIL][10] ([i915#2846]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/shard-glk1/igt@gem_exec_fair@basic-deadline.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-glk5/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-kbl: NOTRUN -> [FAIL][11] ([i915#2842]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-kbl2/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-tglb: NOTRUN -> [FAIL][12] ([i915#2842]) +5 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-tglb3/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-none@rcs0: - shard-glk: NOTRUN -> [FAIL][13] ([i915#2842]) +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-glk1/igt@gem_exec_fair@basic-none@rcs0.html * igt@gem_exec_fair@basic-none@vcs1: - shard-iclb: NOTRUN -> [FAIL][14] ([i915#2842]) +5 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb4/igt@gem_exec_fair@basic-none@vcs1.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][15] -> [FAIL][16] ([i915#2842]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-kbl: [PASS][17] -> [SKIP][18] ([fdo#109271]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/shard-kbl2/igt@gem_exec_fair@basic-pace@vcs1.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-kbl3/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_huc_copy@huc-copy: - shard-kbl: NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#2190]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-kbl1/igt@gem_huc_copy@huc-copy.html * igt@gem_pwrite@basic-exhaustion: - shard-apl: NOTRUN -> [WARN][20] ([i915#2658]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-apl6/igt@gem_pwrite@basic-exhaustion.html * igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs: - shard-iclb: NOTRUN -> [SKIP][21] ([i915#768]) +2 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb8/igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs.html * igt@gem_userptr_blits@readonly-unsync: - shard-iclb: NOTRUN -> [SKIP][22] ([i915#3297]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb7/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@vma-merge: - shard-apl: NOTRUN -> [FAIL][23] ([i915#3318]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-apl8/igt@gem_userptr_blits@vma-merge.html * igt@gen7_exec_parse@basic-allocation: - shard-tglb: NOTRUN -> [SKIP][24] ([fdo#109289]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-tglb7/igt@gen7_exec_parse@basic-allocation.html * igt@gen7_exec_parse@oacontrol-tracking: - shard-iclb: NOTRUN -> [SKIP][25] ([fdo#109289]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb6/igt@gen7_exec_parse@oacontrol-tracking.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: NOTRUN -> [FAIL][26] ([i915#454]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb2/igt@i915_pm_dc@dc6-psr.html - shard-tglb: NOTRUN -> [FAIL][27] ([i915#454]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-tglb7/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp: - shard-apl: NOTRUN -> [SKIP][28] ([fdo#109271] / [i915#1937]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-apl7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html * igt@i915_pm_rpm@gem-idle: - shard-iclb: NOTRUN -> [SKIP][29] ([i915#579]) +3 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb1/igt@i915_pm_rpm@gem-idle.html * igt@i915_pm_rpm@pm-caching: - shard-tglb: NOTRUN -> [SKIP][30] ([i915#579]) +1 similar issue [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-tglb3/igt@i915_pm_rpm@pm-caching.html * igt@i915_selftest@live@hangcheck: - shard-snb: NOTRUN -> [INCOMPLETE][31] ([i915#2782]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-snb7/igt@i915_selftest@live@hangcheck.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-iclb: NOTRUN -> [SKIP][32] ([i915#1769]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html - shard-tglb: NOTRUN -> [SKIP][33] ([i915#1769]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-tglb3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_big_fb@linear-32bpp-rotate-0: - shard-glk: [PASS][34] -> [DMESG-WARN][35] ([i915#118] / [i915#95]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/shard-glk2/igt@kms_big_fb@linear-32bpp-rotate-0.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-glk5/igt@kms_big_fb@linear-32bpp-rotate-0.html * igt@kms_big_fb@x-tiled-64bpp-rotate-0: - shard-iclb: [PASS][36] -> [DMESG-WARN][37] ([i915#3621]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/shard-iclb8/igt@kms_big_fb@x-tiled-64bpp-rotate-0.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb1/igt@kms_big_fb@x-tiled-64bpp-rotate-0.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-iclb: NOTRUN -> [SKIP][38] ([fdo#110725] / [fdo#111614]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb3/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html - shard-tglb: NOTRUN -> [SKIP][39] ([fdo#111614]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-tglb1/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-apl: NOTRUN -> [SKIP][40] ([fdo#109271] / [i915#3777]) +3 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-apl6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-kbl: NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#3777]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-kbl1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: - shard-tglb: NOTRUN -> [SKIP][42] ([fdo#111615]) +2 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-tglb5/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-iclb: NOTRUN -> [SKIP][43] ([fdo#110723]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_joiner@basic: - shard-tglb: NOTRUN -> [SKIP][44] ([i915#2705]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-tglb3/igt@kms_big_joiner@basic.html - shard-iclb: NOTRUN -> [SKIP][45] ([i915#2705]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb7/igt@kms_big_joiner@basic.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs: - shard-iclb: NOTRUN -> [SKIP][46] ([fdo#109278]) +26 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb3/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][47] ([i915#3689]) +9 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-tglb3/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs: - shard-snb: NOTRUN -> [SKIP][48] ([fdo#109271]) +352 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-snb2/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs.html * igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs: - shard-kbl: NOTRUN -> [SKIP][49] ([fdo#109271]) +192 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-kbl7/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs.html * igt@kms_chamelium@common-hpd-after-suspend: - shard-glk: NOTRUN -> [SKIP][50] ([fdo#109271] / [fdo#111827]) +6 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-glk8/igt@kms_chamelium@common-hpd-after-suspend.html * igt@kms_chamelium@vga-hpd: - shard-apl: NOTRUN -> [SKIP][51] ([fdo#109271] / [fdo#111827]) +24 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-apl8/igt@kms_chamelium@vga-hpd.html * igt@kms_chamelium@vga-hpd-for-each-pipe: - shard-kbl: NOTRUN -> [SKIP][52] ([fdo#109271] / [fdo#111827]) +16 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-kbl2/igt@kms_chamelium@vga-hpd-for-each-pipe.html * igt@kms_chamelium@vga-hpd-with-enabled-mode: - shard-iclb: NOTRUN -> [SKIP][53] ([fdo#109284] / [fdo#111827]) +10 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb2/igt@kms_chamelium@vga-hpd-with-enabled-mode.html * igt@kms_color@pipe-d-ctm-0-5: - shard-iclb: NOTRUN -> [SKIP][54] ([fdo#109278] / [i915#1149]) +2 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb8/igt@kms_color@pipe-d-ctm-0-5.html * igt@kms_color_chamelium@pipe-a-ctm-0-75: - shard-tglb: NOTRUN -> [SKIP][55] ([fdo#109284] / [fdo#111827]) +6 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-tglb6/igt@kms_color_chamelium@pipe-a-ctm-0-75.html * igt@kms_color_chamelium@pipe-a-ctm-blue-to-red: - shard-snb: NOTRUN -> [SKIP][56] ([fdo#109271] / [fdo#111827]) +18 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-snb2/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html * igt@kms_color_chamelium@pipe-d-ctm-negative: - shard-iclb: NOTRUN -> [SKIP][57] ([fdo#109278] / [fdo#109284] / [fdo#111827]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb2/igt@kms_color_chamelium@pipe-d-ctm-negative.html * igt@kms_content_protection@atomic-dpms: - shard-apl: NOTRUN -> [TIMEOUT][58] ([i915#1319]) +1 similar issue [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-apl3/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-iclb: NOTRUN -> [SKIP][59] ([i915#3116]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb2/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@uevent: - shard-apl: NOTRUN -> [FAIL][60] ([i915#2105]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-apl1/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@pipe-a-cursor-512x512-rapid-movement: - shard-iclb: NOTRUN -> [SKIP][61] ([fdo#109278] / [fdo#109279]) +1 similar issue [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb4/igt@kms_cursor_crc@pipe-a-cursor-512x512-rapid-movement.html * igt@kms_cursor_crc@pipe-c-cursor-32x32-onscreen: - shard-tglb: NOTRUN -> [SKIP][62] ([i915#3319]) +1 similar issue [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-tglb2/igt@kms_cursor_crc@pipe-c-cursor-32x32-onscreen.html * igt@kms_cursor_crc@pipe-d-cursor-512x512-onscreen: - shard-tglb: NOTRUN -> [SKIP][63] ([fdo#109279] / [i915#3359]) +1 similar issue [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-tglb7/igt@kms_cursor_crc@pipe-d-cursor-512x512-onscreen.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-tglb: NOTRUN -> [SKIP][64] ([fdo#111825]) +18 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-tglb1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-iclb: NOTRUN -> [SKIP][65] ([fdo#109274] / [fdo#109278]) +5 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_flip@2x-flip-vs-dpms: - shard-iclb: NOTRUN -> [SKIP][66] ([fdo#109274]) +2 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb4/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2: - shard-glk: [PASS][67] -> [FAIL][68] ([i915#2122]) +2 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-glk5/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-suspend@c-dp1: - shard-kbl: [PASS][69] -> [DMESG-WARN][70] ([i915#180]) +3 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/shard-kbl6/igt@kms_flip@flip-vs-suspend@c-dp1.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-kbl7/igt@kms_flip@flip-vs-suspend@c-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs: - shard-kbl: NOTRUN -> [SKIP][71] ([fdo#109271] / [i915#2672]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-kbl7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-iclb: NOTRUN -> [SKIP][72] ([fdo#109280]) +17 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-glk: NOTRUN -> [SKIP][73] ([fdo#109271]) +51 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-glk8/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_hdr@static-swap: - shard-iclb: NOTRUN -> [SKIP][74] ([i915#1187]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb3/igt@kms_hdr@static-swap.html * igt@kms_invalid_dotclock: - shard-tglb: NOTRUN -> [SKIP][75] ([fdo#110577]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-tglb3/igt@kms_invalid_dotclock.html - shard-iclb: NOTRUN -> [SKIP][76] ([fdo#109310]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb5/igt@kms_invalid_dotclock.html * igt@kms_pipe_crc_basic@read-crc-pipe-d: - shard-kbl: NOTRUN -> [SKIP][77] ([fdo#109271] / [i915#533]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-kbl4/igt@kms_pipe_crc_basic@read-crc-pipe-d.html - shard-glk: NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#533]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-glk5/igt@kms_pipe_crc_basic@read-crc-pipe-d.html * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][79] ([fdo#108145] / [i915#265]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-glk5/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: - shard-apl: NOTRUN -> [FAIL][80] ([fdo#108145] / [i915#265]) +4 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-apl8/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb: - shard-kbl: NOTRUN -> [FAIL][81] ([fdo#108145] / [i915#265]) +2 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-kbl2/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html * igt@kms_plane_lowres@pipe-b-tiling-x: - shard-iclb: NOTRUN -> [SKIP][82] ([i915#3536]) +1 similar issue [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb3/igt@kms_plane_lowres@pipe-b-tiling-x.html * igt@kms_plane_multiple@atomic-pipe-d-tiling-yf: - shard-tglb: NOTRUN -> [SKIP][83] ([fdo#112054]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-tglb5/igt@kms_plane_multiple@atomic-pipe-d-tiling-yf.html * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-a-scaler-with-clipping-clamping: - shard-iclb: [PASS][84] -> [DMESG-WARN][85] ([i915#1226]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/shard-iclb4/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-a-scaler-with-clipping-clamping.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb2/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-a-scaler-with-clipping-clamping.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2: - shard-apl: NOTRUN -> [SKIP][86] ([fdo#109271] / [i915#658]) +4 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-apl8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3: - shard-iclb: NOTRUN -> [SKIP][87] ([i915#658]) +3 similar issues [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb4/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3.html - shard-kbl: NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#658]) +4 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-kbl1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3.html - shard-glk: NOTRUN -> [SKIP][89] ([fdo#109271] / [i915#658]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-glk1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3.html - shard-tglb: NOTRUN -> [SKIP][90] ([i915#2920]) +1 similar issue [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-tglb3/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3.html * igt@kms_psr@psr2_cursor_mmap_cpu: - shard-iclb: NOTRUN -> [SKIP][91] ([fdo#109441]) +1 similar issue [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb5/igt@kms_psr@psr2_cursor_mmap_cpu.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: [PASS][92] -> [SKIP][93] ([fdo#109441]) +1 similar issue [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/shard-iclb2/igt@kms_psr@psr2_cursor_render.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb8/igt@kms_psr@psr2_cursor_render.html * igt@kms_psr@psr2_sprite_mmap_cpu: - shard-tglb: NOTRUN -> [FAIL][94] ([i915#132] / [i915#3467]) +1 similar issue [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-tglb7/igt@kms_psr@psr2_sprite_mmap_cpu.html * igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm: - shard-tglb: NOTRUN -> [SKIP][95] ([i915#3841]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-tglb2/igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm.html * igt@kms_vblank@pipe-d-ts-continuation-idle: - shard-apl: NOTRUN -> [SKIP][96] ([fdo#109271]) +273 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-apl6/igt@kms_vblank@pipe-d-ts-continuation-idle.html * igt@kms_vblank@pipe-d-wait-idle: - shard-apl: NOTRUN -> [SKIP][97] ([fdo#109271] / [i915#533]) +3 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-apl1/igt@kms_vblank@pipe-d-wait-idle.html * igt@kms_writeback@writeback-fb-id: - shard-apl: NOTRUN -> [SKIP][98] ([fdo#109271] / [i915#2437]) +1 similar issue [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-apl3/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-kbl: NOTRUN -> [SKIP][99] ([fdo#109271] / [i915#2437]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-kbl7/igt@kms_writeback@writeback-pixel-formats.html * igt@nouveau_crc@pipe-b-ctx-flip-detection: - shard-iclb: NOTRUN -> [SKIP][100] ([i915#2530]) +1 similar issue [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb5/igt@nouveau_crc@pipe-b-ctx-flip-detection.html * igt@nouveau_crc@pipe-d-ctx-flip-detection: - shard-tglb: NOTRUN -> [SKIP][101] ([i915#2530]) +1 similar issue [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-tglb5/igt@nouveau_crc@pipe-d-ctx-flip-detection.html - shard-iclb: NOTRUN -> [SKIP][102] ([fdo#109278] / [i915#2530]) +1 similar issue [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb4/igt@nouveau_crc@pipe-d-ctx-flip-detection.html * igt@prime_nv_api@i915_nv_import_twice_check_flink_name: - shard-iclb: NOTRUN -> [SKIP][103] ([fdo#109291]) +4 similar issues [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb1/igt@prime_nv_api@i915_nv_import_twice_check_flink_name.html * igt@prime_nv_pcopy@test3_1: - shard-tglb: NOTRUN -> [SKIP][104] ([fdo#109291]) +3 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-tglb1/igt@prime_nv_pcopy@test3_1.html * igt@sysfs_clients@fair-0: - shard-kbl: NOTRUN -> [SKIP][105] ([fdo#109271] / [i915#2994]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-kbl1/igt@sysfs_clients@fair-0.html * igt@sysfs_clients@fair-3: - shard-tglb: NOTRUN -> [SKIP][106] ([i915#2994]) +1 similar issue [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-tglb6/igt@sysfs_clients@fair-3.html * igt@sysfs_clients@sema-50: - shard-apl: NOTRUN -> [SKIP][107] ([fdo#109271] / [i915#2994]) +1 similar issue [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-apl6/igt@sysfs_clients@sema-50.html #### Possible fixes #### * igt@gem_ctx_isolation@preservation-s3@vcs0: - shard-kbl: [DMESG-WARN][108] ([i915#180]) -> [PASS][109] [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/shard-kbl3/igt@gem_ctx_isolation@preservation-s3@vcs0.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-kbl3/igt@gem_ctx_isolation@preservation-s3@vcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-iclb: [FAIL][110] ([i915#2842]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/shard-iclb5/igt@gem_exec_fair@basic-none-solo@rcs0.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb5/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-kbl: [FAIL][112] ([i915#2842]) -> [PASS][113] +1 similar issue [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/shard-kbl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-kbl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-tglb: [FAIL][114] ([i915#2842]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/shard-tglb6/igt@gem_exec_fair@basic-pace@vcs1.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-tglb5/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-glk: [FAIL][116] ([i915#2842]) -> [PASS][117] +1 similar issue [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/shard-glk6/igt@gem_exec_fair@basic-pace@vecs0.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-glk3/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_schedule@u-independent@vecs0: - shard-tglb: [FAIL][118] ([i915#3795]) -> [PASS][119] [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/shard-tglb2/igt@gem_exec_schedule@u-independent@vecs0.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-tglb3/igt@gem_exec_schedule@u-independent@vecs0.html * igt@kms_big_fb@linear-32bpp-rotate-180: - shard-glk: [DMESG-WARN][120] ([i915#118] / [i915#95]) -> [PASS][121] +2 similar issues [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/shard-glk3/igt@kms_big_fb@linear-32bpp-rotate-180.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-glk1/igt@kms_big_fb@linear-32bpp-rotate-180.html * igt@kms_big_fb@linear-64bpp-rotate-180: - shard-iclb: [DMESG-WARN][122] ([i915#3621]) -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/shard-iclb1/igt@kms_big_fb@linear-64bpp-rotate-180.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb4/igt@kms_big_fb@linear-64bpp-rotate-180.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-kbl: [INCOMPLETE][124] ([i915#155] / [i915#180] / [i915#636]) -> [PASS][125] [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/shard-kbl7/igt@kms_fbcon_fbt@fbc-suspend.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-kbl7/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_psr@psr2_dpms: - shard-iclb: [SKIP][126] ([fdo#109441]) -> [PASS][127] +1 similar issue [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/shard-iclb5/igt@kms_psr@psr2_dpms.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb2/igt@kms_psr@psr2_dpms.html * igt@kms_vblank@pipe-b-ts-continuation-suspend: - shard-iclb: [INCOMPLETE][128] ([fdo#111764] / [i915#1185] / [i915#2828]) -> [PASS][129] [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/shard-iclb3/igt@kms_vblank@pipe-b-ts-continuation-suspend.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb5/igt@kms_vblank@pipe-b-ts-continuation-suspend.html #### Warnings #### * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-iclb: [FAIL][130] ([i915#2842]) -> [FAIL][131] ([i915#2852]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/shard-iclb2/igt@gem_exec_fair@basic-none-rrul@rcs0.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb8/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-iclb: [WARN][132] ([i915#2684]) -> [WARN][133] ([i915#1804] / [i915#2684]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/shard-iclb2/igt@i915_pm_rc6_residency@rc6-fence.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb3/igt@i915_pm_rc6_residency@rc6-fence.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2: - shard-iclb: [SKIP][134] ([i915#2920]) -> [SKIP][135] ([i915#658]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/shard-iclb7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4: - shard-iclb: [SKIP][136] ([i915#658]) -> [SKIP][137] ([i915#2920]) +1 similar issue [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10399/shard-iclb5/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html [137]: https://intel- == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6062/index.html [-- Attachment #1.2: Type: text/html, Size: 33862 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2021-07-27 6:31 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-07-26 9:49 [igt-dev] [PATCH i-g-t] lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels Bhanuprakash Modem 2021-07-26 11:33 ` [igt-dev] ✗ Fi.CI.BUILD: failure for " Patchwork 2021-07-26 12:26 ` [igt-dev] [i-g-t V2] " Bhanuprakash Modem 2021-07-26 20:54 ` Dixit, Ashutosh 2021-07-27 1:32 ` [igt-dev] [i-g-t V3] " Bhanuprakash Modem 2021-07-26 13:50 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels (rev2) Patchwork 2021-07-26 17:31 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2021-07-27 1:44 ` Modem, Bhanuprakash 2021-07-27 1:44 ` Modem, Bhanuprakash 2021-07-27 4:57 ` Vudum, Lakshminarayana 2021-07-27 1:57 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 2021-07-27 2:02 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/i915: Handle QUERY_MEMORY_REGIONS on older kernels (rev3) Patchwork 2021-07-27 6:31 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox