* [PATCH i-g-t v3 0/3] tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix
@ 2024-09-26 18:11 Naladala Ramanaidu
2024-09-26 18:11 ` [PATCH i-g-t v3 1/3] tests/kms_plane_scaling: Add mode override in scaling test Naladala Ramanaidu
` (11 more replies)
0 siblings, 12 replies; 14+ messages in thread
From: Naladala Ramanaidu @ 2024-09-26 18:11 UTC (permalink / raw)
To: igt-dev; +Cc: kunal1.joshi, Naladala Ramanaidu
This change will solve the cdclk exceeds max cdclk issue.
Naladala Ramanaidu (3):
tests/kms_plane_scaling: Add mode override in scaling test
tests/kms_plane_scaling: Improve error handling in kms_plane_scaling
tests
HAX patch do not merge
tests/intel-ci/fast-feedback.testlist | 196 +++------------
tests/intel-ci/xe-fast-feedback.testlist | 307 +++--------------------
tests/kms_plane_scaling.c | 11 +-
3 files changed, 72 insertions(+), 442 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH i-g-t v3 1/3] tests/kms_plane_scaling: Add mode override in scaling test
2024-09-26 18:11 [PATCH i-g-t v3 0/3] tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix Naladala Ramanaidu
@ 2024-09-26 18:11 ` Naladala Ramanaidu
2024-09-26 18:11 ` [PATCH i-g-t v3 2/3] tests/kms_plane_scaling: Improve error handling in kms_plane_scaling tests Naladala Ramanaidu
` (10 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Naladala Ramanaidu @ 2024-09-26 18:11 UTC (permalink / raw)
To: igt-dev; +Cc: kunal1.joshi, Naladala Ramanaidu
Add a call to igt_output_override_mode to ensure the correct mode
is set for each connector. Modify check_scaling_pipe_plane_rot
function to include igt_output_override_mode. This change helps
in accurately testing the scaling functionality by explicitly
setting the mode before running the tests.
Fixes: 27926dd5792a ("tests/kms_plane_scaling: Find display mode fitting in BW for rotations")
Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/kms_plane_scaling.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index bc9114acd..96ceedee2 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -585,6 +585,7 @@ check_scaling_pipe_plane_rot(data_t *d, igt_plane_t *plane,
for_each_connector_mode(output) {
mode = &output->config.connector->modes[j__];
+ igt_output_override_mode(output, mode);
igt_debug("Trying mode %dx%d\n",
mode->hdisplay, mode->vdisplay);
--
2.43.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH i-g-t v3 2/3] tests/kms_plane_scaling: Improve error handling in kms_plane_scaling tests
2024-09-26 18:11 [PATCH i-g-t v3 0/3] tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix Naladala Ramanaidu
2024-09-26 18:11 ` [PATCH i-g-t v3 1/3] tests/kms_plane_scaling: Add mode override in scaling test Naladala Ramanaidu
@ 2024-09-26 18:11 ` Naladala Ramanaidu
2024-09-27 17:40 ` [i-g-t, v3, " Joshi, Kunal1
2024-09-26 18:11 ` [PATCH i-g-t v3 3/3] HAX patch do not merge Naladala Ramanaidu
` (9 subsequent siblings)
11 siblings, 1 reply; 14+ messages in thread
From: Naladala Ramanaidu @ 2024-09-26 18:11 UTC (permalink / raw)
To: igt-dev; +Cc: kunal1.joshi, Naladala Ramanaidu
Refactor error handling in test_planes_scaling_combo to use break
statements instead of immediate returns. This ensures cleanup_fbs
is always called before exiting the loop. Additionally, adjust log
message formatting in igt_main_args for consistency.
Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
---
tests/kms_plane_scaling.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index 96ceedee2..a55720ed9 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -998,12 +998,12 @@ test_planes_scaling_combo(data_t *d, double sf_plane1,
pipe, output, p1, p2,
&d->fb[1], &d->fb[2],
test_type);
- if (ret != 0) {
- cleanup_fbs(d);
- return ret;
- }
+ if (ret != 0)
+ break;
}
cleanup_fbs(d);
+ if (ret == 0)
+ break;
}
return ret;
}
@@ -1543,7 +1543,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
scaler_with_2_planes_tests[index].test_type);
if (ret == 0)
break;
- igt_info("Required Scaling operation not supported on %s trying on next output\n",
+ igt_info("Required scaling operation not supported on %s trying on next output\n",
igt_output_name(output));
}
igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
--
2.43.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH i-g-t v3 3/3] HAX patch do not merge
2024-09-26 18:11 [PATCH i-g-t v3 0/3] tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix Naladala Ramanaidu
2024-09-26 18:11 ` [PATCH i-g-t v3 1/3] tests/kms_plane_scaling: Add mode override in scaling test Naladala Ramanaidu
2024-09-26 18:11 ` [PATCH i-g-t v3 2/3] tests/kms_plane_scaling: Improve error handling in kms_plane_scaling tests Naladala Ramanaidu
@ 2024-09-26 18:11 ` Naladala Ramanaidu
2024-09-26 19:09 ` ✗ Fi.CI.BAT: failure for tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix (rev3) Patchwork
` (8 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Naladala Ramanaidu @ 2024-09-26 18:11 UTC (permalink / raw)
To: igt-dev; +Cc: kunal1.joshi, Naladala Ramanaidu
HAX patch do not merge
Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
---
tests/intel-ci/fast-feedback.testlist | 196 +++------------
tests/intel-ci/xe-fast-feedback.testlist | 307 +++--------------------
2 files changed, 66 insertions(+), 437 deletions(-)
diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist
index be0965110..a6f781909 100644
--- a/tests/intel-ci/fast-feedback.testlist
+++ b/tests/intel-ci/fast-feedback.testlist
@@ -2,169 +2,39 @@
igt@i915_module_load@load
# Keep alphabetically sorted by default
-igt@core_auth@basic-auth
-igt@debugfs_test@read_all_entries
-igt@debugfs_test@basic-hwmon
-igt@debugfs_test@sysfs
-igt@fbdev@eof
-igt@fbdev@info
-igt@fbdev@nullptr
-igt@fbdev@read
-igt@fbdev@write
-igt@gem_basic@bad-close
-igt@gem_basic@create-close
-igt@gem_basic@create-fd-close
-igt@gem_busy@busy@all-engines
-igt@gem_close_race@basic-process
-igt@gem_close_race@basic-threads
-igt@gem_ctx_create@basic
-igt@gem_ctx_create@basic-files
-igt@gem_ctx_exec@basic
-igt@gem_exec_basic@basic
-igt@gem_exec_create@basic
-igt@gem_exec_fence@basic-busy
-igt@gem_exec_fence@basic-wait
-igt@gem_exec_fence@basic-await
-igt@gem_exec_fence@nb-await
-igt@gem_exec_gttfill@basic
-igt@gem_exec_parallel@engines
-igt@gem_exec_store@basic
-igt@gem_flink_basic@bad-flink
-igt@gem_flink_basic@bad-open
-igt@gem_flink_basic@basic
-igt@gem_flink_basic@double-flink
-igt@gem_flink_basic@flink-lifetime
-igt@gem_huc_copy@huc-copy
-igt@gem_linear_blits@basic
-igt@gem_mmap@basic
-igt@gem_mmap_gtt@basic
-igt@gem_render_linear_blits@basic
-igt@gem_render_tiled_blits@basic
-igt@gem_ringfill@basic-all
-igt@gem_softpin@allocator-basic
-igt@gem_softpin@allocator-basic-reserve
-igt@gem_softpin@safe-alignment
-igt@gem_sync@basic-all
-igt@gem_sync@basic-each
-igt@gem_tiled_blits@basic
-igt@gem_tiled_fence_blits@basic
-igt@gem_tiled_pread_basic
-igt@gem_wait@busy@all-engines
-igt@gem_wait@wait@all-engines
-igt@i915_getparams_basic@basic-eu-total
-igt@i915_getparams_basic@basic-subslice-total
-igt@i915_hangman@error-state-basic
-igt@i915_pciid
-igt@kms_addfb_basic@addfb25-4-tiled
-igt@kms_addfb_basic@addfb25-bad-modifier
-igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling
-igt@kms_addfb_basic@addfb25-modifier-no-flag
-igt@kms_addfb_basic@addfb25-x-tiled-legacy
-igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy
-igt@kms_addfb_basic@addfb25-yf-tiled-legacy
-igt@kms_addfb_basic@addfb25-y-tiled-legacy
-igt@kms_addfb_basic@addfb25-y-tiled-small-legacy
-igt@kms_addfb_basic@bad-pitch-0
-igt@kms_addfb_basic@bad-pitch-1024
-igt@kms_addfb_basic@bad-pitch-128
-igt@kms_addfb_basic@bad-pitch-256
-igt@kms_addfb_basic@bad-pitch-32
-igt@kms_addfb_basic@bad-pitch-63
-igt@kms_addfb_basic@bad-pitch-65536
-igt@kms_addfb_basic@bad-pitch-999
-igt@kms_addfb_basic@basic
-igt@kms_addfb_basic@basic-x-tiled-legacy
-igt@kms_addfb_basic@basic-y-tiled-legacy
-igt@kms_addfb_basic@bo-too-small
-igt@kms_addfb_basic@bo-too-small-due-to-tiling
-igt@kms_addfb_basic@clobberred-modifier
-igt@kms_addfb_basic@framebuffer-vs-set-tiling
-igt@kms_addfb_basic@invalid-get-prop
-igt@kms_addfb_basic@invalid-get-prop-any
-igt@kms_addfb_basic@invalid-set-prop
-igt@kms_addfb_basic@invalid-set-prop-any
-igt@kms_addfb_basic@no-handle
-igt@kms_addfb_basic@size-max
-igt@kms_addfb_basic@small-bo
-igt@kms_addfb_basic@tile-pitch-mismatch
-igt@kms_addfb_basic@too-high
-igt@kms_addfb_basic@too-wide
-igt@kms_addfb_basic@unused-handle
-igt@kms_addfb_basic@unused-modifier
-igt@kms_addfb_basic@unused-offsets
-igt@kms_addfb_basic@unused-pitches
-igt@kms_busy@basic
-igt@kms_prop_blob@basic
-igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic
-igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy
-igt@kms_cursor_legacy@basic-flip-after-cursor-atomic
-igt@kms_cursor_legacy@basic-flip-after-cursor-legacy
-igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size
-igt@kms_cursor_legacy@basic-flip-before-cursor-atomic
-igt@kms_cursor_legacy@basic-flip-before-cursor-legacy
-igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size
-igt@kms_dsc@dsc-basic
-igt@kms_flip@basic-flip-vs-dpms
-igt@kms_flip@basic-flip-vs-modeset
-igt@kms_flip@basic-flip-vs-wf_vblank
-igt@kms_flip@basic-plain-flip
-igt@kms_force_connector_basic@force-connector-state
-igt@kms_force_connector_basic@force-edid
-igt@kms_force_connector_basic@force-load-detect
-igt@kms_force_connector_basic@prune-stale-modes
-igt@kms_frontbuffer_tracking@basic
-igt@kms_hdmi_inject@inject-audio
-igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24
-igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12
-igt@kms_pipe_crc_basic@hang-read-crc
-igt@kms_pipe_crc_basic@nonblocking-crc
-igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence
-igt@kms_pipe_crc_basic@read-crc
-igt@kms_pipe_crc_basic@read-crc-frame-sequence
-igt@kms_pm_backlight@basic-brightness
-igt@kms_pm_rpm@basic-pci-d3-state
-igt@kms_pm_rpm@basic-rte
-igt@kms_psr@psr-primary-page-flip
-igt@kms_psr@psr-cursor-plane-move
-igt@kms_psr@psr-sprite-plane-onoff
-igt@kms_psr@psr-primary-mmap-gtt
-igt@kms_setmode@basic-clone-single-crtc
-igt@i915_pm_rps@basic-api
-igt@prime_self_import@basic-llseek-bad
-igt@prime_self_import@basic-llseek-size
-igt@prime_self_import@basic-with_fd_dup
-igt@prime_self_import@basic-with_one_bo
-igt@prime_self_import@basic-with_one_bo_two_files
-igt@prime_self_import@basic-with_two_bos
-igt@prime_vgem@basic-fence-flip
-igt@prime_vgem@basic-fence-mmap
-igt@prime_vgem@basic-fence-read
-igt@prime_vgem@basic-gtt
-igt@prime_vgem@basic-read
-igt@prime_vgem@basic-write
-igt@vgem_basic@setversion
-igt@vgem_basic@create
-igt@vgem_basic@debugfs
-igt@vgem_basic@dmabuf-export
-igt@vgem_basic@dmabuf-fence
-igt@vgem_basic@dmabuf-fence-before
-igt@vgem_basic@dmabuf-mmap
-igt@vgem_basic@mmap
-igt@vgem_basic@second-client
-igt@vgem_basic@sysfs
-
-# All tests that do module unloading and reloading are executed last.
-# They will sometimes reveal issues of earlier tests leaving the
-# driver in a broken state that is not otherwise noticed in that test.
-
-igt@core_hotunplug@unbind-rebind
-igt@vgem_basic@unload
-igt@i915_module_load@reload
-igt@gem_lmem_swapping@basic
-igt@gem_lmem_swapping@parallel-random-engines
-igt@gem_lmem_swapping@random-engines
-igt@gem_lmem_swapping@verify-random
-igt@i915_pm_rpm@module-reload
+igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format
+igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format
+igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format
+igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format
+igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format
+igt@kms_plane_scaling@plane-upscale-20x20-with-rotation
+igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation
+igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation
+igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation
+igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation
+igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers
+igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers
+igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers
+igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers
+igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers
+igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats
+igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation
+igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers
+igt@kms_plane_scaling@planes-upscale-20x20
+igt@kms_plane_scaling@planes-upscale-factor-0-25
+igt@kms_plane_scaling@planes-scaler-unity-scaling
+igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5
+igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75
+igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5
+igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75
+igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5
+igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75
+igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20
+igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling
+igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20
+igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling
# Kernel selftests
igt@i915_selftest@live
diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist
index 01b01dcf9..f0612c900 100644
--- a/tests/intel-ci/xe-fast-feedback.testlist
+++ b/tests/intel-ci/xe-fast-feedback.testlist
@@ -1,277 +1,36 @@
# Should be the first test
igt@xe_module_load@load
-igt@fbdev@eof
-igt@fbdev@info
-igt@fbdev@nullptr
-igt@fbdev@read
-igt@fbdev@write
-
-igt@kms_addfb_basic@addfb25-4-tiled
-igt@kms_addfb_basic@addfb25-bad-modifier
-igt@kms_addfb_basic@addfb25-modifier-no-flag
-igt@kms_addfb_basic@addfb25-x-tiled-legacy
-igt@kms_addfb_basic@addfb25-yf-tiled-legacy
-igt@kms_addfb_basic@addfb25-y-tiled-legacy
-igt@kms_addfb_basic@addfb25-y-tiled-small-legacy
-igt@kms_addfb_basic@bad-pitch-0
-igt@kms_addfb_basic@bad-pitch-1024
-igt@kms_addfb_basic@bad-pitch-128
-igt@kms_addfb_basic@bad-pitch-256
-igt@kms_addfb_basic@bad-pitch-32
-igt@kms_addfb_basic@bad-pitch-63
-igt@kms_addfb_basic@bad-pitch-65536
-igt@kms_addfb_basic@bad-pitch-999
-igt@kms_addfb_basic@basic
-igt@kms_addfb_basic@basic-x-tiled-legacy
-igt@kms_addfb_basic@bo-too-small
-igt@kms_addfb_basic@invalid-get-prop
-igt@kms_addfb_basic@invalid-get-prop-any
-igt@kms_addfb_basic@invalid-set-prop
-igt@kms_addfb_basic@invalid-set-prop-any
-igt@kms_addfb_basic@no-handle
-igt@kms_addfb_basic@size-max
-igt@kms_addfb_basic@small-bo
-igt@kms_addfb_basic@too-high
-igt@kms_addfb_basic@too-wide
-igt@kms_addfb_basic@unused-handle
-igt@kms_addfb_basic@unused-modifier
-igt@kms_addfb_basic@unused-offsets
-igt@kms_addfb_basic@unused-pitches
-igt@kms_cursor_legacy@basic-flip-after-cursor-atomic
-igt@kms_cursor_legacy@basic-flip-after-cursor-legacy
-igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size
-igt@kms_cursor_legacy@basic-flip-before-cursor-atomic
-igt@kms_cursor_legacy@basic-flip-before-cursor-legacy
-igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size
-igt@kms_dsc@dsc-basic
-igt@kms_flip@basic-flip-vs-dpms
-igt@kms_flip@basic-flip-vs-modeset
-igt@kms_flip@basic-flip-vs-wf_vblank
-igt@kms_flip@basic-plain-flip
-igt@kms_force_connector_basic@force-connector-state
-igt@kms_force_connector_basic@force-edid
-igt@kms_force_connector_basic@prune-stale-modes
-igt@kms_frontbuffer_tracking@basic
-igt@kms_hdmi_inject@inject-audio
-igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24
-igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12
-igt@kms_pipe_crc_basic@hang-read-crc
-igt@kms_pipe_crc_basic@nonblocking-crc
-igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence
-igt@kms_pipe_crc_basic@read-crc
-igt@kms_pipe_crc_basic@read-crc-frame-sequence
-igt@kms_prop_blob@basic
-igt@kms_psr@psr-primary-page-flip
-igt@kms_psr@psr-cursor-plane-move
-igt@kms_psr@psr-sprite-plane-onoff
-igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all
-igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1
-igt@xe_compute@compute-square
-igt@xe_create@create-execqueues-noleak
-igt@xe_create@create-execqueues-leak
-igt@xe_create@create-invalid-mbz
-igt@xe_create@create-massive-size
-igt@xe_debugfs@base
-igt@xe_debugfs@gt
-igt@xe_debugfs@forcewake
-igt@xe_dma_buf_sync@export-dma-buf-once
-igt@xe_dma_buf_sync@export-dma-buf-once-read-sync
-igt@xe_evict_ccs@evict-overcommit-simple
-igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd
-igt@xe_exec_atomic@basic-dec-all
-igt@xe_exec_atomic@basic-inc-all
-igt@xe_exec_balancer@twice-virtual-basic
-igt@xe_exec_balancer@no-exec-virtual-basic
-igt@xe_exec_balancer@twice-cm-virtual-basic
-igt@xe_exec_balancer@no-exec-cm-virtual-basic
-igt@xe_exec_balancer@twice-virtual-userptr
-igt@xe_exec_balancer@twice-cm-virtual-userptr
-igt@xe_exec_balancer@twice-virtual-rebind
-igt@xe_exec_balancer@twice-cm-virtual-rebind
-igt@xe_exec_balancer@twice-virtual-userptr-rebind
-igt@xe_exec_balancer@twice-cm-virtual-userptr-rebind
-igt@xe_exec_balancer@twice-virtual-userptr-invalidate
-igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate
-igt@xe_exec_balancer@twice-parallel-basic
-igt@xe_exec_balancer@no-exec-parallel-basic
-igt@xe_exec_balancer@twice-parallel-userptr
-igt@xe_exec_balancer@twice-parallel-rebind
-igt@xe_exec_balancer@twice-parallel-userptr-rebind
-igt@xe_exec_balancer@twice-parallel-userptr-invalidate
-igt@xe_exec_basic@twice-basic
-igt@xe_exec_basic@no-exec-basic
-igt@xe_exec_basic@twice-basic-defer-mmap
-igt@xe_exec_basic@twice-basic-defer-bind
-igt@xe_exec_basic@twice-userptr
-igt@xe_exec_basic@twice-rebind
-igt@xe_exec_basic@twice-userptr-rebind
-igt@xe_exec_basic@twice-userptr-invalidate
-igt@xe_exec_basic@no-exec-userptr-invalidate
-igt@xe_exec_basic@twice-bindexecqueue
-igt@xe_exec_basic@no-exec-bindexecqueue
-igt@xe_exec_basic@twice-bindexecqueue-userptr
-igt@xe_exec_basic@twice-bindexecqueue-rebind
-igt@xe_exec_basic@twice-bindexecqueue-userptr-rebind
-igt@xe_exec_basic@twice-bindexecqueue-userptr-invalidate
-igt@xe_exec_compute_mode@twice-basic
-igt@xe_exec_compute_mode@twice-preempt-fence-early
-igt@xe_exec_compute_mode@twice-userptr
-igt@xe_exec_compute_mode@twice-rebind
-igt@xe_exec_compute_mode@twice-userptr-rebind
-igt@xe_exec_compute_mode@twice-userptr-invalidate
-igt@xe_exec_compute_mode@twice-bindexecqueue
-igt@xe_exec_compute_mode@twice-bindexecqueue-userptr
-igt@xe_exec_compute_mode@twice-bindexecqueue-rebind
-igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-rebind
-igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate
-igt@xe_exec_queue_property@invalid-property
-igt@xe_exec_reset@close-fd-no-exec
-igt@xe_exec_reset@cm-close-fd-no-exec
-igt@xe_exec_reset@virtual-close-fd-no-exec
-igt@xe_exec_store@basic-store
-igt@xe_gpgpu_fill@basic
-igt@xe_gt_freq@freq_basic_api
-igt@xe_gt_freq@freq_fixed_idle
-igt@xe_gt_freq@freq_range_idle
-igt@xe_huc_copy@huc_copy
-igt@xe_intel_bb@add-remove-objects
-igt@xe_intel_bb@bb-with-allocator
-igt@xe_intel_bb@blit-reloc
-igt@xe_intel_bb@blit-simple
-igt@xe_intel_bb@create-in-region
-igt@xe_intel_bb@delta-check
-igt@xe_intel_bb@destroy-bb
-igt@xe_intel_bb@intel-bb-blit-none
-igt@xe_intel_bb@intel-bb-blit-x
-igt@xe_intel_bb@intel-bb-blit-y
-igt@xe_intel_bb@lot-of-buffers
-igt@xe_intel_bb@offset-control
-igt@xe_intel_bb@purge-bb
-igt@xe_intel_bb@render
-igt@xe_intel_bb@reset-bb
-igt@xe_intel_bb@simple-bb
-igt@xe_intel_bb@simple-bb-ctx
-igt@xe_mmap@bad-extensions
-igt@xe_mmap@bad-flags
-igt@xe_mmap@bad-object
-igt@xe_mmap@cpu-caching
-igt@xe_mmap@system
-igt@xe_mmap@vram
-igt@xe_mmap@vram-system
-igt@xe_pm_residency@gt-c6-on-idle
-igt@xe_prime_self_import@basic-with_one_bo
-igt@xe_prime_self_import@basic-with_fd_dup
-#igt@xe_prime_self_import@basic-llseek-size
-igt@xe_query@query-engines
-igt@xe_query@query-mem-usage
-igt@xe_query@query-gt-list
-igt@xe_query@query-config
-igt@xe_query@query-hwconfig
-igt@xe_query@query-topology
-igt@xe_query@query-invalid-extension
-igt@xe_query@query-invalid-query
-igt@xe_query@query-invalid-size
-igt@xe_spin_batch@spin-basic
-igt@xe_spin_batch@spin-batch
-igt@xe_sysfs_defaults@engine-defaults
-igt@xe_sysfs_scheduler@preempt_timeout_us-invalid
-igt@xe_sysfs_scheduler@preempt_timeout_us-min-max
-igt@xe_sysfs_scheduler@timeslice_duration_us-invalid
-igt@xe_sysfs_scheduler@timeslice_duration_us-min-max
-igt@xe_sysfs_scheduler@job_timeout_ms-invalid
-igt@xe_sysfs_scheduler@job_timeout_ms-min-max
-#igt@xe_vm@bind-once
-#igt@xe_vm@scratch
-igt@xe_vm@shared-pte-page
-igt@xe_vm@shared-pde-page
-igt@xe_vm@shared-pde2-page
-igt@xe_vm@shared-pde3-page
-igt@xe_vm@bind-execqueues-independent
-igt@xe_vm@large-split-binds-268435456
-igt@xe_vm@munmap-style-unbind-one-partial
-igt@xe_vm@munmap-style-unbind-end
-igt@xe_vm@munmap-style-unbind-front
-igt@xe_vm@munmap-style-unbind-userptr-one-partial
-igt@xe_vm@munmap-style-unbind-userptr-end
-igt@xe_vm@munmap-style-unbind-userptr-front
-igt@xe_vm@munmap-style-unbind-userptr-inval-end
-igt@xe_vm@munmap-style-unbind-userptr-inval-front
-igt@xe_pat@userptr-coh-none
-igt@xe_pat@prime-self-import-coh
-igt@xe_pat@prime-external-import-coh
-igt@xe_pat@pat-index-all
-igt@xe_pat@pat-index-xelp
-igt@xe_pat@pat-index-xehpc
-igt@xe_pat@pat-index-xelpg
-igt@xe_pat@pat-index-xe2
-igt@xe_waitfence@abstime
-igt@xe_waitfence@engine
-igt@xe_waitfence@reltime
-
-# All tests that do module unloading and reloading are executed last.
-# They will sometimes reveal issues of earlier tests leaving the
-# driver in a broken state that is not otherwise noticed in that test.
-igt@core_hotunplug@unbind-rebind
-
-# Run KUnit tests at the end
-igt@xe_live_ktest@xe_bo
-igt@xe_live_ktest@xe_dma_buf
-igt@xe_live_ktest@xe_migrate
-
-# Move fault_mode tests at the end to unblock execution
-igt@xe_exec_fault_mode@twice-basic
-igt@xe_exec_fault_mode@many-basic
-igt@xe_exec_fault_mode@twice-userptr
-igt@xe_exec_fault_mode@twice-rebind
-igt@xe_exec_fault_mode@twice-userptr-rebind
-igt@xe_exec_fault_mode@twice-userptr-invalidate
-igt@xe_exec_fault_mode@twice-bindexecqueue
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr
-igt@xe_exec_fault_mode@twice-bindexecqueue-rebind
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate
-igt@xe_exec_fault_mode@twice-basic-imm
-igt@xe_exec_fault_mode@twice-userptr-imm
-igt@xe_exec_fault_mode@twice-rebind-imm
-igt@xe_exec_fault_mode@twice-userptr-rebind-imm
-igt@xe_exec_fault_mode@twice-userptr-invalidate-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-imm
-igt@xe_exec_fault_mode@twice-basic-prefetch
-igt@xe_exec_fault_mode@twice-userptr-prefetch
-igt@xe_exec_fault_mode@twice-rebind-prefetch
-igt@xe_exec_fault_mode@twice-userptr-rebind-prefetch
-igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-prefetch
-igt@xe_exec_fault_mode@twice-invalid-fault
-igt@xe_exec_fault_mode@twice-invalid-userptr-fault
-igt@xe_exec_threads@threads-basic
-igt@xe_exec_threads@threads-mixed-basic
-igt@xe_exec_threads@threads-mixed-shared-vm-basic
-igt@xe_exec_threads@threads-mixed-fd-basic
-igt@xe_exec_threads@threads-mixed-userptr-invalidate
-igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race
-igt@xe_evict@evict-beng-mixed-threads-small-multi-vm
-igt@xe_evict@evict-beng-small
-igt@xe_evict@evict-beng-small-cm
-igt@xe_evict@evict-beng-small-external
-igt@xe_evict@evict-beng-small-external-cm
-igt@xe_evict@evict-beng-small-multi-vm
-igt@xe_evict@evict-cm-threads-small
-igt@xe_evict@evict-mixed-threads-small
-igt@xe_evict@evict-mixed-threads-small-multi-vm
-igt@xe_evict@evict-small
-igt@xe_evict@evict-small-cm
-igt@xe_evict@evict-small-external
-igt@xe_evict@evict-small-external-cm
-igt@xe_evict@evict-small-multi-vm
-igt@xe_evict@evict-small-multi-vm-cm
-igt@xe_evict@evict-threads-small
+igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format
+igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format
+igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format
+igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format
+igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format
+igt@kms_plane_scaling@plane-upscale-20x20-with-rotation
+igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation
+igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation
+igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation
+igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation
+igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers
+igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers
+igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers
+igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers
+igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers
+igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats
+igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation
+igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers
+igt@kms_plane_scaling@planes-upscale-20x20
+igt@kms_plane_scaling@planes-upscale-factor-0-25
+igt@kms_plane_scaling@planes-scaler-unity-scaling
+igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5
+igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75
+igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5
+igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75
+igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5
+igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75
+igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20
+igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling
+igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20
+igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling
--
2.43.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* ✗ Fi.CI.BAT: failure for tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix (rev3)
2024-09-26 18:11 [PATCH i-g-t v3 0/3] tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix Naladala Ramanaidu
` (2 preceding siblings ...)
2024-09-26 18:11 ` [PATCH i-g-t v3 3/3] HAX patch do not merge Naladala Ramanaidu
@ 2024-09-26 19:09 ` Patchwork
2024-09-26 19:21 ` ✗ CI.xeBAT: " Patchwork
` (7 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-09-26 19:09 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 25980 bytes --]
== Series Details ==
Series: tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix (rev3)
URL : https://patchwork.freedesktop.org/series/139049/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15449 -> IGTPW_11816
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11816 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11816, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/index.html
Participating hosts (37 -> 36)
------------------------------
Additional (2): bat-dg2-14 bat-arls-1
Missing (3): bat-rpls-4 fi-snb-2520m bat-adls-6
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11816:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation:
- bat-twl-2: NOTRUN -> [SKIP][1] +31 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-twl-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format:
- bat-jsl-1: NOTRUN -> [DMESG-WARN][2] +2 other tests dmesg-warn
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-jsl-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-b:
- fi-rkl-11600: NOTRUN -> [DMESG-WARN][3] +1 other test dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-rkl-11600/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a:
- bat-twl-1: NOTRUN -> [SKIP][4] +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-twl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-c:
- bat-adlm-1: NOTRUN -> [SKIP][5] +98 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-adlm-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-d:
- bat-arls-2: NOTRUN -> [SKIP][6] +50 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-arls-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a:
- bat-jsl-1: NOTRUN -> [SKIP][7] +52 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-jsl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- bat-adlp-11: NOTRUN -> [SKIP][8] +98 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-adlp-11/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-d:
- bat-arlh-2: NOTRUN -> [SKIP][9] +11 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-arlh-2/igt@kms_plane_scaling@planes-upscale-20x20@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a:
- bat-arls-5: NOTRUN -> [SKIP][10] +15 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-arls-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d:
- bat-arls-1: NOTRUN -> [SKIP][11] +15 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-arls-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- {bat-arlh-3}: NOTRUN -> [SKIP][12] +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-arlh-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
Known issues
------------
Here are the changes found in IGTPW_11816 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-mtlp-6: [PASS][13] -> [ABORT][14] ([i915#12061] / [i915#12216]) +1 other test abort
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15449/bat-mtlp-6/igt@i915_selftest@live.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-6/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-9: [PASS][15] -> [DMESG-FAIL][16] ([i915#9500]) +1 other test dmesg-fail
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15449/bat-dg2-9/igt@i915_selftest@live@workarounds.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-dg2-9/igt@i915_selftest@live@workarounds.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- fi-ivb-3770: NOTRUN -> [SKIP][17] +131 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-ivb-3770/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
- bat-apl-1: NOTRUN -> [SKIP][18] +23 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-apl-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d:
- bat-mtlp-6: NOTRUN -> [SKIP][19] ([i915#12247] / [i915#8152]) +20 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers:
- bat-arlh-2: NOTRUN -> [SKIP][20] ([i915#11346]) +17 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-arlh-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d:
- bat-mtlp-6: NOTRUN -> [SKIP][21] ([i915#8152]) +11 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d.html
- bat-dg2-9: NOTRUN -> [SKIP][22] ([i915#8152]) +11 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-dg2-9/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats:
- bat-adlm-1: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#8152]) +3 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-adlm-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d:
- bat-adlp-11: NOTRUN -> [SKIP][24] ([i915#8152]) +49 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-adlp-11/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- bat-dg1-7: NOTRUN -> [SKIP][25] ([i915#3555])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-dg1-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
- fi-rkl-11600: NOTRUN -> [SKIP][26] ([i915#3555])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-rkl-11600/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
- bat-jsl-1: NOTRUN -> [SKIP][27] ([i915#3555])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-jsl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
- fi-tgl-1115g4: NOTRUN -> [SKIP][28] ([i915#3555])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-tgl-1115g4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a:
- fi-cfl-guc: NOTRUN -> [SKIP][29] +25 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-cfl-guc/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a.html
- bat-mtlp-6: NOTRUN -> [SKIP][30] ([i915#12247]) +98 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
- bat-dg2-9: NOTRUN -> [SKIP][31] ([i915#8152] / [i915#9423]) +7 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-dg2-9/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format:
- bat-mtlp-6: NOTRUN -> [SKIP][32] ([i915#8152] / [i915#9792]) +7 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-6/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b:
- fi-ilk-650: NOTRUN -> [SKIP][33] +98 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-ilk-650/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- fi-tgl-1115g4: NOTRUN -> [SKIP][34] ([i915#12247]) +28 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-tgl-1115g4/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b:
- fi-cfl-8109u: NOTRUN -> [SKIP][35] +25 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-cfl-8109u/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- bat-dg1-7: NOTRUN -> [SKIP][36] ([i915#12247]) +28 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-dg1-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation:
- bat-mtlp-6: NOTRUN -> [SKIP][37] ([i915#12247] / [i915#8152] / [i915#9792]) +8 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
- bat-dg2-9: NOTRUN -> [SKIP][38] ([i915#12247] / [i915#8152] / [i915#9423]) +8 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-dg2-9/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a:
- fi-rkl-11600: NOTRUN -> [SKIP][39] ([i915#12247]) +22 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-rkl-11600/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b:
- fi-glk-j4005: NOTRUN -> [SKIP][40] +23 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-glk-j4005/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
- fi-cfl-8700k: NOTRUN -> [SKIP][41] +25 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-cfl-8700k/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- bat-dg2-9: NOTRUN -> [SKIP][42] ([i915#12247] / [i915#8152]) +20 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-dg2-9/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a:
- fi-elk-e7500: NOTRUN -> [SKIP][43] +98 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-elk-e7500/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a:
- bat-mtlp-8: NOTRUN -> [SKIP][44] ([i915#12247]) +48 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- fi-blb-e6850: NOTRUN -> [SKIP][45] +32 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-blb-e6850/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
- bat-twl-2: NOTRUN -> [SKIP][46] ([i915#6953]) +3 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-twl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20:
- bat-adlm-1: NOTRUN -> [SKIP][47] ([i915#3558] / [i915#8152]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-adlm-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
- bat-mtlp-6: NOTRUN -> [SKIP][48] ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9792]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
- bat-dg2-9: NOTRUN -> [SKIP][49] ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9423]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
- bat-adlp-11: NOTRUN -> [SKIP][50] ([i915#3558] / [i915#8152]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-adlp-11/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25:
- bat-adlm-1: NOTRUN -> [SKIP][51] ([i915#6953] / [i915#8152]) +5 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-adlm-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling:
- bat-mtlp-6: NOTRUN -> [SKIP][52] ([i915#3555] / [i915#8152] / [i915#9792]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-6/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
- bat-dg2-9: NOTRUN -> [SKIP][53] ([i915#3555] / [i915#8152] / [i915#9423]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-dg2-9/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
- bat-adlp-11: NOTRUN -> [SKIP][54] ([i915#3555] / [i915#8152]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-adlp-11/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a:
- bat-kbl-2: NOTRUN -> [SKIP][55] +131 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-kbl-2/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5:
- fi-hsw-4770: NOTRUN -> [SKIP][56] +131 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-hsw-4770/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
- bat-arls-2: NOTRUN -> [SKIP][57] ([i915#6953]) +5 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-arls-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
- bat-mtlp-8: NOTRUN -> [SKIP][58] ([i915#6953]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
- bat-jsl-1: NOTRUN -> [SKIP][59] ([i915#6953]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-jsl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75:
- bat-adlm-1: NOTRUN -> [SKIP][60] ([i915#3555] / [i915#6953] / [i915#8152]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-adlm-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
- bat-mtlp-6: NOTRUN -> [SKIP][61] ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9792]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d:
- bat-arlh-2: NOTRUN -> [SKIP][62] ([i915#12247]) +119 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-arlh-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20:
- bat-mtlp-6: NOTRUN -> [SKIP][63] ([i915#6953] / [i915#8152] / [i915#9792]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-6/igt@kms_plane_scaling@planes-upscale-20x20.html
- bat-dg2-9: NOTRUN -> [SKIP][64] ([i915#6953] / [i915#8152] / [i915#9423]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-dg2-9/igt@kms_plane_scaling@planes-upscale-20x20.html
- bat-adlp-11: NOTRUN -> [SKIP][65] ([i915#6953] / [i915#8152]) +5 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-adlp-11/igt@kms_plane_scaling@planes-upscale-20x20.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
- bat-dg2-9: NOTRUN -> [SKIP][66] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-dg2-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
- bat-adlp-11: NOTRUN -> [SKIP][67] ([i915#3555] / [i915#6953] / [i915#8152]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-adlp-11/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
- bat-mtlp-8: NOTRUN -> [SKIP][68] ([i915#12247] / [i915#3555] / [i915#6953]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
- bat-jsl-1: NOTRUN -> [SKIP][69] ([i915#3555] / [i915#6953])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-jsl-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
- bat-arls-1: NOTRUN -> [SKIP][70] ([i915#6953]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-arls-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
- bat-mtlp-6: NOTRUN -> [SKIP][71] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9792]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a:
- fi-kbl-guc: NOTRUN -> [SKIP][72] +131 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-kbl-guc/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- bat-dg2-9: NOTRUN -> [SKIP][73] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-dg2-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-d:
- bat-adlm-1: NOTRUN -> [SKIP][74] ([i915#8152]) +49 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-adlm-1/igt@kms_plane_scaling@planes-upscale-20x20@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25:
- bat-dg2-9: NOTRUN -> [SKIP][75] ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-dg2-9/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- bat-mtlp-8: NOTRUN -> [SKIP][76] ([i915#12247] / [i915#6953]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
- bat-arls-5: NOTRUN -> [SKIP][77] ([i915#6953]) +3 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-arls-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
- bat-mtlp-6: NOTRUN -> [SKIP][78] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9792]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a:
- fi-kbl-8809g: NOTRUN -> [SKIP][79] +131 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-kbl-8809g/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- bat-arlh-2: NOTRUN -> [SKIP][80] ([i915#11346] / [i915#12247]) +14 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-arlh-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-c:
- bat-dg2-9: NOTRUN -> [SKIP][81] ([i915#12247]) +98 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-dg2-9/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-c.html
- fi-kbl-x1275: NOTRUN -> [SKIP][82] +131 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-kbl-x1275/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-c.html
#### Possible fixes ####
* igt@i915_selftest@live:
- fi-glk-j4005: [ABORT][83] -> [PASS][84]
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15449/fi-glk-j4005/igt@i915_selftest@live.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-glk-j4005/igt@i915_selftest@live.html
* igt@i915_selftest@live@execlists:
- fi-glk-j4005: [ABORT][85] ([i915#11022]) -> [PASS][86]
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15449/fi-glk-j4005/igt@i915_selftest@live@execlists.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-glk-j4005/igt@i915_selftest@live@execlists.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#11022]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11022
[i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3558]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3558
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9500
[i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8034 -> IGTPW_11816
CI-20190529: 20190529
CI_DRM_15449: f82c02cc01798312082cc41feaa473538e517c7b @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11816: 59a5ad188a60b8497884da8b4c90add33ca648ab @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8034: 73eed10d50c7d1f07df07214ae62924d4e377e12 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/index.html
[-- Attachment #2: Type: text/html, Size: 35690 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ CI.xeBAT: failure for tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix (rev3)
2024-09-26 18:11 [PATCH i-g-t v3 0/3] tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix Naladala Ramanaidu
` (3 preceding siblings ...)
2024-09-26 19:09 ` ✗ Fi.CI.BAT: failure for tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix (rev3) Patchwork
@ 2024-09-26 19:21 ` Patchwork
2024-09-27 19:56 ` ✗ CI.xeFULL: " Patchwork
` (6 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-09-26 19:21 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4764 bytes --]
== Series Details ==
Series: tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix (rev3)
URL : https://patchwork.freedesktop.org/series/139049/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8034_BAT -> XEIGTPW_11816_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11816_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11816_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11816_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c:
- bat-lnl-2: NOTRUN -> [SKIP][1] +28 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/bat-lnl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d:
- {bat-bmg-2}: NOTRUN -> [SKIP][2] +44 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/bat-bmg-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d.html
Known issues
------------
Here are the changes found in XEIGTPW_11816_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format:
- bat-pvc-2: NOTRUN -> [SKIP][3] ([Intel XE#1024]) +32 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/bat-pvc-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
- bat-adlp-vf: NOTRUN -> [SKIP][4] ([Intel XE#2463]) +32 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/bat-adlp-vf/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format:
- bat-atsm-2: NOTRUN -> [SKIP][5] ([Intel XE#1024]) +32 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/bat-atsm-2/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a:
- bat-lnl-2: NOTRUN -> [SKIP][6] ([Intel XE#2763]) +102 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/bat-lnl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a:
- bat-lnl-1: NOTRUN -> [SKIP][7] ([Intel XE#2763]) +45 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/bat-lnl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c:
- bat-bmg-1: NOTRUN -> [SKIP][8] ([Intel XE#2763]) +19 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/bat-bmg-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024
[Intel XE#2463]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2463
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
Build changes
-------------
* IGT: IGT_8034 -> IGTPW_11816
* Linux: xe-1980-ec87b409d3a9358c9a079186d528fad3f7d64334 -> xe-1981-f82c02cc01798312082cc41feaa473538e517c7b
IGTPW_11816: 59a5ad188a60b8497884da8b4c90add33ca648ab @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8034: 73eed10d50c7d1f07df07214ae62924d4e377e12 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1980-ec87b409d3a9358c9a079186d528fad3f7d64334: ec87b409d3a9358c9a079186d528fad3f7d64334
xe-1981-f82c02cc01798312082cc41feaa473538e517c7b: f82c02cc01798312082cc41feaa473538e517c7b
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/index.html
[-- Attachment #2: Type: text/html, Size: 5784 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [i-g-t, v3, 2/3] tests/kms_plane_scaling: Improve error handling in kms_plane_scaling tests
2024-09-26 18:11 ` [PATCH i-g-t v3 2/3] tests/kms_plane_scaling: Improve error handling in kms_plane_scaling tests Naladala Ramanaidu
@ 2024-09-27 17:40 ` Joshi, Kunal1
0 siblings, 0 replies; 14+ messages in thread
From: Joshi, Kunal1 @ 2024-09-27 17:40 UTC (permalink / raw)
To: Naladala Ramanaidu, igt-dev
On 26-09-2024 23:41, Naladala Ramanaidu wrote:
> Refactor error handling in test_planes_scaling_combo to use break
> statements instead of immediate returns. This ensures cleanup_fbs
> is always called before exiting the loop. Additionally, adjust log
> message formatting in igt_main_args for consistency.
>
> Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>
> ---
> tests/kms_plane_scaling.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
> index 96ceedee2..a55720ed9 100644
> --- a/tests/kms_plane_scaling.c
> +++ b/tests/kms_plane_scaling.c
> @@ -998,12 +998,12 @@ test_planes_scaling_combo(data_t *d, double sf_plane1,
> pipe, output, p1, p2,
> &d->fb[1], &d->fb[2],
> test_type);
> - if (ret != 0) {
> - cleanup_fbs(d);
> - return ret;
> - }
> + if (ret != 0)
> + break;
> }
> cleanup_fbs(d);
> + if (ret == 0)
> + break;
> }
> return ret;
> }
> @@ -1543,7 +1543,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> scaler_with_2_planes_tests[index].test_type);
> if (ret == 0)
> break;
> - igt_info("Required Scaling operation not supported on %s trying on next output\n",
> + igt_info("Required scaling operation not supported on %s trying on next output\n",
> igt_output_name(output));
> }
> igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ CI.xeFULL: failure for tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix (rev3)
2024-09-26 18:11 [PATCH i-g-t v3 0/3] tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix Naladala Ramanaidu
` (4 preceding siblings ...)
2024-09-26 19:21 ` ✗ CI.xeBAT: " Patchwork
@ 2024-09-27 19:56 ` Patchwork
2024-10-01 13:35 ` ✗ Fi.CI.BAT: " Patchwork
` (5 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-09-27 19:56 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 54435 bytes --]
== Series Details ==
Series: tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix (rev3)
URL : https://patchwork.freedesktop.org/series/139049/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8034_full -> XEIGTPW_11816_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11816_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11816_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11816_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_atomic_transition@plane-all-transition-fencing:
- shard-lnl: [PASS][1] -> [FAIL][2] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-lnl-5/igt@kms_atomic_transition@plane-all-transition-fencing.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-5/igt@kms_atomic_transition@plane-all-transition-fencing.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-dp-4.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-lnl: NOTRUN -> [SKIP][4] +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-8/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][5] +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@xe_exec_fault_mode@many-execqueues-userptr-imm.html
#### Warnings ####
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][6] ([Intel XE#1195]) -> [INCOMPLETE][7]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2-set2: [SKIP][8] ([Intel XE#1201]) -> [SKIP][9] +4 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-466/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_async_flips@crc@pipe-b-hdmi-a-3:
- {shard-bmg}: [FAIL][10] ([Intel XE#1288]) -> [DMESG-FAIL][11]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-bmg-5/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-bmg-5/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3:
- {shard-bmg}: [PASS][12] -> [INCOMPLETE][13] +1 other test incomplete
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-bmg-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-bmg-8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3.html
Known issues
------------
Here are the changes found in XEIGTPW_11816_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: [PASS][14] -> [FAIL][15] ([Intel XE#911]) +3 other tests fail
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1407])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-5/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@linear-64bpp-rotate-180:
- shard-lnl: NOTRUN -> [DMESG-WARN][17] ([Intel XE#1725])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-4/igt@kms_big_fb@linear-64bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#1201] / [Intel XE#316])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-464/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1124])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1124] / [Intel XE#1201]) +2 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-464/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1512])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-3/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1201] / [Intel XE#367])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1399]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-7/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1201] / [Intel XE#787]) +13 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-464/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-464/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#2669]) +3 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-3/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#787]) +13 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#1201] / [Intel XE#306])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-464/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#373]) +4 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-2/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#455])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#309])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-3/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@torture-move@pipe-b:
- shard-dg2-set2: [PASS][34] -> [DMESG-WARN][35] ([Intel XE#877]) +1 other test dmesg-warn
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-464/igt@kms_cursor_legacy@torture-move@pipe-b.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-436/igt@kms_cursor_legacy@torture-move@pipe-b.html
* igt@kms_flip@wf_vblank-ts-check@b-edp1:
- shard-lnl: [PASS][36] -> [FAIL][37] ([Intel XE#886]) +1 other test fail
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@b-edp1.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-1/igt@kms_flip@wf_vblank-ts-check@b-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1401] / [Intel XE#1745])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1401])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#1201] / [Intel XE#651]) +6 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#651]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbcdrrs-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#651])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#656]) +9 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#1201] / [Intel XE#653]) +8 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [PASS][45] -> [SKIP][46] ([Intel XE#1201] / [Intel XE#455])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-466/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-2:
- shard-lnl: [PASS][47] -> [DMESG-WARN][48] ([Intel XE#324])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-lnl-3/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-2.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-5/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-2.html
* igt@kms_plane_lowres@tiling-y:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#599]) +3 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-3/igt@kms_plane_lowres@tiling-y.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: [PASS][50] -> [FAIL][51] ([Intel XE#2029])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-5/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_psr2_sf@cursor-plane-update-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#1489])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_psr2_sf@cursor-plane-update-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [FAIL][53] ([Intel XE#2880]) +2 other tests fail
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-8/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-pr-cursor-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#1201] / [Intel XE#2850]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-464/igt@kms_psr@fbc-pr-cursor-blt.html
* igt@kms_psr@pr-dpms:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1406])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-8/igt@kms_psr@pr-dpms.html
* igt@kms_psr@psr-sprite-blt@edp-1:
- shard-lnl: NOTRUN -> [FAIL][56] ([Intel XE#1649]) +1 other test fail
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-5/igt@kms_psr@psr-sprite-blt@edp-1.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#1201] / [Intel XE#327])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-434/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1435])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_vrr@flip-basic-fastset:
- shard-lnl: [PASS][59] -> [FAIL][60] ([Intel XE#2443]) +1 other test fail
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-lnl-8/igt@kms_vrr@flip-basic-fastset.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-5/igt@kms_vrr@flip-basic-fastset.html
* igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-samefd:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#688]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-1/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-samefd.html
* igt@xe_exec_basic@multigpu-once-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1392])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-5/igt@xe_exec_basic@multigpu-once-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@once-bindexecqueue-userptr:
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#1201] / [Intel XE#288]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-464/igt@xe_exec_fault_mode@once-bindexecqueue-userptr.html
* igt@xe_exec_fault_mode@once-userptr-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#1201]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-434/igt@xe_exec_fault_mode@once-userptr-rebind.html
* igt@xe_live_ktest@xe_bo:
- shard-lnl: [PASS][65] -> [SKIP][66] ([Intel XE#1192])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-lnl-4/igt@xe_live_ktest@xe_bo.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-4/igt@xe_live_ktest@xe_bo.html
* igt@xe_oa@missing-sample-flags:
- shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#1201] / [Intel XE#2541]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-434/igt@xe_oa@missing-sample-flags.html
* igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][68] ([Intel XE#1173]) +1 other test fail
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-466/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html
* igt@xe_query@multigpu-query-topology:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#1201] / [Intel XE#944])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-463/igt@xe_query@multigpu-query-topology.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-dg2-set2: [PASS][70] -> [FAIL][71] ([Intel XE#2780])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-435/igt@xe_wedged@wedged-at-any-timeout.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-466/igt@xe_wedged@wedged-at-any-timeout.html
#### Possible fixes ####
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-lnl: [FAIL][72] ([Intel XE#1659]) -> [PASS][73]
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_cursor_edge_walk@64x64-right-edge:
- shard-dg2-set2: [INCOMPLETE][74] ([Intel XE#1195]) -> [PASS][75] +2 other tests pass
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-466/igt@kms_cursor_edge_walk@64x64-right-edge.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-464/igt@kms_cursor_edge_walk@64x64-right-edge.html
* igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions:
- shard-lnl: [FAIL][76] ([Intel XE#1541]) -> [PASS][77]
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-lnl-1/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-7/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible@ad-dp2-hdmi-a3:
- {shard-bmg}: [DMESG-WARN][78] ([Intel XE#877]) -> [PASS][79] +5 other tests pass
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-bmg-1/igt@kms_flip@2x-flip-vs-rmfb-interruptible@ad-dp2-hdmi-a3.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-bmg-4/igt@kms_flip@2x-flip-vs-rmfb-interruptible@ad-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1:
- shard-lnl: [FAIL][80] ([Intel XE#886]) -> [PASS][81] +3 other tests pass
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-lnl-8/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-3/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html
* igt@kms_plane@plane-position-covered:
- shard-lnl: [DMESG-FAIL][82] ([Intel XE#324]) -> [PASS][83] +1 other test pass
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-lnl-7/igt@kms_plane@plane-position-covered.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-8/igt@kms_plane@plane-position-covered.html
* igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-2:
- shard-lnl: [DMESG-WARN][84] ([Intel XE#324]) -> [PASS][85] +1 other test pass
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-lnl-3/igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-2.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-5/igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-2.html
* igt@kms_plane_cursor@overlay:
- shard-lnl: [DMESG-WARN][86] -> [PASS][87] +1 other test pass
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-lnl-3/igt@kms_plane_cursor@overlay.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-3/igt@kms_plane_cursor@overlay.html
* igt@kms_plane_cursor@viewport:
- shard-dg2-set2: [FAIL][88] ([Intel XE#616]) -> [PASS][89] +2 other tests pass
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-463/igt@kms_plane_cursor@viewport.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-466/igt@kms_plane_cursor@viewport.html
* igt@kms_plane_lowres@tiling-4@pipe-b-hdmi-a-3:
- {shard-bmg}: [INCOMPLETE][90] -> [PASS][91] +1 other test pass
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-bmg-4/igt@kms_plane_lowres@tiling-4@pipe-b-hdmi-a-3.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-bmg-3/igt@kms_plane_lowres@tiling-4@pipe-b-hdmi-a-3.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-lnl: [SKIP][92] -> [PASS][93]
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-lnl-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_setmode@basic:
- shard-lnl: [FAIL][94] ([Intel XE#2883]) -> [PASS][95] +1 other test pass
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-lnl-1/igt@kms_setmode@basic.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-2/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [FAIL][96] -> [PASS][97]
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-lnl-1/igt@kms_setmode@basic@pipe-b-edp-1.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-2/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_vblank@accuracy-idle:
- shard-lnl: [FAIL][98] ([Intel XE#1523]) -> [PASS][99] +1 other test pass
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-lnl-5/igt@kms_vblank@accuracy-idle.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-3/igt@kms_vblank@accuracy-idle.html
* igt@kms_vrr@flipline:
- shard-lnl: [FAIL][100] ([Intel XE#2443]) -> [PASS][101] +1 other test pass
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-lnl-1/igt@kms_vrr@flipline.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-8/igt@kms_vrr@flipline.html
* igt@xe_oa@oa-exponents:
- {shard-bmg}: [FAIL][102] ([Intel XE#2723]) -> [PASS][103]
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-bmg-1/igt@xe_oa@oa-exponents.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-bmg-5/igt@xe_oa@oa-exponents.html
- shard-lnl: [FAIL][104] ([Intel XE#2723]) -> [PASS][105]
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-lnl-2/igt@xe_oa@oa-exponents.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-7/igt@xe_oa@oa-exponents.html
* igt@xe_oa@oa-regs-whitelisted:
- shard-lnl: [FAIL][106] ([Intel XE#2514]) -> [PASS][107]
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-lnl-4/igt@xe_oa@oa-regs-whitelisted.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-7/igt@xe_oa@oa-regs-whitelisted.html
* igt@xe_oa@oa-regs-whitelisted@rcs-0:
- {shard-bmg}: [FAIL][108] ([Intel XE#2514]) -> [PASS][109] +1 other test pass
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-bmg-5/igt@xe_oa@oa-regs-whitelisted@rcs-0.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-bmg-2/igt@xe_oa@oa-regs-whitelisted@rcs-0.html
* igt@xe_pm@s4-mocs:
- shard-lnl: [ABORT][110] ([Intel XE#1794]) -> [PASS][111]
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-lnl-2/igt@xe_pm@s4-mocs.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-4/igt@xe_pm@s4-mocs.html
#### Warnings ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs:
- shard-dg2-set2: [SKIP][112] ([Intel XE#1201] / [Intel XE#801]) -> [SKIP][113] ([Intel XE#801]) +23 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-436/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-dg2-set2: [SKIP][114] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][115] ([Intel XE#316]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-464/igt@kms_big_fb@linear-16bpp-rotate-270.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][116] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][117] ([Intel XE#1124]) +7 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-464/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][118] ([Intel XE#1201] / [Intel XE#607]) -> [SKIP][119] ([Intel XE#607])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: [SKIP][120] ([Intel XE#1124]) -> [SKIP][121] ([Intel XE#1124] / [Intel XE#1201]) +2 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-464/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: [SKIP][122] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][123] ([Intel XE#367]) +2 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-435/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-4:
- shard-dg2-set2: [SKIP][124] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][125] ([Intel XE#787]) +55 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-433/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-4.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][126] ([Intel XE#1201] / [Intel XE#1252]) -> [SKIP][127] ([Intel XE#1252])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [DMESG-FAIL][128] ([Intel XE#1638] / [Intel XE#1760]) -> [INCOMPLETE][129] ([Intel XE#1195] / [Intel XE#1727])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [DMESG-FAIL][130] ([Intel XE#1638] / [Intel XE#1760]) -> [INCOMPLETE][131] ([Intel XE#1195])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: [SKIP][132] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][133] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-dp-4:
- shard-dg2-set2: [SKIP][134] ([Intel XE#787]) -> [SKIP][135] ([Intel XE#1201] / [Intel XE#787]) +20 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-432/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-dp-4.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-464/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][136] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][137] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +5 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-432/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-464/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: [SKIP][138] ([Intel XE#1152] / [Intel XE#1201]) -> [SKIP][139] ([Intel XE#1152]) +3 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-436/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: [SKIP][140] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][141] ([Intel XE#306])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-464/igt@kms_chamelium_color@ctm-limited-range.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-dg2-set2: [SKIP][142] ([Intel XE#373]) -> [SKIP][143] ([Intel XE#1201] / [Intel XE#373]) +1 other test skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-432/igt@kms_chamelium_edid@hdmi-mode-timings.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-433/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-dg2-set2: [SKIP][144] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][145] ([Intel XE#373]) +7 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2-set2: [SKIP][146] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][147] ([Intel XE#308])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [SKIP][148] ([Intel XE#1201] / [i915#3804]) -> [SKIP][149] ([i915#3804])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-433/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: [SKIP][150] ([Intel XE#1201] / [Intel XE#776]) -> [SKIP][151] ([Intel XE#776])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-463/igt@kms_fbcon_fbt@psr.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_fbcon_fbt@psr.html
* igt@kms_flip@bo-too-big-interruptible@a-edp1:
- shard-lnl: [INCOMPLETE][152] ([Intel XE#1504]) -> [TIMEOUT][153] ([Intel XE#1504]) +1 other test timeout
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-lnl-8/igt@kms_flip@bo-too-big-interruptible@a-edp1.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-1/igt@kms_flip@bo-too-big-interruptible@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2-set2: [SKIP][154] ([Intel XE#455]) -> [SKIP][155] ([Intel XE#1201] / [Intel XE#455]) +2 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: [SKIP][156] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][157] ([Intel XE#455]) +8 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
- shard-dg2-set2: [SKIP][158] ([Intel XE#651]) -> [SKIP][159] ([Intel XE#1201] / [Intel XE#651]) +6 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][160] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][161] ([Intel XE#651]) +23 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: [SKIP][162] ([Intel XE#658]) -> [SKIP][163] ([Intel XE#1201] / [Intel XE#658])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-slowdraw:
- shard-dg2-set2: [SKIP][164] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][165] ([Intel XE#653]) +24 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2-set2: [SKIP][166] ([Intel XE#1201] / [Intel XE#658]) -> [SKIP][167] ([Intel XE#658])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
- shard-dg2-set2: [SKIP][168] ([Intel XE#653]) -> [SKIP][169] ([Intel XE#1201] / [Intel XE#653]) +6 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-dg2-set2: [SKIP][170] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][171] ([Intel XE#1201] / [Intel XE#2763] / [Intel XE#455]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b:
- shard-dg2-set2: [SKIP][172] ([Intel XE#2763]) -> [SKIP][173] ([Intel XE#1201] / [Intel XE#2763]) +2 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- shard-dg2-set2: [SKIP][174] ([Intel XE#1201] / [Intel XE#2763] / [Intel XE#455]) -> [SKIP][175] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
- shard-dg2-set2: [SKIP][176] ([Intel XE#1201] / [Intel XE#2763]) -> [SKIP][177] ([Intel XE#2763]) +5 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-435/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: [SKIP][178] ([Intel XE#1201] / [Intel XE#870]) -> [SKIP][179] ([Intel XE#870])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-464/igt@kms_pm_backlight@fade.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_pm_backlight@fade.html
* igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
- shard-dg2-set2: [SKIP][180] ([Intel XE#1201] / [Intel XE#1489]) -> [SKIP][181] ([Intel XE#1489]) +2 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-434/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area:
- shard-lnl: [SKIP][182] ([Intel XE#1489]) -> [FAIL][183] ([Intel XE#2880])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-lnl-8/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-lnl-3/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-dg2-set2: [SKIP][184] ([Intel XE#1201] / [Intel XE#2850]) -> [SKIP][185] ([Intel XE#2850]) +11 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-433/igt@kms_psr@fbc-psr-no-drrs.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr2-primary-page-flip:
- shard-dg2-set2: [SKIP][186] ([Intel XE#2850]) -> [SKIP][187] ([Intel XE#1201] / [Intel XE#2850]) +2 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-432/igt@kms_psr@fbc-psr2-primary-page-flip.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-436/igt@kms_psr@fbc-psr2-primary-page-flip.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2-set2: [SKIP][188] ([Intel XE#1127] / [Intel XE#1201]) -> [SKIP][189] ([Intel XE#1127])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2-set2: [SKIP][190] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][191] ([Intel XE#327])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-464/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][192] ([Intel XE#1201] / [Intel XE#362]) -> [SKIP][193] ([Intel XE#1201] / [Intel XE#1500])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2-set2: [SKIP][194] ([Intel XE#756]) -> [SKIP][195] ([Intel XE#1201] / [Intel XE#756])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-432/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-436/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: [SKIP][196] ([Intel XE#1201] / [Intel XE#2849]) -> [SKIP][197] ([Intel XE#2849]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-434/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute:
- shard-dg2-set2: [SKIP][198] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) -> [SKIP][199] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-464/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-dg2-set2: [TIMEOUT][200] ([Intel XE#1473]) -> [FAIL][201] ([Intel XE#1000])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-464/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-prefetch:
- shard-dg2-set2: [SKIP][202] -> [SKIP][203] ([Intel XE#1201])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-432/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-prefetch.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-436/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-prefetch.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm:
- shard-dg2-set2: [SKIP][204] ([Intel XE#288]) -> [SKIP][205] ([Intel XE#1201] / [Intel XE#288]) +4 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-432/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-466/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html
* igt@xe_exec_fault_mode@once-rebind-prefetch:
- shard-dg2-set2: [SKIP][206] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][207] ([Intel XE#288]) +14 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-433/igt@xe_exec_fault_mode@once-rebind-prefetch.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@xe_exec_fault_mode@once-rebind-prefetch.html
* igt@xe_oa@polling-small-buf:
- shard-dg2-set2: [SKIP][208] ([Intel XE#1201] / [Intel XE#2541]) -> [SKIP][209] ([Intel XE#2541]) +5 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-435/igt@xe_oa@polling-small-buf.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@xe_oa@polling-small-buf.html
* igt@xe_pm@d3cold-mmap-system:
- shard-dg2-set2: [SKIP][210] ([Intel XE#1201] / [Intel XE#366]) -> [SKIP][211] ([Intel XE#366])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-463/igt@xe_pm@d3cold-mmap-system.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-dg2-set2: [SKIP][212] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][213] ([Intel XE#944]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8034/shard-dg2-434/igt@xe_query@multigpu-query-invalid-cs-cycles.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/shard-dg2-432/igt@xe_query@multigpu-query-invalid-cs-cycles.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1288
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1523]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1523
[Intel XE#1541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1541
[Intel XE#1638]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1638
[Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443
[Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2723]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2723
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2780
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2880]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2880
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#801]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/801
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
Build changes
-------------
* IGT: IGT_8034 -> IGTPW_11816
* Linux: xe-1980-ec87b409d3a9358c9a079186d528fad3f7d64334 -> xe-1981-f82c02cc01798312082cc41feaa473538e517c7b
IGTPW_11816: 59a5ad188a60b8497884da8b4c90add33ca648ab @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8034: 73eed10d50c7d1f07df07214ae62924d4e377e12 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1980-ec87b409d3a9358c9a079186d528fad3f7d64334: ec87b409d3a9358c9a079186d528fad3f7d64334
xe-1981-f82c02cc01798312082cc41feaa473538e517c7b: f82c02cc01798312082cc41feaa473538e517c7b
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11816/index.html
[-- Attachment #2: Type: text/html, Size: 69622 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ Fi.CI.BAT: failure for tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix (rev3)
2024-09-26 18:11 [PATCH i-g-t v3 0/3] tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix Naladala Ramanaidu
` (5 preceding siblings ...)
2024-09-27 19:56 ` ✗ CI.xeFULL: " Patchwork
@ 2024-10-01 13:35 ` Patchwork
2024-10-07 19:01 ` ✗ GitLab.Pipeline: warning for tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix (rev4) Patchwork
` (4 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-10-01 13:35 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 28021 bytes --]
== Series Details ==
Series: tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix (rev3)
URL : https://patchwork.freedesktop.org/series/139049/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8034 -> IGTPW_11816
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11816 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11816, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/index.html
Participating hosts (38 -> 36)
------------------------------
Missing (2): fi-snb-2520m bat-adls-6
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11816:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation:
- bat-twl-2: NOTRUN -> [SKIP][1] +31 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-twl-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format:
- bat-jsl-1: NOTRUN -> [DMESG-WARN][2] +2 other tests dmesg-warn
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-jsl-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-b:
- fi-rkl-11600: NOTRUN -> [DMESG-WARN][3] +1 other test dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-rkl-11600/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a:
- bat-twl-1: NOTRUN -> [SKIP][4] +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-twl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-c:
- bat-adlm-1: NOTRUN -> [SKIP][5] +98 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-adlm-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-d:
- bat-arls-2: NOTRUN -> [SKIP][6] +50 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-arls-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a:
- bat-jsl-1: NOTRUN -> [SKIP][7] +52 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-jsl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- bat-adlp-11: NOTRUN -> [SKIP][8] +98 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-adlp-11/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-d:
- bat-arlh-2: NOTRUN -> [SKIP][9] +11 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-arlh-2/igt@kms_plane_scaling@planes-upscale-20x20@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a:
- bat-arls-5: NOTRUN -> [SKIP][10] +15 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-arls-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d:
- bat-arls-1: NOTRUN -> [SKIP][11] +15 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-arls-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- {bat-arlh-3}: NOTRUN -> [SKIP][12] +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-arlh-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
Known issues
------------
Here are the changes found in IGTPW_11816 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [PASS][13] -> [ABORT][14] ([i915#12061] / [i915#12216])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8034/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
- bat-dg2-9: [PASS][15] -> [DMESG-FAIL][16] ([i915#9500]) +1 other test dmesg-fail
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8034/bat-dg2-9/igt@i915_selftest@live@workarounds.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-dg2-9/igt@i915_selftest@live@workarounds.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- fi-ivb-3770: NOTRUN -> [SKIP][17] +131 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-ivb-3770/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
- bat-apl-1: NOTRUN -> [SKIP][18] +23 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-apl-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d:
- bat-mtlp-6: NOTRUN -> [SKIP][19] ([i915#12247] / [i915#8152]) +20 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers:
- bat-arlh-2: NOTRUN -> [SKIP][20] ([i915#11346]) +17 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-arlh-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d:
- bat-mtlp-6: NOTRUN -> [SKIP][21] ([i915#8152]) +11 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d.html
- bat-dg2-9: NOTRUN -> [SKIP][22] ([i915#8152]) +11 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-dg2-9/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats:
- bat-adlm-1: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#8152]) +3 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-adlm-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d:
- bat-adlp-11: NOTRUN -> [SKIP][24] ([i915#8152]) +49 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-adlp-11/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- bat-dg1-7: NOTRUN -> [SKIP][25] ([i915#3555])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-dg1-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
- fi-rkl-11600: NOTRUN -> [SKIP][26] ([i915#3555])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-rkl-11600/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
- bat-jsl-1: NOTRUN -> [SKIP][27] ([i915#3555])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-jsl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
- fi-tgl-1115g4: NOTRUN -> [SKIP][28] ([i915#3555])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-tgl-1115g4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a:
- fi-cfl-guc: NOTRUN -> [SKIP][29] +25 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-cfl-guc/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a.html
- bat-mtlp-6: NOTRUN -> [SKIP][30] ([i915#12247]) +98 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
- bat-dg2-9: NOTRUN -> [SKIP][31] ([i915#8152] / [i915#9423]) +7 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-dg2-9/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format:
- bat-mtlp-6: NOTRUN -> [SKIP][32] ([i915#8152] / [i915#9792]) +7 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-6/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b:
- fi-ilk-650: NOTRUN -> [SKIP][33] +98 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-ilk-650/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- fi-tgl-1115g4: NOTRUN -> [SKIP][34] ([i915#12247]) +28 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-tgl-1115g4/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b:
- fi-cfl-8109u: NOTRUN -> [SKIP][35] +25 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-cfl-8109u/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- bat-dg1-7: NOTRUN -> [SKIP][36] ([i915#12247]) +28 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-dg1-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation:
- bat-mtlp-6: NOTRUN -> [SKIP][37] ([i915#12247] / [i915#8152] / [i915#9792]) +8 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
- bat-dg2-9: NOTRUN -> [SKIP][38] ([i915#12247] / [i915#8152] / [i915#9423]) +8 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-dg2-9/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a:
- fi-rkl-11600: NOTRUN -> [SKIP][39] ([i915#12247]) +22 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-rkl-11600/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b:
- fi-glk-j4005: NOTRUN -> [SKIP][40] +23 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-glk-j4005/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
- fi-cfl-8700k: NOTRUN -> [SKIP][41] +25 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-cfl-8700k/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- bat-dg2-9: NOTRUN -> [SKIP][42] ([i915#12247] / [i915#8152]) +20 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-dg2-9/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a:
- fi-elk-e7500: NOTRUN -> [SKIP][43] +98 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-elk-e7500/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a:
- bat-mtlp-8: NOTRUN -> [SKIP][44] ([i915#12247]) +48 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- fi-blb-e6850: NOTRUN -> [SKIP][45] +32 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-blb-e6850/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
- bat-twl-2: NOTRUN -> [SKIP][46] ([i915#6953]) +3 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-twl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20:
- bat-adlm-1: NOTRUN -> [SKIP][47] ([i915#3558] / [i915#8152]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-adlm-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
- bat-mtlp-6: NOTRUN -> [SKIP][48] ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9792]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
- bat-dg2-9: NOTRUN -> [SKIP][49] ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9423]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
- bat-adlp-11: NOTRUN -> [SKIP][50] ([i915#3558] / [i915#8152]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-adlp-11/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25:
- bat-adlm-1: NOTRUN -> [SKIP][51] ([i915#6953] / [i915#8152]) +5 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-adlm-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling:
- bat-mtlp-6: NOTRUN -> [SKIP][52] ([i915#3555] / [i915#8152] / [i915#9792]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-6/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
- bat-dg2-9: NOTRUN -> [SKIP][53] ([i915#3555] / [i915#8152] / [i915#9423]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-dg2-9/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
- bat-adlp-11: NOTRUN -> [SKIP][54] ([i915#3555] / [i915#8152]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-adlp-11/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a:
- bat-kbl-2: NOTRUN -> [SKIP][55] +131 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-kbl-2/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5:
- fi-hsw-4770: NOTRUN -> [SKIP][56] +131 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-hsw-4770/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
- bat-arls-2: NOTRUN -> [SKIP][57] ([i915#6953]) +5 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-arls-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
- bat-mtlp-8: NOTRUN -> [SKIP][58] ([i915#6953]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
- bat-jsl-1: NOTRUN -> [SKIP][59] ([i915#6953]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-jsl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75:
- bat-adlm-1: NOTRUN -> [SKIP][60] ([i915#3555] / [i915#6953] / [i915#8152]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-adlm-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
- bat-mtlp-6: NOTRUN -> [SKIP][61] ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9792]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d:
- bat-arlh-2: NOTRUN -> [SKIP][62] ([i915#12247]) +119 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-arlh-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20:
- bat-mtlp-6: NOTRUN -> [SKIP][63] ([i915#6953] / [i915#8152] / [i915#9792]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-6/igt@kms_plane_scaling@planes-upscale-20x20.html
- bat-dg2-9: NOTRUN -> [SKIP][64] ([i915#6953] / [i915#8152] / [i915#9423]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-dg2-9/igt@kms_plane_scaling@planes-upscale-20x20.html
- bat-adlp-11: NOTRUN -> [SKIP][65] ([i915#6953] / [i915#8152]) +5 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-adlp-11/igt@kms_plane_scaling@planes-upscale-20x20.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
- bat-dg2-9: NOTRUN -> [SKIP][66] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-dg2-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
- bat-adlp-11: NOTRUN -> [SKIP][67] ([i915#3555] / [i915#6953] / [i915#8152]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-adlp-11/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
- bat-mtlp-8: NOTRUN -> [SKIP][68] ([i915#12247] / [i915#3555] / [i915#6953]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
- bat-jsl-1: NOTRUN -> [SKIP][69] ([i915#3555] / [i915#6953])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-jsl-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
- bat-arls-1: NOTRUN -> [SKIP][70] ([i915#6953]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-arls-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
- bat-mtlp-6: NOTRUN -> [SKIP][71] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9792]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a:
- fi-kbl-guc: NOTRUN -> [SKIP][72] +131 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-kbl-guc/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- bat-dg2-9: NOTRUN -> [SKIP][73] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-dg2-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-d:
- bat-adlm-1: NOTRUN -> [SKIP][74] ([i915#8152]) +49 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-adlm-1/igt@kms_plane_scaling@planes-upscale-20x20@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25:
- bat-dg2-9: NOTRUN -> [SKIP][75] ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-dg2-9/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- bat-mtlp-8: NOTRUN -> [SKIP][76] ([i915#12247] / [i915#6953]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
- bat-arls-5: NOTRUN -> [SKIP][77] ([i915#6953]) +3 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-arls-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
- bat-mtlp-6: NOTRUN -> [SKIP][78] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9792]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a:
- fi-kbl-8809g: NOTRUN -> [SKIP][79] +131 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-kbl-8809g/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- bat-arlh-2: NOTRUN -> [SKIP][80] ([i915#11346] / [i915#12247]) +14 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-arlh-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-c:
- bat-dg2-9: NOTRUN -> [SKIP][81] ([i915#12247]) +98 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-dg2-9/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-c.html
- fi-kbl-x1275: NOTRUN -> [SKIP][82] +131 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/fi-kbl-x1275/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-c.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-arls-2: [DMESG-WARN][83] ([i915#10341] / [i915#12133]) -> [PASS][84]
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8034/bat-arls-2/igt@i915_selftest@live.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-arls-2/igt@i915_selftest@live.html
- bat-arls-1: [DMESG-FAIL][85] ([i915#10262] / [i915#10341]) -> [PASS][86]
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8034/bat-arls-1/igt@i915_selftest@live.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-arls-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_lrc:
- bat-twl-2: [INCOMPLETE][87] ([i915#9413]) -> [PASS][88] +1 other test pass
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8034/bat-twl-2/igt@i915_selftest@live@gt_lrc.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-twl-2/igt@i915_selftest@live@gt_lrc.html
* igt@i915_selftest@live@guc_multi_lrc:
- bat-arls-1: [DMESG-FAIL][89] ([i915#10262]) -> [PASS][90] +4 other tests pass
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8034/bat-arls-1/igt@i915_selftest@live@guc_multi_lrc.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-arls-1/igt@i915_selftest@live@guc_multi_lrc.html
* igt@i915_selftest@live@hangcheck:
- bat-arls-2: [DMESG-WARN][91] ([i915#11349]) -> [PASS][92]
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8034/bat-arls-2/igt@i915_selftest@live@hangcheck.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-arls-2/igt@i915_selftest@live@hangcheck.html
* igt@i915_selftest@live@perf:
- bat-arls-1: [DMESG-WARN][93] ([i915#12133]) -> [PASS][94]
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8034/bat-arls-1/igt@i915_selftest@live@perf.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-arls-1/igt@i915_selftest@live@perf.html
#### Warnings ####
* igt@i915_selftest@live:
- bat-mtlp-6: [DMESG-WARN][95] ([i915#10341]) -> [ABORT][96] ([i915#12061] / [i915#12216])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8034/bat-mtlp-6/igt@i915_selftest@live.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/bat-mtlp-6/igt@i915_selftest@live.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10262]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10262
[i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341
[i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346
[i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
[i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3558]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3558
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152
[i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9500
[i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8034 -> IGTPW_11816
* Linux: CI_DRM_15448 -> CI_DRM_15449
CI-20190529: 20190529
CI_DRM_15448: ec87b409d3a9358c9a079186d528fad3f7d64334 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15449: f82c02cc01798312082cc41feaa473538e517c7b @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11816: 59a5ad188a60b8497884da8b4c90add33ca648ab @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8034: 73eed10d50c7d1f07df07214ae62924d4e377e12 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11816/index.html
[-- Attachment #2: Type: text/html, Size: 38257 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ GitLab.Pipeline: warning for tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix (rev4)
2024-09-26 18:11 [PATCH i-g-t v3 0/3] tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix Naladala Ramanaidu
` (6 preceding siblings ...)
2024-10-01 13:35 ` ✗ Fi.CI.BAT: " Patchwork
@ 2024-10-07 19:01 ` Patchwork
2024-10-07 19:26 ` ✗ Fi.CI.BAT: failure " Patchwork
` (3 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-10-07 19:01 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
== Series Details ==
Series: tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix (rev4)
URL : https://patchwork.freedesktop.org/series/139049/
State : warning
== Summary ==
Pipeline status: FAILED.
see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1285221 for the overview.
build:tests-debian-meson-armhf has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/64753302):
Fetching changes...
Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/
Checking out 768a2e7a as detached HEAD (ref is intel/IGTPW_11879)...
Removing build/
Removing lib/i915/perf-configs/__pycache__/
Removing lib/xe/oa-configs/__pycache__/
Removing scripts/__pycache__/
Skipping Git submodules setup
section_end:1728327256:get_sources
section_start:1728327256:step_script
Executing "step_script" stage of the job script
Using docker image sha256:4a4103f1a476d355d866b481ff96ac05a32a3a715cefcc1cbc1356a8959fb5f8 for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-armhf:commit-768a2e7a6a854559300231fbba8eb90e0d17fe94 with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-armhf@sha256:3a0ffeb305cdc6ef081dde81d86afee76102e74f76c0f7bd5685fc2457ec707b ...
$ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh
section_end:1728327258:step_script
section_start:1728327258:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1728327261:cleanup_file_variables
ERROR: Job failed: exit code 137
== Logs ==
For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1285221
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ Fi.CI.BAT: failure for tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix (rev4)
2024-09-26 18:11 [PATCH i-g-t v3 0/3] tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix Naladala Ramanaidu
` (7 preceding siblings ...)
2024-10-07 19:01 ` ✗ GitLab.Pipeline: warning for tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix (rev4) Patchwork
@ 2024-10-07 19:26 ` Patchwork
2024-10-07 19:34 ` ✗ CI.xeBAT: " Patchwork
` (2 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-10-07 19:26 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 29131 bytes --]
== Series Details ==
Series: tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix (rev4)
URL : https://patchwork.freedesktop.org/series/139049/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8054 -> IGTPW_11879
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11879 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11879, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/index.html
Participating hosts (43 -> 42)
------------------------------
Missing (1): bat-rpls-4
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11879:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation:
- bat-twl-2: NOTRUN -> [SKIP][1] +31 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-twl-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format:
- bat-jsl-3: NOTRUN -> [DMESG-WARN][2] +2 other tests dmesg-warn
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-jsl-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
- bat-jsl-1: NOTRUN -> [DMESG-WARN][3] +2 other tests dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-jsl-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-b:
- fi-rkl-11600: NOTRUN -> [DMESG-WARN][4] +1 other test dmesg-warn
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/fi-rkl-11600/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a:
- bat-adls-6: NOTRUN -> [SKIP][5] +23 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-adls-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a:
- bat-twl-1: NOTRUN -> [SKIP][6] +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-twl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- bat-jsl-3: NOTRUN -> [SKIP][7] +52 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-jsl-3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-c:
- bat-adlm-1: NOTRUN -> [SKIP][8] +98 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-adlm-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a:
- bat-jsl-1: NOTRUN -> [SKIP][9] +52 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-jsl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- bat-adlp-11: NOTRUN -> [SKIP][10] +98 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-adlp-11/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-d:
- bat-arlh-2: NOTRUN -> [SKIP][11] +11 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-arlh-2/igt@kms_plane_scaling@planes-upscale-20x20@pipe-d.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a:
- {bat-dg1-6}: NOTRUN -> [SKIP][12] +164 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-dg1-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- {bat-arlh-3}: NOTRUN -> [SKIP][13] +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-arlh-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
Known issues
------------
Here are the changes found in IGTPW_11879 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-arls-2: [PASS][14] -> [ABORT][15] ([i915#12061] / [i915#12133])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8054/bat-arls-2/igt@i915_selftest@live.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-arls-2/igt@i915_selftest@live.html
- bat-mtlp-8: [PASS][16] -> [ABORT][17] ([i915#12061] / [i915#12216]) +1 other test abort
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8054/bat-mtlp-8/igt@i915_selftest@live.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-mtlp-8/igt@i915_selftest@live.html
- bat-arlh-2: [PASS][18] -> [ABORT][19] ([i915#12061] / [i915#12133])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8054/bat-arlh-2/igt@i915_selftest@live.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-arlh-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-2: [PASS][20] -> [ABORT][21] ([i915#12061])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8054/bat-arlh-2/igt@i915_selftest@live@workarounds.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-arlh-2/igt@i915_selftest@live@workarounds.html
- bat-arls-2: [PASS][22] -> [ABORT][23] ([i915#12061])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8054/bat-arls-2/igt@i915_selftest@live@workarounds.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-arls-2/igt@i915_selftest@live@workarounds.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- fi-bsw-n3050: NOTRUN -> [SKIP][24] +131 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/fi-bsw-n3050/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- fi-ivb-3770: NOTRUN -> [SKIP][25] +131 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/fi-ivb-3770/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
- bat-apl-1: NOTRUN -> [SKIP][26] +23 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-apl-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d:
- bat-mtlp-6: NOTRUN -> [SKIP][27] ([i915#12247] / [i915#8152]) +20 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-mtlp-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c:
- fi-bsw-nick: NOTRUN -> [SKIP][28] +131 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/fi-bsw-nick/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers:
- bat-arlh-2: NOTRUN -> [SKIP][29] ([i915#11346]) +17 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-arlh-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d:
- bat-mtlp-6: NOTRUN -> [SKIP][30] ([i915#8152]) +11 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-mtlp-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d.html
- bat-dg2-9: NOTRUN -> [SKIP][31] ([i915#8152]) +11 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-dg2-9/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats:
- bat-adlm-1: NOTRUN -> [SKIP][32] ([i915#3555] / [i915#8152]) +3 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-adlm-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d:
- bat-adlp-11: NOTRUN -> [SKIP][33] ([i915#8152]) +49 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-adlp-11/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- bat-dg1-7: NOTRUN -> [SKIP][34] ([i915#3555])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-dg1-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
- fi-rkl-11600: NOTRUN -> [SKIP][35] ([i915#3555])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/fi-rkl-11600/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
- bat-jsl-3: NOTRUN -> [SKIP][36] ([i915#3555])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-jsl-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
- bat-adls-6: NOTRUN -> [SKIP][37] ([i915#3555] / [i915#9423])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-adls-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
- bat-jsl-1: NOTRUN -> [SKIP][38] ([i915#3555])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-jsl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
- fi-tgl-1115g4: NOTRUN -> [SKIP][39] ([i915#3555])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/fi-tgl-1115g4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a:
- fi-cfl-guc: NOTRUN -> [SKIP][40] +25 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/fi-cfl-guc/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a.html
- bat-mtlp-6: NOTRUN -> [SKIP][41] ([i915#12247]) +98 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-mtlp-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
- bat-dg2-9: NOTRUN -> [SKIP][42] ([i915#8152] / [i915#9423]) +7 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-dg2-9/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format:
- bat-mtlp-6: NOTRUN -> [SKIP][43] ([i915#8152] / [i915#9792]) +7 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-mtlp-6/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b:
- fi-ilk-650: NOTRUN -> [SKIP][44] +98 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/fi-ilk-650/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- fi-tgl-1115g4: NOTRUN -> [SKIP][45] ([i915#12247]) +28 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/fi-tgl-1115g4/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b:
- fi-cfl-8109u: NOTRUN -> [SKIP][46] +25 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/fi-cfl-8109u/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html
- fi-kbl-7567u: NOTRUN -> [SKIP][47] +25 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/fi-kbl-7567u/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- bat-dg1-7: NOTRUN -> [SKIP][48] ([i915#12247]) +28 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-dg1-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation:
- bat-mtlp-6: NOTRUN -> [SKIP][49] ([i915#12247] / [i915#8152] / [i915#9792]) +8 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-mtlp-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
- bat-dg2-9: NOTRUN -> [SKIP][50] ([i915#12247] / [i915#8152] / [i915#9423]) +8 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-dg2-9/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
- bat-adls-6: NOTRUN -> [SKIP][51] ([i915#9423]) +4 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-adls-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a:
- fi-rkl-11600: NOTRUN -> [SKIP][52] ([i915#12247]) +22 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/fi-rkl-11600/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b:
- fi-glk-j4005: NOTRUN -> [SKIP][53] +23 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/fi-glk-j4005/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
- fi-cfl-8700k: NOTRUN -> [SKIP][54] +25 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/fi-cfl-8700k/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- bat-dg2-9: NOTRUN -> [SKIP][55] ([i915#12247] / [i915#8152]) +20 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-dg2-9/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a:
- fi-elk-e7500: NOTRUN -> [SKIP][56] +98 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/fi-elk-e7500/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a:
- bat-mtlp-8: NOTRUN -> [SKIP][57] ([i915#12247]) +48 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- fi-blb-e6850: NOTRUN -> [SKIP][58] +32 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/fi-blb-e6850/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
- bat-jsl-3: NOTRUN -> [SKIP][59] ([i915#6953]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-jsl-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
- bat-twl-2: NOTRUN -> [SKIP][60] ([i915#6953]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-twl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-d:
- bat-arls-2: NOTRUN -> [SKIP][61] ([i915#12247]) +50 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-arls-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20:
- bat-adlm-1: NOTRUN -> [SKIP][62] ([i915#3558] / [i915#8152]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-adlm-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
- bat-mtlp-6: NOTRUN -> [SKIP][63] ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9792]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
- bat-dg2-9: NOTRUN -> [SKIP][64] ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9423]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
- bat-adlp-11: NOTRUN -> [SKIP][65] ([i915#3558] / [i915#8152]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-adlp-11/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25:
- bat-adlm-1: NOTRUN -> [SKIP][66] ([i915#6953] / [i915#8152]) +5 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-adlm-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling:
- bat-mtlp-6: NOTRUN -> [SKIP][67] ([i915#3555] / [i915#8152] / [i915#9792]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-mtlp-6/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
- bat-dg2-9: NOTRUN -> [SKIP][68] ([i915#3555] / [i915#8152] / [i915#9423]) +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-dg2-9/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
- bat-adlp-11: NOTRUN -> [SKIP][69] ([i915#3555] / [i915#8152]) +3 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-adlp-11/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a:
- bat-kbl-2: NOTRUN -> [SKIP][70] +131 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-kbl-2/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5:
- fi-hsw-4770: NOTRUN -> [SKIP][71] +131 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/fi-hsw-4770/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
- bat-arls-2: NOTRUN -> [SKIP][72] ([i915#6953]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-arls-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
- bat-mtlp-8: NOTRUN -> [SKIP][73] ([i915#6953]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-mtlp-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
- bat-jsl-1: NOTRUN -> [SKIP][74] ([i915#6953]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-jsl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75:
- bat-adlm-1: NOTRUN -> [SKIP][75] ([i915#3555] / [i915#6953] / [i915#8152]) +3 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-adlm-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
- bat-mtlp-6: NOTRUN -> [SKIP][76] ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9792]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-mtlp-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d:
- bat-arlh-2: NOTRUN -> [SKIP][77] ([i915#12247]) +119 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-arlh-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20:
- bat-mtlp-6: NOTRUN -> [SKIP][78] ([i915#6953] / [i915#8152] / [i915#9792]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-mtlp-6/igt@kms_plane_scaling@planes-upscale-20x20.html
- bat-dg2-9: NOTRUN -> [SKIP][79] ([i915#6953] / [i915#8152] / [i915#9423]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-dg2-9/igt@kms_plane_scaling@planes-upscale-20x20.html
- bat-adlp-11: NOTRUN -> [SKIP][80] ([i915#6953] / [i915#8152]) +5 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-adlp-11/igt@kms_plane_scaling@planes-upscale-20x20.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
- bat-jsl-3: NOTRUN -> [SKIP][81] ([i915#3555] / [i915#6953])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-jsl-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
- bat-dg2-9: NOTRUN -> [SKIP][82] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-dg2-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
- bat-adlp-11: NOTRUN -> [SKIP][83] ([i915#3555] / [i915#6953] / [i915#8152]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-adlp-11/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
- bat-mtlp-8: NOTRUN -> [SKIP][84] ([i915#12247] / [i915#3555] / [i915#6953]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
- bat-jsl-1: NOTRUN -> [SKIP][85] ([i915#3555] / [i915#6953])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-jsl-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
- bat-arls-1: NOTRUN -> [SKIP][86] ([i915#12247] / [i915#6953]) +3 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-arls-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
- bat-mtlp-6: NOTRUN -> [SKIP][87] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9792]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-mtlp-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a:
- fi-kbl-guc: NOTRUN -> [SKIP][88] +131 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/fi-kbl-guc/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- bat-dg2-9: NOTRUN -> [SKIP][89] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-dg2-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-d:
- bat-adlm-1: NOTRUN -> [SKIP][90] ([i915#8152]) +49 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-adlm-1/igt@kms_plane_scaling@planes-upscale-20x20@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25:
- bat-dg2-9: NOTRUN -> [SKIP][91] ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-dg2-9/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- bat-arls-2: NOTRUN -> [SKIP][92] ([i915#12247] / [i915#6953]) +3 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-arls-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
- bat-mtlp-8: NOTRUN -> [SKIP][93] ([i915#12247] / [i915#6953]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-mtlp-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
- bat-arls-5: NOTRUN -> [SKIP][94] ([i915#12247] / [i915#6953]) +3 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-arls-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
- bat-mtlp-6: NOTRUN -> [SKIP][95] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9792]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-mtlp-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a:
- bat-arls-5: NOTRUN -> [SKIP][96] ([i915#12247]) +15 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-arls-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- bat-arlh-2: NOTRUN -> [SKIP][97] ([i915#11346] / [i915#12247]) +14 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-arlh-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d:
- bat-arls-1: NOTRUN -> [SKIP][98] ([i915#12247]) +15 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-arls-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-c:
- bat-dg2-9: NOTRUN -> [SKIP][99] ([i915#12247]) +98 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/bat-dg2-9/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-c.html
- fi-kbl-x1275: NOTRUN -> [SKIP][100] +131 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/fi-kbl-x1275/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-c.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
[i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3558]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3558
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8054 -> IGTPW_11879
* Linux: CI_DRM_15484 -> CI_DRM_15485
CI-20190529: 20190529
CI_DRM_15484: 92d12099cc768f36cf676ee1b014442a5c5ba965 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15485: 39a016b276ce8adac629cc6c31892d0b7d2af634 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11879: 768a2e7a6a854559300231fbba8eb90e0d17fe94 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8054: 3f627b7fd48c6ab324ceaa80dd8cf0131292bf63 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11879/index.html
[-- Attachment #2: Type: text/html, Size: 40363 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ CI.xeBAT: failure for tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix (rev4)
2024-09-26 18:11 [PATCH i-g-t v3 0/3] tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix Naladala Ramanaidu
` (8 preceding siblings ...)
2024-10-07 19:26 ` ✗ Fi.CI.BAT: failure " Patchwork
@ 2024-10-07 19:34 ` Patchwork
2024-10-08 8:12 ` ✗ CI.xeFULL: " Patchwork
2024-10-15 9:44 ` ✗ Fi.CI.BUILD: failure for tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix (rev5) Patchwork
11 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-10-07 19:34 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5419 bytes --]
== Series Details ==
Series: tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix (rev4)
URL : https://patchwork.freedesktop.org/series/139049/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8054_BAT -> XEIGTPW_11879_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11879_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11879_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11879_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c:
- bat-lnl-2: NOTRUN -> [SKIP][1] +15 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/bat-lnl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d:
- {bat-bmg-2}: NOTRUN -> [SKIP][2] +31 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/bat-bmg-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d.html
Known issues
------------
Here are the changes found in XEIGTPW_11879_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format:
- bat-pvc-2: NOTRUN -> [SKIP][3] ([Intel XE#1024]) +32 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/bat-pvc-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
- bat-adlp-vf: NOTRUN -> [SKIP][4] ([Intel XE#2463]) +32 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/bat-adlp-vf/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format:
- bat-atsm-2: NOTRUN -> [SKIP][5] ([Intel XE#1024]) +32 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/bat-atsm-2/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation:
- bat-lnl-2: NOTRUN -> [SKIP][6] ([Intel XE#2381]) +12 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/bat-lnl-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling:
- bat-lnl-2: NOTRUN -> [SKIP][7] ([Intel XE#2381] / [Intel XE#2763]) +19 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/bat-lnl-2/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a:
- bat-lnl-2: NOTRUN -> [SKIP][8] ([Intel XE#2763]) +82 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/bat-lnl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a:
- bat-lnl-1: NOTRUN -> [SKIP][9] ([Intel XE#2763]) +45 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/bat-lnl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c:
- bat-bmg-1: NOTRUN -> [SKIP][10] ([Intel XE#2763]) +19 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/bat-bmg-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024
[Intel XE#2381]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2381
[Intel XE#2463]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2463
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
Build changes
-------------
* IGT: IGT_8054 -> IGTPW_11879
* Linux: xe-2016-92d12099cc768f36cf676ee1b014442a5c5ba965 -> xe-2017-39a016b276ce8adac629cc6c31892d0b7d2af634
IGTPW_11879: 768a2e7a6a854559300231fbba8eb90e0d17fe94 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8054: 3f627b7fd48c6ab324ceaa80dd8cf0131292bf63 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2016-92d12099cc768f36cf676ee1b014442a5c5ba965: 92d12099cc768f36cf676ee1b014442a5c5ba965
xe-2017-39a016b276ce8adac629cc6c31892d0b7d2af634: 39a016b276ce8adac629cc6c31892d0b7d2af634
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/index.html
[-- Attachment #2: Type: text/html, Size: 6630 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ CI.xeFULL: failure for tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix (rev4)
2024-09-26 18:11 [PATCH i-g-t v3 0/3] tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix Naladala Ramanaidu
` (9 preceding siblings ...)
2024-10-07 19:34 ` ✗ CI.xeBAT: " Patchwork
@ 2024-10-08 8:12 ` Patchwork
2024-10-15 9:44 ` ✗ Fi.CI.BUILD: failure for tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix (rev5) Patchwork
11 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-10-08 8:12 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 45582 bytes --]
== Series Details ==
Series: tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix (rev4)
URL : https://patchwork.freedesktop.org/series/139049/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8054_full -> XEIGTPW_11879_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11879_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11879_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11879_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling:
- shard-lnl: [PASS][1] -> [FAIL][2] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-dg2-set2: [PASS][3] -> [INCOMPLETE][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@xe_module_load@many-reload:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][5]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-433/igt@xe_module_load@many-reload.html
#### Warnings ####
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: [INCOMPLETE][6] ([Intel XE#1195]) -> [TIMEOUT][7] +1 other test timeout
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-435/igt@xe_live_ktest@xe_bo.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-436/igt@xe_live_ktest@xe_bo.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_pm_rpm@modeset-non-lpsp:
- {shard-bmg}: [PASS][8] -> [SKIP][9]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-bmg-4/igt@kms_pm_rpm@modeset-non-lpsp.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-bmg-7/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@xe_module_load@many-reload:
- {shard-bmg}: NOTRUN -> [DMESG-WARN][10]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-bmg-7/igt@xe_module_load@many-reload.html
Known issues
------------
Here are the changes found in XEIGTPW_11879_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1466])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#316]) +3 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-433/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: [PASS][13] -> [FAIL][14] ([Intel XE#1659]) +1 other test fail
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +7 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +11 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#2191])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1512]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-8/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#367]) +5 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-466/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#787]) +97 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#455] / [Intel XE#787]) +27 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-463/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#2907])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][23] ([Intel XE#1195]) +1 other test incomplete
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#2887]) +9 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-1/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1152]) +3 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-466/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_audio@dp-audio:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#373]) +5 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-5/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#306])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-433/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@ctm-max:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#306]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-5/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#373]) +11 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-435/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#307])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-436/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-1:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#599]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-4/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: NOTRUN -> [FAIL][32] ([Intel XE#1188]) +1 other test fail
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-464/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#308]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#2321]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1424]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-3/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#309]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-3/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#776]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-434/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#703])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-466/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#1138])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-464/igt@kms_feature_discovery@display-4x.html
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1138])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-1/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][41] -> [FAIL][42] ([Intel XE#301]) +9 other tests fail
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][43] ([Intel XE#301]) +1 other test fail
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-432/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a6-dp4.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#1421]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-3/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: NOTRUN -> [FAIL][45] ([Intel XE#886]) +5 other tests fail
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-lnl: [PASS][46] -> [INCOMPLETE][47] ([Intel XE#2049]) +1 other test incomplete
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-1/igt@kms_flip@flip-vs-suspend-interruptible.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-5/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@c-edp1:
- shard-lnl: [PASS][48] -> [FAIL][49] ([Intel XE#886]) +4 other tests fail
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check-interruptible@c-edp1.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-2/igt@kms_flip@wf_vblank-ts-check-interruptible@c-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1397]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([i915#5274])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-463/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#651]) +7 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#656]) +20 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#651]) +41 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#1158])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-435/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#653]) +32 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_hdmi_inject@inject-audio:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1470] / [Intel XE#2853])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-5/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#356])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-464/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@plane-position-covered@pipe-b-plane-4:
- shard-lnl: [PASS][60] -> [DMESG-WARN][61] ([Intel XE#324]) +2 other tests dmesg-warn
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-6/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-2/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html
* igt@kms_plane@plane-position-hole@pipe-a-plane-2:
- shard-lnl: [PASS][62] -> [DMESG-FAIL][63] ([Intel XE#324])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-3/igt@kms_plane@plane-position-hole@pipe-a-plane-2.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-5/igt@kms_plane@plane-position-hole@pipe-a-plane-2.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2-set2: NOTRUN -> [FAIL][64] ([Intel XE#361]) +1 other test fail
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#2763]) +11 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#2763]) +5 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-433/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-433/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1131])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-2/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#908])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-463/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#1129])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-434/igt@kms_pm_dc@dc6-psr.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#1489]) +9 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#2893]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1128])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-pr-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#2850] / [Intel XE#929]) +13 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-433/igt@kms_psr@fbc-pr-dpms.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-lnl: [PASS][75] -> [FAIL][76] ([Intel XE#2948]) +1 other test fail
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-1/igt@kms_psr@fbc-psr2-cursor-plane-move.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-8/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr@pr-cursor-plane-move:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1406]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-8/igt@kms_psr@pr-cursor-plane-move.html
* igt@kms_rotation_crc@bad-tiling:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1437]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-1/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#327]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-464/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1127])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
- shard-lnl: [PASS][81] -> [FAIL][82] ([Intel XE#899])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-2/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#455]) +25 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-463/igt@kms_vrr@flip-dpms.html
* igt@xe_eudebug@basic-vm-bind-extended-discovery:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#2905]) +4 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-2/igt@xe_eudebug@basic-vm-bind-extended-discovery.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-dg2-set2: NOTRUN -> [TIMEOUT][85] ([Intel XE#1473])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-432/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#688]) +5 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-2/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1392])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-1/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html
* igt@xe_exec_fault_mode@once-invalid-userptr-fault:
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#288]) +27 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-464/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip:
- shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#2905]) +10 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-434/igt@xe_exec_sip_eudebug@breakpoint-writesip.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#2229])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-433/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_module_load@force-load:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#378])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-432/igt@xe_module_load@force-load.html
* igt@xe_oa@mi-rpc:
- shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#2541]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-436/igt@xe_oa@mi-rpc.html
* igt@xe_oa@mmio-triggered-reports:
- shard-lnl: [PASS][93] -> [FAIL][94] ([Intel XE#2249])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@xe_oa@mmio-triggered-reports.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-1/igt@xe_oa@mmio-triggered-reports.html
* igt@xe_oa@mmio-triggered-reports@rcs-0:
- shard-lnl: NOTRUN -> [FAIL][95] ([Intel XE#2249])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-1/igt@xe_oa@mmio-triggered-reports@rcs-0.html
* igt@xe_oa@unprivileged-single-ctx-counters:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#2248])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-1/igt@xe_oa@unprivileged-single-ctx-counters.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#977])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-436/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#2838] / [Intel XE#979])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-433/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pm@d3hot-basic:
- shard-lnl: [PASS][99] -> [DMESG-FAIL][100] ([Intel XE#1620])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-2/igt@xe_pm@d3hot-basic.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-1/igt@xe_pm@d3hot-basic.html
* igt@xe_pm@s2idle-d3hot-basic-exec:
- shard-dg2-set2: NOTRUN -> [ABORT][101] ([Intel XE#1358])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-464/igt@xe_pm@s2idle-d3hot-basic-exec.html
* igt@xe_pm@s4-basic:
- shard-lnl: [PASS][102] -> [ABORT][103] ([Intel XE#1358] / [Intel XE#1607])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-6/igt@xe_pm@s4-basic.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-2/igt@xe_pm@s4-basic.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#579])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-435/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_query@multigpu-query-config:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#944]) +3 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-434/igt@xe_query@multigpu-query-config.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#944])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-1/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-dg2-set2: NOTRUN -> [FAIL][107] ([Intel XE#2780])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-435/igt@xe_wedged@wedged-at-any-timeout.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4:
- {shard-bmg}: [DMESG-WARN][108] ([Intel XE#1033]) -> [PASS][109]
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-bmg-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-bmg-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4.html
* igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
- shard-lnl: [FAIL][110] ([Intel XE#1701]) -> [PASS][111] +3 other tests pass
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-1/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-lnl: [FAIL][112] ([Intel XE#1659]) -> [PASS][113]
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-lnl: [FAIL][114] ([Intel XE#1475]) -> [PASS][115] +1 other test pass
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-6/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-8/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- {shard-bmg}: [FAIL][116] ([Intel XE#301]) -> [PASS][117] +5 other tests pass
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@blocking-wf_vblank:
- shard-lnl: [FAIL][118] ([Intel XE#886]) -> [PASS][119] +3 other tests pass
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-6/igt@kms_flip@blocking-wf_vblank.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-6/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][120] ([Intel XE#301]) -> [PASS][121] +1 other test pass
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6:
- shard-dg2-set2: [FAIL][122] ([Intel XE#301]) -> [PASS][123] +1 other test pass
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend:
- shard-lnl: [INCOMPLETE][124] ([Intel XE#2049]) -> [PASS][125] +1 other test pass
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-2/igt@kms_flip@flip-vs-suspend.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-5/igt@kms_flip@flip-vs-suspend.html
* igt@kms_plane@plane-position-covered@pipe-a-plane-3:
- shard-lnl: [DMESG-FAIL][126] ([Intel XE#324]) -> [PASS][127] +2 other tests pass
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-6/igt@kms_plane@plane-position-covered@pipe-a-plane-3.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-2/igt@kms_plane@plane-position-covered@pipe-a-plane-3.html
* igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3:
- shard-lnl: [DMESG-WARN][128] ([Intel XE#324]) -> [PASS][129] +7 other tests pass
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-6/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-8/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][130] ([Intel XE#718]) -> [PASS][131] +1 other test pass
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_rpm@legacy-planes:
- shard-lnl: [INCOMPLETE][132] ([Intel XE#1620] / [Intel XE#2864]) -> [PASS][133]
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@kms_pm_rpm@legacy-planes.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-2/igt@kms_pm_rpm@legacy-planes.html
* igt@kms_pm_rpm@legacy-planes@plane-41:
- shard-lnl: [DMESG-FAIL][134] ([Intel XE#1620]) -> [PASS][135]
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@kms_pm_rpm@legacy-planes@plane-41.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-2/igt@kms_pm_rpm@legacy-planes@plane-41.html
* igt@kms_vblank@accuracy-idle:
- shard-lnl: [DMESG-WARN][136] -> [PASS][137] +2 other tests pass
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-3/igt@kms_vblank@accuracy-idle.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-5/igt@kms_vblank@accuracy-idle.html
* igt@kms_vrr@flip-suspend@pipe-a-edp-1:
- shard-lnl: [FAIL][138] ([Intel XE#2443]) -> [PASS][139] +1 other test pass
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-3/igt@kms_vrr@flip-suspend@pipe-a-edp-1.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-2/igt@kms_vrr@flip-suspend@pipe-a-edp-1.html
* igt@xe_exec_reset@parallel-gt-reset:
- {shard-bmg}: [TIMEOUT][140] ([Intel XE#2105]) -> [PASS][141]
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-bmg-5/igt@xe_exec_reset@parallel-gt-reset.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-bmg-8/igt@xe_exec_reset@parallel-gt-reset.html
- shard-dg2-set2: [TIMEOUT][142] ([Intel XE#2105]) -> [PASS][143]
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-432/igt@xe_exec_reset@parallel-gt-reset.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-463/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_exec_threads@threads-hang-fd-userptr-rebind:
- shard-lnl: [ABORT][144] -> [PASS][145]
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-1/igt@xe_exec_threads@threads-hang-fd-userptr-rebind.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-5/igt@xe_exec_threads@threads-hang-fd-userptr-rebind.html
* igt@xe_module_load@reload:
- shard-dg2-set2: [FAIL][146] ([Intel XE#2136]) -> [PASS][147]
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-464/igt@xe_module_load@reload.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-dg2-466/igt@xe_module_load@reload.html
- {shard-bmg}: [FAIL][148] ([Intel XE#2136]) -> [PASS][149]
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-bmg-4/igt@xe_module_load@reload.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-bmg-5/igt@xe_module_load@reload.html
* igt@xe_pm@s2idle-d3hot-basic-exec:
- shard-lnl: [INCOMPLETE][150] ([Intel XE#1358] / [Intel XE#1616]) -> [PASS][151]
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-6/igt@xe_pm@s2idle-d3hot-basic-exec.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-6/igt@xe_pm@s2idle-d3hot-basic-exec.html
* igt@xe_pm@s4-basic-exec:
- shard-lnl: [ABORT][152] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][153]
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-2/igt@xe_pm@s4-basic-exec.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-3/igt@xe_pm@s4-basic-exec.html
#### Warnings ####
* igt@kms_plane@plane-position-covered:
- shard-lnl: [DMESG-FAIL][154] ([Intel XE#324]) -> [DMESG-WARN][155] ([Intel XE#324])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-6/igt@kms_plane@plane-position-covered.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/shard-lnl-2/igt@kms_plane@plane-position-covered.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1288
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
[Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2055]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2055
[Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2329
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2780
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2931]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2931
[Intel XE#2948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2948
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
Build changes
-------------
* IGT: IGT_8054 -> IGTPW_11879
* Linux: xe-2016-92d12099cc768f36cf676ee1b014442a5c5ba965 -> xe-2017-39a016b276ce8adac629cc6c31892d0b7d2af634
IGTPW_11879: 768a2e7a6a854559300231fbba8eb90e0d17fe94 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8054: 3f627b7fd48c6ab324ceaa80dd8cf0131292bf63 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2016-92d12099cc768f36cf676ee1b014442a5c5ba965: 92d12099cc768f36cf676ee1b014442a5c5ba965
xe-2017-39a016b276ce8adac629cc6c31892d0b7d2af634: 39a016b276ce8adac629cc6c31892d0b7d2af634
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11879/index.html
[-- Attachment #2: Type: text/html, Size: 48364 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ Fi.CI.BUILD: failure for tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix (rev5)
2024-09-26 18:11 [PATCH i-g-t v3 0/3] tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix Naladala Ramanaidu
` (10 preceding siblings ...)
2024-10-08 8:12 ` ✗ CI.xeFULL: " Patchwork
@ 2024-10-15 9:44 ` Patchwork
11 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-10-15 9:44 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
== Series Details ==
Series: tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix (rev5)
URL : https://patchwork.freedesktop.org/series/139049/
State : failure
== Summary ==
Applying: tests/kms_plane_scaling: Add mode override in scaling test
Applying: tests/kms_plane_scaling: Improve error handling in kms_plane_scaling tests
Applying: HAX patch do not merge
Using index info to reconstruct a base tree...
M tests/intel-ci/xe-fast-feedback.testlist
Falling back to patching base and 3-way merge...
Auto-merging tests/intel-ci/xe-fast-feedback.testlist
CONFLICT (content): Merge conflict in tests/intel-ci/xe-fast-feedback.testlist
Patch failed at 0003 HAX patch do not merge
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".
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2024-10-15 9:44 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-26 18:11 [PATCH i-g-t v3 0/3] tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix Naladala Ramanaidu
2024-09-26 18:11 ` [PATCH i-g-t v3 1/3] tests/kms_plane_scaling: Add mode override in scaling test Naladala Ramanaidu
2024-09-26 18:11 ` [PATCH i-g-t v3 2/3] tests/kms_plane_scaling: Improve error handling in kms_plane_scaling tests Naladala Ramanaidu
2024-09-27 17:40 ` [i-g-t, v3, " Joshi, Kunal1
2024-09-26 18:11 ` [PATCH i-g-t v3 3/3] HAX patch do not merge Naladala Ramanaidu
2024-09-26 19:09 ` ✗ Fi.CI.BAT: failure for tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix (rev3) Patchwork
2024-09-26 19:21 ` ✗ CI.xeBAT: " Patchwork
2024-09-27 19:56 ` ✗ CI.xeFULL: " Patchwork
2024-10-01 13:35 ` ✗ Fi.CI.BAT: " Patchwork
2024-10-07 19:01 ` ✗ GitLab.Pipeline: warning for tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix (rev4) Patchwork
2024-10-07 19:26 ` ✗ Fi.CI.BAT: failure " Patchwork
2024-10-07 19:34 ` ✗ CI.xeBAT: " Patchwork
2024-10-08 8:12 ` ✗ CI.xeFULL: " Patchwork
2024-10-15 9:44 ` ✗ Fi.CI.BUILD: failure for tests/kms_plane_scaling: Cdclk exceeds max Cdclk issue fix (rev5) Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox