* [igt-dev] [PATCH i-g-t v2] tests/kms_display_modes: Fixed mode selection for extended mode tests
2022-08-08 9:36 [igt-dev] [PATCH i-g-t] tests/kms_display_modes: Add check on ENOSPC for DP MST config Mohammed Thasleem
@ 2022-08-14 9:28 ` Mohammed Thasleem
2022-08-30 11:41 ` [igt-dev] [PATCH i-g-t] " Mohammed Thasleem
2023-02-24 9:40 ` [igt-dev] [PATCH i-g-t v2] " Modem, Bhanuprakash
2022-09-04 10:09 ` [igt-dev] [PATCH i-g-t] " Mohammed Thasleem
` (12 subsequent siblings)
13 siblings, 2 replies; 20+ messages in thread
From: Mohammed Thasleem @ 2022-08-14 9:28 UTC (permalink / raw)
To: igt-dev
Added check on ENOSPC when two moniters connected through MST.
This will find the connector mode combo that fits into the
bandwidth when more than one monitor is connected.
Example:
When two monitors connected through MST, the second monitor
also tries to use the same mode. So two such modes may not
fit into the link bandwidth. So, iterate through connected
outputs & modes and find a combination of modes those fit
into the link BW.
v2: -Updated commit msg and description. (Bhanu)
-Renamed restart with retry. (Bhanu)
-Moved igt_pipe_crc_new before retry. (Bhanu)
-Removed unrelated changes and new line. (Bhanu)
-Minor changes.
Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
---
tests/kms_display_modes.c | 25 +++++++++++++++++++++----
1 file changed, 21 insertions(+), 4 deletions(-)
diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c
index e4191811..19026dc1 100644
--- a/tests/kms_display_modes.c
+++ b/tests/kms_display_modes.c
@@ -43,7 +43,7 @@ static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
igt_plane_t *plane[2];
igt_pipe_crc_t *pipe_crc[2] = { 0 };
igt_crc_t ref_crc[2], crc[2];
- int count = 0, width, height;
+ int count = 0, width, height, ret;
cairo_t *cr;
for_each_connected_output(display, output) {
@@ -54,14 +54,16 @@ static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
break;
}
+ pipe_crc[0] = igt_pipe_crc_new(data->drm_fd, pipe1, IGT_PIPE_CRC_SOURCE_AUTO);
+ pipe_crc[1] = igt_pipe_crc_new(data->drm_fd, pipe2, IGT_PIPE_CRC_SOURCE_AUTO);
+
+retry:
igt_output_set_pipe(extended_output[0], pipe1);
igt_output_set_pipe(extended_output[1], pipe2);
mode[0] = igt_output_get_mode(extended_output[0]);
mode[1] = igt_output_get_mode(extended_output[1]);
- pipe_crc[0] = igt_pipe_crc_new(data->drm_fd, pipe1, IGT_PIPE_CRC_SOURCE_AUTO);
- pipe_crc[1] = igt_pipe_crc_new(data->drm_fd, pipe2, IGT_PIPE_CRC_SOURCE_AUTO);
igt_create_color_fb(data->drm_fd, mode[0]->hdisplay, mode[0]->vdisplay,
DRM_FORMAT_XRGB8888, 0, 1, 0, 0, &fbs[0]);
@@ -79,7 +81,22 @@ static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
igt_fb_set_size(&fbs[1], plane[1], mode[1]->hdisplay, mode[1]->vdisplay);
igt_plane_set_size(plane[1], mode[1]->hdisplay, mode[1]->vdisplay);
- igt_display_commit2(display, COMMIT_ATOMIC);
+ ret = igt_display_try_commit2(display, COMMIT_ATOMIC);
+ if (ret != 0 && errno == ENOSPC) {
+ bool found = igt_override_all_active_output_modes_to_fit_bw(display);
+
+ igt_require_f(found, "No valid mode combo found.\n");
+
+ for_each_connected_output(display, output)
+ igt_output_set_pipe(output, PIPE_NONE);
+
+ igt_remove_fb(data->drm_fd, &fbs[0]);
+ igt_remove_fb(data->drm_fd, &fbs[1]);
+
+ goto retry;
+ }
+
+ igt_assert(!ret);
igt_pipe_crc_collect_crc(pipe_crc[0], &ref_crc[0]);
igt_pipe_crc_collect_crc(pipe_crc[1], &ref_crc[1]);
--
2.25.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* [igt-dev] [PATCH i-g-t] tests/kms_display_modes: Fixed mode selection for extended mode tests
2022-08-14 9:28 ` [igt-dev] [PATCH i-g-t v2] tests/kms_display_modes: Fixed mode selection for extended mode tests Mohammed Thasleem
@ 2022-08-30 11:41 ` Mohammed Thasleem
2023-03-09 5:19 ` Modem, Bhanuprakash
2023-02-24 9:40 ` [igt-dev] [PATCH i-g-t v2] " Modem, Bhanuprakash
1 sibling, 1 reply; 20+ messages in thread
From: Mohammed Thasleem @ 2022-08-30 11:41 UTC (permalink / raw)
To: igt-dev
Added check on ENOSPC and EINVAL when two moniters connected
through MST.
This will find the connector mode combo that fits into the
bandwidth when more than one monitor is connected.
Example:
When two monitors connected through MST, the second monitor
also tries to use the same mode. So two such modes may not
fit into the link bandwidth. So, iterate through connected
outputs & modes and find a combination of modes those fit
into the link BW.
v2: -Updated commit msg and description. (Bhanu)
-Renamed restart with retry. (Bhanu)
-Moved igt_pipe_crc_new before retry. (Bhanu)
-Removed unrelated changes and new line. (Bhanu)
-Minor changes.
v3: Updated discription and added EINVAL check.
Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/kms_display_modes.c | 27 +++++++++++++++++++++++----
1 file changed, 23 insertions(+), 4 deletions(-)
diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c
index e4191811e..7d4f64e0d 100644
--- a/tests/kms_display_modes.c
+++ b/tests/kms_display_modes.c
@@ -43,7 +43,7 @@ static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
igt_plane_t *plane[2];
igt_pipe_crc_t *pipe_crc[2] = { 0 };
igt_crc_t ref_crc[2], crc[2];
- int count = 0, width, height;
+ int count = 0, width, height, ret;
cairo_t *cr;
for_each_connected_output(display, output) {
@@ -54,14 +54,16 @@ static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
break;
}
+ pipe_crc[0] = igt_pipe_crc_new(data->drm_fd, pipe1, IGT_PIPE_CRC_SOURCE_AUTO);
+ pipe_crc[1] = igt_pipe_crc_new(data->drm_fd, pipe2, IGT_PIPE_CRC_SOURCE_AUTO);
+
+retry:
igt_output_set_pipe(extended_output[0], pipe1);
igt_output_set_pipe(extended_output[1], pipe2);
mode[0] = igt_output_get_mode(extended_output[0]);
mode[1] = igt_output_get_mode(extended_output[1]);
- pipe_crc[0] = igt_pipe_crc_new(data->drm_fd, pipe1, IGT_PIPE_CRC_SOURCE_AUTO);
- pipe_crc[1] = igt_pipe_crc_new(data->drm_fd, pipe2, IGT_PIPE_CRC_SOURCE_AUTO);
igt_create_color_fb(data->drm_fd, mode[0]->hdisplay, mode[0]->vdisplay,
DRM_FORMAT_XRGB8888, 0, 1, 0, 0, &fbs[0]);
@@ -79,7 +81,24 @@ static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
igt_fb_set_size(&fbs[1], plane[1], mode[1]->hdisplay, mode[1]->vdisplay);
igt_plane_set_size(plane[1], mode[1]->hdisplay, mode[1]->vdisplay);
- igt_display_commit2(display, COMMIT_ATOMIC);
+ ret = igt_display_try_commit2(display, COMMIT_ATOMIC);
+
+ /* In case of DP-MST find suitable mode(s) to fit into the link BW. */
+ if (ret != 0 && (errno == ENOSPC || errno == EINVAL)) {
+ bool found = igt_override_all_active_output_modes_to_fit_bw(display);
+
+ igt_require_f(found, "No valid mode combo found.\n");
+
+ for_each_connected_output(display, output)
+ igt_output_set_pipe(output, PIPE_NONE);
+
+ igt_remove_fb(data->drm_fd, &fbs[0]);
+ igt_remove_fb(data->drm_fd, &fbs[1]);
+
+ goto retry;
+ }
+
+ igt_assert(!ret);
igt_pipe_crc_collect_crc(pipe_crc[0], &ref_crc[0]);
igt_pipe_crc_collect_crc(pipe_crc[1], &ref_crc[1]);
--
2.25.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* Re: [igt-dev] [PATCH i-g-t] tests/kms_display_modes: Fixed mode selection for extended mode tests
2022-08-30 11:41 ` [igt-dev] [PATCH i-g-t] " Mohammed Thasleem
@ 2023-03-09 5:19 ` Modem, Bhanuprakash
0 siblings, 0 replies; 20+ messages in thread
From: Modem, Bhanuprakash @ 2023-03-09 5:19 UTC (permalink / raw)
To: Mohammed Thasleem, igt-dev
On Tue-30-08-2022 05:11 pm, Mohammed Thasleem wrote:
> Added check on ENOSPC and EINVAL when two moniters connected
> through MST.
> This will find the connector mode combo that fits into the
> bandwidth when more than one monitor is connected.
>
> Example:
> When two monitors connected through MST, the second monitor
> also tries to use the same mode. So two such modes may not
> fit into the link bandwidth. So, iterate through connected
> outputs & modes and find a combination of modes those fit
> into the link BW.
>
> v2: -Updated commit msg and description. (Bhanu)
> -Renamed restart with retry. (Bhanu)
> -Moved igt_pipe_crc_new before retry. (Bhanu)
> -Removed unrelated changes and new line. (Bhanu)
> -Minor changes.
> v3: Updated discription and added EINVAL check.
>
> Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
> Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> ---
> tests/kms_display_modes.c | 27 +++++++++++++++++++++++----
> 1 file changed, 23 insertions(+), 4 deletions(-)
>
> diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c
> index e4191811e..7d4f64e0d 100644
> --- a/tests/kms_display_modes.c
> +++ b/tests/kms_display_modes.c
> @@ -43,7 +43,7 @@ static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
> igt_plane_t *plane[2];
> igt_pipe_crc_t *pipe_crc[2] = { 0 };
> igt_crc_t ref_crc[2], crc[2];
> - int count = 0, width, height;
> + int count = 0, width, height, ret;
> cairo_t *cr;
>
> for_each_connected_output(display, output) {
> @@ -54,14 +54,16 @@ static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
> break;
> }
>
> + pipe_crc[0] = igt_pipe_crc_new(data->drm_fd, pipe1, IGT_PIPE_CRC_SOURCE_AUTO);
> + pipe_crc[1] = igt_pipe_crc_new(data->drm_fd, pipe2, IGT_PIPE_CRC_SOURCE_AUTO);
> +
> +retry:
> igt_output_set_pipe(extended_output[0], pipe1);
> igt_output_set_pipe(extended_output[1], pipe2);
>
> mode[0] = igt_output_get_mode(extended_output[0]);
> mode[1] = igt_output_get_mode(extended_output[1]);
>
> - pipe_crc[0] = igt_pipe_crc_new(data->drm_fd, pipe1, IGT_PIPE_CRC_SOURCE_AUTO);
> - pipe_crc[1] = igt_pipe_crc_new(data->drm_fd, pipe2, IGT_PIPE_CRC_SOURCE_AUTO);
>
> igt_create_color_fb(data->drm_fd, mode[0]->hdisplay, mode[0]->vdisplay,
> DRM_FORMAT_XRGB8888, 0, 1, 0, 0, &fbs[0]);
> @@ -79,7 +81,24 @@ static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
> igt_fb_set_size(&fbs[1], plane[1], mode[1]->hdisplay, mode[1]->vdisplay);
> igt_plane_set_size(plane[1], mode[1]->hdisplay, mode[1]->vdisplay);
>
> - igt_display_commit2(display, COMMIT_ATOMIC);
> + ret = igt_display_try_commit2(display, COMMIT_ATOMIC);
> +
> + /* In case of DP-MST find suitable mode(s) to fit into the link BW. */
> + if (ret != 0 && (errno == ENOSPC || errno == EINVAL)) {
Why EINVAL?
> + bool found = igt_override_all_active_output_modes_to_fit_bw(display);
> +
> + igt_require_f(found, "No valid mode combo found.\n");
> +
> + for_each_connected_output(display, output)
> + igt_output_set_pipe(output, PIPE_NONE);
> +
> + igt_remove_fb(data->drm_fd, &fbs[0]);
> + igt_remove_fb(data->drm_fd, &fbs[1]);
> +
> + goto retry;
> + }
> +
> + igt_assert(!ret);
>
> igt_pipe_crc_collect_crc(pipe_crc[0], &ref_crc[0]);
> igt_pipe_crc_collect_crc(pipe_crc[1], &ref_crc[1]);
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2] tests/kms_display_modes: Fixed mode selection for extended mode tests
2022-08-14 9:28 ` [igt-dev] [PATCH i-g-t v2] tests/kms_display_modes: Fixed mode selection for extended mode tests Mohammed Thasleem
2022-08-30 11:41 ` [igt-dev] [PATCH i-g-t] " Mohammed Thasleem
@ 2023-02-24 9:40 ` Modem, Bhanuprakash
2023-03-08 17:25 ` Kamil Konieczny
1 sibling, 1 reply; 20+ messages in thread
From: Modem, Bhanuprakash @ 2023-02-24 9:40 UTC (permalink / raw)
To: Mohammed Thasleem, igt-dev
On Sun-14-08-2022 02:58 pm, Mohammed Thasleem wrote:
> Added check on ENOSPC when two moniters connected through MST.
> This will find the connector mode combo that fits into the
> bandwidth when more than one monitor is connected.
>
> Example:
> When two monitors connected through MST, the second monitor
> also tries to use the same mode. So two such modes may not
> fit into the link bandwidth. So, iterate through connected
> outputs & modes and find a combination of modes those fit
> into the link BW.
>
> v2: -Updated commit msg and description. (Bhanu)
> -Renamed restart with retry. (Bhanu)
> -Moved igt_pipe_crc_new before retry. (Bhanu)
> -Removed unrelated changes and new line. (Bhanu)
> -Minor changes.
>
> Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
> ---
> tests/kms_display_modes.c | 25 +++++++++++++++++++++----
> 1 file changed, 21 insertions(+), 4 deletions(-)
>
> diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c
> index e4191811..19026dc1 100644
> --- a/tests/kms_display_modes.c
> +++ b/tests/kms_display_modes.c
> @@ -43,7 +43,7 @@ static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
> igt_plane_t *plane[2];
> igt_pipe_crc_t *pipe_crc[2] = { 0 };
> igt_crc_t ref_crc[2], crc[2];
> - int count = 0, width, height;
> + int count = 0, width, height, ret;
> cairo_t *cr;
>
> for_each_connected_output(display, output) {
> @@ -54,14 +54,16 @@ static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
> break;
> }
>
> + pipe_crc[0] = igt_pipe_crc_new(data->drm_fd, pipe1, IGT_PIPE_CRC_SOURCE_AUTO);
> + pipe_crc[1] = igt_pipe_crc_new(data->drm_fd, pipe2, IGT_PIPE_CRC_SOURCE_AUTO);
> +
> +retry:
> igt_output_set_pipe(extended_output[0], pipe1);
> igt_output_set_pipe(extended_output[1], pipe2);
>
> mode[0] = igt_output_get_mode(extended_output[0]);
> mode[1] = igt_output_get_mode(extended_output[1]);
>
> - pipe_crc[0] = igt_pipe_crc_new(data->drm_fd, pipe1, IGT_PIPE_CRC_SOURCE_AUTO);
> - pipe_crc[1] = igt_pipe_crc_new(data->drm_fd, pipe2, IGT_PIPE_CRC_SOURCE_AUTO);
>
> igt_create_color_fb(data->drm_fd, mode[0]->hdisplay, mode[0]->vdisplay,
> DRM_FORMAT_XRGB8888, 0, 1, 0, 0, &fbs[0]);
> @@ -79,7 +81,22 @@ static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
> igt_fb_set_size(&fbs[1], plane[1], mode[1]->hdisplay, mode[1]->vdisplay);
> igt_plane_set_size(plane[1], mode[1]->hdisplay, mode[1]->vdisplay);
>
> - igt_display_commit2(display, COMMIT_ATOMIC);
> + ret = igt_display_try_commit2(display, COMMIT_ATOMIC);
It would be better to add one or two line comment about this handling.
Maybe you can add it while pushing this patch, no need to float a new rev.
Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
- Bhanu
> + if (ret != 0 && errno == ENOSPC) {
> + bool found = igt_override_all_active_output_modes_to_fit_bw(display);
> +
> + igt_require_f(found, "No valid mode combo found.\n");
> +
> + for_each_connected_output(display, output)
> + igt_output_set_pipe(output, PIPE_NONE);
> +
> + igt_remove_fb(data->drm_fd, &fbs[0]);
> + igt_remove_fb(data->drm_fd, &fbs[1]);
> +
> + goto retry;
> + }
> +
> + igt_assert(!ret);
>
> igt_pipe_crc_collect_crc(pipe_crc[0], &ref_crc[0]);
> igt_pipe_crc_collect_crc(pipe_crc[1], &ref_crc[1]);
^ permalink raw reply [flat|nested] 20+ messages in thread* Re: [igt-dev] [PATCH i-g-t v2] tests/kms_display_modes: Fixed mode selection for extended mode tests
2023-02-24 9:40 ` [igt-dev] [PATCH i-g-t v2] " Modem, Bhanuprakash
@ 2023-03-08 17:25 ` Kamil Konieczny
2023-03-09 5:10 ` Modem, Bhanuprakash
0 siblings, 1 reply; 20+ messages in thread
From: Kamil Konieczny @ 2023-03-08 17:25 UTC (permalink / raw)
To: igt-dev
Hi,
On 2023-02-24 at 15:10:07 +0530, Modem, Bhanuprakash wrote:
>
>
> On Sun-14-08-2022 02:58 pm, Mohammed Thasleem wrote:
> > Added check on ENOSPC when two moniters connected through MST.
> > This will find the connector mode combo that fits into the
> > bandwidth when more than one monitor is connected.
> >
> > Example:
> > When two monitors connected through MST, the second monitor
> > also tries to use the same mode. So two such modes may not
> > fit into the link bandwidth. So, iterate through connected
> > outputs & modes and find a combination of modes those fit
> > into the link BW.
> >
> > v2: -Updated commit msg and description. (Bhanu)
> > -Renamed restart with retry. (Bhanu)
> > -Moved igt_pipe_crc_new before retry. (Bhanu)
> > -Removed unrelated changes and new line. (Bhanu)
> > -Minor changes.
> >
> > Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
> > ---
> > tests/kms_display_modes.c | 25 +++++++++++++++++++++----
> > 1 file changed, 21 insertions(+), 4 deletions(-)
> >
> > diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c
> > index e4191811..19026dc1 100644
> > --- a/tests/kms_display_modes.c
> > +++ b/tests/kms_display_modes.c
> > @@ -43,7 +43,7 @@ static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
> > igt_plane_t *plane[2];
> > igt_pipe_crc_t *pipe_crc[2] = { 0 };
> > igt_crc_t ref_crc[2], crc[2];
> > - int count = 0, width, height;
> > + int count = 0, width, height, ret;
> > cairo_t *cr;
> > for_each_connected_output(display, output) {
> > @@ -54,14 +54,16 @@ static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
> > break;
> > }
> > + pipe_crc[0] = igt_pipe_crc_new(data->drm_fd, pipe1, IGT_PIPE_CRC_SOURCE_AUTO);
> > + pipe_crc[1] = igt_pipe_crc_new(data->drm_fd, pipe2, IGT_PIPE_CRC_SOURCE_AUTO);
> > +
> > +retry:
> > igt_output_set_pipe(extended_output[0], pipe1);
> > igt_output_set_pipe(extended_output[1], pipe2);
> > mode[0] = igt_output_get_mode(extended_output[0]);
> > mode[1] = igt_output_get_mode(extended_output[1]);
> > - pipe_crc[0] = igt_pipe_crc_new(data->drm_fd, pipe1, IGT_PIPE_CRC_SOURCE_AUTO);
> > - pipe_crc[1] = igt_pipe_crc_new(data->drm_fd, pipe2, IGT_PIPE_CRC_SOURCE_AUTO);
> > igt_create_color_fb(data->drm_fd, mode[0]->hdisplay, mode[0]->vdisplay,
> > DRM_FORMAT_XRGB8888, 0, 1, 0, 0, &fbs[0]);
> > @@ -79,7 +81,22 @@ static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
> > igt_fb_set_size(&fbs[1], plane[1], mode[1]->hdisplay, mode[1]->vdisplay);
> > igt_plane_set_size(plane[1], mode[1]->hdisplay, mode[1]->vdisplay);
> > - igt_display_commit2(display, COMMIT_ATOMIC);
> > + ret = igt_display_try_commit2(display, COMMIT_ATOMIC);
>
> It would be better to add one or two line comment about this handling. Maybe
> you can add it while pushing this patch, no need to float a new rev.
>
> Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
>
> - Bhanu
>
One more thing is how is it preventing infinite loop ?
> > + if (ret != 0 && errno == ENOSPC) {
> > + bool found = igt_override_all_active_output_modes_to_fit_bw(display);
> > +
> > + igt_require_f(found, "No valid mode combo found.\n");
> > +
> > + for_each_connected_output(display, output)
> > + igt_output_set_pipe(output, PIPE_NONE);
> > +
> > + igt_remove_fb(data->drm_fd, &fbs[0]);
> > + igt_remove_fb(data->drm_fd, &fbs[1]);
> > +
> > + goto retry;
> > + }
> > +
> > + igt_assert(!ret);
This one should be more elaborate, maybe use igt_assert_f(!ret, "description here\n");
Regards,
Kamil
> > igt_pipe_crc_collect_crc(pipe_crc[0], &ref_crc[0]);
> > igt_pipe_crc_collect_crc(pipe_crc[1], &ref_crc[1]);
^ permalink raw reply [flat|nested] 20+ messages in thread* Re: [igt-dev] [PATCH i-g-t v2] tests/kms_display_modes: Fixed mode selection for extended mode tests
2023-03-08 17:25 ` Kamil Konieczny
@ 2023-03-09 5:10 ` Modem, Bhanuprakash
0 siblings, 0 replies; 20+ messages in thread
From: Modem, Bhanuprakash @ 2023-03-09 5:10 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev, Mohammed Thasleem
On Wed-08-03-2023 10:55 pm, Kamil Konieczny wrote:
> Hi,
>
> On 2023-02-24 at 15:10:07 +0530, Modem, Bhanuprakash wrote:
>>
>>
>> On Sun-14-08-2022 02:58 pm, Mohammed Thasleem wrote:
>>> Added check on ENOSPC when two moniters connected through MST.
>>> This will find the connector mode combo that fits into the
>>> bandwidth when more than one monitor is connected.
>>>
>>> Example:
>>> When two monitors connected through MST, the second monitor
>>> also tries to use the same mode. So two such modes may not
>>> fit into the link bandwidth. So, iterate through connected
>>> outputs & modes and find a combination of modes those fit
>>> into the link BW.
>>>
>>> v2: -Updated commit msg and description. (Bhanu)
>>> -Renamed restart with retry. (Bhanu)
>>> -Moved igt_pipe_crc_new before retry. (Bhanu)
>>> -Removed unrelated changes and new line. (Bhanu)
>>> -Minor changes.
>>>
>>> Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
>>> ---
>>> tests/kms_display_modes.c | 25 +++++++++++++++++++++----
>>> 1 file changed, 21 insertions(+), 4 deletions(-)
>>>
>>> diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c
>>> index e4191811..19026dc1 100644
>>> --- a/tests/kms_display_modes.c
>>> +++ b/tests/kms_display_modes.c
>>> @@ -43,7 +43,7 @@ static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
>>> igt_plane_t *plane[2];
>>> igt_pipe_crc_t *pipe_crc[2] = { 0 };
>>> igt_crc_t ref_crc[2], crc[2];
>>> - int count = 0, width, height;
>>> + int count = 0, width, height, ret;
>>> cairo_t *cr;
>>> for_each_connected_output(display, output) {
>>> @@ -54,14 +54,16 @@ static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
>>> break;
>>> }
>>> + pipe_crc[0] = igt_pipe_crc_new(data->drm_fd, pipe1, IGT_PIPE_CRC_SOURCE_AUTO);
>>> + pipe_crc[1] = igt_pipe_crc_new(data->drm_fd, pipe2, IGT_PIPE_CRC_SOURCE_AUTO);
>>> +
>>> +retry:
>>> igt_output_set_pipe(extended_output[0], pipe1);
>>> igt_output_set_pipe(extended_output[1], pipe2);
>>> mode[0] = igt_output_get_mode(extended_output[0]);
>>> mode[1] = igt_output_get_mode(extended_output[1]);
>>> - pipe_crc[0] = igt_pipe_crc_new(data->drm_fd, pipe1, IGT_PIPE_CRC_SOURCE_AUTO);
>>> - pipe_crc[1] = igt_pipe_crc_new(data->drm_fd, pipe2, IGT_PIPE_CRC_SOURCE_AUTO);
>>> igt_create_color_fb(data->drm_fd, mode[0]->hdisplay, mode[0]->vdisplay,
>>> DRM_FORMAT_XRGB8888, 0, 1, 0, 0, &fbs[0]);
>>> @@ -79,7 +81,22 @@ static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
>>> igt_fb_set_size(&fbs[1], plane[1], mode[1]->hdisplay, mode[1]->vdisplay);
>>> igt_plane_set_size(plane[1], mode[1]->hdisplay, mode[1]->vdisplay);
>>> - igt_display_commit2(display, COMMIT_ATOMIC);
>>> + ret = igt_display_try_commit2(display, COMMIT_ATOMIC);
>>
>> It would be better to add one or two line comment about this handling. Maybe
>> you can add it while pushing this patch, no need to float a new rev.
>>
>> Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
>>
>> - Bhanu
>>
>
> One more thing is how is it preventing infinite loop ?
Intention of this patch is to catch the link bandwidth issue (-ENOSPC) &
handle it gracefully in the IGT itself.
igt_override_all_active_output_modes_to_fit_bw() returns false if there
is no suitable mode to fit in to the link bw. If this is the case we can
stop the execution instead of retry.
On anotherhand no -ENOSPC error then no retry.
>
>>> + if (ret != 0 && errno == ENOSPC) {
>>> + bool found = igt_override_all_active_output_modes_to_fit_bw(display);
>>> +
>>> + igt_require_f(found, "No valid mode combo found.\n");
>>> +
>>> + for_each_connected_output(display, output)
>>> + igt_output_set_pipe(output, PIPE_NONE);
>>> +
>>> + igt_remove_fb(data->drm_fd, &fbs[0]);
>>> + igt_remove_fb(data->drm_fd, &fbs[1]);
>>> +
>>> + goto retry;
>>> + }
>>> +
>>> + igt_assert(!ret);
>
> This one should be more elaborate, maybe use igt_assert_f(!ret, "description here\n");
>
> Regards,
> Kamil
>
>>> igt_pipe_crc_collect_crc(pipe_crc[0], &ref_crc[0]);
>>> igt_pipe_crc_collect_crc(pipe_crc[1], &ref_crc[1]);
^ permalink raw reply [flat|nested] 20+ messages in thread
* [igt-dev] [PATCH i-g-t] tests/kms_display_modes: Fixed mode selection for extended mode tests
2022-08-08 9:36 [igt-dev] [PATCH i-g-t] tests/kms_display_modes: Add check on ENOSPC for DP MST config Mohammed Thasleem
2022-08-14 9:28 ` [igt-dev] [PATCH i-g-t v2] tests/kms_display_modes: Fixed mode selection for extended mode tests Mohammed Thasleem
@ 2022-09-04 10:09 ` Mohammed Thasleem
2023-02-14 12:20 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms_display_modes: Add check on ENOSPC for DP MST config Patchwork
` (11 subsequent siblings)
13 siblings, 0 replies; 20+ messages in thread
From: Mohammed Thasleem @ 2022-09-04 10:09 UTC (permalink / raw)
To: igt-dev
Added check on DP-MST and 4k panels when two moniters connected
through MST.
This will find the connector mode combo that fits into the
bandwidth when more than one monitor is connected.
Example:
When two monitors connected through MST, the second monitor
also tries to use the same mode. So two such modes may not
fit into the link bandwidth. So, iterate through connected
outputs & modes and find a combination of modes those fit
into the link BW.
v2: -Updated commit msg and description. (Bhanu)
-Renamed restart with retry. (Bhanu)
-Moved igt_pipe_crc_new before retry. (Bhanu)
-Removed unrelated changes and new line. (Bhanu)
-Minor changes.
v3: Updated discription and added EINVAL check.
v4: Removed EINVAL and ENOSPC checks.
Added check for DP-MST and 4k panels.
Updated discription.
Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/kms_display_modes.c | 88 ++++++++++++++++++++++++++++++++++++---
1 file changed, 83 insertions(+), 5 deletions(-)
diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c
index e4191811e..4acc6bb3c 100644
--- a/tests/kms_display_modes.c
+++ b/tests/kms_display_modes.c
@@ -34,16 +34,70 @@ typedef struct {
int n_pipes;
} data_t;
+static int parse_path_blob(char *blob_data)
+{
+ int connector_id;
+ char *encoder;
+
+ encoder = strtok(blob_data, ":");
+ igt_assert_f(!strcmp(encoder, "mst"), "PATH connector property expected to have 'mst'\n");
+
+ connector_id = atoi(strtok(NULL, "-"));
+
+ return connector_id;
+}
+
+static bool output_is_dp_mst(data_t *data, igt_output_t *output, int i)
+{
+ drmModePropertyBlobPtr path_blob = NULL;
+ uint64_t path_blob_id;
+ drmModeConnector *connector = output->config.connector;
+ struct kmstest_connector_config config;
+ const char *encoder;
+ int connector_id;
+ static int prev_connector_id;
+
+ kmstest_get_connector_config(data->drm_fd, output->config.connector->connector_id, -1, &config);
+ encoder = kmstest_encoder_type_str(config.encoder->encoder_type);
+
+ if (strcmp(encoder, "DP MST"))
+ return false;
+
+ igt_assert(kmstest_get_property(data->drm_fd, connector->connector_id,
+ DRM_MODE_OBJECT_CONNECTOR, "PATH", NULL,
+ &path_blob_id, NULL));
+
+ igt_assert(path_blob = drmModeGetPropertyBlob(data->drm_fd, path_blob_id));
+
+ connector_id = parse_path_blob((char *) path_blob->data);
+
+ /*
+ * Discarding outputs of other DP MST topology.
+ * Testing only on outputs on the topology we got previously
+ */
+ if (i == 0) {
+ prev_connector_id = connector_id;
+ } else {
+ if (connector_id != prev_connector_id)
+ return false;
+ }
+
+ drmModeFreePropertyBlob(path_blob);
+
+ return true;
+}
+
static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
{
struct igt_fb fb, fbs[2];
drmModeModeInfo *mode[2];
+ drmModeModeInfo *mode_mst;
igt_output_t *output, *extended_output[2];
igt_display_t *display = &data->display;
igt_plane_t *plane[2];
igt_pipe_crc_t *pipe_crc[2] = { 0 };
igt_crc_t ref_crc[2], crc[2];
- int count = 0, width, height;
+ int count = 0, width, height, ret, dp_mst_outputs = 0;
cairo_t *cr;
for_each_connected_output(display, output) {
@@ -54,15 +108,16 @@ static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
break;
}
+ pipe_crc[0] = igt_pipe_crc_new(data->drm_fd, pipe1, IGT_PIPE_CRC_SOURCE_AUTO);
+ pipe_crc[1] = igt_pipe_crc_new(data->drm_fd, pipe2, IGT_PIPE_CRC_SOURCE_AUTO);
+
+retry:
igt_output_set_pipe(extended_output[0], pipe1);
igt_output_set_pipe(extended_output[1], pipe2);
mode[0] = igt_output_get_mode(extended_output[0]);
mode[1] = igt_output_get_mode(extended_output[1]);
- pipe_crc[0] = igt_pipe_crc_new(data->drm_fd, pipe1, IGT_PIPE_CRC_SOURCE_AUTO);
- pipe_crc[1] = igt_pipe_crc_new(data->drm_fd, pipe2, IGT_PIPE_CRC_SOURCE_AUTO);
-
igt_create_color_fb(data->drm_fd, mode[0]->hdisplay, mode[0]->vdisplay,
DRM_FORMAT_XRGB8888, 0, 1, 0, 0, &fbs[0]);
igt_create_color_fb(data->drm_fd, mode[1]->hdisplay, mode[1]->vdisplay,
@@ -79,7 +134,30 @@ static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
igt_fb_set_size(&fbs[1], plane[1], mode[1]->hdisplay, mode[1]->vdisplay);
igt_plane_set_size(plane[1], mode[1]->hdisplay, mode[1]->vdisplay);
- igt_display_commit2(display, COMMIT_ATOMIC);
+ for_each_connected_output(display, output) {
+ mode_mst = igt_output_get_mode(output);
+ if (output_is_dp_mst(data, output, dp_mst_outputs) &&
+ (mode_mst->hdisplay == 3840 && mode_mst->vdisplay == 2160))
+ dp_mst_outputs++;
+ }
+
+ ret = igt_display_try_commit2(display, COMMIT_ATOMIC);
+ /* In case of DP-MST find suitable mode(s) to fit into the link BW. */
+ if (ret != 0 && dp_mst_outputs > 1) {
+ bool found = igt_override_all_active_output_modes_to_fit_bw(display);
+
+ igt_require_f(found, "No valid mode combo found for MST modeset.\n");
+
+ for_each_connected_output(display, output)
+ igt_output_set_pipe(output, PIPE_NONE);
+
+ igt_remove_fb(data->drm_fd, &fbs[0]);
+ igt_remove_fb(data->drm_fd, &fbs[1]);
+
+ goto retry;
+ }
+
+ igt_assert(!ret);
igt_pipe_crc_collect_crc(pipe_crc[0], &ref_crc[0]);
igt_pipe_crc_collect_crc(pipe_crc[1], &ref_crc[1]);
--
2.25.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms_display_modes: Add check on ENOSPC for DP MST config
2022-08-08 9:36 [igt-dev] [PATCH i-g-t] tests/kms_display_modes: Add check on ENOSPC for DP MST config Mohammed Thasleem
2022-08-14 9:28 ` [igt-dev] [PATCH i-g-t v2] tests/kms_display_modes: Fixed mode selection for extended mode tests Mohammed Thasleem
2022-09-04 10:09 ` [igt-dev] [PATCH i-g-t] " Mohammed Thasleem
@ 2023-02-14 12:20 ` Patchwork
2023-02-15 11:18 ` [igt-dev] [PATCH i-g-t] " Modem, Bhanuprakash
` (10 subsequent siblings)
13 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2023-02-14 12:20 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3536 bytes --]
== Series Details ==
Series: tests/kms_display_modes: Add check on ENOSPC for DP MST config
URL : https://patchwork.freedesktop.org/series/114000/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_12737 -> IGTPW_8492
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_8492 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_8492, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8492/index.html
Participating hosts (39 -> 37)
------------------------------
Missing (2): bat-kbl-2 fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_8492:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@gt_heartbeat:
- fi-hsw-4770: [PASS][1] -> [DMESG-FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12737/fi-hsw-4770/igt@i915_selftest@live@gt_heartbeat.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8492/fi-hsw-4770/igt@i915_selftest@live@gt_heartbeat.html
Known issues
------------
Here are the changes found in IGTPW_8492 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_module_load@load:
- fi-cfl-guc: [PASS][3] -> [ABORT][4] ([i915#8141])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12737/fi-cfl-guc/igt@i915_module_load@load.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8492/fi-cfl-guc/igt@i915_module_load@load.html
#### Possible fixes ####
* igt@gem_exec_gttfill@basic:
- fi-pnv-d510: [FAIL][5] ([i915#7229]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12737/fi-pnv-d510/igt@gem_exec_gttfill@basic.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8492/fi-pnv-d510/igt@gem_exec_gttfill@basic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions:
- fi-bsw-n3050: [FAIL][7] ([i915#6298]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12737/fi-bsw-n3050/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8492/fi-bsw-n3050/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#6298]: https://gitlab.freedesktop.org/drm/intel/issues/6298
[i915#7229]: https://gitlab.freedesktop.org/drm/intel/issues/7229
[i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699
[i915#8141]: https://gitlab.freedesktop.org/drm/intel/issues/8141
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7160 -> IGTPW_8492
CI-20190529: 20190529
CI_DRM_12737: 5dd4db260f2fb67ae027a64850bc6d21ed91df87 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8492: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8492/index.html
IGT_7160: 45da871dd2684227e93a2fc002b87dfc58bd5fd9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8492/index.html
[-- Attachment #2: Type: text/html, Size: 4101 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread* Re: [igt-dev] [PATCH i-g-t] tests/kms_display_modes: Add check on ENOSPC for DP MST config
2022-08-08 9:36 [igt-dev] [PATCH i-g-t] tests/kms_display_modes: Add check on ENOSPC for DP MST config Mohammed Thasleem
` (2 preceding siblings ...)
2023-02-14 12:20 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms_display_modes: Add check on ENOSPC for DP MST config Patchwork
@ 2023-02-15 11:18 ` Modem, Bhanuprakash
2023-02-20 11:26 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev2) Patchwork
` (9 subsequent siblings)
13 siblings, 0 replies; 20+ messages in thread
From: Modem, Bhanuprakash @ 2023-02-15 11:18 UTC (permalink / raw)
To: Mohammed Thasleem, igt-dev
Hi Thasleem,
On Mon-08-08-2022 03:06 pm, Mohammed Thasleem wrote:
> Added check on ENOSPC when two moniters connected through MST.
> This will find the connector mode combo that fits into the
> bandwidth when more than one monitor is connected.
Please elaborate the commit message.
>
> Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
> ---
> tests/kms_display_modes.c | 21 +++++++++++++++++++--
> 1 file changed, 19 insertions(+), 2 deletions(-)
>
> diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c
> index e4191811..cbcdc0cc 100644
> --- a/tests/kms_display_modes.c
> +++ b/tests/kms_display_modes.c
> @@ -44,6 +44,7 @@ static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
> igt_pipe_crc_t *pipe_crc[2] = { 0 };
> igt_crc_t ref_crc[2], crc[2];
> int count = 0, width, height;
> + int ret;
> cairo_t *cr;
>
> for_each_connected_output(display, output) {
> @@ -54,6 +55,7 @@ static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
> break;
> }
>
> +restart:
Better to use s/restart/retry/
> igt_output_set_pipe(extended_output[0], pipe1);
> igt_output_set_pipe(extended_output[1], pipe2);
Please fix [1] the creation of new crc on retry.
[1]:
https://cgit.freedesktop.org/drm/igt-gpu-tools/tree/tests/kms_display_modes.c#n63
>
> @@ -79,7 +81,23 @@ static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
> igt_fb_set_size(&fbs[1], plane[1], mode[1]->hdisplay, mode[1]->vdisplay);
> igt_plane_set_size(plane[1], mode[1]->hdisplay, mode[1]->vdisplay);
>
> - igt_display_commit2(display, COMMIT_ATOMIC);
> + ret = igt_display_try_commit2(display, COMMIT_ATOMIC);
> + if (ret != 0 && errno == ENOSPC) {
> +
Please drop this new line.
> + bool found = igt_override_all_active_output_modes_to_fit_bw(display);
> +
Please drop this new line.
> + igt_require_f(found, "No valid mode combo found.\n");
> +
> + for_each_connected_output(display, output)
> + igt_output_set_pipe(output, PIPE_NONE);
> +
> + igt_remove_fb(data->drm_fd, &fbs[0]);
> + igt_remove_fb(data->drm_fd, &fbs[1]);
> +
> + goto restart;
> + }
> +
> + igt_assert(!ret);
>
> igt_pipe_crc_collect_crc(pipe_crc[0], &ref_crc[0]);
> igt_pipe_crc_collect_crc(pipe_crc[1], &ref_crc[1]);
> @@ -101,7 +119,6 @@ static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
> igt_plane_set_fb(plane[1], &fb);
> igt_fb_set_position(&fb, plane[1], mode[0]->hdisplay, 0);
> igt_fb_set_size(&fb, plane[1], mode[1]->hdisplay, mode[1]->vdisplay);
> -
Unrelated change, please drop it.
- Bhanu
> igt_display_commit2(display, COMMIT_ATOMIC);
>
> igt_pipe_crc_collect_crc(pipe_crc[0], &crc[0]);
^ permalink raw reply [flat|nested] 20+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev2)
2022-08-08 9:36 [igt-dev] [PATCH i-g-t] tests/kms_display_modes: Add check on ENOSPC for DP MST config Mohammed Thasleem
` (3 preceding siblings ...)
2023-02-15 11:18 ` [igt-dev] [PATCH i-g-t] " Modem, Bhanuprakash
@ 2023-02-20 11:26 ` Patchwork
2023-02-20 19:18 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
` (8 subsequent siblings)
13 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2023-02-20 11:26 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 9628 bytes --]
== Series Details ==
Series: tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev2)
URL : https://patchwork.freedesktop.org/series/114000/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_12761 -> IGTPW_8509
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/index.html
Participating hosts (37 -> 37)
------------------------------
Additional (2): bat-dg2-11 fi-pnv-d510
Missing (2): bat-kbl-2 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_8509 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_mmap@basic:
- bat-dg2-11: NOTRUN -> [SKIP][1] ([i915#4083])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/bat-dg2-11/igt@gem_mmap@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-dg2-11: NOTRUN -> [SKIP][2] ([i915#4077]) +2 similar issues
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/bat-dg2-11/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-dg2-11: NOTRUN -> [SKIP][3] ([i915#4079]) +1 similar issue
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/bat-dg2-11/igt@gem_tiled_pread_basic.html
* igt@i915_pm_backlight@basic-brightness:
- bat-dg2-11: NOTRUN -> [SKIP][4] ([i915#5354] / [i915#7561])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/bat-dg2-11/igt@i915_pm_backlight@basic-brightness.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-11: NOTRUN -> [SKIP][5] ([i915#6621])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/bat-dg2-11/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@gt_lrc:
- bat-adln-1: [PASS][6] -> [INCOMPLETE][7] ([i915#4983] / [i915#7609])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/bat-adln-1/igt@i915_selftest@live@gt_lrc.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/bat-adln-1/igt@i915_selftest@live@gt_lrc.html
* igt@i915_selftest@live@migrate:
- bat-dg2-11: NOTRUN -> [DMESG-WARN][8] ([i915#7699])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/bat-dg2-11/igt@i915_selftest@live@migrate.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- bat-dg2-11: NOTRUN -> [SKIP][9] ([i915#4212]) +7 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/bat-dg2-11/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-11: NOTRUN -> [SKIP][10] ([i915#5190])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-11: NOTRUN -> [SKIP][11] ([i915#4215] / [i915#5190])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/bat-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- bat-dg1-7: NOTRUN -> [SKIP][12] ([i915#7828])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/bat-dg1-7/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- bat-dg2-11: NOTRUN -> [SKIP][13] ([i915#7828]) +8 similar issues
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/bat-dg2-11/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor:
- bat-dg2-11: NOTRUN -> [SKIP][14] ([i915#4103] / [i915#4213])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/bat-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-11: NOTRUN -> [SKIP][15] ([fdo#109285])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/bat-dg2-11/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-11: NOTRUN -> [SKIP][16] ([i915#5274])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/bat-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- bat-dg1-7: NOTRUN -> [SKIP][17] ([i915#1845] / [i915#4078])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/bat-dg1-7/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_psr@primary_page_flip:
- fi-pnv-d510: NOTRUN -> [SKIP][18] ([fdo#109271]) +44 similar issues
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/fi-pnv-d510/igt@kms_psr@primary_page_flip.html
* igt@kms_psr@sprite_plane_onoff:
- bat-dg2-11: NOTRUN -> [SKIP][19] ([i915#1072]) +3 similar issues
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/bat-dg2-11/igt@kms_psr@sprite_plane_onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-11: NOTRUN -> [SKIP][20] ([i915#3555] / [i915#4579])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/bat-dg2-11/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-11: NOTRUN -> [SKIP][21] ([i915#3708])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/bat-dg2-11/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg2-11: NOTRUN -> [SKIP][22] ([i915#3708] / [i915#4077]) +1 similar issue
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/bat-dg2-11/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-read:
- bat-dg2-11: NOTRUN -> [SKIP][23] ([i915#3291] / [i915#3708]) +2 similar issues
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/bat-dg2-11/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-userptr:
- bat-dg2-11: NOTRUN -> [SKIP][24] ([i915#3708] / [i915#4873])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/bat-dg2-11/igt@prime_vgem@basic-userptr.html
#### Possible fixes ####
* igt@i915_selftest@live@gt_heartbeat:
- fi-apl-guc: [DMESG-FAIL][25] ([i915#5334]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
* igt@i915_selftest@live@hangcheck:
- bat-dg1-7: [ABORT][27] ([i915#4983]) -> [PASS][28]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/bat-dg1-7/igt@i915_selftest@live@hangcheck.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/bat-dg1-7/igt@i915_selftest@live@hangcheck.html
#### Warnings ####
* igt@i915_selftest@live@slpc:
- bat-rpls-1: [DMESG-FAIL][29] ([i915#6367] / [i915#7996]) -> [DMESG-FAIL][30] ([i915#6367])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/bat-rpls-1/igt@i915_selftest@live@slpc.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/bat-rpls-1/igt@i915_selftest@live@slpc.html
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[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#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7609]: https://gitlab.freedesktop.org/drm/intel/issues/7609
[i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7996]: https://gitlab.freedesktop.org/drm/intel/issues/7996
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7165 -> IGTPW_8509
CI-20190529: 20190529
CI_DRM_12761: c397c9581e74c066e737721bf308527bc4cb0da3 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8509: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/index.html
IGT_7165: 509e7e63c6377d0fe77d1bd209857fb191f4a84c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/index.html
[-- Attachment #2: Type: text/html, Size: 11402 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev2)
2022-08-08 9:36 [igt-dev] [PATCH i-g-t] tests/kms_display_modes: Add check on ENOSPC for DP MST config Mohammed Thasleem
` (4 preceding siblings ...)
2023-02-20 11:26 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev2) Patchwork
@ 2023-02-20 19:18 ` Patchwork
2023-03-08 14:16 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev3) Patchwork
` (7 subsequent siblings)
13 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2023-02-20 19:18 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 39771 bytes --]
== Series Details ==
Series: tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev2)
URL : https://patchwork.freedesktop.org/series/114000/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_12761_full -> IGTPW_8509_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in IGTPW_8509_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- shard-tglu-9: NOTRUN -> [SKIP][1] ([i915#7456])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@debugfs_test@basic-hwmon.html
* igt@drm_read@invalid-buffer:
- shard-tglu-9: NOTRUN -> [SKIP][2] ([i915#1845]) +12 similar issues
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@drm_read@invalid-buffer.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-tglu-9: NOTRUN -> [SKIP][3] ([i915#5325])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-tglu-10: NOTRUN -> [SKIP][4] ([i915#3555] / [i915#5325])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_eio@hibernate:
- shard-tglu-10: NOTRUN -> [ABORT][5] ([i915#7975])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@gem_eio@hibernate.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-tglu-10: NOTRUN -> [SKIP][6] ([i915#6334])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_fair@basic-deadline:
- shard-glk: [PASS][7] -> [FAIL][8] ([i915#2846])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/shard-glk1/igt@gem_exec_fair@basic-deadline.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-glk6/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-apl: [PASS][9] -> [FAIL][10] ([i915#2842])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-tglu-9: NOTRUN -> [FAIL][11] ([i915#2842])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_params@secure-non-root:
- shard-tglu-10: NOTRUN -> [SKIP][12] ([fdo#112283])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@gem_exec_params@secure-non-root.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-tglu-10: NOTRUN -> [SKIP][13] ([i915#7582])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-tglu-10: NOTRUN -> [SKIP][14] ([i915#4613])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-random:
- shard-tglu-9: NOTRUN -> [SKIP][15] ([i915#4613]) +1 similar issue
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@gem_lmem_swapping@verify-random.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-tglu-9: NOTRUN -> [SKIP][16] ([i915#4270]) +1 similar issue
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_softpin@evict-snoop:
- shard-tglu-9: NOTRUN -> [SKIP][17] ([fdo#109312]) +1 similar issue
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@gem_softpin@evict-snoop.html
* igt@gem_userptr_blits@coherency-sync:
- shard-tglu-10: NOTRUN -> [SKIP][18] ([fdo#110542])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-tglu-10: NOTRUN -> [SKIP][19] ([i915#3297])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gen7_exec_parse@load-register-reg:
- shard-tglu-9: NOTRUN -> [SKIP][20] ([fdo#109289])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@gen7_exec_parse@load-register-reg.html
* igt@gen9_exec_parse@allowed-all:
- shard-glk: [PASS][21] -> [ABORT][22] ([i915#5566])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/shard-glk9/igt@gen9_exec_parse@allowed-all.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-glk2/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@allowed-single:
- shard-apl: [PASS][23] -> [ABORT][24] ([i915#5566])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/shard-apl7/igt@gen9_exec_parse@allowed-single.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-apl3/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu-9: NOTRUN -> [SKIP][25] ([i915#2527] / [i915#2856]) +1 similar issue
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@gen9_exec_parse@basic-rejected.html
* igt@i915_module_load@resize-bar:
- shard-tglu-10: NOTRUN -> [SKIP][26] ([i915#6412])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@i915_module_load@resize-bar.html
* igt@i915_pm_dc@dc5-psr:
- shard-tglu-9: NOTRUN -> [SKIP][27] ([i915#658])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@i915_pm_dc@dc5-psr.html
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-tglu-9: NOTRUN -> [SKIP][28] ([fdo#111644] / [i915#1397])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp:
- shard-tglu-9: NOTRUN -> [SKIP][29] ([i915#1397])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@i915_pm_rpm@modeset-lpsp.html
* igt@i915_pm_sseu@full-enable:
- shard-tglu-10: NOTRUN -> [SKIP][30] ([i915#4387])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@i915_pm_sseu@full-enable.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-tglu-10: NOTRUN -> [SKIP][31] ([i915#5286]) +5 similar issues
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@linear-16bpp-rotate-180:
- shard-tglu-9: NOTRUN -> [SKIP][32] ([i915#1845] / [i915#7651]) +38 similar issues
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@kms_big_fb@linear-16bpp-rotate-180.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-tglu-10: NOTRUN -> [SKIP][33] ([fdo#111614]) +1 similar issue
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-tglu-10: NOTRUN -> [SKIP][34] ([fdo#111615]) +2 similar issues
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_big_joiner@invalid-modeset:
- shard-tglu-9: NOTRUN -> [SKIP][35] ([i915#2705])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_rc_ccs:
- shard-glk: NOTRUN -> [SKIP][36] ([fdo#109271]) +34 similar issues
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-glk3/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_rc_ccs.html
* igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
- shard-glk: NOTRUN -> [SKIP][37] ([fdo#109271] / [i915#3886]) +1 similar issue
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-glk9/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
- shard-tglu-10: NOTRUN -> [SKIP][38] ([i915#3689] / [i915#3886]) +1 similar issue
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_dg2_rc_ccs_cc:
- shard-tglu-10: NOTRUN -> [SKIP][39] ([i915#3689] / [i915#6095]) +1 similar issue
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-ccs-on-another-bo-yf_tiled_ccs:
- shard-tglu-9: NOTRUN -> [SKIP][40] ([fdo#111615] / [i915#1845] / [i915#7651]) +5 similar issues
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@kms_ccs@pipe-c-ccs-on-another-bo-yf_tiled_ccs.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_ccs:
- shard-tglu-10: NOTRUN -> [SKIP][41] ([i915#3689]) +5 similar issues
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_ccs.html
* igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_mc_ccs:
- shard-tglu-10: NOTRUN -> [SKIP][42] ([i915#6095]) +3 similar issues
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs:
- shard-tglu-10: NOTRUN -> [SKIP][43] ([fdo#111615] / [i915#3689]) +2 similar issues
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs.html
* igt@kms_cdclk@mode-transition:
- shard-tglu-10: NOTRUN -> [SKIP][44] ([i915#3742])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_color@ctm-negative:
- shard-tglu-9: NOTRUN -> [SKIP][45] ([fdo#111827])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_color@gamma:
- shard-tglu-10: NOTRUN -> [SKIP][46] ([fdo#111827])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-tglu-10: NOTRUN -> [SKIP][47] ([i915#7828]) +4 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-tglu-9: NOTRUN -> [SKIP][48] ([i915#7828]) +3 similar issues
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_color@legacy-gamma-reset:
- shard-tglu-9: NOTRUN -> [SKIP][49] ([i915#3546]) +1 similar issue
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@kms_color@legacy-gamma-reset.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-tglu-10: NOTRUN -> [SKIP][50] ([i915#3359])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-tglu-10: NOTRUN -> [SKIP][51] ([fdo#109274]) +6 similar issues
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size:
- shard-apl: [PASS][52] -> [FAIL][53] ([i915#2346])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu-10: NOTRUN -> [SKIP][54] ([i915#3840])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-tglu-10: NOTRUN -> [SKIP][55] ([fdo#109274] / [i915#3637]) +3 similar issues
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][56] -> [FAIL][57] ([i915#79])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/shard-glk4/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-tglu-9: NOTRUN -> [SKIP][58] ([fdo#109274] / [i915#3637]) +2 similar issues
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- shard-tglu-9: NOTRUN -> [SKIP][59] ([i915#3637]) +1 similar issue
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-tglu-10: NOTRUN -> [SKIP][60] ([i915#2587] / [i915#2672]) +2 similar issues
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-pwrite:
- shard-tglu-9: NOTRUN -> [SKIP][61] ([i915#1849]) +26 similar issues
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-tglu-10: NOTRUN -> [SKIP][62] ([fdo#109280]) +26 similar issues
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-tglu-10: NOTRUN -> [SKIP][63] ([fdo#110189]) +12 similar issues
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_invalid_mode@bad-vsync-start:
- shard-tglu-9: NOTRUN -> [SKIP][64] ([i915#3555]) +9 similar issues
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@kms_invalid_mode@bad-vsync-start.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglu-9: NOTRUN -> [SKIP][65] ([i915#1839])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-tglu-10: NOTRUN -> [SKIP][66] ([i915#6301])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-vga-1:
- shard-snb: NOTRUN -> [SKIP][67] ([fdo#109271]) +26 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-snb7/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-vga-1.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-1:
- shard-tglu-10: NOTRUN -> [SKIP][68] ([i915#5176]) +3 similar issues
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-1.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-tglu-10: NOTRUN -> [SKIP][69] ([i915#658]) +2 similar issues
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
- shard-tglu-9: NOTRUN -> [SKIP][70] ([fdo#111068] / [i915#658])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-tglu-9: NOTRUN -> [SKIP][71] ([fdo#109642] / [fdo#111068] / [i915#658])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@cursor_plane_move:
- shard-tglu-9: NOTRUN -> [SKIP][72] ([fdo#110189]) +2 similar issues
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@kms_psr@cursor_plane_move.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-tglu-10: NOTRUN -> [SKIP][73] ([i915#5289])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-tglu-10: NOTRUN -> [SKIP][74] ([fdo#111615] / [i915#5289])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_selftest@all-tests:
- shard-tglu-10: NOTRUN -> [SKIP][75] ([i915#6433])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@kms_selftest@all-tests.html
* igt@kms_universal_plane@disable-primary-vs-flip-pipe-d:
- shard-tglu-9: NOTRUN -> [SKIP][76] ([fdo#109274])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@kms_universal_plane@disable-primary-vs-flip-pipe-d.html
* igt@kms_vrr@flipline:
- shard-tglu-10: NOTRUN -> [SKIP][77] ([i915#3555]) +4 similar issues
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@kms_vrr@flipline.html
* igt@kms_writeback@writeback-fb-id:
- shard-tglu-9: NOTRUN -> [SKIP][78] ([i915#2437])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@kms_writeback@writeback-fb-id.html
* igt@perf@per-context-mode-unprivileged:
- shard-tglu-10: NOTRUN -> [SKIP][79] ([fdo#109289]) +4 similar issues
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@perf@per-context-mode-unprivileged.html
* igt@prime_vgem@fence-read-hang:
- shard-tglu-9: NOTRUN -> [SKIP][80] ([fdo#109295])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@prime_vgem@fence-read-hang.html
* igt@v3d/v3d_perfmon@create-perfmon-exceed:
- shard-tglu-10: NOTRUN -> [SKIP][81] ([fdo#109315] / [i915#2575]) +2 similar issues
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@v3d/v3d_perfmon@create-perfmon-exceed.html
* igt@v3d/v3d_perfmon@create-single-perfmon:
- shard-tglu-9: NOTRUN -> [SKIP][82] ([fdo#109315] / [i915#2575]) +1 similar issue
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@v3d/v3d_perfmon@create-single-perfmon.html
* igt@vc4/vc4_label_bo@set-bad-name:
- shard-tglu-9: NOTRUN -> [SKIP][83] ([i915#2575]) +3 similar issues
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-9/igt@vc4/vc4_label_bo@set-bad-name.html
* igt@vc4/vc4_perfmon@create-perfmon-exceed:
- shard-tglu-10: NOTRUN -> [SKIP][84] ([i915#2575]) +3 similar issues
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-tglu-10/igt@vc4/vc4_perfmon@create-perfmon-exceed.html
#### Possible fixes ####
* igt@drm_fdinfo@virtual-idle:
- {shard-rkl}: [FAIL][85] ([i915#7742]) -> [PASS][86] +1 similar issue
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/shard-rkl-6/igt@drm_fdinfo@virtual-idle.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html
* igt@fbdev@info:
- {shard-rkl}: [SKIP][87] ([i915#2582]) -> [PASS][88] +1 similar issue
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/shard-rkl-4/igt@fbdev@info.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-rkl-5/igt@fbdev@info.html
* igt@gem_eio@in-flight-external:
- {shard-rkl}: [ABORT][89] ([i915#7811]) -> [PASS][90]
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/shard-rkl-3/igt@gem_eio@in-flight-external.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-rkl-5/igt@gem_eio@in-flight-external.html
* igt@gem_exec_balancer@fairslice:
- {shard-rkl}: [SKIP][91] ([i915#6259]) -> [PASS][92]
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/shard-rkl-5/igt@gem_exec_balancer@fairslice.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-rkl-6/igt@gem_exec_balancer@fairslice.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][93] ([i915#2842]) -> [PASS][94] +3 similar issues
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_params@rel-constants-invalid-rel-gen5:
- {shard-dg1}: [DMESG-WARN][95] ([i915#4391]) -> [PASS][96]
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/shard-dg1-12/igt@gem_exec_params@rel-constants-invalid-rel-gen5.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-dg1-16/igt@gem_exec_params@rel-constants-invalid-rel-gen5.html
* igt@gem_exec_reloc@basic-write-gtt-noreloc:
- {shard-rkl}: [SKIP][97] ([i915#3281]) -> [PASS][98] +4 similar issues
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/shard-rkl-4/igt@gem_exec_reloc@basic-write-gtt-noreloc.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-rkl-5/igt@gem_exec_reloc@basic-write-gtt-noreloc.html
* igt@gem_exec_schedule@semaphore-power:
- {shard-rkl}: [SKIP][99] ([i915#7276]) -> [PASS][100]
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/shard-rkl-3/igt@gem_exec_schedule@semaphore-power.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_pread@uncached:
- {shard-rkl}: [SKIP][101] ([i915#3282]) -> [PASS][102] +2 similar issues
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/shard-rkl-3/igt@gem_pread@uncached.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-rkl-5/igt@gem_pread@uncached.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: [ABORT][103] ([i915#5566]) -> [PASS][104]
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/shard-glk7/igt@gen9_exec_parse@allowed-single.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-glk5/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@secure-batches:
- {shard-rkl}: [SKIP][105] ([i915#2527]) -> [PASS][106] +1 similar issue
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/shard-rkl-3/igt@gen9_exec_parse@secure-batches.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-rkl-5/igt@gen9_exec_parse@secure-batches.html
* igt@i915_hangman@engine-engine-error@bcs0:
- {shard-rkl}: [SKIP][107] ([i915#6258]) -> [PASS][108]
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/shard-rkl-5/igt@i915_hangman@engine-engine-error@bcs0.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-rkl-1/igt@i915_hangman@engine-engine-error@bcs0.html
* igt@i915_pm_dc@dc5-dpms:
- {shard-rkl}: [FAIL][109] ([i915#7330]) -> [PASS][110]
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/shard-rkl-5/igt@i915_pm_dc@dc5-dpms.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-rkl-4/igt@i915_pm_dc@dc5-dpms.html
* igt@i915_pm_dc@dc6-dpms:
- {shard-rkl}: [SKIP][111] ([i915#3361]) -> [PASS][112]
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/shard-rkl-5/igt@i915_pm_dc@dc6-dpms.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-rkl-2/igt@i915_pm_dc@dc6-dpms.html
* igt@kms_fbcon_fbt@fbc:
- {shard-rkl}: [SKIP][113] ([i915#4098]) -> [PASS][114]
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/shard-rkl-3/igt@kms_fbcon_fbt@fbc.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-rkl-6/igt@kms_fbcon_fbt@fbc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- {shard-rkl}: [SKIP][115] ([i915#1849] / [i915#4098]) -> [PASS][116] +11 similar issues
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_plane@plane-panning-top-left@pipe-a-planes:
- {shard-rkl}: [SKIP][117] ([i915#1849]) -> [PASS][118] +2 similar issues
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/shard-rkl-4/igt@kms_plane@plane-panning-top-left@pipe-a-planes.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-rkl-6/igt@kms_plane@plane-panning-top-left@pipe-a-planes.html
* igt@kms_psr@sprite_mmap_gtt:
- {shard-rkl}: [SKIP][119] ([i915#1072]) -> [PASS][120] +1 similar issue
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/shard-rkl-5/igt@kms_psr@sprite_mmap_gtt.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-rkl-6/igt@kms_psr@sprite_mmap_gtt.html
* igt@kms_rotation_crc@exhaust-fences:
- {shard-rkl}: [SKIP][121] ([i915#1845] / [i915#4098]) -> [PASS][122] +27 similar issues
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/shard-rkl-4/igt@kms_rotation_crc@exhaust-fences.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-rkl-6/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_universal_plane@universal-plane-pipe-b-functional:
- {shard-rkl}: [SKIP][123] ([i915#1845] / [i915#4070] / [i915#4098]) -> [PASS][124]
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/shard-rkl-1/igt@kms_universal_plane@universal-plane-pipe-b-functional.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-rkl-6/igt@kms_universal_plane@universal-plane-pipe-b-functional.html
* igt@perf@stress-open-close:
- shard-glk: [ABORT][125] ([i915#5213]) -> [PASS][126]
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/shard-glk3/igt@perf@stress-open-close.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-glk1/igt@perf@stress-open-close.html
* igt@perf_pmu@all-busy-idle-check-all:
- {shard-dg1}: [FAIL][127] ([i915#5234]) -> [PASS][128]
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12761/shard-dg1-15/igt@perf_pmu@all-busy-idle-check-all.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/shard-dg1-18/igt@perf_pmu@all-busy-idle-check-all.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[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#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
[fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[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#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[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#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[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#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[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#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#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
[i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
[i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[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#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
[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#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
[i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
[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#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854
[i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213
[i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
[i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
[i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252
[i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258
[i915#6259]: https://gitlab.freedesktop.org/drm/intel/issues/6259
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
[i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
[i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493
[i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276
[i915#7330]: https://gitlab.freedesktop.org/drm/intel/issues/7330
[i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582
[i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7811]: https://gitlab.freedesktop.org/drm/intel/issues/7811
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#7949]: https://gitlab.freedesktop.org/drm/intel/issues/7949
[i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981
[i915#8150]: https://gitlab.freedesktop.org/drm/intel/issues/8150
[i915#8151]: https://gitlab.freedesktop.org/drm/intel/issues/8151
[i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7165 -> IGTPW_8509
CI-20190529: 20190529
CI_DRM_12761: c397c9581e74c066e737721bf308527bc4cb0da3 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8509: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/index.html
IGT_7165: 509e7e63c6377d0fe77d1bd209857fb191f4a84c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8509/index.html
[-- Attachment #2: Type: text/html, Size: 40348 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev3)
2022-08-08 9:36 [igt-dev] [PATCH i-g-t] tests/kms_display_modes: Add check on ENOSPC for DP MST config Mohammed Thasleem
` (5 preceding siblings ...)
2023-02-20 19:18 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
@ 2023-03-08 14:16 ` Patchwork
2023-03-10 4:04 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
` (6 subsequent siblings)
13 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2023-03-08 14:16 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5602 bytes --]
== Series Details ==
Series: tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev3)
URL : https://patchwork.freedesktop.org/series/114000/
State : success
== Summary ==
CI Bug Log - changes from IGT_7185 -> IGTPW_8577
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/index.html
Participating hosts (35 -> 35)
------------------------------
Additional (1): bat-kbl-2
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_8577 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_pm_rpm@basic-rte:
- bat-adln-1: [PASS][1] -> [ABORT][2] ([i915#7977])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/bat-adln-1/igt@i915_pm_rpm@basic-rte.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/bat-adln-1/igt@i915_pm_rpm@basic-rte.html
* igt@i915_selftest@live@hangcheck:
- fi-skl-guc: [PASS][3] -> [DMESG-WARN][4] ([i915#8073])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/fi-skl-guc/igt@i915_selftest@live@hangcheck.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/fi-skl-guc/igt@i915_selftest@live@hangcheck.html
* igt@i915_selftest@live@migrate:
- bat-dg2-11: [PASS][5] -> [DMESG-WARN][6] ([i915#7699])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/bat-dg2-11/igt@i915_selftest@live@migrate.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/bat-dg2-11/igt@i915_selftest@live@migrate.html
- bat-rpls-2: [PASS][7] -> [DMESG-FAIL][8] ([i915#7699])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/bat-rpls-2/igt@i915_selftest@live@migrate.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/bat-rpls-2/igt@i915_selftest@live@migrate.html
* igt@i915_selftest@live@reset:
- bat-rpls-1: NOTRUN -> [ABORT][9] ([i915#4983])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/bat-rpls-1/igt@i915_selftest@live@reset.html
* igt@i915_selftest@live@slpc:
- bat-rpls-2: NOTRUN -> [DMESG-FAIL][10] ([i915#6367] / [i915#7913])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/bat-rpls-2/igt@i915_selftest@live@slpc.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- bat-rpls-2: NOTRUN -> [SKIP][11] ([i915#7828])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/bat-rpls-2/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_pipe_crc_basic@read-crc:
- bat-adlp-9: NOTRUN -> [SKIP][12] ([i915#3546]) +1 similar issue
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/bat-adlp-9/igt@kms_pipe_crc_basic@read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- bat-rpls-2: NOTRUN -> [SKIP][13] ([i915#1845])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/bat-rpls-2/igt@kms_pipe_crc_basic@suspend-read-crc.html
#### Possible fixes ####
* igt@i915_selftest@live@migrate:
- bat-adlp-9: [DMESG-FAIL][14] ([i915#7699]) -> [PASS][15]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/bat-adlp-9/igt@i915_selftest@live@migrate.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/bat-adlp-9/igt@i915_selftest@live@migrate.html
* igt@i915_selftest@live@requests:
- bat-rpls-1: [ABORT][16] ([i915#4983] / [i915#7694] / [i915#7911] / [i915#7981]) -> [PASS][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/bat-rpls-1/igt@i915_selftest@live@requests.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/bat-rpls-1/igt@i915_selftest@live@requests.html
* igt@i915_selftest@live@reset:
- bat-rpls-2: [ABORT][18] ([i915#4983] / [i915#7913]) -> [PASS][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/bat-rpls-2/igt@i915_selftest@live@reset.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/bat-rpls-2/igt@i915_selftest@live@reset.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#7694]: https://gitlab.freedesktop.org/drm/intel/issues/7694
[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#7977]: https://gitlab.freedesktop.org/drm/intel/issues/7977
[i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981
[i915#8073]: https://gitlab.freedesktop.org/drm/intel/issues/8073
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7185 -> IGTPW_8577
CI-20190529: 20190529
CI_DRM_12827: b794b8d84dc0470ee58467386f41870e81a86580 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8577: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/index.html
IGT_7185: 6707461ddb214bb8a75c5fcf2747941c9d9b11ae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/index.html
[-- Attachment #2: Type: text/html, Size: 6764 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev3)
2022-08-08 9:36 [igt-dev] [PATCH i-g-t] tests/kms_display_modes: Add check on ENOSPC for DP MST config Mohammed Thasleem
` (6 preceding siblings ...)
2023-03-08 14:16 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev3) Patchwork
@ 2023-03-10 4:04 ` Patchwork
2023-03-13 12:05 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev4) Patchwork
` (5 subsequent siblings)
13 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2023-03-10 4:04 UTC (permalink / raw)
To: Thasleem, Mohammed; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 32955 bytes --]
== Series Details ==
Series: tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev3)
URL : https://patchwork.freedesktop.org/series/114000/
State : success
== Summary ==
CI Bug Log - changes from IGT_7185_full -> IGTPW_8577_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/index.html
Participating hosts (11 -> 9)
------------------------------
Missing (2): shard-rkl0 shard-tglu-9
Known issues
------------
Here are the changes found in IGTPW_8577_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@device_reset@unbind-cold-reset-rebind:
- shard-tglu-10: NOTRUN -> [SKIP][1] ([i915#7701])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@device_reset@unbind-cold-reset-rebind.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-tglu-10: NOTRUN -> [SKIP][2] ([i915#5325])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglu-10: NOTRUN -> [FAIL][3] ([i915#2842])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-glk: [PASS][4] -> [FAIL][5] ([i915#2842]) +1 similar issue
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-glk4/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_lmem_swapping@verify-random:
- shard-tglu-10: NOTRUN -> [SKIP][6] ([i915#4613]) +1 similar issue
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@gem_lmem_swapping@verify-random.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-tglu-10: NOTRUN -> [SKIP][7] ([i915#4270])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu-10: NOTRUN -> [SKIP][8] ([i915#3323])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-tglu-10: NOTRUN -> [SKIP][9] ([i915#3297])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-tglu-10: NOTRUN -> [SKIP][10] ([i915#2527] / [i915#2856]) +1 similar issue
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@gen9_exec_parse@batch-zero-length.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-apl: NOTRUN -> [FAIL][11] ([i915#7036])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-apl4/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
- shard-tglu-10: NOTRUN -> [FAIL][12] ([i915#3825])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
* igt@i915_suspend@sysfs-reader:
- shard-apl: [PASS][13] -> [ABORT][14] ([i915#180])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-apl7/igt@i915_suspend@sysfs-reader.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-apl3/igt@i915_suspend@sysfs-reader.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-tglu-10: NOTRUN -> [SKIP][15] ([i915#5286]) +1 similar issue
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-tglu-10: NOTRUN -> [SKIP][16] ([fdo#111614]) +1 similar issue
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-tglu-10: NOTRUN -> [SKIP][17] ([fdo#111615]) +2 similar issues
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
- shard-glk: NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#3886])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-glk4/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
- shard-apl: NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#3886]) +2 similar issues
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-apl6/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-bad-aux-stride-yf_tiled_ccs:
- shard-tglu-10: NOTRUN -> [SKIP][20] ([fdo#111615] / [i915#3689]) +2 similar issues
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@kms_ccs@pipe-c-bad-aux-stride-yf_tiled_ccs.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs:
- shard-tglu-10: NOTRUN -> [SKIP][21] ([i915#3689] / [i915#6095]) +5 similar issues
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-tglu-10: NOTRUN -> [SKIP][22] ([i915#3689]) +2 similar issues
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_chamelium_color@ctm-negative:
- shard-tglu-10: NOTRUN -> [SKIP][23] ([fdo#111827]) +2 similar issues
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-tglu-10: NOTRUN -> [SKIP][24] ([i915#7828]) +2 similar issues
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu-10: NOTRUN -> [SKIP][25] ([i915#3116] / [i915#3299])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@uevent:
- shard-tglu-10: NOTRUN -> [SKIP][26] ([i915#6944] / [i915#7116] / [i915#7118])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-tglu-10: NOTRUN -> [SKIP][27] ([i915#3359])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-tglu-10: NOTRUN -> [SKIP][28] ([fdo#109274]) +3 similar issues
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-tglu-10: NOTRUN -> [SKIP][29] ([i915#3804])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu-10: NOTRUN -> [SKIP][30] ([i915#3469])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-tglu-10: NOTRUN -> [SKIP][31] ([fdo#109274] / [i915#3637]) +3 similar issues
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2:
- shard-glk: [PASS][32] -> [FAIL][33] ([i915#79])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-glk2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-glk8/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu-10: NOTRUN -> [SKIP][34] ([fdo#110189]) +13 similar issues
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu:
- shard-apl: NOTRUN -> [SKIP][35] ([fdo#109271]) +39 similar issues
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-apl7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen:
- shard-tglu-10: NOTRUN -> [SKIP][36] ([fdo#109280]) +13 similar issues
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_hdr@static-toggle-dpms:
- shard-tglu-10: NOTRUN -> [SKIP][37] ([i915#3555]) +1 similar issue
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c:
- shard-tglu-10: NOTRUN -> [SKIP][38] ([fdo#109289])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html
* igt@kms_plane_lowres@tiling-yf:
- shard-tglu-10: NOTRUN -> [SKIP][39] ([fdo#112054] / [i915#5288])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1:
- shard-tglu-10: NOTRUN -> [SKIP][40] ([i915#5235]) +3 similar issues
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-tglu-10: NOTRUN -> [SKIP][41] ([i915#658]) +2 similar issues
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-tglu-10: NOTRUN -> [SKIP][42] ([fdo#109642] / [fdo#111068] / [i915#658])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@v3d/v3d_perfmon@get-values-invalid-perfmon:
- shard-tglu-10: NOTRUN -> [SKIP][43] ([fdo#109315] / [i915#2575])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@v3d/v3d_perfmon@get-values-invalid-perfmon.html
* igt@vc4/vc4_create_bo@create-bo-0:
- shard-tglu-10: NOTRUN -> [SKIP][44] ([i915#2575]) +3 similar issues
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-10/igt@vc4/vc4_create_bo@create-bo-0.html
* igt@vc4/vc4_perfmon@create-perfmon-exceed:
- shard-glk: NOTRUN -> [SKIP][45] ([fdo#109271]) +14 similar issues
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-glk1/igt@vc4/vc4_perfmon@create-perfmon-exceed.html
#### Possible fixes ####
* igt@fbdev@nullptr:
- {shard-rkl}: [SKIP][46] ([i915#2582]) -> [PASS][47]
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-rkl-4/igt@fbdev@nullptr.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-rkl-5/igt@fbdev@nullptr.html
* igt@gem_ctx_exec@basic-nohangcheck:
- {shard-tglu}: [FAIL][48] ([i915#6268]) -> [PASS][49]
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-tglu-1/igt@gem_ctx_exec@basic-nohangcheck.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_eio@in-flight-suspend:
- {shard-rkl}: [FAIL][50] ([fdo#103375]) -> [PASS][51] +1 similar issue
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-rkl-3/igt@gem_eio@in-flight-suspend.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-rkl-5/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_fair@basic-deadline:
- {shard-rkl}: [FAIL][52] ([i915#2846]) -> [PASS][53]
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none@rcs0:
- shard-glk: [FAIL][54] ([i915#2842]) -> [PASS][55] +1 similar issue
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-glk1/igt@gem_exec_fair@basic-none@rcs0.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-glk5/igt@gem_exec_fair@basic-none@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-apl: [FAIL][56] ([i915#2842]) -> [PASS][57]
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-apl4/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-apl6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- {shard-rkl}: [SKIP][58] ([i915#3281]) -> [PASS][59] +6 similar issues
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-rkl-1/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_mmap_gtt@coherency:
- {shard-rkl}: [SKIP][60] ([fdo#111656]) -> [PASS][61]
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-rkl-3/igt@gem_mmap_gtt@coherency.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-rkl-5/igt@gem_mmap_gtt@coherency.html
* igt@gem_readwrite@read-bad-handle:
- {shard-rkl}: [SKIP][62] ([i915#3282]) -> [PASS][63] +1 similar issue
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-rkl-4/igt@gem_readwrite@read-bad-handle.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-rkl-5/igt@gem_readwrite@read-bad-handle.html
* igt@gen9_exec_parse@bb-start-far:
- {shard-rkl}: [SKIP][64] ([i915#2527]) -> [PASS][65] +2 similar issues
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-rkl-1/igt@gen9_exec_parse@bb-start-far.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-rkl-5/igt@gen9_exec_parse@bb-start-far.html
* igt@i915_pm_rpm@cursor-dpms:
- {shard-rkl}: [SKIP][66] ([i915#1849]) -> [PASS][67] +2 similar issues
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-rkl-4/igt@i915_pm_rpm@cursor-dpms.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-rkl-6/igt@i915_pm_rpm@cursor-dpms.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-180:
- {shard-tglu}: [SKIP][68] ([i915#1845] / [i915#7651]) -> [PASS][69] +16 similar issues
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-tglu-6/igt@kms_big_fb@x-tiled-16bpp-rotate-180.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-5/igt@kms_big_fb@x-tiled-16bpp-rotate-180.html
* igt@kms_cursor_crc@cursor-suspend@pipe-c-dp-1:
- shard-apl: [ABORT][70] ([i915#180]) -> [PASS][71]
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-apl2/igt@kms_cursor_crc@cursor-suspend@pipe-c-dp-1.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-apl3/igt@kms_cursor_crc@cursor-suspend@pipe-c-dp-1.html
* igt@kms_cursor_legacy@cursor-vs-flip-toggle:
- {shard-tglu}: [SKIP][72] ([i915#1845]) -> [PASS][73]
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-tglu-6/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-5/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-apl: [FAIL][74] ([i915#2346]) -> [PASS][75]
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_fbcon_fbt@psr:
- {shard-rkl}: [SKIP][76] ([fdo#110189] / [i915#3955]) -> [PASS][77]
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-rkl-2/igt@kms_fbcon_fbt@psr.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-rkl-6/igt@kms_fbcon_fbt@psr.html
* igt@kms_frontbuffer_tracking@basic:
- {shard-rkl}: [SKIP][78] ([i915#1849] / [i915#4098]) -> [PASS][79] +4 similar issues
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-rkl-4/igt@kms_frontbuffer_tracking@basic.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-rkl-6/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt:
- {shard-tglu}: [SKIP][80] ([i915#1849]) -> [PASS][81] +2 similar issues
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes:
- {shard-tglu}: [SKIP][82] ([i915#1849] / [i915#3558]) -> [PASS][83] +1 similar issue
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-tglu-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
* igt@kms_psr@sprite_render:
- {shard-rkl}: [SKIP][84] ([i915#1072]) -> [PASS][85]
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-rkl-4/igt@kms_psr@sprite_render.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-rkl-6/igt@kms_psr@sprite_render.html
* igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-b:
- {shard-rkl}: [SKIP][86] ([i915#4070] / [i915#4098]) -> [PASS][87]
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-rkl-1/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-b.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-rkl-6/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-b.html
* igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c:
- {shard-tglu}: [SKIP][88] ([fdo#109274]) -> [PASS][89]
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-tglu-6/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-tglu-4/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c.html
* igt@kms_vblank@pipe-b-accuracy-idle:
- {shard-rkl}: [SKIP][90] ([i915#1845] / [i915#4098]) -> [PASS][91] +12 similar issues
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-rkl-3/igt@kms_vblank@pipe-b-accuracy-idle.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-rkl-6/igt@kms_vblank@pipe-b-accuracy-idle.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- {shard-rkl}: [SKIP][92] ([i915#2436]) -> [PASS][93]
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-rkl-4/igt@perf@gen8-unprivileged-single-ctx-counters.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-rkl-5/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@stress-open-close:
- shard-glk: [ABORT][94] ([i915#5213]) -> [PASS][95]
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-glk1/igt@perf@stress-open-close.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-glk1/igt@perf@stress-open-close.html
* igt@perf_pmu@all-busy-idle-check-all:
- {shard-dg1}: [FAIL][96] ([i915#5234]) -> [PASS][97]
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-dg1-16/igt@perf_pmu@all-busy-idle-check-all.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-dg1-12/igt@perf_pmu@all-busy-idle-check-all.html
* igt@perf_pmu@idle@rcs0:
- {shard-rkl}: [FAIL][98] ([i915#4349]) -> [PASS][99]
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7185/shard-rkl-2/igt@perf_pmu@idle@rcs0.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/shard-rkl-3/igt@perf_pmu@idle@rcs0.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[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#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
[fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[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#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
[i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
[i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[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#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[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#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558
[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#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825
[i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
[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#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966
[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#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[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#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
[i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
[i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213
[i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
[i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
[i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
[i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
[i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493
[i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7036]: https://gitlab.freedesktop.org/drm/intel/issues/7036
[i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7128]: https://gitlab.freedesktop.org/drm/intel/issues/7128
[i915#7294]: https://gitlab.freedesktop.org/drm/intel/issues/7294
[i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
[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#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#7949]: https://gitlab.freedesktop.org/drm/intel/issues/7949
[i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957
[i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981
[i915#8151]: https://gitlab.freedesktop.org/drm/intel/issues/8151
[i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7185 -> IGTPW_8577
CI-20190529: 20190529
CI_DRM_12827: b794b8d84dc0470ee58467386f41870e81a86580 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8577: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/index.html
IGT_7185: 6707461ddb214bb8a75c5fcf2747941c9d9b11ae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8577/index.html
[-- Attachment #2: Type: text/html, Size: 30220 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev4)
2022-08-08 9:36 [igt-dev] [PATCH i-g-t] tests/kms_display_modes: Add check on ENOSPC for DP MST config Mohammed Thasleem
` (7 preceding siblings ...)
2023-03-10 4:04 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
@ 2023-03-13 12:05 ` Patchwork
2023-03-13 17:01 ` [igt-dev] ✗ GitLab.Pipeline: warning " Patchwork
` (4 subsequent siblings)
13 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2023-03-13 12:05 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2624 bytes --]
== Series Details ==
Series: tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev4)
URL : https://patchwork.freedesktop.org/series/114000/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_12850 -> IGTPW_8595
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/index.html
Participating hosts (37 -> 37)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in IGTPW_8595 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@execlists:
- fi-bsw-n3050: [PASS][1] -> [ABORT][2] ([i915#7911])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/fi-bsw-n3050/igt@i915_selftest@live@execlists.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/fi-bsw-n3050/igt@i915_selftest@live@execlists.html
* igt@i915_selftest@live@reset:
- bat-rpls-1: [PASS][3] -> [ABORT][4] ([i915#4983])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/bat-rpls-1/igt@i915_selftest@live@reset.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/bat-rpls-1/igt@i915_selftest@live@reset.html
#### Warnings ####
* igt@i915_selftest@live@slpc:
- bat-rpls-2: [DMESG-FAIL][5] ([i915#6997] / [i915#7913]) -> [DMESG-FAIL][6] ([i915#6367] / [i915#7913] / [i915#7996])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/bat-rpls-2/igt@i915_selftest@live@slpc.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/bat-rpls-2/igt@i915_selftest@live@slpc.html
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997
[i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7996]: https://gitlab.freedesktop.org/drm/intel/issues/7996
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7191 -> IGTPW_8595
CI-20190529: 20190529
CI_DRM_12850: 86e99de09f7efc034962f62e22089ecfe872d57c @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8595: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/index.html
IGT_7191: a6766ee8a971366299671b06af8febc8192c0f74 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/index.html
[-- Attachment #2: Type: text/html, Size: 3330 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread* [igt-dev] ✗ GitLab.Pipeline: warning for tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev4)
2022-08-08 9:36 [igt-dev] [PATCH i-g-t] tests/kms_display_modes: Add check on ENOSPC for DP MST config Mohammed Thasleem
` (8 preceding siblings ...)
2023-03-13 12:05 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev4) Patchwork
@ 2023-03-13 17:01 ` Patchwork
2023-03-14 12:15 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
` (3 subsequent siblings)
13 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2023-03-13 17:01 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
== Series Details ==
Series: tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev4)
URL : https://patchwork.freedesktop.org/series/114000/
State : warning
== Summary ==
Pipeline status: FAILED.
see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/828398 for the overview.
test:ninja-test has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/37972652):
test:ninja-test-clang has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/37972653):
test:ninja-test-minimal has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/37972654):
== Logs ==
For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/828398
^ permalink raw reply [flat|nested] 20+ messages in thread* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev4)
2022-08-08 9:36 [igt-dev] [PATCH i-g-t] tests/kms_display_modes: Add check on ENOSPC for DP MST config Mohammed Thasleem
` (9 preceding siblings ...)
2023-03-13 17:01 ` [igt-dev] ✗ GitLab.Pipeline: warning " Patchwork
@ 2023-03-14 12:15 ` Patchwork
2023-03-19 18:13 ` [igt-dev] [PATCH i-g-t] tests/kms_display_modes: Fixed mode selection for extended mode tests Mohammed Thasleem
` (2 subsequent siblings)
13 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2023-03-14 12:15 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 26852 bytes --]
== Series Details ==
Series: tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev4)
URL : https://patchwork.freedesktop.org/series/114000/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_12850_full -> IGTPW_8595_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_8595_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_8595_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/index.html
Participating hosts (9 -> 8)
------------------------------
Missing (1): shard-rkl0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_8595_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_vblank@pipe-c-query-idle-hang:
- shard-glk: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-glk3/igt@kms_vblank@pipe-c-query-idle-hang.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-glk7/igt@kms_vblank@pipe-c-query-idle-hang.html
Known issues
------------
Here are the changes found in IGTPW_8595_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@feature_discovery@display-4x:
- shard-glk: NOTRUN -> [SKIP][3] ([fdo#109271]) +21 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-glk4/igt@feature_discovery@display-4x.html
* igt@i915_pm_dc@dc9-dpms:
- shard-apl: [PASS][4] -> [FAIL][5] ([i915#4275])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-apl1/igt@i915_pm_dc@dc9-dpms.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-apl4/igt@i915_pm_dc@dc9-dpms.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [PASS][6] -> [FAIL][7] ([i915#2346])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
- shard-glk: [PASS][8] -> [FAIL][9] ([i915#2346])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
- shard-glk: NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#658])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-glk4/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
* igt@perf_pmu@module-unload:
- shard-snb: [PASS][11] -> [ABORT][12] ([i915#4528])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-snb5/igt@perf_pmu@module-unload.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-snb2/igt@perf_pmu@module-unload.html
#### Possible fixes ####
* igt@drm_fdinfo@idle@rcs0:
- {shard-rkl}: [FAIL][13] ([i915#7742]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-rkl-4/igt@drm_fdinfo@idle@rcs0.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-rkl-2/igt@drm_fdinfo@idle@rcs0.html
* igt@fbdev@unaligned-write:
- {shard-rkl}: [SKIP][15] ([i915#2582]) -> [PASS][16] +1 similar issue
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-rkl-2/igt@fbdev@unaligned-write.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-rkl-1/igt@fbdev@unaligned-write.html
* igt@fbdev@write:
- {shard-tglu}: [SKIP][17] ([i915#2582]) -> [PASS][18] +1 similar issue
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-tglu-9/igt@fbdev@write.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-tglu-1/igt@fbdev@write.html
* igt@gem_eio@in-flight-suspend:
- {shard-rkl}: [FAIL][19] ([fdo#103375]) -> [PASS][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-rkl-3/igt@gem_eio@in-flight-suspend.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-rkl-5/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_fair@basic-deadline:
- {shard-rkl}: [FAIL][21] ([i915#2846]) -> [PASS][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- {shard-rkl}: [FAIL][23] ([i915#2842]) -> [PASS][24]
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-rkl-1/igt@gem_exec_fair@basic-none-solo@rcs0.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-rkl-2/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-glk: [FAIL][25] ([i915#2842]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-glk3/igt@gem_exec_fair@basic-none-vip@rcs0.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-glk8/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_reloc@basic-write-read-active:
- {shard-rkl}: [SKIP][27] ([i915#3281]) -> [PASS][28] +8 similar issues
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-rkl-3/igt@gem_exec_reloc@basic-write-read-active.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- {shard-rkl}: [SKIP][29] ([i915#3282]) -> [PASS][30] +5 similar issues
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gen9_exec_parse@basic-rejected:
- {shard-rkl}: [SKIP][31] ([i915#2527]) -> [PASS][32]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-rkl-1/igt@gen9_exec_parse@basic-rejected.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-rkl-5/igt@gen9_exec_parse@basic-rejected.html
* igt@i915_pm_dc@dc6-psr:
- {shard-rkl}: [SKIP][33] ([i915#658]) -> [PASS][34] +1 similar issue
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-rkl-3/igt@i915_pm_dc@dc6-psr.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-rkl-6/igt@i915_pm_dc@dc6-psr.html
* igt@i915_pm_dc@dc9-dpms:
- {shard-rkl}: [SKIP][35] ([i915#4281]) -> [PASS][36]
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-rkl-3/igt@i915_pm_dc@dc9-dpms.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-rkl-1/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_rc6_residency@rc6-idle@bcs0:
- {shard-dg1}: [FAIL][37] ([i915#3591]) -> [PASS][38] +1 similar issue
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html
* igt@i915_pm_rc6_residency@rc6-idle@vcs0:
- {shard-rkl}: [WARN][39] ([i915#2681]) -> [PASS][40]
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
* igt@i915_pm_rpm@cursor-dpms:
- {shard-rkl}: [SKIP][41] ([i915#1849]) -> [PASS][42]
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-rkl-1/igt@i915_pm_rpm@cursor-dpms.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-rkl-6/igt@i915_pm_rpm@cursor-dpms.html
* igt@i915_pm_rpm@drm-resources-equal:
- {shard-tglu}: [SKIP][43] ([i915#3547]) -> [PASS][44]
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-tglu-6/igt@i915_pm_rpm@drm-resources-equal.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-tglu-5/igt@i915_pm_rpm@drm-resources-equal.html
* igt@i915_pm_rpm@modeset-lpsp-stress:
- {shard-tglu}: [SKIP][45] ([i915#1397]) -> [PASS][46]
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-tglu-9/igt@i915_pm_rpm@modeset-lpsp-stress.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-tglu-7/igt@i915_pm_rpm@modeset-lpsp-stress.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-glk: [FAIL][47] ([i915#72]) -> [PASS][48]
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-glk5/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-glk3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
- {shard-tglu}: [SKIP][49] ([i915#1845]) -> [PASS][50] +4 similar issues
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-tglu-6/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-tglu-10/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions:
- {shard-rkl}: [SKIP][51] ([i915#1845] / [i915#4098]) -> [PASS][52] +18 similar issues
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-rkl-4/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [FAIL][53] ([i915#2346]) -> [PASS][54]
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
- shard-apl: [FAIL][55] ([i915#2346]) -> [PASS][56]
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2:
- shard-glk: [FAIL][57] ([i915#79]) -> [PASS][58]
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-glk5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html
* igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt:
- {shard-tglu}: [SKIP][59] ([i915#1849]) -> [PASS][60] +12 similar issues
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-tglu-3/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu:
- {shard-rkl}: [SKIP][61] ([i915#1849] / [i915#4098]) -> [PASS][62] +12 similar issues
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
* igt@kms_plane@plane-position-hole-dpms@pipe-a-planes:
- {shard-tglu}: [SKIP][63] ([i915#1849] / [i915#3558]) -> [PASS][64] +1 similar issue
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-tglu-6/igt@kms_plane@plane-position-hole-dpms@pipe-a-planes.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-tglu-1/igt@kms_plane@plane-position-hole-dpms@pipe-a-planes.html
* igt@kms_psr@cursor_plane_onoff:
- {shard-rkl}: [SKIP][65] ([i915#1072]) -> [PASS][66] +2 similar issues
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-rkl-1/igt@kms_psr@cursor_plane_onoff.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-rkl-6/igt@kms_psr@cursor_plane_onoff.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-b:
- {shard-rkl}: [SKIP][67] ([i915#1845] / [i915#4070] / [i915#4098]) -> [PASS][68]
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-rkl-2/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-rkl-6/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html
* igt@kms_vblank@pipe-c-wait-forked:
- {shard-tglu}: [SKIP][69] ([i915#1845] / [i915#7651]) -> [PASS][70] +40 similar issues
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-tglu-6/igt@kms_vblank@pipe-c-wait-forked.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-tglu-8/igt@kms_vblank@pipe-c-wait-forked.html
* igt@perf@polling-small-buf:
- {shard-rkl}: [FAIL][71] ([i915#1722]) -> [PASS][72]
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-rkl-2/igt@perf@polling-small-buf.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-rkl-5/igt@perf@polling-small-buf.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- {shard-dg1}: [FAIL][73] ([i915#5234]) -> [PASS][74]
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-dg1-13/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-dg1-18/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
* igt@sysfs_heartbeat_interval@precise@vcs1:
- {shard-dg1}: [FAIL][75] ([i915#1755]) -> [PASS][76]
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12850/shard-dg1-12/igt@sysfs_heartbeat_interval@precise@vcs1.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/shard-dg1-12/igt@sysfs_heartbeat_interval@precise@vcs1.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#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
[i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902
[i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
[i915#2232]: https://gitlab.freedesktop.org/drm/intel/issues/2232
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[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#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[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#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3547]: https://gitlab.freedesktop.org/drm/intel/issues/3547
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558
[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#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938
[i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[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#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[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#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4275]: https://gitlab.freedesktop.org/drm/intel/issues/4275
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
[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#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818
[i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
[i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030
[i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
[i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247
[i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
[i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252
[i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
[i915#6403]: https://gitlab.freedesktop.org/drm/intel/issues/6403
[i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
[i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582
[i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[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#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#7949]: https://gitlab.freedesktop.org/drm/intel/issues/7949
[i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957
[i915#8151]: https://gitlab.freedesktop.org/drm/intel/issues/8151
[i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152
[i915#8211]: https://gitlab.freedesktop.org/drm/intel/issues/8211
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8234]: https://gitlab.freedesktop.org/drm/intel/issues/8234
[i915#8282]: https://gitlab.freedesktop.org/drm/intel/issues/8282
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7191 -> IGTPW_8595
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_12850: 86e99de09f7efc034962f62e22089ecfe872d57c @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8595: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/index.html
IGT_7191: a6766ee8a971366299671b06af8febc8192c0f74 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8595/index.html
[-- Attachment #2: Type: text/html, Size: 20275 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread* [igt-dev] [PATCH i-g-t] tests/kms_display_modes: Fixed mode selection for extended mode tests
2022-08-08 9:36 [igt-dev] [PATCH i-g-t] tests/kms_display_modes: Add check on ENOSPC for DP MST config Mohammed Thasleem
` (10 preceding siblings ...)
2023-03-14 12:15 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-03-19 18:13 ` Mohammed Thasleem
2023-03-19 18:57 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev5) Patchwork
2023-03-19 20:02 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
13 siblings, 0 replies; 20+ messages in thread
From: Mohammed Thasleem @ 2023-03-19 18:13 UTC (permalink / raw)
To: igt-dev
Added check on DP-MST and 4k panels when two moniters connected
through MST.
This will find the connector mode combo that fits into the
bandwidth when more than one monitor is connected.
Example:
When two monitors connected through MST, the second monitor
also tries to use the same mode. So two such modes may not
fit into the link bandwidth. So, iterate through connected
outputs & modes and find a combination of modes those fit
into the link BW.
v2: -Updated commit msg and description. (Bhanu)
-Renamed restart with retry. (Bhanu)
-Moved igt_pipe_crc_new before retry. (Bhanu)
-Removed unrelated changes and new line. (Bhanu)
-Minor changes.
v3: Updated discription and added EINVAL check.
v4: Removed EINVAL and ENOSPC checks.
Added check for DP-MST and 4k panels.
Updated discription.
v5: Defined 4k display modes globally.
Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
---
tests/kms_display_modes.c | 92 ++++++++++++++++++++++++++++++++++++---
1 file changed, 87 insertions(+), 5 deletions(-)
diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c
index e4191811e..fea8769a4 100644
--- a/tests/kms_display_modes.c
+++ b/tests/kms_display_modes.c
@@ -26,6 +26,9 @@
#include "igt.h"
+#define HDISPLAY_4K 3840
+#define VDISPLAY_4K 2160
+
IGT_TEST_DESCRIPTION("Test Display Modes");
typedef struct {
@@ -34,16 +37,71 @@ typedef struct {
int n_pipes;
} data_t;
+static int parse_path_blob(char *blob_data)
+{
+ int connector_id;
+ char *encoder;
+
+ encoder = strtok(blob_data, ":");
+ igt_assert_f(!strcmp(encoder, "mst"), "PATH connector property expected to have 'mst'\n");
+
+ connector_id = atoi(strtok(NULL, "-"));
+
+ return connector_id;
+}
+
+static bool output_is_dp_mst(data_t *data, igt_output_t *output, int i)
+{
+ drmModePropertyBlobPtr path_blob = NULL;
+ uint64_t path_blob_id;
+ drmModeConnector *connector = output->config.connector;
+ struct kmstest_connector_config config;
+ const char *encoder;
+ int connector_id;
+ static int prev_connector_id;
+
+ kmstest_get_connector_config(data->drm_fd, output->config.connector->connector_id,
+ -1, &config);
+ encoder = kmstest_encoder_type_str(config.encoder->encoder_type);
+
+ if (strcmp(encoder, "DP MST"))
+ return false;
+
+ igt_assert(kmstest_get_property(data->drm_fd, connector->connector_id,
+ DRM_MODE_OBJECT_CONNECTOR, "PATH", NULL,
+ &path_blob_id, NULL));
+
+ igt_assert(path_blob = drmModeGetPropertyBlob(data->drm_fd, path_blob_id));
+
+ connector_id = parse_path_blob((char *) path_blob->data);
+
+ /*
+ * Discarding outputs of other DP MST topology.
+ * Testing only on outputs on the topology we got previously
+ */
+ if (i == 0) {
+ prev_connector_id = connector_id;
+ } else {
+ if (connector_id != prev_connector_id)
+ return false;
+ }
+
+ drmModeFreePropertyBlob(path_blob);
+
+ return true;
+}
+
static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
{
struct igt_fb fb, fbs[2];
drmModeModeInfo *mode[2];
+ drmModeModeInfo *mode_mst;
igt_output_t *output, *extended_output[2];
igt_display_t *display = &data->display;
igt_plane_t *plane[2];
igt_pipe_crc_t *pipe_crc[2] = { 0 };
igt_crc_t ref_crc[2], crc[2];
- int count = 0, width, height;
+ int count = 0, width, height, ret, dp_mst_outputs = 0;
cairo_t *cr;
for_each_connected_output(display, output) {
@@ -54,15 +112,16 @@ static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
break;
}
+ pipe_crc[0] = igt_pipe_crc_new(data->drm_fd, pipe1, IGT_PIPE_CRC_SOURCE_AUTO);
+ pipe_crc[1] = igt_pipe_crc_new(data->drm_fd, pipe2, IGT_PIPE_CRC_SOURCE_AUTO);
+
+retry:
igt_output_set_pipe(extended_output[0], pipe1);
igt_output_set_pipe(extended_output[1], pipe2);
mode[0] = igt_output_get_mode(extended_output[0]);
mode[1] = igt_output_get_mode(extended_output[1]);
- pipe_crc[0] = igt_pipe_crc_new(data->drm_fd, pipe1, IGT_PIPE_CRC_SOURCE_AUTO);
- pipe_crc[1] = igt_pipe_crc_new(data->drm_fd, pipe2, IGT_PIPE_CRC_SOURCE_AUTO);
-
igt_create_color_fb(data->drm_fd, mode[0]->hdisplay, mode[0]->vdisplay,
DRM_FORMAT_XRGB8888, 0, 1, 0, 0, &fbs[0]);
igt_create_color_fb(data->drm_fd, mode[1]->hdisplay, mode[1]->vdisplay,
@@ -79,7 +138,30 @@ static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
igt_fb_set_size(&fbs[1], plane[1], mode[1]->hdisplay, mode[1]->vdisplay);
igt_plane_set_size(plane[1], mode[1]->hdisplay, mode[1]->vdisplay);
- igt_display_commit2(display, COMMIT_ATOMIC);
+ for_each_connected_output(display, output) {
+ mode_mst = igt_output_get_mode(output);
+ if (output_is_dp_mst(data, output, dp_mst_outputs) &&
+ (mode_mst->hdisplay >= HDISPLAY_4K && mode_mst->vdisplay >= VDISPLAY_4K))
+ dp_mst_outputs++;
+ }
+
+ ret = igt_display_try_commit2(display, COMMIT_ATOMIC);
+ /* In case of DP-MST find suitable mode(s) to fit into the link BW. */
+ if (ret != 0 && dp_mst_outputs > 1) {
+ bool found = igt_override_all_active_output_modes_to_fit_bw(display);
+
+ igt_require_f(found, "No valid mode combo found for MST modeset.\n");
+
+ for_each_connected_output(display, output)
+ igt_output_set_pipe(output, PIPE_NONE);
+
+ igt_remove_fb(data->drm_fd, &fbs[0]);
+ igt_remove_fb(data->drm_fd, &fbs[1]);
+
+ goto retry;
+ }
+
+ igt_assert(!ret);
igt_pipe_crc_collect_crc(pipe_crc[0], &ref_crc[0]);
igt_pipe_crc_collect_crc(pipe_crc[1], &ref_crc[1]);
--
2.25.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev5)
2022-08-08 9:36 [igt-dev] [PATCH i-g-t] tests/kms_display_modes: Add check on ENOSPC for DP MST config Mohammed Thasleem
` (11 preceding siblings ...)
2023-03-19 18:13 ` [igt-dev] [PATCH i-g-t] tests/kms_display_modes: Fixed mode selection for extended mode tests Mohammed Thasleem
@ 2023-03-19 18:57 ` Patchwork
2023-03-19 20:02 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
13 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2023-03-19 18:57 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3631 bytes --]
== Series Details ==
Series: tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev5)
URL : https://patchwork.freedesktop.org/series/114000/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_12879 -> IGTPW_8637
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/index.html
Participating hosts (35 -> 34)
------------------------------
Missing (1): bat-atsm-1
Known issues
------------
Here are the changes found in IGTPW_8637 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_suspend@basic-s3@smem:
- bat-rpls-1: NOTRUN -> [ABORT][1] ([i915#6687] / [i915#7978])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html
* igt@i915_selftest@live@slpc:
- bat-rpls-1: NOTRUN -> [DMESG-FAIL][2] ([i915#6367] / [i915#7996])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/bat-rpls-1/igt@i915_selftest@live@slpc.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: NOTRUN -> [SKIP][3] ([i915#5354]) +2 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
#### Possible fixes ####
* igt@i915_selftest@live@requests:
- bat-rpls-1: [ABORT][4] ([i915#7911]) -> [PASS][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/bat-rpls-1/igt@i915_selftest@live@requests.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/bat-rpls-1/igt@i915_selftest@live@requests.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1:
- bat-adlp-9: [DMESG-WARN][6] ([i915#2867]) -> [PASS][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/bat-adlp-9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/bat-adlp-9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html
#### Warnings ####
* igt@i915_selftest@live@execlists:
- fi-bsw-n3050: [INCOMPLETE][8] ([i915#6972] / [i915#7913]) -> [ABORT][9] ([i915#7911] / [i915#7913])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/fi-bsw-n3050/igt@i915_selftest@live@execlists.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/fi-bsw-n3050/igt@i915_selftest@live@execlists.html
[i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687
[i915#6972]: https://gitlab.freedesktop.org/drm/intel/issues/6972
[i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978
[i915#7996]: https://gitlab.freedesktop.org/drm/intel/issues/7996
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7205 -> IGTPW_8637
CI-20190529: 20190529
CI_DRM_12879: b101ddfdc98728b7ea5c8f9f6cbac5a5e5d64572 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8637: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/index.html
IGT_7205: 0d4bf61a38c7751cf7c92751c4bb64f95c9ffbe2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/index.html
[-- Attachment #2: Type: text/html, Size: 4492 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev5)
2022-08-08 9:36 [igt-dev] [PATCH i-g-t] tests/kms_display_modes: Add check on ENOSPC for DP MST config Mohammed Thasleem
` (12 preceding siblings ...)
2023-03-19 18:57 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev5) Patchwork
@ 2023-03-19 20:02 ` Patchwork
13 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2023-03-19 20:02 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 26121 bytes --]
== Series Details ==
Series: tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev5)
URL : https://patchwork.freedesktop.org/series/114000/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_12879_full -> IGTPW_8637_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/index.html
Participating hosts (7 -> 8)
------------------------------
Additional (1): shard-rkl0
Known issues
------------
Here are the changes found in IGTPW_8637_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-apl: [PASS][1] -> [FAIL][2] ([i915#2842])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-apl3/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_lmem_swapping@basic:
- shard-apl: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#4613])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-apl7/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#4613])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-glk8/igt@gem_lmem_swapping@verify-ccs.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: [PASS][5] -> [ABORT][6] ([i915#5566])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-glk2/igt@gen9_exec_parse@allowed-single.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-glk8/igt@gen9_exec_parse@allowed-single.html
* igt@i915_pm_rps@reset:
- shard-snb: [PASS][7] -> [INCOMPLETE][8] ([i915#7790])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-snb2/igt@i915_pm_rps@reset.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-snb7/igt@i915_pm_rps@reset.html
* igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc:
- shard-glk: NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#3886])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-glk3/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-apl: [PASS][10] -> [FAIL][11] ([i915#2346])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/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][12] -> [FAIL][13] ([i915#2346])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][14] -> [FAIL][15] ([i915#79])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
- shard-glk: NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#658])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-glk3/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr@psr2_sprite_blt:
- shard-glk: NOTRUN -> [SKIP][17] ([fdo#109271]) +20 similar issues
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-glk2/igt@kms_psr@psr2_sprite_blt.html
* igt@kms_psr@psr2_sprite_plane_onoff:
- shard-apl: NOTRUN -> [SKIP][18] ([fdo#109271]) +36 similar issues
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-apl6/igt@kms_psr@psr2_sprite_plane_onoff.html
* igt@kms_vblank@pipe-c-query-forked-busy-hang:
- shard-apl: [PASS][19] -> [SKIP][20] ([fdo#109271]) +1 similar issue
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-apl2/igt@kms_vblank@pipe-c-query-forked-busy-hang.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-apl4/igt@kms_vblank@pipe-c-query-forked-busy-hang.html
- shard-glk: [PASS][21] -> [SKIP][22] ([fdo#109271])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-glk2/igt@kms_vblank@pipe-c-query-forked-busy-hang.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-glk2/igt@kms_vblank@pipe-c-query-forked-busy-hang.html
#### Possible fixes ####
* igt@fbdev@nullptr:
- {shard-tglu}: [SKIP][23] ([i915#2582]) -> [PASS][24]
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-tglu-9/igt@fbdev@nullptr.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-tglu-7/igt@fbdev@nullptr.html
* igt@fbdev@pan:
- {shard-rkl}: [SKIP][25] ([i915#2582]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-rkl-3/igt@fbdev@pan.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-rkl-2/igt@fbdev@pan.html
* {igt@gem_barrier_race@remote-request@rcs0}:
- {shard-dg1}: [ABORT][27] ([i915#8234]) -> [PASS][28]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-dg1-17/igt@gem_barrier_race@remote-request@rcs0.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-dg1-14/igt@gem_barrier_race@remote-request@rcs0.html
* igt@gem_ctx_persistence@hang:
- {shard-rkl}: [SKIP][29] ([i915#6252]) -> [PASS][30] +1 similar issue
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-rkl-5/igt@gem_ctx_persistence@hang.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-rkl-3/igt@gem_ctx_persistence@hang.html
* igt@gem_eio@in-flight-suspend:
- {shard-rkl}: [FAIL][31] ([fdo#103375]) -> [PASS][32]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-rkl-3/igt@gem_eio@in-flight-suspend.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-rkl-2/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-glk: [FAIL][33] ([i915#2842]) -> [PASS][34]
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-glk8/igt@gem_exec_fair@basic-throttle@rcs0.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-glk8/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_reloc@basic-gtt-read-active:
- {shard-rkl}: [SKIP][35] ([i915#3281]) -> [PASS][36] +3 similar issues
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-read-active.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-read-active.html
* igt@gem_mmap_wc@set-cache-level:
- {shard-tglu}: [SKIP][37] ([i915#1850]) -> [PASS][38]
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-tglu-9/igt@gem_mmap_wc@set-cache-level.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-tglu-6/igt@gem_mmap_wc@set-cache-level.html
* igt@gem_tiled_partial_pwrite_pread@writes:
- {shard-rkl}: [SKIP][39] ([i915#3282]) -> [PASS][40] +1 similar issue
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-rkl-6/igt@gem_tiled_partial_pwrite_pread@writes.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-rkl-5/igt@gem_tiled_partial_pwrite_pread@writes.html
* igt@gen9_exec_parse@allowed-all:
- shard-glk: [ABORT][41] ([i915#5566]) -> [PASS][42]
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-glk3/igt@gen9_exec_parse@allowed-all.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-glk2/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@allowed-single:
- shard-apl: [ABORT][43] ([i915#5566]) -> [PASS][44]
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-apl7/igt@gen9_exec_parse@allowed-single.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-apl7/igt@gen9_exec_parse@allowed-single.html
* igt@i915_hangman@engine-engine-error@bcs0:
- {shard-rkl}: [SKIP][45] ([i915#6258]) -> [PASS][46]
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-rkl-5/igt@i915_hangman@engine-engine-error@bcs0.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-rkl-1/igt@i915_hangman@engine-engine-error@bcs0.html
* {igt@i915_pm_dc@dc5-dpms-negative}:
- {shard-tglu}: [SKIP][47] ([i915#8018]) -> [PASS][48]
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-tglu-10/igt@i915_pm_dc@dc5-dpms-negative.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-tglu-6/igt@i915_pm_dc@dc5-dpms-negative.html
* igt@i915_pm_dc@dc6-dpms:
- {shard-tglu}: [FAIL][49] ([i915#3989] / [i915#454]) -> [PASS][50]
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-tglu-5/igt@i915_pm_dc@dc6-dpms.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-tglu-10/igt@i915_pm_dc@dc6-dpms.html
* igt@i915_pm_rpm@cursor-dpms:
- {shard-tglu}: [SKIP][51] ([i915#1849]) -> [PASS][52] +15 similar issues
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-tglu-9/igt@i915_pm_rpm@cursor-dpms.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-tglu-5/igt@i915_pm_rpm@cursor-dpms.html
* igt@i915_pm_rpm@drm-resources-equal:
- {shard-tglu}: [SKIP][53] ([i915#3547]) -> [PASS][54] +1 similar issue
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-tglu-9/igt@i915_pm_rpm@drm-resources-equal.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-tglu-5/igt@i915_pm_rpm@drm-resources-equal.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- {shard-tglu}: [SKIP][55] ([i915#1845]) -> [PASS][56] +32 similar issues
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-tglu-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-atomic:
- {shard-rkl}: [SKIP][57] ([i915#1845] / [i915#4098]) -> [PASS][58] +16 similar issues
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-rkl-1/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-rkl-6/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [FAIL][59] ([i915#2346]) -> [PASS][60]
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_fbcon_fbt@psr:
- {shard-rkl}: [SKIP][61] ([fdo#110189] / [i915#3955]) -> [PASS][62]
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-rkl-5/igt@kms_fbcon_fbt@psr.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-rkl-6/igt@kms_fbcon_fbt@psr.html
* igt@kms_frontbuffer_tracking@basic:
- {shard-rkl}: [SKIP][63] ([i915#1849] / [i915#4098]) -> [PASS][64] +5 similar issues
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-rkl-4/igt@kms_frontbuffer_tracking@basic.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-rkl-6/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_hdmi_inject@inject-audio:
- {shard-tglu}: [SKIP][65] ([i915#433]) -> [PASS][66]
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-tglu-9/igt@kms_hdmi_inject@inject-audio.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-tglu-5/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes:
- {shard-tglu}: [SKIP][67] ([i915#1849] / [i915#3558]) -> [PASS][68] +7 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-tglu-9/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-tglu-8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
* igt@kms_plane@plane-position-covered@pipe-a-planes:
- {shard-rkl}: [SKIP][69] ([i915#1849]) -> [PASS][70] +1 similar issue
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-rkl-4/igt@kms_plane@plane-position-covered@pipe-a-planes.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-rkl-6/igt@kms_plane@plane-position-covered@pipe-a-planes.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- {shard-rkl}: [SKIP][71] ([i915#5461]) -> [PASS][72]
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-rkl-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-rkl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_universal_plane@universal-plane-pipe-c-sanity:
- {shard-tglu}: [SKIP][73] ([fdo#109274]) -> [PASS][74] +2 similar issues
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-tglu-9/igt@kms_universal_plane@universal-plane-pipe-c-sanity.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-tglu-3/igt@kms_universal_plane@universal-plane-pipe-c-sanity.html
* igt@kms_vblank@pipe-a-query-forked:
- {shard-tglu}: [SKIP][75] ([i915#1845] / [i915#7651]) -> [PASS][76] +35 similar issues
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-tglu-9/igt@kms_vblank@pipe-a-query-forked.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-tglu-4/igt@kms_vblank@pipe-a-query-forked.html
* igt@perf@stress-open-close:
- shard-glk: [ABORT][77] ([i915#5213]) -> [PASS][78]
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12879/shard-glk8/igt@perf@stress-open-close.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/shard-glk7/igt@perf@stress-open-close.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#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[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#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
[i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#1850]: https://gitlab.freedesktop.org/drm/intel/issues/1850
[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#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528
[i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3547]: https://gitlab.freedesktop.org/drm/intel/issues/3547
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558
[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#3639]: https://gitlab.freedesktop.org/drm/intel/issues/3639
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938
[i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952
[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#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[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#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
[i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
[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#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
[i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
[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#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247
[i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
[i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252
[i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7128]: https://gitlab.freedesktop.org/drm/intel/issues/7128
[i915#7294]: https://gitlab.freedesktop.org/drm/intel/issues/7294
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#7949]: https://gitlab.freedesktop.org/drm/intel/issues/7949
[i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957
[i915#8018]: https://gitlab.freedesktop.org/drm/intel/issues/8018
[i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152
[i915#8154]: https://gitlab.freedesktop.org/drm/intel/issues/8154
[i915#8155]: https://gitlab.freedesktop.org/drm/intel/issues/8155
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8234]: https://gitlab.freedesktop.org/drm/intel/issues/8234
[i915#8282]: https://gitlab.freedesktop.org/drm/intel/issues/8282
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7205 -> IGTPW_8637
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_12879: b101ddfdc98728b7ea5c8f9f6cbac5a5e5d64572 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8637: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/index.html
IGT_7205: 0d4bf61a38c7751cf7c92751c4bb64f95c9ffbe2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8637/index.html
[-- Attachment #2: Type: text/html, Size: 20889 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread