* [igt-dev] [PATCH v3 0/2] Add atomic DRM cursor hotspot test
@ 2023-08-01 8:48 Albert Esteve
2023-08-01 8:48 ` [igt-dev] [PATCH v3 1/2] igt_kms: add hotspot plane property Albert Esteve
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Albert Esteve @ 2023-08-01 8:48 UTC (permalink / raw)
To: igt-dev; +Cc: belmouss, javierm
Add test to verify the kernel patch at [1].
The test modifies the hotspot x and y properties and
checks that they get properly updated after every
display commit.
Note: the patch adds a DRM capability definition taken
directly from the kernel patch. Once the definition
lands on IGT after the drm.h is updated, the local
definition shall be removed.
[1] - https://lists.freedesktop.org/archives/dri-devel/2023-July/414509.html
Albert Esteve (2):
igt_kms: add hotspot plane property
kms_cursor_legacy: modeset-atomic-cursor-hotspot
lib/igt_kms.c | 10 +++++
lib/igt_kms.h | 9 +++++
tests/kms_cursor_legacy.c | 79 +++++++++++++++++++++++++++++++++++++++
3 files changed, 98 insertions(+)
--
2.40.0
^ permalink raw reply [flat|nested] 9+ messages in thread* [igt-dev] [PATCH v3 1/2] igt_kms: add hotspot plane property 2023-08-01 8:48 [igt-dev] [PATCH v3 0/2] Add atomic DRM cursor hotspot test Albert Esteve @ 2023-08-01 8:48 ` Albert Esteve 2023-08-01 8:48 ` [igt-dev] [PATCH v3 2/2] kms_cursor_legacy: modeset-atomic-cursor-hotspot Albert Esteve ` (3 subsequent siblings) 4 siblings, 0 replies; 9+ messages in thread From: Albert Esteve @ 2023-08-01 8:48 UTC (permalink / raw) To: igt-dev; +Cc: belmouss, javierm Introduce LOCAL_DRM_CLIENT_CAP_CURSOR_PLANE_HOTSPOT capability definition until patched drm.h uapi header is upstreamed and lands on IGT. CURSOR_PLANE_HOTSPOT capability is enabled conditionally, and then tracked in the igt_display struct. Add HOTSPOT_X and HOTSPOT_Y properties to the atomic_plane_properties struct. Signed-off-by: Albert Esteve <aesteve@redhat.com> Acked-by: Javier Martinez Canillas <javierm@redhat.com> Acked-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> --- lib/igt_kms.c | 10 ++++++++++ lib/igt_kms.h | 9 +++++++++ 2 files changed, 19 insertions(+) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index f2b0eed57..e0959ccff 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -601,6 +601,8 @@ const char * const igt_plane_prop_names[IGT_NUM_PLANE_PROPS] = { [IGT_PLANE_CRTC_Y] = "CRTC_Y", [IGT_PLANE_CRTC_W] = "CRTC_W", [IGT_PLANE_CRTC_H] = "CRTC_H", + [IGT_PLANE_HOTSPOT_X] = "HOTSPOT_X", + [IGT_PLANE_HOTSPOT_Y] = "HOTSPOT_Y", [IGT_PLANE_FB_ID] = "FB_ID", [IGT_PLANE_CRTC_ID] = "CRTC_ID", [IGT_PLANE_IN_FENCE_FD] = "IN_FENCE_FD", @@ -2296,6 +2298,11 @@ static void igt_plane_reset(igt_plane_t *plane) if (igt_plane_has_prop(plane, IGT_PLANE_SCALING_FILTER)) igt_plane_set_prop_enum(plane, IGT_PLANE_SCALING_FILTER, "Default"); + if (igt_plane_has_prop(plane, IGT_PLANE_HOTSPOT_X)) + igt_plane_set_prop_value(plane, IGT_PLANE_HOTSPOT_X, 0); + if (igt_plane_has_prop(plane, IGT_PLANE_HOTSPOT_Y)) + igt_plane_set_prop_value(plane, IGT_PLANE_HOTSPOT_Y, 0); + igt_plane_clear_prop_changed(plane, IGT_PLANE_IN_FENCE_FD); plane->values[IGT_PLANE_IN_FENCE_FD] = ~0ULL; plane->gem_handle = 0; @@ -2680,6 +2687,9 @@ void igt_display_require(igt_display_t *display, int drm_fd) if (drmSetClientCap(drm_fd, DRM_CLIENT_CAP_ATOMIC, 1) == 0) display->is_atomic = 1; + if (drmSetClientCap(drm_fd, LOCAL_DRM_CLIENT_CAP_CURSOR_PLANE_HOTSPOT, 1) == 0) + display->has_virt_cursor_plane = 1; + plane_resources = drmModeGetPlaneResources(display->drm_fd); igt_assert(plane_resources); diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 1b6988c17..91355c910 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -41,6 +41,12 @@ /* Low-level helpers with kmstest_ prefix */ +/** + * Clients which do set cursor hotspot and treat the cursor plane + * like a mouse cursor should set this property. + */ +#define LOCAL_DRM_CLIENT_CAP_CURSOR_PLANE_HOTSPOT 6 + /** * pipe: * @PIPE_NONE: Invalid pipe, used for disconnecting a output from a pipe. @@ -318,6 +324,8 @@ enum igt_atomic_plane_properties { IGT_PLANE_ZPOS, IGT_PLANE_FB_DAMAGE_CLIPS, IGT_PLANE_SCALING_FILTER, + IGT_PLANE_HOTSPOT_X, + IGT_PLANE_HOTSPOT_Y, IGT_NUM_PLANE_PROPS }; @@ -448,6 +456,7 @@ struct igt_display { igt_pipe_t *pipes; bool has_cursor_plane; bool is_atomic; + bool has_virt_cursor_plane; bool first_commit; uint64_t *modifiers; -- 2.40.0 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH v3 2/2] kms_cursor_legacy: modeset-atomic-cursor-hotspot 2023-08-01 8:48 [igt-dev] [PATCH v3 0/2] Add atomic DRM cursor hotspot test Albert Esteve 2023-08-01 8:48 ` [igt-dev] [PATCH v3 1/2] igt_kms: add hotspot plane property Albert Esteve @ 2023-08-01 8:48 ` Albert Esteve 2023-08-02 8:11 ` Modem, Bhanuprakash 2023-08-01 10:11 ` [igt-dev] ○ CI.xeBAT: info for Add atomic DRM cursor hotspot test (rev3) Patchwork ` (2 subsequent siblings) 4 siblings, 1 reply; 9+ messages in thread From: Albert Esteve @ 2023-08-01 8:48 UTC (permalink / raw) To: igt-dev; +Cc: belmouss, javierm Add a test for modesetting an atomic cursor plane hotspot property. Test added to verify the kernel patch at [1]. The test first checks if the plane is atomic and has the hotspot property. and if it does, it sets different random hot_x and hot_y values and checks that it is updated correctly after an atomic commit. [1] https://lists.freedesktop.org/archives/dri-devel/2023-July/414509.html Signed-off-by: Albert Esteve <aesteve@redhat.com> Acked-by: Javier Martinez Canillas <javierm@redhat.com> Acked-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> --- tests/kms_cursor_legacy.c | 79 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) diff --git a/tests/kms_cursor_legacy.c b/tests/kms_cursor_legacy.c index 1ebac9d31..87cfb9e64 100644 --- a/tests/kms_cursor_legacy.c +++ b/tests/kms_cursor_legacy.c @@ -218,6 +218,12 @@ static igt_plane_t return cursor; } +static void set_cursor_hotspot(igt_plane_t *cursor, int hot_x, int hot_y) +{ + igt_output_set_prop_value(cursor, IGT_PLANE_HOTSPOT_X, hot_x); + igt_output_set_prop_value(cursor, IGT_PLANE_HOTSPOT_Y, hot_y); +} + static void populate_cursor_args(igt_display_t *display, enum pipe pipe, struct drm_mode_cursor *arg, struct igt_fb *fb) { @@ -1607,6 +1613,68 @@ static void flip_vs_cursor_busy_crc(igt_display_t *display, bool atomic) put_ahnd(ahnd); } +static void modeset_atomic_cursor_hotspot(igt_display_t *display) +{ + struct igt_fb cursor_fb; + igt_output_t *output; + enum pipe pipe; + igt_plane_t *cursor = NULL; + bool has_hotspot_prop; + uint64_t cursor_width, cursor_height; + uint32_t hot_x, hot_y, init_hot_x, init_hot_y; + + igt_require(display->is_atomic); + igt_require(display->has_virt_cursor_plane); + pipe = find_connected_pipe(display, false, &output); + igt_require(output); + + igt_info("Using pipe %s & %s\n", + kmstest_pipe_name(pipe), igt_output_name(output)); + + cursor_width = cursor_height = 64; + igt_create_color_fb(display->drm_fd, cursor_width, cursor_height, DRM_FORMAT_ARGB8888, + DRM_FORMAT_MOD_LINEAR, 1., 1., 1., &cursor_fb); + + igt_display_commit2(display, COMMIT_ATOMIC); + + cursor = set_cursor_on_pipe(display, pipe, &cursor_fb); + + has_hotspot_prop = cursor->props[IGT_PLANE_HOTSPOT_X] || + cursor->props[IGT_PLANE_HOTSPOT_Y]; + igt_require_f(has_hotspot_prop, "Cursor plane lacks the hotspot property"); + + init_hot_x = igt_plane_get_prop(cursor, IGT_PLANE_HOTSPOT_X); + init_hot_y = igt_plane_get_prop(cursor, IGT_PLANE_HOTSPOT_Y); + + /* + * Change the hotspot coordinates randomly and check that the property + * is updated accordingly. + */ + srand(time(NULL)); + for (int i = 0; i < 20; i++) { + hot_x = rand() % cursor_width; + hot_y = rand() % cursor_height; + igt_debug("Update cursor hotspot: (%d, %d)\n", hot_x, hot_y); + + /* Set cursor hotspot property values */ + set_cursor_hotspot(cursor, hot_x, hot_y); + + igt_display_commit2(display, COMMIT_ATOMIC); + + /* After the commit, the cursor hotspot property values are updated */ + igt_assert_eq(igt_plane_get_prop(cursor, IGT_PLANE_HOTSPOT_X), hot_x); + igt_assert_eq(igt_plane_get_prop(cursor, IGT_PLANE_HOTSPOT_Y), hot_y); + } + + /* Clean-up */ + set_cursor_hotspot(cursor, init_hot_x, init_hot_y); + igt_plane_set_fb(cursor, NULL); + igt_output_set_pipe(output, PIPE_NONE); + igt_display_commit2(display, COMMIT_ATOMIC); + + igt_remove_fb(display->drm_fd, &cursor_fb); +} + igt_main { const int ncpus = sysconf(_SC_NPROCESSORS_ONLN); @@ -1681,6 +1749,17 @@ igt_main nonblocking_modeset_vs_cursor(&display, 16); } + igt_describe("Test changes the cursor hotspot and checks that the " + "property is updated accordignly"); + igt_subtest_group { + igt_fixture + igt_display_require_output(&display); + + igt_subtest("modeset-atomic-cursor-hotspot") { + modeset_atomic_cursor_hotspot(&display); + } + } + igt_describe("This test executes flips on both CRTCs " "while running cursor updates in parallel"); igt_subtest_group { -- 2.40.0 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [igt-dev] [PATCH v3 2/2] kms_cursor_legacy: modeset-atomic-cursor-hotspot 2023-08-01 8:48 ` [igt-dev] [PATCH v3 2/2] kms_cursor_legacy: modeset-atomic-cursor-hotspot Albert Esteve @ 2023-08-02 8:11 ` Modem, Bhanuprakash 2023-08-02 9:20 ` Albert Esteve 0 siblings, 1 reply; 9+ messages in thread From: Modem, Bhanuprakash @ 2023-08-02 8:11 UTC (permalink / raw) To: Albert Esteve, igt-dev; +Cc: belmouss, javierm On Tue-01-08-2023 02:18 pm, Albert Esteve wrote: > Add a test for modesetting an atomic cursor plane > hotspot property. Test added to verify the kernel > patch at [1]. The test first checks if the > plane is atomic and has the hotspot property. > and if it does, it sets different random hot_x > and hot_y values and checks that it is updated > correctly after an atomic commit. > > [1] https://lists.freedesktop.org/archives/dri-devel/2023-July/414509.html > Please keep maintain the history of the patch. Example: V2: - Changes on top of Initial version V3: - Changes between V2 & Current version You can update this info while merging the patch. With above comments addressed, this patch is Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > Signed-off-by: Albert Esteve <aesteve@redhat.com> > Acked-by: Javier Martinez Canillas <javierm@redhat.com> > Acked-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> > --- > tests/kms_cursor_legacy.c | 79 +++++++++++++++++++++++++++++++++++++++ > 1 file changed, 79 insertions(+) > > diff --git a/tests/kms_cursor_legacy.c b/tests/kms_cursor_legacy.c > index 1ebac9d31..87cfb9e64 100644 > --- a/tests/kms_cursor_legacy.c > +++ b/tests/kms_cursor_legacy.c > @@ -218,6 +218,12 @@ static igt_plane_t > return cursor; > } > > +static void set_cursor_hotspot(igt_plane_t *cursor, int hot_x, int hot_y) > +{ > + igt_output_set_prop_value(cursor, IGT_PLANE_HOTSPOT_X, hot_x); > + igt_output_set_prop_value(cursor, IGT_PLANE_HOTSPOT_Y, hot_y); > +} > + > static void populate_cursor_args(igt_display_t *display, enum pipe pipe, > struct drm_mode_cursor *arg, struct igt_fb *fb) > { > @@ -1607,6 +1613,68 @@ static void flip_vs_cursor_busy_crc(igt_display_t *display, bool atomic) > put_ahnd(ahnd); > } > > +static void modeset_atomic_cursor_hotspot(igt_display_t *display) > +{ > + struct igt_fb cursor_fb; > + igt_output_t *output; > + enum pipe pipe; > + igt_plane_t *cursor = NULL; > + bool has_hotspot_prop; > + uint64_t cursor_width, cursor_height; > + uint32_t hot_x, hot_y, init_hot_x, init_hot_y; > + > + igt_require(display->is_atomic); > + igt_require(display->has_virt_cursor_plane); > + pipe = find_connected_pipe(display, false, &output); > + igt_require(output); > + > + igt_info("Using pipe %s & %s\n", > + kmstest_pipe_name(pipe), igt_output_name(output)); > + > + cursor_width = cursor_height = 64; > + igt_create_color_fb(display->drm_fd, cursor_width, cursor_height, DRM_FORMAT_ARGB8888, > + DRM_FORMAT_MOD_LINEAR, 1., 1., 1., &cursor_fb); > + > + igt_display_commit2(display, COMMIT_ATOMIC); > + > + cursor = set_cursor_on_pipe(display, pipe, &cursor_fb); > + > + has_hotspot_prop = cursor->props[IGT_PLANE_HOTSPOT_X] || > + cursor->props[IGT_PLANE_HOTSPOT_Y]; > + igt_require_f(has_hotspot_prop, "Cursor plane lacks the hotspot property"); > + > + init_hot_x = igt_plane_get_prop(cursor, IGT_PLANE_HOTSPOT_X); > + init_hot_y = igt_plane_get_prop(cursor, IGT_PLANE_HOTSPOT_Y); > + > + /* > + * Change the hotspot coordinates randomly and check that the property > + * is updated accordingly. > + */ > + srand(time(NULL)); > + for (int i = 0; i < 20; i++) { > + hot_x = rand() % cursor_width; > + hot_y = rand() % cursor_height; > + igt_debug("Update cursor hotspot: (%d, %d)\n", hot_x, hot_y); > + > + /* Set cursor hotspot property values */ > + set_cursor_hotspot(cursor, hot_x, hot_y); > + > + igt_display_commit2(display, COMMIT_ATOMIC); > + > + /* After the commit, the cursor hotspot property values are updated */ > + igt_assert_eq(igt_plane_get_prop(cursor, IGT_PLANE_HOTSPOT_X), hot_x); > + igt_assert_eq(igt_plane_get_prop(cursor, IGT_PLANE_HOTSPOT_Y), hot_y); > + } > + > + /* Clean-up */ > + set_cursor_hotspot(cursor, init_hot_x, init_hot_y); > + igt_plane_set_fb(cursor, NULL); > + igt_output_set_pipe(output, PIPE_NONE); > + igt_display_commit2(display, COMMIT_ATOMIC); > + > + igt_remove_fb(display->drm_fd, &cursor_fb); > +} > + > igt_main > { > const int ncpus = sysconf(_SC_NPROCESSORS_ONLN); > @@ -1681,6 +1749,17 @@ igt_main > nonblocking_modeset_vs_cursor(&display, 16); > } > > + igt_describe("Test changes the cursor hotspot and checks that the " > + "property is updated accordignly"); > + igt_subtest_group { > + igt_fixture > + igt_display_require_output(&display); > + > + igt_subtest("modeset-atomic-cursor-hotspot") { > + modeset_atomic_cursor_hotspot(&display); > + } > + } > + > igt_describe("This test executes flips on both CRTCs " > "while running cursor updates in parallel"); > igt_subtest_group { ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] [PATCH v3 2/2] kms_cursor_legacy: modeset-atomic-cursor-hotspot 2023-08-02 8:11 ` Modem, Bhanuprakash @ 2023-08-02 9:20 ` Albert Esteve 2023-08-02 9:42 ` Modem, Bhanuprakash 0 siblings, 1 reply; 9+ messages in thread From: Albert Esteve @ 2023-08-02 9:20 UTC (permalink / raw) To: Modem, Bhanuprakash; +Cc: igt-dev, belmouss, javierm [-- Attachment #1: Type: text/plain, Size: 5870 bytes --] On Wed, Aug 2, 2023 at 10:12 AM Modem, Bhanuprakash < bhanuprakash.modem@intel.com> wrote: > > > On Tue-01-08-2023 02:18 pm, Albert Esteve wrote: > > Add a test for modesetting an atomic cursor plane > > hotspot property. Test added to verify the kernel > > patch at [1]. The test first checks if the > > plane is atomic and has the hotspot property. > > and if it does, it sets different random hot_x > > and hot_y values and checks that it is updated > > correctly after an atomic commit. > > > > [1] > https://lists.freedesktop.org/archives/dri-devel/2023-July/414509.html > > > > Please keep maintain the history of the patch. > > Example: > > V2: - Changes on top of Initial version > V3: - Changes between V2 & Current version > > You can update this info while merging the patch. With above comments > addressed, this patch is > > Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > Thanks. I should've tracked the history in the cover letters, my bad. Do you mean to track it in the commit message? Also, what do you mean I can update it while merging? I do not have permissions to merge. Should I push a new revision? BR, Albert. > > > Signed-off-by: Albert Esteve <aesteve@redhat.com> > > Acked-by: Javier Martinez Canillas <javierm@redhat.com> > > Acked-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> > > --- > > tests/kms_cursor_legacy.c | 79 +++++++++++++++++++++++++++++++++++++++ > > 1 file changed, 79 insertions(+) > > > > diff --git a/tests/kms_cursor_legacy.c b/tests/kms_cursor_legacy.c > > index 1ebac9d31..87cfb9e64 100644 > > --- a/tests/kms_cursor_legacy.c > > +++ b/tests/kms_cursor_legacy.c > > @@ -218,6 +218,12 @@ static igt_plane_t > > return cursor; > > } > > > > +static void set_cursor_hotspot(igt_plane_t *cursor, int hot_x, int > hot_y) > > +{ > > + igt_output_set_prop_value(cursor, IGT_PLANE_HOTSPOT_X, hot_x); > > + igt_output_set_prop_value(cursor, IGT_PLANE_HOTSPOT_Y, hot_y); > > +} > > + > > static void populate_cursor_args(igt_display_t *display, enum pipe > pipe, > > struct drm_mode_cursor *arg, struct > igt_fb *fb) > > { > > @@ -1607,6 +1613,68 @@ static void flip_vs_cursor_busy_crc(igt_display_t > *display, bool atomic) > > put_ahnd(ahnd); > > } > > > > +static void modeset_atomic_cursor_hotspot(igt_display_t *display) > > +{ > > + struct igt_fb cursor_fb; > > + igt_output_t *output; > > + enum pipe pipe; > > + igt_plane_t *cursor = NULL; > > + bool has_hotspot_prop; > > + uint64_t cursor_width, cursor_height; > > + uint32_t hot_x, hot_y, init_hot_x, init_hot_y; > > + > > + igt_require(display->is_atomic); > > + igt_require(display->has_virt_cursor_plane); > > + pipe = find_connected_pipe(display, false, &output); > > + igt_require(output); > > + > > + igt_info("Using pipe %s & %s\n", > > + kmstest_pipe_name(pipe), igt_output_name(output)); > > + > > + cursor_width = cursor_height = 64; > > + igt_create_color_fb(display->drm_fd, cursor_width, cursor_height, > DRM_FORMAT_ARGB8888, > > + DRM_FORMAT_MOD_LINEAR, 1., 1., 1., &cursor_fb); > > + > > + igt_display_commit2(display, COMMIT_ATOMIC); > > + > > + cursor = set_cursor_on_pipe(display, pipe, &cursor_fb); > > + > > + has_hotspot_prop = cursor->props[IGT_PLANE_HOTSPOT_X] || > > + cursor->props[IGT_PLANE_HOTSPOT_Y]; > > + igt_require_f(has_hotspot_prop, "Cursor plane lacks the hotspot > property"); > > + > > + init_hot_x = igt_plane_get_prop(cursor, IGT_PLANE_HOTSPOT_X); > > + init_hot_y = igt_plane_get_prop(cursor, IGT_PLANE_HOTSPOT_Y); > > + > > + /* > > + * Change the hotspot coordinates randomly and check that the > property > > + * is updated accordingly. > > + */ > > + srand(time(NULL)); > > + for (int i = 0; i < 20; i++) { > > + hot_x = rand() % cursor_width; > > + hot_y = rand() % cursor_height; > > + igt_debug("Update cursor hotspot: (%d, %d)\n", hot_x, > hot_y); > > + > > + /* Set cursor hotspot property values */ > > + set_cursor_hotspot(cursor, hot_x, hot_y); > > + > > + igt_display_commit2(display, COMMIT_ATOMIC); > > + > > + /* After the commit, the cursor hotspot property values > are updated */ > > + igt_assert_eq(igt_plane_get_prop(cursor, > IGT_PLANE_HOTSPOT_X), hot_x); > > + igt_assert_eq(igt_plane_get_prop(cursor, > IGT_PLANE_HOTSPOT_Y), hot_y); > > + } > > + > > + /* Clean-up */ > > + set_cursor_hotspot(cursor, init_hot_x, init_hot_y); > > + igt_plane_set_fb(cursor, NULL); > > + igt_output_set_pipe(output, PIPE_NONE); > > + igt_display_commit2(display, COMMIT_ATOMIC); > > + > > + igt_remove_fb(display->drm_fd, &cursor_fb); > > +} > > + > > igt_main > > { > > const int ncpus = sysconf(_SC_NPROCESSORS_ONLN); > > @@ -1681,6 +1749,17 @@ igt_main > > nonblocking_modeset_vs_cursor(&display, 16); > > } > > > > + igt_describe("Test changes the cursor hotspot and checks that the " > > + "property is updated accordignly"); > > + igt_subtest_group { > > + igt_fixture > > + igt_display_require_output(&display); > > + > > + igt_subtest("modeset-atomic-cursor-hotspot") { > > + modeset_atomic_cursor_hotspot(&display); > > + } > > + } > > + > > igt_describe("This test executes flips on both CRTCs " > > "while running cursor updates in parallel"); > > igt_subtest_group { > > [-- Attachment #2: Type: text/html, Size: 8008 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] [PATCH v3 2/2] kms_cursor_legacy: modeset-atomic-cursor-hotspot 2023-08-02 9:20 ` Albert Esteve @ 2023-08-02 9:42 ` Modem, Bhanuprakash 0 siblings, 0 replies; 9+ messages in thread From: Modem, Bhanuprakash @ 2023-08-02 9:42 UTC (permalink / raw) To: Albert Esteve; +Cc: igt-dev, belmouss, javierm On Wed-02-08-2023 02:50 pm, Albert Esteve wrote: > > > On Wed, Aug 2, 2023 at 10:12 AM Modem, Bhanuprakash > <bhanuprakash.modem@intel.com <mailto:bhanuprakash.modem@intel.com>> wrote: > > > > On Tue-01-08-2023 02:18 pm, Albert Esteve wrote: > > Add a test for modesetting an atomic cursor plane > > hotspot property. Test added to verify the kernel > > patch at [1]. The test first checks if the > > plane is atomic and has the hotspot property. > > and if it does, it sets different random hot_x > > and hot_y values and checks that it is updated > > correctly after an atomic commit. > > > > [1] > https://lists.freedesktop.org/archives/dri-devel/2023-July/414509.html <https://lists.freedesktop.org/archives/dri-devel/2023-July/414509.html> > > > > Please keep maintain the history of the patch. > > Example: > > V2: - Changes on top of Initial version > V3: - Changes between V2 & Current version > > You can update this info while merging the patch. With above comments > addressed, this patch is > > Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com > <mailto:bhanuprakash.modem@intel.com>> > > > Thanks. > > I should've tracked the history in the cover letters, my bad. > > Do you mean to track it in the commit message? Yes. > Also, what do you mean I can update it while merging? I do not have > permissions to merge. Should I push a new revision? I mean to say that no need to send a new revision, just update the commit message & merge. Anyway, as you don't have the merge rights, please send a new revision. I'll help to merge. - Bhanu > > BR, > Albert. > > > > Signed-off-by: Albert Esteve <aesteve@redhat.com > <mailto:aesteve@redhat.com>> > > Acked-by: Javier Martinez Canillas <javierm@redhat.com > <mailto:javierm@redhat.com>> > > Acked-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com > <mailto:zbigniew.kempczynski@intel.com>> > > --- > > tests/kms_cursor_legacy.c | 79 > +++++++++++++++++++++++++++++++++++++++ > > 1 file changed, 79 insertions(+) > > > > diff --git a/tests/kms_cursor_legacy.c b/tests/kms_cursor_legacy.c > > index 1ebac9d31..87cfb9e64 100644 > > --- a/tests/kms_cursor_legacy.c > > +++ b/tests/kms_cursor_legacy.c > > @@ -218,6 +218,12 @@ static igt_plane_t > > return cursor; > > } > > > > +static void set_cursor_hotspot(igt_plane_t *cursor, int hot_x, > int hot_y) > > +{ > > + igt_output_set_prop_value(cursor, IGT_PLANE_HOTSPOT_X, hot_x); > > + igt_output_set_prop_value(cursor, IGT_PLANE_HOTSPOT_Y, hot_y); > > +} > > + > > static void populate_cursor_args(igt_display_t *display, enum > pipe pipe, > > struct drm_mode_cursor *arg, > struct igt_fb *fb) > > { > > @@ -1607,6 +1613,68 @@ static void > flip_vs_cursor_busy_crc(igt_display_t *display, bool atomic) > > put_ahnd(ahnd); > > } > > > > +static void modeset_atomic_cursor_hotspot(igt_display_t *display) > > +{ > > + struct igt_fb cursor_fb; > > + igt_output_t *output; > > + enum pipe pipe; > > + igt_plane_t *cursor = NULL; > > + bool has_hotspot_prop; > > + uint64_t cursor_width, cursor_height; > > + uint32_t hot_x, hot_y, init_hot_x, init_hot_y; > > + > > + igt_require(display->is_atomic); > > + igt_require(display->has_virt_cursor_plane); > > + pipe = find_connected_pipe(display, false, &output); > > + igt_require(output); > > + > > + igt_info("Using pipe %s & %s\n", > > + kmstest_pipe_name(pipe), igt_output_name(output)); > > + > > + cursor_width = cursor_height = 64; > > + igt_create_color_fb(display->drm_fd, cursor_width, > cursor_height, DRM_FORMAT_ARGB8888, > > + DRM_FORMAT_MOD_LINEAR, 1., 1., 1., > &cursor_fb); > > + > > + igt_display_commit2(display, COMMIT_ATOMIC); > > + > > + cursor = set_cursor_on_pipe(display, pipe, &cursor_fb); > > + > > + has_hotspot_prop = cursor->props[IGT_PLANE_HOTSPOT_X] || > > + cursor->props[IGT_PLANE_HOTSPOT_Y]; > > + igt_require_f(has_hotspot_prop, "Cursor plane lacks the > hotspot property"); > > + > > + init_hot_x = igt_plane_get_prop(cursor, IGT_PLANE_HOTSPOT_X); > > + init_hot_y = igt_plane_get_prop(cursor, IGT_PLANE_HOTSPOT_Y); > > + > > + /* > > + * Change the hotspot coordinates randomly and check that > the property > > + * is updated accordingly. > > + */ > > + srand(time(NULL)); > > + for (int i = 0; i < 20; i++) { > > + hot_x = rand() % cursor_width; > > + hot_y = rand() % cursor_height; > > + igt_debug("Update cursor hotspot: (%d, %d)\n", > hot_x, hot_y); > > + > > + /* Set cursor hotspot property values */ > > + set_cursor_hotspot(cursor, hot_x, hot_y); > > + > > + igt_display_commit2(display, COMMIT_ATOMIC); > > + > > + /* After the commit, the cursor hotspot property > values are updated */ > > + igt_assert_eq(igt_plane_get_prop(cursor, > IGT_PLANE_HOTSPOT_X), hot_x); > > + igt_assert_eq(igt_plane_get_prop(cursor, > IGT_PLANE_HOTSPOT_Y), hot_y); > > + } > > + > > + /* Clean-up */ > > + set_cursor_hotspot(cursor, init_hot_x, init_hot_y); > > + igt_plane_set_fb(cursor, NULL); > > + igt_output_set_pipe(output, PIPE_NONE); > > + igt_display_commit2(display, COMMIT_ATOMIC); > > + > > + igt_remove_fb(display->drm_fd, &cursor_fb); > > +} > > + > > igt_main > > { > > const int ncpus = sysconf(_SC_NPROCESSORS_ONLN); > > @@ -1681,6 +1749,17 @@ igt_main > > nonblocking_modeset_vs_cursor(&display, 16); > > } > > > > + igt_describe("Test changes the cursor hotspot and checks > that the " > > + "property is updated accordignly"); > > + igt_subtest_group { > > + igt_fixture > > + igt_display_require_output(&display); > > + > > + igt_subtest("modeset-atomic-cursor-hotspot") { > > + modeset_atomic_cursor_hotspot(&display); > > + } > > + } > > + > > igt_describe("This test executes flips on both CRTCs " > > "while running cursor updates in parallel"); > > igt_subtest_group { > ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ○ CI.xeBAT: info for Add atomic DRM cursor hotspot test (rev3) 2023-08-01 8:48 [igt-dev] [PATCH v3 0/2] Add atomic DRM cursor hotspot test Albert Esteve 2023-08-01 8:48 ` [igt-dev] [PATCH v3 1/2] igt_kms: add hotspot plane property Albert Esteve 2023-08-01 8:48 ` [igt-dev] [PATCH v3 2/2] kms_cursor_legacy: modeset-atomic-cursor-hotspot Albert Esteve @ 2023-08-01 10:11 ` Patchwork 2023-08-01 10:19 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2023-08-01 11:57 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-08-01 10:11 UTC (permalink / raw) To: Albert Esteve; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 339 bytes --] == Series Details == Series: Add atomic DRM cursor hotspot test (rev3) URL : https://patchwork.freedesktop.org/series/121225/ State : info == Summary == Participating hosts: bat-pvc-2 bat-atsm-2 bat-dg2-oem2 bat-adlp-7 Missing hosts results[0]: Results: [IGTPW_9489](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9489/index.html) [-- Attachment #2: Type: text/html, Size: 855 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Add atomic DRM cursor hotspot test (rev3) 2023-08-01 8:48 [igt-dev] [PATCH v3 0/2] Add atomic DRM cursor hotspot test Albert Esteve ` (2 preceding siblings ...) 2023-08-01 10:11 ` [igt-dev] ○ CI.xeBAT: info for Add atomic DRM cursor hotspot test (rev3) Patchwork @ 2023-08-01 10:19 ` Patchwork 2023-08-01 11:57 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-08-01 10:19 UTC (permalink / raw) To: Albert Esteve; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 11776 bytes --] == Series Details == Series: Add atomic DRM cursor hotspot test (rev3) URL : https://patchwork.freedesktop.org/series/121225/ State : success == Summary == CI Bug Log - changes from CI_DRM_13454 -> IGTPW_9489 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/index.html Participating hosts (41 -> 41) ------------------------------ Additional (1): fi-kbl-soraka Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9489 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@dmabuf@all-tests@dma_fence: - bat-dg2-11: [PASS][1] -> [DMESG-FAIL][2] ([i915#8189]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/bat-dg2-11/igt@dmabuf@all-tests@dma_fence.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/bat-dg2-11/igt@dmabuf@all-tests@dma_fence.html * igt@dmabuf@all-tests@sanitycheck: - bat-dg2-11: [PASS][3] -> [ABORT][4] ([i915#7699] / [i915#8144]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/bat-dg2-11/igt@dmabuf@all-tests@sanitycheck.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/bat-dg2-11/igt@dmabuf@all-tests@sanitycheck.html * igt@gem_exec_suspend@basic-s3@smem: - bat-rpls-2: [PASS][5] -> [ABORT][6] ([i915#6687] / [i915#7978] / [i915#8668]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/bat-rpls-2/igt@gem_exec_suspend@basic-s3@smem.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/bat-rpls-2/igt@gem_exec_suspend@basic-s3@smem.html * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#2190]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#4613]) +3 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-mtlp-8: NOTRUN -> [SKIP][9] ([i915#4613]) +3 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/bat-mtlp-8/igt@gem_lmem_swapping@parallel-random-engines.html * igt@i915_pm_rpm@basic-pci-d3-state: - fi-tgl-1115g4: [PASS][10] -> [FAIL][11] ([i915#7940]) +1 similar issue [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/fi-tgl-1115g4/igt@i915_pm_rpm@basic-pci-d3-state.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/fi-tgl-1115g4/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_pm_rps@basic-api: - bat-mtlp-8: NOTRUN -> [SKIP][12] ([i915#6621]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/bat-mtlp-8/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][13] ([i915#1886] / [i915#7913]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@requests: - bat-mtlp-8: NOTRUN -> [DMESG-FAIL][14] ([i915#8497]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/bat-mtlp-8/igt@i915_selftest@live@requests.html - bat-mtlp-6: [PASS][15] -> [DMESG-FAIL][16] ([i915#8497]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/bat-mtlp-6/igt@i915_selftest@live@requests.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/bat-mtlp-6/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@slpc: - bat-rpls-2: [PASS][17] -> [DMESG-WARN][18] ([i915#6367]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/bat-rpls-2/igt@i915_selftest@live@slpc.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/bat-rpls-2/igt@i915_selftest@live@slpc.html - bat-rpls-1: NOTRUN -> [DMESG-WARN][19] ([i915#6367]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/bat-rpls-1/igt@i915_selftest@live@slpc.html * igt@i915_suspend@basic-s3-without-i915: - bat-mtlp-8: NOTRUN -> [SKIP][20] ([i915#6645]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html - bat-rpls-1: NOTRUN -> [ABORT][21] ([i915#6687] / [i915#7978] / [i915#8668]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - bat-mtlp-8: NOTRUN -> [SKIP][22] ([i915#7828]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/bat-mtlp-8/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-kbl-soraka: NOTRUN -> [SKIP][23] ([fdo#109271]) +16 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/fi-kbl-soraka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@prime_vgem@basic-fence-read: - bat-mtlp-8: NOTRUN -> [SKIP][24] ([i915#3708]) +2 similar issues [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - bat-mtlp-8: NOTRUN -> [SKIP][25] ([i915#3708] / [i915#4077]) +1 similar issue [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/bat-mtlp-8/igt@prime_vgem@basic-gtt.html #### Possible fixes #### * igt@i915_pm_rpm@basic-pci-d3-state: - bat-mtlp-8: [ABORT][26] ([i915#7977] / [i915#8668]) -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_pm_rpm@basic-rte: - fi-kbl-7567u: [FAIL][28] ([i915#7940]) -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/fi-kbl-7567u/igt@i915_pm_rpm@basic-rte.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/fi-kbl-7567u/igt@i915_pm_rpm@basic-rte.html * igt@i915_selftest@live@late_gt_pm: - fi-cfl-8109u: [DMESG-WARN][30] ([i915#7634]) -> [PASS][31] +36 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html * igt@i915_selftest@live@requests: - bat-rpls-1: [ABORT][32] ([i915#7911] / [i915#7920]) -> [PASS][33] [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/bat-rpls-1/igt@i915_selftest@live@requests.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/bat-rpls-1/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@slpc: - bat-mtlp-6: [DMESG-WARN][34] ([i915#6367]) -> [PASS][35] [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/bat-mtlp-6/igt@i915_selftest@live@slpc.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/bat-mtlp-6/igt@i915_selftest@live@slpc.html * igt@i915_selftest@live@workarounds: - bat-rpls-1: [DMESG-FAIL][36] ([i915#7102]) -> [PASS][37] [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/bat-rpls-1/igt@i915_selftest@live@workarounds.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/bat-rpls-1/igt@i915_selftest@live@workarounds.html * igt@kms_addfb_basic@too-high: - fi-cfl-8109u: [DMESG-WARN][38] ([i915#7634] / [i915#8585]) -> [PASS][39] +78 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/fi-cfl-8109u/igt@kms_addfb_basic@too-high.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/fi-cfl-8109u/igt@kms_addfb_basic@too-high.html #### Warnings #### * igt@i915_pm_rpm@basic-pci-d3-state: - fi-cfl-8109u: [DMESG-WARN][40] ([i915#7634] / [i915#8585]) -> [FAIL][41] ([i915#7940]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/fi-cfl-8109u/igt@i915_pm_rpm@basic-pci-d3-state.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/fi-cfl-8109u/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_pm_rpm@basic-rte: - fi-kbl-guc: [FAIL][42] ([i915#8843]) -> [FAIL][43] ([i915#7940]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html * igt@i915_pm_rpm@module-reload: - fi-cfl-8109u: [DMESG-FAIL][44] ([i915#7634] / [i915#8585]) -> [FAIL][45] ([i915#7940]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html * igt@kms_psr@cursor_plane_move: - bat-rplp-1: [SKIP][46] ([i915#1072]) -> [ABORT][47] ([i915#8434] / [i915#8668]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/bat-rplp-1/igt@kms_psr@cursor_plane_move.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/bat-rplp-1/igt@kms_psr@cursor_plane_move.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#7102]: https://gitlab.freedesktop.org/drm/intel/issues/7102 [i915#7634]: https://gitlab.freedesktop.org/drm/intel/issues/7634 [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7920]: https://gitlab.freedesktop.org/drm/intel/issues/7920 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#7977]: https://gitlab.freedesktop.org/drm/intel/issues/7977 [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978 [i915#8144]: https://gitlab.freedesktop.org/drm/intel/issues/8144 [i915#8189]: https://gitlab.freedesktop.org/drm/intel/issues/8189 [i915#8434]: https://gitlab.freedesktop.org/drm/intel/issues/8434 [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497 [i915#8585]: https://gitlab.freedesktop.org/drm/intel/issues/8585 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8843]: https://gitlab.freedesktop.org/drm/intel/issues/8843 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7411 -> IGTPW_9489 CI-20190529: 20190529 CI_DRM_13454: 8caa6fa0d2683e6efae4f1a9744c2d5d83a52fb5 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9489: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/index.html IGT_7411: 7411 Testlist changes ---------------- +igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/index.html [-- Attachment #2: Type: text/html, Size: 14487 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Add atomic DRM cursor hotspot test (rev3) 2023-08-01 8:48 [igt-dev] [PATCH v3 0/2] Add atomic DRM cursor hotspot test Albert Esteve ` (3 preceding siblings ...) 2023-08-01 10:19 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork @ 2023-08-01 11:57 ` Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-08-01 11:57 UTC (permalink / raw) To: Albert Esteve; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 80077 bytes --] == Series Details == Series: Add atomic DRM cursor hotspot test (rev3) URL : https://patchwork.freedesktop.org/series/121225/ State : success == Summary == CI Bug Log - changes from CI_DRM_13454_full -> IGTPW_9489_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/index.html Participating hosts (10 -> 10) ------------------------------ Additional (1): shard-rkl0 Missing (1): pig-kbl-iris Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9489_full: ### IGT changes ### #### Possible regressions #### * {igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot} (NEW): - shard-dg2: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-rkl: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-4/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg1: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg1-17/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-tglu: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-tglu-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-mtlp: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-4/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html New tests --------- New tests have been introduced between CI_DRM_13454_full and IGTPW_9489_full: ### New IGT tests (1) ### * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - Statuses : 8 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9489_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-1/igt@api_intel_bb@object-reloc-keep-cache.html - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8411]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-8/igt@api_intel_bb@object-reloc-keep-cache.html * igt@api_intel_bb@render-ccs: - shard-dg2: NOTRUN -> [FAIL][8] ([i915#6122]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-3/igt@api_intel_bb@render-ccs.html * igt@device_reset@unbind-reset-rebind: - shard-dg2: NOTRUN -> [ABORT][9] ([i915#5507] / [i915#8260]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-8/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@busy-hang@bcs0: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +12 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-7/igt@drm_fdinfo@busy-hang@bcs0.html * igt@drm_fdinfo@busy-hang@rcs0: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8414]) +5 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-4/igt@drm_fdinfo@busy-hang@rcs0.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [PASS][12] -> [FAIL][13] ([i915#7742]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-rkl-6/igt@drm_fdinfo@most-busy-check-all@rcs0.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#1839]) +1 similar issue [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-6/igt@feature_discovery@display-2x.html * igt@feature_discovery@psr1: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#658]) +4 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-3/igt@feature_discovery@psr1.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#3281]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg1-16/igt@gem_bad_reloc@negative-reloc-lut.html - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#3281]) +6 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-8/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#7697]) +1 similar issue [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-6/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [ABORT][19] ([i915#7461]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_persistence@engines-persistence: - shard-snb: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#1099]) +2 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-snb4/igt@gem_ctx_persistence@engines-persistence.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#8555]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-3/igt@gem_ctx_persistence@heartbeat-stop.html - shard-dg1: NOTRUN -> [SKIP][22] ([i915#8555]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-stop.html - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#8555]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-1/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_sseu@engines: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-3/igt@gem_ctx_sseu@engines.html * igt@gem_eio@hibernate: - shard-dg1: [PASS][25] -> [ABORT][26] ([i915#4391] / [i915#7975] / [i915#8213]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-dg1-17/igt@gem_eio@hibernate.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg1-14/igt@gem_eio@hibernate.html * igt@gem_eio@in-flight-contexts-10ms: - shard-mtlp: [PASS][27] -> [ABORT][28] ([i915#7941]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-mtlp-5/igt@gem_eio@in-flight-contexts-10ms.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-2/igt@gem_eio@in-flight-contexts-10ms.html * igt@gem_eio@kms: - shard-dg2: NOTRUN -> [INCOMPLETE][29] ([i915#7892]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-3/igt@gem_eio@kms.html * igt@gem_eio@reset-stress: - shard-dg1: [PASS][30] -> [FAIL][31] ([i915#5784]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-dg1-13/igt@gem_eio@reset-stress.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg1-16/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4812]) +1 similar issue [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-1/igt@gem_exec_balancer@sliced.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#6334]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-1/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#6344]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-2/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [PASS][35] -> [FAIL][36] ([i915#2846]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-flow: - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4473] / [i915#4771]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-7/igt@gem_exec_fair@basic-flow.html * igt@gem_exec_fair@basic-pace-solo: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-2/igt@gem_exec_fair@basic-pace-solo.html * igt@gem_exec_flush@basic-wb-rw-default: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) +3 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-3/igt@gem_exec_flush@basic-wb-rw-default.html * igt@gem_exec_gttfill@multigpu-basic: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#7697]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-8/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][41] ([fdo#109283] / [i915#5107]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-3/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#3281]) +2 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-1/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3281]) +14 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-7/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@semaphore-power: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-1/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: NOTRUN -> [ABORT][45] ([i915#7975] / [i915#8213]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-8/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4860]) +2 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-2/igt@gem_fence_thrash@bo-copy.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4860]) +2 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-2/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4613]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-8/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][49] ([i915#4613]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-tglu-9/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@parallel-multi: - shard-apl: NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#4613]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-apl2/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@parallel-random: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#4613]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-1/igt@gem_lmem_swapping@parallel-random.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#8289]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-3/igt@gem_media_fill@media-fill.html * igt@gem_media_vme: - shard-tglu: NOTRUN -> [SKIP][53] ([i915#284]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-tglu-4/igt@gem_media_vme.html * igt@gem_mmap_gtt@fault-concurrent: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4077]) +8 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-1/igt@gem_mmap_gtt@fault-concurrent.html * igt@gem_mmap_wc@write-read: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4083]) +2 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-8/igt@gem_mmap_wc@write-read.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4083]) +4 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-5/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@reads-display: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#3282]) +2 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-8/igt@gem_partial_pwrite_pread@reads-display.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#3282]) +3 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-2/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4270]) +2 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-3/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@fail-invalid-protected-context: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4270]) +1 similar issue [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-7/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-tglu: NOTRUN -> [SKIP][61] ([i915#4270]) +1 similar issue [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-tglu-10/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#4270]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-4/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_readwrite@new-obj: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#3282]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-2/igt@gem_readwrite@new-obj.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#8428]) +2 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-7/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4885]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-4/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_pread_basic: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4079]) +1 similar issue [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-2/igt@gem_tiled_pread_basic.html * igt@gem_tiled_swapping@non-threaded: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4077]) +18 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-7/igt@gem_tiled_swapping@non-threaded.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#3297]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg1-19/igt@gem_userptr_blits@dmabuf-unsync.html - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#3297]) +1 similar issue [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-7/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#3297] / [i915#4880]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@nohangcheck: - shard-mtlp: [PASS][71] -> [FAIL][72] ([i915#7916]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-mtlp-8/igt@gem_userptr_blits@nohangcheck.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-2/igt@gem_userptr_blits@nohangcheck.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3297]) +1 similar issue [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-10/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#3297] / [i915#4958]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-1/igt@gem_userptr_blits@sd-probe.html * igt@gen3_render_linear_blits: - shard-dg2: NOTRUN -> [SKIP][75] ([fdo#109289]) +4 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-5/igt@gen3_render_linear_blits.html * igt@gen9_exec_parse@allowed-all: - shard-tglu: NOTRUN -> [SKIP][76] ([i915#2527] / [i915#2856]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-tglu-10/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [PASS][77] -> [ABORT][78] ([i915#5566]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-glk4/igt@gen9_exec_parse@allowed-single.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-glk8/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-large: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#2856]) +2 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-1/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@secure-batches: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#2527]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-2/igt@gen9_exec_parse@secure-batches.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#2856]) +6 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-10/igt@gen9_exec_parse@valid-registers.html * igt@i915_hangman@engine-engine-hang@vcs0: - shard-mtlp: [PASS][82] -> [FAIL][83] ([i915#7069]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-mtlp-2/igt@i915_hangman@engine-engine-hang@vcs0.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-8/igt@i915_hangman@engine-engine-hang@vcs0.html * igt@i915_module_load@load: - shard-apl: NOTRUN -> [SKIP][84] ([fdo#109271] / [i915#6227]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-apl7/igt@i915_module_load@load.html - shard-dg2: NOTRUN -> [SKIP][85] ([i915#6227]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-5/igt@i915_module_load@load.html * igt@i915_module_load@resize-bar: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#6412]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-5/igt@i915_module_load@resize-bar.html * igt@i915_pm_backlight@fade-with-dpms: - shard-tglu: NOTRUN -> [SKIP][87] ([i915#7561]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-tglu-7/igt@i915_pm_backlight@fade-with-dpms.html * igt@i915_pm_backlight@fade-with-suspend: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#5354] / [i915#7561]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-1/igt@i915_pm_backlight@fade-with-suspend.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [PASS][89] -> [FAIL][90] ([fdo#103375]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-dg2-3/igt@i915_pm_freq_api@freq-suspend@gt0.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-5/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#1902]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-10/igt@i915_pm_lpsp@screens-disabled.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-rkl: NOTRUN -> [SKIP][92] ([fdo#109289]) +1 similar issue [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-1/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-mtlp: [PASS][93] -> [SKIP][94] ([fdo#109289] / [i915#8403]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-mtlp-6/igt@i915_pm_rc6_residency@rc6-accuracy.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-2/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-dg1: [PASS][95] -> [FAIL][96] ([i915#3591]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_pm_rpm@cursor-dpms: - shard-tglu: [PASS][97] -> [FAIL][98] ([i915#7940]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-tglu-5/igt@i915_pm_rpm@cursor-dpms.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-tglu-6/igt@i915_pm_rpm@cursor-dpms.html * igt@i915_pm_rpm@modeset-lpsp: - shard-dg1: [PASS][99] -> [SKIP][100] ([i915#1397]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg1-18/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#1397]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-2/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-dg2: [PASS][102] -> [SKIP][103] ([i915#1397]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-dg2-8/igt@i915_pm_rpm@modeset-non-lpsp.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-dg2: NOTRUN -> [SKIP][104] ([fdo#109506]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-1/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_pm_rps@thresholds-park@gt1: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#8925]) +1 similar issue [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-6/igt@i915_pm_rps@thresholds-park@gt1.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#4387]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-2/igt@i915_pm_sseu@full-enable.html - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#8437]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-8/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#6188]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-5/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@query-topology-unsupported: - shard-mtlp: NOTRUN -> [SKIP][109] ([fdo#109302]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-3/igt@i915_query@query-topology-unsupported.html * igt@i915_selftest@live@gt_mocs: - shard-mtlp: [PASS][110] -> [DMESG-FAIL][111] ([i915#7059]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-mtlp-2/igt@i915_selftest@live@gt_mocs.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-3/igt@i915_selftest@live@gt_mocs.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#4212]) +3 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-6/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@clobberred-modifier: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#4212]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-1/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-2: - shard-glk: [PASS][114] -> [FAIL][115] ([i915#2521]) +1 similar issue [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-glk4/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-2.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-glk6/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-2.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#8502]) +11 similar issues [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc_ccs.html * igt@kms_async_flips@crc@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [DMESG-FAIL][117] ([i915#8561]) +3 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-8/igt@kms_async_flips@crc@pipe-d-edp-1.html * igt@kms_async_flips@crc@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][118] ([i915#8247]) +3 similar issues [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg1-16/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#404]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][120] ([fdo#111614]) +1 similar issue [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-7/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@4-tiled-addfb: - shard-tglu: NOTRUN -> [SKIP][121] ([i915#5286]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-tglu-10/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-mtlp: [PASS][122] -> [FAIL][123] ([i915#3743]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [PASS][124] -> [FAIL][125] ([i915#5138]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-mtlp: NOTRUN -> [FAIL][126] ([i915#3743]) +2 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html - shard-dg1: NOTRUN -> [SKIP][127] ([i915#4538] / [i915#5286]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][128] ([fdo#111614] / [i915#3638]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-1/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][129] ([fdo#111614]) +5 similar issues [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-3/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#5190]) +17 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [SKIP][131] ([fdo#111615]) +4 similar issues [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#4538] / [i915#5190]) +7 similar issues [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html - shard-rkl: NOTRUN -> [SKIP][133] ([fdo#110723]) +1 similar issue [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#6187]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-4/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#3886] / [i915#6095]) +4 similar issues [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-5/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs: - shard-tglu: NOTRUN -> [SKIP][136] ([i915#3689] / [i915#5354] / [i915#6095]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-tglu-9/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#3689] / [i915#5354]) +30 similar issues [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-5/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_ccs.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#3689] / [i915#3886] / [i915#5354]) +15 similar issues [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-8/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][139] ([fdo#109271] / [i915#3886]) +1 similar issue [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-apl1/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#5354] / [i915#6095]) +5 similar issues [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-2/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-4_tiled_mtl_rc_ccs: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#5354] / [i915#6095]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg1-12/igt@kms_ccs@pipe-c-ccs-on-another-bo-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#5354]) +8 similar issues [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-4/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_dg2_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6095]) +20 similar issues [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-5/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#5354] / [i915#6095]) +3 similar issues [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-tglu-7/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs.html * igt@kms_chamelium_color@ctm-negative: - shard-dg2: NOTRUN -> [SKIP][145] ([fdo#111827]) +1 similar issue [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-2/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-mtlp: NOTRUN -> [SKIP][146] ([fdo#111827]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-6/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#7828]) +11 similar issues [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-7/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#7828]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#7828]) +4 similar issues [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-3/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#7828]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg1-15/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#3299]) +1 similar issue [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-8/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@mei_interface: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#7118]) +1 similar issue [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-1/igt@kms_content_protection@mei_interface.html - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#8063]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-4/igt@kms_content_protection@mei_interface.html * igt@kms_content_protection@uevent: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#7118]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-7/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#8814]) +2 similar issues [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#3555]) +1 similar issue [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#3555]) +7 similar issues [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-6/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#3359]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-suspend@pipe-b-vga-1: - shard-snb: NOTRUN -> [DMESG-WARN][159] ([i915#8841]) +2 similar issues [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-snb6/igt@kms_cursor_crc@cursor-suspend@pipe-b-vga-1.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3546]) +1 similar issue [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-8/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][161] ([fdo#109274] / [i915#5354]) +4 similar issues [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [PASS][162] -> [FAIL][163] ([i915#2346]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][164] -> [FAIL][165] ([i915#2346]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * {igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot} (NEW): - shard-glk: NOTRUN -> [SKIP][166] ([fdo#109271]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-glk9/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#4103] / [i915#4213]) +1 similar issue [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#8812]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-1/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#3840]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-1/igt@kms_dsc@dsc-with-bpc.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#3469]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-10/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][171] ([fdo#109274]) +7 similar issues [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-3/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-dg1: NOTRUN -> [SKIP][172] ([fdo#111825]) +3 similar issues [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg1-16/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#8381]) +2 similar issues [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-5/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-suspend: - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#3637]) +4 similar issues [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-1/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@c-dp1: - shard-apl: [PASS][175] -> [ABORT][176] ([i915#180]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-apl2/igt@kms_flip@flip-vs-suspend@c-dp1.html [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-apl4/igt@kms_flip@flip-vs-suspend@c-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#2587] / [i915#2672]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#2672]) +2 similar issues [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#8810]) +1 similar issue [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#2672]) +2 similar issues [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg2: [PASS][181] -> [FAIL][182] ([i915#6880]) +2 similar issues [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#8708]) +21 similar issues [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#5354]) +53 similar issues [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt: - shard-tglu: NOTRUN -> [SKIP][185] ([fdo#109280]) +3 similar issues [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-linear: - shard-dg2: NOTRUN -> [FAIL][186] ([i915#6880]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#5460]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html - shard-dg2: NOTRUN -> [SKIP][188] ([i915#5460]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#3458]) +22 similar issues [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][190] ([fdo#111825] / [i915#1825]) +8 similar issues [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#8708]) +4 similar issues [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#1825]) +23 similar issues [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#3023]) +5 similar issues [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: [PASS][194] -> [SKIP][195] ([i915#433]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-tglu-6/igt@kms_hdmi_inject@inject-audio.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-tglu-9/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@static-toggle: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#8228]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-2/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#8228]) +1 similar issue [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-7/igt@kms_hdr@static-toggle-suspend.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#6301]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-6/igt@kms_panel_fitting@legacy.html * igt@kms_plane@pixel-format@pipe-b-planes: - shard-mtlp: [PASS][199] -> [FAIL][200] ([i915#1623]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-mtlp-2/igt@kms_plane@pixel-format@pipe-b-planes.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-4/igt@kms_plane@pixel-format@pipe-b-planes.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#8806]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-1/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#8806]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-7/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-rkl: NOTRUN -> [SKIP][203] ([fdo#111825]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-dg1: NOTRUN -> [FAIL][204] ([i915#8292]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#5176]) +1 similar issue [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#5176]) +23 similar issues [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg1-18/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#5235]) +1 similar issue [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#5235]) +11 similar issues [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#5235]) +7 similar issues [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1: - shard-snb: NOTRUN -> [SKIP][210] ([fdo#109271]) +231 similar issues [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-snb6/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][211] ([i915#5235]) +15 similar issues [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg1-15/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_psr2_su@page_flip-p010: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#4348]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-4/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@basic: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#1072]) +1 similar issue [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg1-12/igt@kms_psr@basic.html * igt@kms_psr@psr2_sprite_plane_move: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#1072]) +9 similar issues [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-2/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_psr@psr2_sprite_render: - shard-tglu: NOTRUN -> [SKIP][215] ([fdo#110189]) +3 similar issues [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-tglu-5/igt@kms_psr@psr2_sprite_render.html * igt@kms_psr@sprite_blt: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#1072]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-4/igt@kms_psr@sprite_blt.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#4235] / [i915#5190]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#4235]) +1 similar issue [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-7/igt@kms_rotation_crc@sprite-rotation-270.html - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#4235]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-7/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_scaling_modes@scaling-mode-center: - shard-dg1: NOTRUN -> [SKIP][220] ([i915#3555]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg1-15/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_selftest@drm_format: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#8661]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-6/igt@kms_selftest@drm_format.html * igt@kms_selftest@drm_plane: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#8661]) +3 similar issues [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-5/igt@kms_selftest@drm_plane.html * igt@kms_selftest@framebuffer: - shard-snb: NOTRUN -> [SKIP][223] ([fdo#109271] / [i915#8661]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-snb2/igt@kms_selftest@framebuffer.html * igt@kms_vblank@pipe-c-wait-idle-hang: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#4070] / [i915#6768]) +1 similar issue [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-3/igt@kms_vblank@pipe-c-wait-idle-hang.html * igt@kms_vblank@pipe-d-query-idle-hang: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#4070] / [i915#533] / [i915#6768]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-2/igt@kms_vblank@pipe-d-query-idle-hang.html * igt@kms_vrr@flip-suspend: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#8808]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-3/igt@kms_vrr@flip-suspend.html * igt@kms_writeback@writeback-check-output: - shard-apl: NOTRUN -> [SKIP][227] ([fdo#109271] / [i915#2437]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-apl1/igt@kms_writeback@writeback-check-output.html - shard-dg2: NOTRUN -> [SKIP][228] ([i915#2437]) +1 similar issue [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-10/igt@kms_writeback@writeback-check-output.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-mtlp: NOTRUN -> [SKIP][229] ([fdo#109289]) +3 similar issues [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-5/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#2433]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-7/igt@perf@unprivileged-single-ctx-counters.html * igt@prime_udl: - shard-dg2: NOTRUN -> [SKIP][231] ([fdo#109291]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-2/igt@prime_udl.html - shard-rkl: NOTRUN -> [SKIP][232] ([fdo#109291]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-6/igt@prime_udl.html * igt@prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#3291] / [i915#3708]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-1/igt@prime_vgem@basic-read.html * igt@prime_vgem@coherency-blt: - shard-mtlp: NOTRUN -> [FAIL][234] ([i915#8445]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-7/igt@prime_vgem@coherency-blt.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#3708]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-5/igt@prime_vgem@fence-read-hang.html * igt@sysfs_heartbeat_interval@mixed@ccs0: - shard-mtlp: NOTRUN -> [ABORT][236] ([i915#8552]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-1/igt@sysfs_heartbeat_interval@mixed@ccs0.html * igt@sysfs_heartbeat_interval@mixed@vecs0: - shard-mtlp: NOTRUN -> [FAIL][237] ([i915#1731]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-1/igt@sysfs_heartbeat_interval@mixed@vecs0.html * igt@v3d/v3d_get_param@get-bad-flags: - shard-rkl: NOTRUN -> [SKIP][238] ([fdo#109315]) +4 similar issues [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-4/igt@v3d/v3d_get_param@get-bad-flags.html * igt@v3d/v3d_get_param@get-bad-param: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#2575]) +6 similar issues [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-5/igt@v3d/v3d_get_param@get-bad-param.html * igt@v3d/v3d_submit_cl@multiple-job-submission: - shard-apl: NOTRUN -> [SKIP][240] ([fdo#109271]) +52 similar issues [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-apl7/igt@v3d/v3d_submit_cl@multiple-job-submission.html * igt@v3d/v3d_submit_csd@job-perfmon: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#2575]) +20 similar issues [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-6/igt@v3d/v3d_submit_csd@job-perfmon.html * igt@v3d/v3d_wait_bo@bad-bo: - shard-tglu: NOTRUN -> [SKIP][242] ([fdo#109315] / [i915#2575]) +1 similar issue [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-tglu-7/igt@v3d/v3d_wait_bo@bad-bo.html * igt@vc4/vc4_label_bo@set-kernel-name: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#7711]) +9 similar issues [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-10/igt@vc4/vc4_label_bo@set-kernel-name.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#7711]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-2/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html * igt@vc4/vc4_wait_bo@used-bo: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#7711]) +5 similar issues [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-4/igt@vc4/vc4_wait_bo@used-bo.html * igt@vc4/vc4_wait_seqno@bad-seqno-0ns: - shard-tglu: NOTRUN -> [SKIP][246] ([i915#2575]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-tglu-2/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: [FAIL][247] ([i915#7742]) -> [PASS][248] [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-rkl-3/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@gem_eio@kms: - shard-dg1: [FAIL][249] ([i915#5784]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-dg1-14/igt@gem_eio@kms.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg1-12/igt@gem_eio@kms.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [FAIL][251] ([i915#2842]) -> [PASS][252] +1 similar issue [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-rkl-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-1/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_whisper@basic-contexts-forked-all: - shard-mtlp: [ABORT][253] ([i915#7392] / [i915#8131]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-mtlp-2/igt@gem_exec_whisper@basic-contexts-forked-all.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-7/igt@gem_exec_whisper@basic-contexts-forked-all.html * igt@i915_hangman@detector@vcs0: - shard-mtlp: [FAIL][255] ([i915#8456]) -> [PASS][256] +2 similar issues [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-mtlp-3/igt@i915_hangman@detector@vcs0.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-5/igt@i915_hangman@detector@vcs0.html * igt@i915_hangman@gt-engine-hang@vcs0: - shard-mtlp: [FAIL][257] ([i915#7069]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-mtlp-3/igt@i915_hangman@gt-engine-hang@vcs0.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-8/igt@i915_hangman@gt-engine-hang@vcs0.html * igt@i915_pm_dc@dc6-dpms: - shard-tglu: [FAIL][259] ([i915#3989] / [i915#454]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-tglu-3/igt@i915_pm_dc@dc6-dpms.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-tglu-4/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-dg1: [SKIP][261] ([i915#1937]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-dg1-15/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg1-19/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rpm@gem-execbuf@smem0: - shard-tglu: [FAIL][263] ([i915#7940]) -> [PASS][264] +2 similar issues [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-tglu-2/igt@i915_pm_rpm@gem-execbuf@smem0.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-tglu-4/igt@i915_pm_rpm@gem-execbuf@smem0.html * igt@i915_pm_rpm@modeset-lpsp: - shard-dg2: [SKIP][265] ([i915#1397]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-dg2-2/igt@i915_pm_rpm@modeset-lpsp.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg2-10/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_selftest@live@requests: - shard-snb: [ABORT][267] -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-snb6/igt@i915_selftest@live@requests.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-snb1/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@slpc: - shard-mtlp: [DMESG-WARN][269] ([i915#6367]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-mtlp-2/igt@i915_selftest@live@slpc.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-3/igt@i915_selftest@live@slpc.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [DMESG-FAIL][271] ([i915#6763]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-mtlp-2/igt@i915_selftest@live@workarounds.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-3/igt@i915_selftest@live@workarounds.html * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-mtlp: [FAIL][273] ([i915#8248]) -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-mtlp-1/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-4/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [FAIL][275] ([i915#2346]) -> [PASS][276] [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2: - shard-glk: [FAIL][277] ([i915#79]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-glk4/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-glk9/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2.html * igt@perf_pmu@busy-double-start@rcs0: - shard-mtlp: [FAIL][279] ([i915#4349]) -> [PASS][280] [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-mtlp-3/igt@perf_pmu@busy-double-start@rcs0.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-mtlp-6/igt@perf_pmu@busy-double-start@rcs0.html * igt@perf_pmu@busy-double-start@vcs1: - shard-dg1: [FAIL][281] ([i915#4349]) -> [PASS][282] +2 similar issues [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-dg1-13/igt@perf_pmu@busy-double-start@vcs1.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg1-15/igt@perf_pmu@busy-double-start@vcs1.html * igt@prime_vgem@wait@vcs0: - shard-apl: [ABORT][283] -> [PASS][284] [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-apl6/igt@prime_vgem@wait@vcs0.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-apl6/igt@prime_vgem@wait@vcs0.html * igt@prime_vgem@wait@vecs0: - shard-apl: [DMESG-WARN][285] -> [PASS][286] [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-apl6/igt@prime_vgem@wait@vecs0.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-apl6/igt@prime_vgem@wait@vecs0.html #### Warnings #### * igt@gem_exec_suspend@basic-s0@smem: - shard-snb: [DMESG-FAIL][287] ([fdo#103375]) -> [DMESG-WARN][288] ([i915#8841]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-snb7/igt@gem_exec_suspend@basic-s0@smem.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-snb2/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [TIMEOUT][289] ([i915#5493]) -> [DMESG-WARN][290] ([i915#4936] / [i915#5493]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-dg1: [FAIL][291] ([i915#7940]) -> [SKIP][292] ([i915#1397]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-dg1-14/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg1-14/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@i2c: - shard-dg1: [DMESG-WARN][293] ([i915#4391] / [i915#4423]) -> [DMESG-WARN][294] ([i915#4391]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-dg1-13/igt@i915_pm_rpm@i2c.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg1-19/igt@i915_pm_rpm@i2c.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-snb: [ABORT][295] ([i915#4528] / [i915#8213] / [i915#8841]) -> [DMESG-WARN][296] ([i915#8841]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-snb2/igt@i915_suspend@basic-s2idle-without-i915.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-snb5/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-dg1: [SKIP][297] ([i915#3689] / [i915#3886] / [i915#4423] / [i915#5354] / [i915#6095]) -> [SKIP][298] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-dg1-12/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg1-14/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_content_protection@mei_interface: - shard-dg1: [SKIP][299] ([fdo#109300]) -> [SKIP][300] ([i915#7116]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-dg1-12/igt@kms_content_protection@mei_interface.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg1-18/igt@kms_content_protection@mei_interface.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][301] ([fdo#110189] / [i915#3955]) -> [SKIP][302] ([i915#3955]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_psr@cursor_plane_move: - shard-dg1: [SKIP][303] ([i915#1072]) -> [SKIP][304] ([i915#1072] / [i915#4078]) +1 similar issue [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-dg1-17/igt@kms_psr@cursor_plane_move.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg1-18/igt@kms_psr@cursor_plane_move.html * igt@kms_psr@primary_mmap_gtt: - shard-dg1: [SKIP][305] ([i915#1072] / [i915#4078]) -> [SKIP][306] ([i915#1072]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13454/shard-dg1-12/igt@kms_psr@primary_mmap_gtt.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/shard-dg1-14/igt@kms_psr@primary_mmap_gtt.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1623]: https://gitlab.freedesktop.org/drm/intel/issues/1623 [i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5507]: https://gitlab.freedesktop.org/drm/intel/issues/5507 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6122]: https://gitlab.freedesktop.org/drm/intel/issues/6122 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7892]: https://gitlab.freedesktop.org/drm/intel/issues/7892 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7916]: https://gitlab.freedesktop.org/drm/intel/issues/7916 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#7941]: https://gitlab.freedesktop.org/drm/intel/issues/7941 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063 [i915#8131]: https://gitlab.freedesktop.org/drm/intel/issues/8131 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8248]: https://gitlab.freedesktop.org/drm/intel/issues/8248 [i915#8260]: https://gitlab.freedesktop.org/drm/intel/issues/8260 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437 [i915#8445]: https://gitlab.freedesktop.org/drm/intel/issues/8445 [i915#8456]: https://gitlab.freedesktop.org/drm/intel/issues/8456 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8552]: https://gitlab.freedesktop.org/drm/intel/issues/8552 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7411 -> IGTPW_9489 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13454: 8caa6fa0d2683e6efae4f1a9744c2d5d83a52fb5 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9489: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/index.html IGT_7411: 7411 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9489/index.html [-- Attachment #2: Type: text/html, Size: 97950 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2023-08-02 9:42 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-08-01 8:48 [igt-dev] [PATCH v3 0/2] Add atomic DRM cursor hotspot test Albert Esteve 2023-08-01 8:48 ` [igt-dev] [PATCH v3 1/2] igt_kms: add hotspot plane property Albert Esteve 2023-08-01 8:48 ` [igt-dev] [PATCH v3 2/2] kms_cursor_legacy: modeset-atomic-cursor-hotspot Albert Esteve 2023-08-02 8:11 ` Modem, Bhanuprakash 2023-08-02 9:20 ` Albert Esteve 2023-08-02 9:42 ` Modem, Bhanuprakash 2023-08-01 10:11 ` [igt-dev] ○ CI.xeBAT: info for Add atomic DRM cursor hotspot test (rev3) Patchwork 2023-08-01 10:19 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2023-08-01 11:57 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox