* [igt-dev] [PATCH i-g-t v2 0/3] Use intel_cmds_info in i915_pm_rpm
@ 2023-06-27 10:58 Karolina Stolarek
2023-06-27 10:58 ` [igt-dev] [PATCH i-g-t v2 1/3] lib/intel_cmds_info: Add library support for XY_COLOR_BLT Karolina Stolarek
` (6 more replies)
0 siblings, 7 replies; 14+ messages in thread
From: Karolina Stolarek @ 2023-06-27 10:58 UTC (permalink / raw)
To: igt-dev
i915_pm_rpm test uses XY_COLOR_BLT blitter command which is not
supported on newer generations. This series modifies gem-execbuf
test to switch to fast copy if it can't do a color blit. It also
introduces an updated version of intel_cmds_info library that has
information on XY_COLOR_BLT support.
v2:
- Rebase the series on the top of "lib/intel_blt: Prepare blt
library to support xe" commit
- Update regions iteration in gem_execbuf_subtest() to first
create a buffer on device memory, if possible
- Re-order blt_cmd_info definitions (no functional change)
- Drop BLT_CMD_LONG flag, and re-use BLT_CMD_EXTENDED
Karolina Stolarek (1):
tests/i915/i915_pm_rpm: Check command property instead of gen
Vikas Srivastava (2):
lib/intel_cmds_info: Add library support for XY_COLOR_BLT
tests/i915/i915_pm_rpm: Modify gem-execbuf test for gen12+
lib/intel_blt.c | 16 ++++
lib/intel_blt.h | 1 +
lib/intel_cmds_info.c | 23 ++++-
lib/intel_cmds_info.h | 1 +
tests/i915/i915_pm_rpm.c | 195 ++++++++++++++++++++++++++++++---------
5 files changed, 191 insertions(+), 45 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 14+ messages in thread* [igt-dev] [PATCH i-g-t v2 1/3] lib/intel_cmds_info: Add library support for XY_COLOR_BLT 2023-06-27 10:58 [igt-dev] [PATCH i-g-t v2 0/3] Use intel_cmds_info in i915_pm_rpm Karolina Stolarek @ 2023-06-27 10:58 ` Karolina Stolarek 2023-06-30 15:40 ` Kamil Konieczny 2023-06-27 10:58 ` [igt-dev] [PATCH i-g-t v2 2/3] tests/i915/i915_pm_rpm: Modify gem-execbuf test for gen12+ Karolina Stolarek ` (5 subsequent siblings) 6 siblings, 1 reply; 14+ messages in thread From: Karolina Stolarek @ 2023-06-27 10:58 UTC (permalink / raw) To: igt-dev; +Cc: Vikas Srivastava From: Vikas Srivastava <vikas.srivastava@intel.com> Add API to check support for XY_COLOR_BLT command in existing library for gen12 and older platforms. Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> Signed-off-by: Vikas Srivastava <vikas.srivastava@intel.com> Signed-off-by: Karolina Stolarek <karolina.stolarek@intel.com> --- lib/intel_blt.c | 16 ++++++++++++++++ lib/intel_blt.h | 1 + lib/intel_cmds_info.c | 23 ++++++++++++++++++++--- lib/intel_cmds_info.h | 1 + 4 files changed, 38 insertions(+), 3 deletions(-) diff --git a/lib/intel_blt.c b/lib/intel_blt.c index 28a740094..4836149e4 100644 --- a/lib/intel_blt.c +++ b/lib/intel_blt.c @@ -317,6 +317,22 @@ bool blt_has_xy_src_copy(int fd) return blt_supports_command(cmds_info, XY_SRC_COPY); } +/** + * blt_has_xy_color + * @fd: drm fd + * + * Check if XY_COLOR_BLT is supported by @fd device + * + * Returns: + * true if it does, false otherwise. + */ +bool blt_has_xy_color(int fd) +{ + const struct intel_cmds_info *cmds_info = GET_CMDS_INFO(fd); + + return blt_supports_command(cmds_info, XY_COLOR_BLT); +} + /** * blt_fast_copy_supports_tiling * @fd: drm fd diff --git a/lib/intel_blt.h b/lib/intel_blt.h index 0cbe881f4..64006273f 100644 --- a/lib/intel_blt.h +++ b/lib/intel_blt.h @@ -172,6 +172,7 @@ bool blt_cmd_has_property(const struct intel_cmds_info *cmds_info, bool blt_has_block_copy(int fd); bool blt_has_fast_copy(int fd); bool blt_has_xy_src_copy(int fd); +bool blt_has_xy_color(int fd); bool blt_fast_copy_supports_tiling(int fd, enum blt_tiling_type tiling); bool blt_block_copy_supports_tiling(int fd, enum blt_tiling_type tiling); diff --git a/lib/intel_cmds_info.c b/lib/intel_cmds_info.c index 151cb5f72..366b37f2c 100644 --- a/lib/intel_cmds_info.c +++ b/lib/intel_cmds_info.c @@ -82,24 +82,38 @@ static const struct blt_cmd_info BIT(T_TILE64), BLT_CMD_EXTENDED); +static const struct blt_cmd_info + pre_gen6_xy_color_blt = BLT_INFO(XY_COLOR_BLT, + BIT(T_LINEAR) | + BIT(T_XMAJOR)); + +static const struct blt_cmd_info + gen6_xy_color_blt = BLT_INFO_EXT(XY_COLOR_BLT, + BIT(T_LINEAR) | + BIT(T_YMAJOR) | + BIT(T_XMAJOR), + BLT_CMD_EXTENDED); + const struct intel_cmds_info pre_gen6_cmds_info = { .blt_cmds = { [SRC_COPY] = &src_copy, - [XY_SRC_COPY] = &pre_gen6_xy_src_copy + [XY_SRC_COPY] = &pre_gen6_xy_src_copy, + [XY_COLOR_BLT] = &pre_gen6_xy_color_blt, } }; const struct intel_cmds_info gen6_cmds_info = { .blt_cmds = { [SRC_COPY] = &src_copy, - [XY_SRC_COPY] = &gen6_xy_src_copy + [XY_SRC_COPY] = &gen6_xy_src_copy, + [XY_COLOR_BLT] = &gen6_xy_color_blt, } - }; const struct intel_cmds_info gen8_cmds_info = { .blt_cmds = { [XY_SRC_COPY] = &gen6_xy_src_copy, + [XY_COLOR_BLT] = &gen6_xy_color_blt, } }; @@ -107,6 +121,7 @@ const struct intel_cmds_info gen11_cmds_info = { .blt_cmds = { [XY_SRC_COPY] = &gen6_xy_src_copy, [XY_FAST_COPY] = &gen11_xy_fast_copy, + [XY_COLOR_BLT] = &gen6_xy_color_blt, } }; @@ -115,6 +130,7 @@ const struct intel_cmds_info gen12_cmds_info = { [XY_SRC_COPY] = &gen6_xy_src_copy, [XY_FAST_COPY] = &gen12_xy_fast_copy, [XY_BLOCK_COPY] = &gen12_xy_block_copy, + [XY_COLOR_BLT] = &gen6_xy_color_blt, } }; @@ -123,6 +139,7 @@ const struct intel_cmds_info gen12_dg2_cmds_info = { [XY_SRC_COPY] = &gen6_xy_src_copy, [XY_FAST_COPY] = &dg2_xy_fast_copy, [XY_BLOCK_COPY] = &dg2_xy_block_copy, + [XY_COLOR_BLT] = &gen6_xy_color_blt, } }; diff --git a/lib/intel_cmds_info.h b/lib/intel_cmds_info.h index 1db8709f8..91d0f15ec 100644 --- a/lib/intel_cmds_info.h +++ b/lib/intel_cmds_info.h @@ -23,6 +23,7 @@ enum blt_cmd_type { XY_SRC_COPY, XY_FAST_COPY, XY_BLOCK_COPY, + XY_COLOR_BLT, __BLT_MAX_CMD }; -- 2.25.1 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 1/3] lib/intel_cmds_info: Add library support for XY_COLOR_BLT 2023-06-27 10:58 ` [igt-dev] [PATCH i-g-t v2 1/3] lib/intel_cmds_info: Add library support for XY_COLOR_BLT Karolina Stolarek @ 2023-06-30 15:40 ` Kamil Konieczny 0 siblings, 0 replies; 14+ messages in thread From: Kamil Konieczny @ 2023-06-30 15:40 UTC (permalink / raw) To: igt-dev Hi Karolina, On 2023-06-27 at 12:58:18 +0200, Karolina Stolarek wrote: > From: Vikas Srivastava <vikas.srivastava@intel.com> > > Add API to check support for XY_COLOR_BLT command in existing > library for gen12 and older platforms. > > Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> > Signed-off-by: Vikas Srivastava <vikas.srivastava@intel.com> > Signed-off-by: Karolina Stolarek <karolina.stolarek@intel.com> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > lib/intel_blt.c | 16 ++++++++++++++++ > lib/intel_blt.h | 1 + > lib/intel_cmds_info.c | 23 ++++++++++++++++++++--- > lib/intel_cmds_info.h | 1 + > 4 files changed, 38 insertions(+), 3 deletions(-) > > diff --git a/lib/intel_blt.c b/lib/intel_blt.c > index 28a740094..4836149e4 100644 > --- a/lib/intel_blt.c > +++ b/lib/intel_blt.c > @@ -317,6 +317,22 @@ bool blt_has_xy_src_copy(int fd) > return blt_supports_command(cmds_info, XY_SRC_COPY); > } > > +/** > + * blt_has_xy_color > + * @fd: drm fd > + * > + * Check if XY_COLOR_BLT is supported by @fd device > + * > + * Returns: > + * true if it does, false otherwise. > + */ > +bool blt_has_xy_color(int fd) > +{ > + const struct intel_cmds_info *cmds_info = GET_CMDS_INFO(fd); > + > + return blt_supports_command(cmds_info, XY_COLOR_BLT); > +} > + > /** > * blt_fast_copy_supports_tiling > * @fd: drm fd > diff --git a/lib/intel_blt.h b/lib/intel_blt.h > index 0cbe881f4..64006273f 100644 > --- a/lib/intel_blt.h > +++ b/lib/intel_blt.h > @@ -172,6 +172,7 @@ bool blt_cmd_has_property(const struct intel_cmds_info *cmds_info, > bool blt_has_block_copy(int fd); > bool blt_has_fast_copy(int fd); > bool blt_has_xy_src_copy(int fd); > +bool blt_has_xy_color(int fd); > > bool blt_fast_copy_supports_tiling(int fd, enum blt_tiling_type tiling); > bool blt_block_copy_supports_tiling(int fd, enum blt_tiling_type tiling); > diff --git a/lib/intel_cmds_info.c b/lib/intel_cmds_info.c > index 151cb5f72..366b37f2c 100644 > --- a/lib/intel_cmds_info.c > +++ b/lib/intel_cmds_info.c > @@ -82,24 +82,38 @@ static const struct blt_cmd_info > BIT(T_TILE64), > BLT_CMD_EXTENDED); > > +static const struct blt_cmd_info > + pre_gen6_xy_color_blt = BLT_INFO(XY_COLOR_BLT, > + BIT(T_LINEAR) | > + BIT(T_XMAJOR)); > + > +static const struct blt_cmd_info > + gen6_xy_color_blt = BLT_INFO_EXT(XY_COLOR_BLT, > + BIT(T_LINEAR) | > + BIT(T_YMAJOR) | > + BIT(T_XMAJOR), > + BLT_CMD_EXTENDED); > + > const struct intel_cmds_info pre_gen6_cmds_info = { > .blt_cmds = { > [SRC_COPY] = &src_copy, > - [XY_SRC_COPY] = &pre_gen6_xy_src_copy > + [XY_SRC_COPY] = &pre_gen6_xy_src_copy, > + [XY_COLOR_BLT] = &pre_gen6_xy_color_blt, > } > }; > > const struct intel_cmds_info gen6_cmds_info = { > .blt_cmds = { > [SRC_COPY] = &src_copy, > - [XY_SRC_COPY] = &gen6_xy_src_copy > + [XY_SRC_COPY] = &gen6_xy_src_copy, > + [XY_COLOR_BLT] = &gen6_xy_color_blt, > } > - > }; > > const struct intel_cmds_info gen8_cmds_info = { > .blt_cmds = { > [XY_SRC_COPY] = &gen6_xy_src_copy, > + [XY_COLOR_BLT] = &gen6_xy_color_blt, > } > }; > > @@ -107,6 +121,7 @@ const struct intel_cmds_info gen11_cmds_info = { > .blt_cmds = { > [XY_SRC_COPY] = &gen6_xy_src_copy, > [XY_FAST_COPY] = &gen11_xy_fast_copy, > + [XY_COLOR_BLT] = &gen6_xy_color_blt, > } > }; > > @@ -115,6 +130,7 @@ const struct intel_cmds_info gen12_cmds_info = { > [XY_SRC_COPY] = &gen6_xy_src_copy, > [XY_FAST_COPY] = &gen12_xy_fast_copy, > [XY_BLOCK_COPY] = &gen12_xy_block_copy, > + [XY_COLOR_BLT] = &gen6_xy_color_blt, > } > }; > > @@ -123,6 +139,7 @@ const struct intel_cmds_info gen12_dg2_cmds_info = { > [XY_SRC_COPY] = &gen6_xy_src_copy, > [XY_FAST_COPY] = &dg2_xy_fast_copy, > [XY_BLOCK_COPY] = &dg2_xy_block_copy, > + [XY_COLOR_BLT] = &gen6_xy_color_blt, > } > }; > > diff --git a/lib/intel_cmds_info.h b/lib/intel_cmds_info.h > index 1db8709f8..91d0f15ec 100644 > --- a/lib/intel_cmds_info.h > +++ b/lib/intel_cmds_info.h > @@ -23,6 +23,7 @@ enum blt_cmd_type { > XY_SRC_COPY, > XY_FAST_COPY, > XY_BLOCK_COPY, > + XY_COLOR_BLT, > __BLT_MAX_CMD > }; > > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] [PATCH i-g-t v2 2/3] tests/i915/i915_pm_rpm: Modify gem-execbuf test for gen12+ 2023-06-27 10:58 [igt-dev] [PATCH i-g-t v2 0/3] Use intel_cmds_info in i915_pm_rpm Karolina Stolarek 2023-06-27 10:58 ` [igt-dev] [PATCH i-g-t v2 1/3] lib/intel_cmds_info: Add library support for XY_COLOR_BLT Karolina Stolarek @ 2023-06-27 10:58 ` Karolina Stolarek 2023-06-30 15:41 ` Kamil Konieczny 2023-06-27 10:58 ` [igt-dev] [PATCH i-g-t v2 3/3] tests/i915/i915_pm_rpm: Check command property instead of gen Karolina Stolarek ` (4 subsequent siblings) 6 siblings, 1 reply; 14+ messages in thread From: Karolina Stolarek @ 2023-06-27 10:58 UTC (permalink / raw) To: igt-dev; +Cc: Vikas Srivastava From: Vikas Srivastava <vikas.srivastava@intel.com> xy_color_blt is not supported on MTL and other gen12+ target hence an IGT test update needs to be done. Modify the test to add a lib API to check for xy_color_blt support. Signed-off-by: Vikas Srivastava <vikas.srivastava@intel.com> Signed-off-by: Karolina Stolarek <karolina.stolarek@intel.com> --- tests/i915/i915_pm_rpm.c | 185 ++++++++++++++++++++++++++++++--------- 1 file changed, 146 insertions(+), 39 deletions(-) diff --git a/tests/i915/i915_pm_rpm.c b/tests/i915/i915_pm_rpm.c index e866e7fc9..dee44d71b 100644 --- a/tests/i915/i915_pm_rpm.c +++ b/tests/i915/i915_pm_rpm.c @@ -246,6 +246,7 @@ #include "igt_debugfs.h" #include "igt_device.h" #include "igt_edid.h" +#include "intel_blt.h" #define MSR_PC8_RES 0x630 #define MSR_PC9_RES 0x631 @@ -255,6 +256,11 @@ #define MAX_ENCODERS 32 #define MAX_CRTCS 16 +#define WIDTH 64 +#define HEIGHT 64 +#define STRIDE (WIDTH) +#define SIZE (HEIGHT * STRIDE) + enum pc8_status { PC8_ENABLED, PC8_DISABLED @@ -311,10 +317,57 @@ struct modeset_params { drmModeModeInfoPtr mode; }; +struct data_t { + int width; + int height; + uint32_t region; +}; + struct modeset_params lpsp_mode_params; struct modeset_params non_lpsp_mode_params; struct modeset_params *default_mode_params; +/* API to create mmap buffer */ +static struct intel_buf * +create_buf(struct data_t *data, uint32_t color) +{ + struct intel_buf *buf; + uint8_t *ptr; + uint32_t handle; + struct buf_ops *bops; + int i; + + buf = calloc(1, sizeof(*buf)); + igt_assert(buf); + bops = buf_ops_create(drm_fd); + + handle = gem_create_in_memory_regions(drm_fd, SIZE, data->region); + intel_buf_init_using_handle(bops, handle, buf, + data->width / 4, data->height, 32, 0, + I915_TILING_NONE, 0); + + ptr = gem_mmap__cpu_coherent(drm_fd, buf->handle, 0, + buf->surface[0].size, PROT_WRITE); + + for (i = 0; i < buf->surface[0].size; i++) + ptr[i] = color; + + munmap(ptr, buf->surface[0].size); + + return buf; +} + +/* checking the buffer content is correct or not */ +static void buf_check(uint8_t *ptr, int x, int y, uint8_t color) +{ + uint8_t val; + + val = ptr[y * WIDTH + x]; + igt_assert_f(val == color, + "Expected 0x%02x, found 0x%02x at (%d,%d)\n", + color, val, x, y); +} + static int modprobe(const char *driver) { return igt_kmod_load(driver, NULL); @@ -1525,7 +1578,7 @@ static void submit_blt_cmd(uint32_t dst_handle, int dst_size, /* Make sure we can submit a batch buffer and verify its result. */ static void gem_execbuf_subtest(struct drm_i915_gem_memory_class_instance *mem_regions) { - int x, y; + int x, y, i, j; uint32_t handle; int bpp = 4; int pitch = 128 * bpp; @@ -1534,10 +1587,31 @@ static void gem_execbuf_subtest(struct drm_i915_gem_memory_class_instance *mem_r uint32_t presumed_offset = 0; int sq_x = 5, sq_y = 10, sq_w = 15, sq_h = 20; uint32_t color; + struct intel_buf *buf; + uint8_t *ptr; + struct data_t data = {0, }; + struct igt_collection *region; + struct drm_i915_query_memory_regions *region_info; + struct igt_collection *region_set; + uint32_t id; igt_require_gem(drm_fd); gem_require_blitter(drm_fd); + region_info = gem_get_query_memory_regions(drm_fd); + igt_assert(region_info); + region_set = get_memory_region_set(region_info, + I915_DEVICE_MEMORY, + I915_SYSTEM_MEMORY); + for_each_combination(region, 1, region_set) { + id = igt_collection_get_value(region, 0); + break; + } + + data.width = WIDTH; + data.height = HEIGHT; + data.region = id; + /* Create and set data while the device is active. */ enable_one_screen_or_forcewake_get_and_wait(&ms_data); @@ -1552,62 +1626,95 @@ static void gem_execbuf_subtest(struct drm_i915_gem_memory_class_instance *mem_r disable_all_screens_or_forcewake_put_and_wait(&ms_data); color = 0x12345678; - submit_blt_cmd(handle, dst_size, sq_x, sq_y, sq_w, sq_h, pitch, color, - &presumed_offset); - igt_assert(wait_for_suspended()); + if (blt_has_xy_color(drm_fd)) { + submit_blt_cmd(handle, dst_size, sq_x, sq_y, sq_w, sq_h, pitch, color, + &presumed_offset); + igt_assert(wait_for_suspended()); - gem_read(drm_fd, handle, 0, cpu_buf, dst_size); - igt_assert(wait_for_suspended()); - for (y = 0; y < 128; y++) { - for (x = 0; x < 128; x++) { - uint32_t px = cpu_buf[y * 128 + x]; + gem_read(drm_fd, handle, 0, cpu_buf, dst_size); + for (y = 0; y < 128; y++) { + for (x = 0; x < 128; x++) { + uint32_t px = cpu_buf[y * 128 + x]; - if (y >= sq_y && y < (sq_y + sq_h) && - x >= sq_x && x < (sq_x + sq_w)) - igt_assert_eq_u32(px, color); - else - igt_assert(px == 0); + if (y >= sq_y && y < (sq_y + sq_h) && + x >= sq_x && x < (sq_x + sq_w)) + igt_assert_eq_u32(px, color); + else + igt_assert(px == 0); + } } + } else { + buf = create_buf(&data, color); + ptr = gem_mmap__device_coherent(drm_fd, buf->handle, 0, + buf->surface[0].size, PROT_READ); + igt_assert(wait_for_suspended()); + + for (i = 0; i < WIDTH; i++) + for (j = 0; j < HEIGHT; j++) + buf_check(ptr, i, j, color); + munmap(ptr, buf->surface[0].size); } /* Now resume and check for it again. */ enable_one_screen_or_forcewake_get_and_wait(&ms_data); - memset(cpu_buf, 0, dst_size); - gem_read(drm_fd, handle, 0, cpu_buf, dst_size); - for (y = 0; y < 128; y++) { - for (x = 0; x < 128; x++) { - uint32_t px = cpu_buf[y * 128 + x]; - - if (y >= sq_y && y < (sq_y + sq_h) && - x >= sq_x && x < (sq_x + sq_w)) - igt_assert_eq_u32(px, color); - else - igt_assert(px == 0); + if (blt_has_xy_color(drm_fd)) { + memset(cpu_buf, 0, dst_size); + gem_read(drm_fd, handle, 0, cpu_buf, dst_size); + + for (y = 0; y < 128; y++) { + for (x = 0; x < 128; x++) { + uint32_t px = cpu_buf[y * 128 + x]; + + if (y >= sq_y && y < (sq_y + sq_h) && + x >= sq_x && x < (sq_x + sq_w)) + igt_assert_eq_u32(px, color); + else + igt_assert(px == 0); + } } + } else { + buf = create_buf(&data, color); + ptr = gem_mmap__device_coherent(drm_fd, buf->handle, 0, + buf->surface[0].size, PROT_READ); + for (i = 0; i < WIDTH; i++) + for (j = 0; j < HEIGHT; j++) + buf_check(ptr, i, j, color); + munmap(ptr, buf->surface[0].size); } /* Now we'll do the opposite: do the blt while active, then read while * suspended. We use the same spot, but a different color. As a bonus, * we're testing the presumed_offset from the previous command. */ color = 0x87654321; - submit_blt_cmd(handle, dst_size, sq_x, sq_y, sq_w, sq_h, pitch, color, - &presumed_offset); + if (blt_has_xy_color(drm_fd)) { - disable_all_screens_or_forcewake_put_and_wait(&ms_data); + submit_blt_cmd(handle, dst_size, sq_x, sq_y, sq_w, sq_h, pitch, color, + &presumed_offset); - memset(cpu_buf, 0, dst_size); - gem_read(drm_fd, handle, 0, cpu_buf, dst_size); - for (y = 0; y < 128; y++) { - for (x = 0; x < 128; x++) { - uint32_t px = cpu_buf[y * 128 + x]; - - if (y >= sq_y && y < (sq_y + sq_h) && - x >= sq_x && x < (sq_x + sq_w)) - igt_assert_eq_u32(px, color); - else - igt_assert(px == 0); + disable_all_screens_or_forcewake_put_and_wait(&ms_data); + + memset(cpu_buf, 0, dst_size); + gem_read(drm_fd, handle, 0, cpu_buf, dst_size); + for (y = 0; y < 128; y++) { + for (x = 0; x < 128; x++) { + uint32_t px = cpu_buf[y * 128 + x]; + + if (y >= sq_y && y < (sq_y + sq_h) && + x >= sq_x && x < (sq_x + sq_w)) + igt_assert_eq_u32(px, color); + else + igt_assert(px == 0); + } } + } else { + buf = create_buf(&data, color); + ptr = gem_mmap__device_coherent(drm_fd, buf->handle, 0, + buf->surface[0].size, PROT_READ); + for (i = 0; i < WIDTH; i++) + for (j = 0; j < HEIGHT; j++) + buf_check(ptr, i, j, color); + munmap(ptr, buf->surface[0].size); } gem_close(drm_fd, handle); -- 2.25.1 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 2/3] tests/i915/i915_pm_rpm: Modify gem-execbuf test for gen12+ 2023-06-27 10:58 ` [igt-dev] [PATCH i-g-t v2 2/3] tests/i915/i915_pm_rpm: Modify gem-execbuf test for gen12+ Karolina Stolarek @ 2023-06-30 15:41 ` Kamil Konieczny 0 siblings, 0 replies; 14+ messages in thread From: Kamil Konieczny @ 2023-06-30 15:41 UTC (permalink / raw) Cc: igt-dev Hi Karolina, On 2023-06-27 at 12:58:19 +0200, Karolina Stolarek wrote: > From: Vikas Srivastava <vikas.srivastava@intel.com> > > xy_color_blt is not supported on MTL and other gen12+ target > hence an IGT test update needs to be done. Modify the test > to add a lib API to check for xy_color_blt support. > > Signed-off-by: Vikas Srivastava <vikas.srivastava@intel.com> > Signed-off-by: Karolina Stolarek <karolina.stolarek@intel.com> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > tests/i915/i915_pm_rpm.c | 185 ++++++++++++++++++++++++++++++--------- > 1 file changed, 146 insertions(+), 39 deletions(-) > > diff --git a/tests/i915/i915_pm_rpm.c b/tests/i915/i915_pm_rpm.c > index e866e7fc9..dee44d71b 100644 > --- a/tests/i915/i915_pm_rpm.c > +++ b/tests/i915/i915_pm_rpm.c > @@ -246,6 +246,7 @@ > #include "igt_debugfs.h" > #include "igt_device.h" > #include "igt_edid.h" > +#include "intel_blt.h" > > #define MSR_PC8_RES 0x630 > #define MSR_PC9_RES 0x631 > @@ -255,6 +256,11 @@ > #define MAX_ENCODERS 32 > #define MAX_CRTCS 16 > > +#define WIDTH 64 > +#define HEIGHT 64 > +#define STRIDE (WIDTH) > +#define SIZE (HEIGHT * STRIDE) > + > enum pc8_status { > PC8_ENABLED, > PC8_DISABLED > @@ -311,10 +317,57 @@ struct modeset_params { > drmModeModeInfoPtr mode; > }; > > +struct data_t { > + int width; > + int height; > + uint32_t region; > +}; > + > struct modeset_params lpsp_mode_params; > struct modeset_params non_lpsp_mode_params; > struct modeset_params *default_mode_params; > > +/* API to create mmap buffer */ > +static struct intel_buf * > +create_buf(struct data_t *data, uint32_t color) > +{ > + struct intel_buf *buf; > + uint8_t *ptr; > + uint32_t handle; > + struct buf_ops *bops; > + int i; > + > + buf = calloc(1, sizeof(*buf)); > + igt_assert(buf); > + bops = buf_ops_create(drm_fd); > + > + handle = gem_create_in_memory_regions(drm_fd, SIZE, data->region); > + intel_buf_init_using_handle(bops, handle, buf, > + data->width / 4, data->height, 32, 0, > + I915_TILING_NONE, 0); > + > + ptr = gem_mmap__cpu_coherent(drm_fd, buf->handle, 0, > + buf->surface[0].size, PROT_WRITE); > + > + for (i = 0; i < buf->surface[0].size; i++) > + ptr[i] = color; > + > + munmap(ptr, buf->surface[0].size); > + > + return buf; > +} > + > +/* checking the buffer content is correct or not */ > +static void buf_check(uint8_t *ptr, int x, int y, uint8_t color) > +{ > + uint8_t val; > + > + val = ptr[y * WIDTH + x]; > + igt_assert_f(val == color, > + "Expected 0x%02x, found 0x%02x at (%d,%d)\n", > + color, val, x, y); > +} > + > static int modprobe(const char *driver) > { > return igt_kmod_load(driver, NULL); > @@ -1525,7 +1578,7 @@ static void submit_blt_cmd(uint32_t dst_handle, int dst_size, > /* Make sure we can submit a batch buffer and verify its result. */ > static void gem_execbuf_subtest(struct drm_i915_gem_memory_class_instance *mem_regions) > { > - int x, y; > + int x, y, i, j; > uint32_t handle; > int bpp = 4; > int pitch = 128 * bpp; > @@ -1534,10 +1587,31 @@ static void gem_execbuf_subtest(struct drm_i915_gem_memory_class_instance *mem_r > uint32_t presumed_offset = 0; > int sq_x = 5, sq_y = 10, sq_w = 15, sq_h = 20; > uint32_t color; > + struct intel_buf *buf; > + uint8_t *ptr; > + struct data_t data = {0, }; > + struct igt_collection *region; > + struct drm_i915_query_memory_regions *region_info; > + struct igt_collection *region_set; > + uint32_t id; > > igt_require_gem(drm_fd); > gem_require_blitter(drm_fd); > > + region_info = gem_get_query_memory_regions(drm_fd); > + igt_assert(region_info); > + region_set = get_memory_region_set(region_info, > + I915_DEVICE_MEMORY, > + I915_SYSTEM_MEMORY); > + for_each_combination(region, 1, region_set) { > + id = igt_collection_get_value(region, 0); > + break; > + } > + > + data.width = WIDTH; > + data.height = HEIGHT; > + data.region = id; > + > /* Create and set data while the device is active. */ > enable_one_screen_or_forcewake_get_and_wait(&ms_data); > > @@ -1552,62 +1626,95 @@ static void gem_execbuf_subtest(struct drm_i915_gem_memory_class_instance *mem_r > disable_all_screens_or_forcewake_put_and_wait(&ms_data); > > color = 0x12345678; > - submit_blt_cmd(handle, dst_size, sq_x, sq_y, sq_w, sq_h, pitch, color, > - &presumed_offset); > - igt_assert(wait_for_suspended()); > + if (blt_has_xy_color(drm_fd)) { > + submit_blt_cmd(handle, dst_size, sq_x, sq_y, sq_w, sq_h, pitch, color, > + &presumed_offset); > + igt_assert(wait_for_suspended()); > > - gem_read(drm_fd, handle, 0, cpu_buf, dst_size); > - igt_assert(wait_for_suspended()); > - for (y = 0; y < 128; y++) { > - for (x = 0; x < 128; x++) { > - uint32_t px = cpu_buf[y * 128 + x]; > + gem_read(drm_fd, handle, 0, cpu_buf, dst_size); > + for (y = 0; y < 128; y++) { > + for (x = 0; x < 128; x++) { > + uint32_t px = cpu_buf[y * 128 + x]; > > - if (y >= sq_y && y < (sq_y + sq_h) && > - x >= sq_x && x < (sq_x + sq_w)) > - igt_assert_eq_u32(px, color); > - else > - igt_assert(px == 0); > + if (y >= sq_y && y < (sq_y + sq_h) && > + x >= sq_x && x < (sq_x + sq_w)) > + igt_assert_eq_u32(px, color); > + else > + igt_assert(px == 0); > + } > } > + } else { > + buf = create_buf(&data, color); > + ptr = gem_mmap__device_coherent(drm_fd, buf->handle, 0, > + buf->surface[0].size, PROT_READ); > + igt_assert(wait_for_suspended()); > + > + for (i = 0; i < WIDTH; i++) > + for (j = 0; j < HEIGHT; j++) > + buf_check(ptr, i, j, color); > + munmap(ptr, buf->surface[0].size); > } > > /* Now resume and check for it again. */ > enable_one_screen_or_forcewake_get_and_wait(&ms_data); > > - memset(cpu_buf, 0, dst_size); > - gem_read(drm_fd, handle, 0, cpu_buf, dst_size); > - for (y = 0; y < 128; y++) { > - for (x = 0; x < 128; x++) { > - uint32_t px = cpu_buf[y * 128 + x]; > - > - if (y >= sq_y && y < (sq_y + sq_h) && > - x >= sq_x && x < (sq_x + sq_w)) > - igt_assert_eq_u32(px, color); > - else > - igt_assert(px == 0); > + if (blt_has_xy_color(drm_fd)) { > + memset(cpu_buf, 0, dst_size); > + gem_read(drm_fd, handle, 0, cpu_buf, dst_size); > + > + for (y = 0; y < 128; y++) { > + for (x = 0; x < 128; x++) { > + uint32_t px = cpu_buf[y * 128 + x]; > + > + if (y >= sq_y && y < (sq_y + sq_h) && > + x >= sq_x && x < (sq_x + sq_w)) > + igt_assert_eq_u32(px, color); > + else > + igt_assert(px == 0); > + } > } > + } else { > + buf = create_buf(&data, color); > + ptr = gem_mmap__device_coherent(drm_fd, buf->handle, 0, > + buf->surface[0].size, PROT_READ); > + for (i = 0; i < WIDTH; i++) > + for (j = 0; j < HEIGHT; j++) > + buf_check(ptr, i, j, color); > + munmap(ptr, buf->surface[0].size); > } > > /* Now we'll do the opposite: do the blt while active, then read while > * suspended. We use the same spot, but a different color. As a bonus, > * we're testing the presumed_offset from the previous command. */ > color = 0x87654321; > - submit_blt_cmd(handle, dst_size, sq_x, sq_y, sq_w, sq_h, pitch, color, > - &presumed_offset); > + if (blt_has_xy_color(drm_fd)) { > > - disable_all_screens_or_forcewake_put_and_wait(&ms_data); > + submit_blt_cmd(handle, dst_size, sq_x, sq_y, sq_w, sq_h, pitch, color, > + &presumed_offset); > > - memset(cpu_buf, 0, dst_size); > - gem_read(drm_fd, handle, 0, cpu_buf, dst_size); > - for (y = 0; y < 128; y++) { > - for (x = 0; x < 128; x++) { > - uint32_t px = cpu_buf[y * 128 + x]; > - > - if (y >= sq_y && y < (sq_y + sq_h) && > - x >= sq_x && x < (sq_x + sq_w)) > - igt_assert_eq_u32(px, color); > - else > - igt_assert(px == 0); > + disable_all_screens_or_forcewake_put_and_wait(&ms_data); > + > + memset(cpu_buf, 0, dst_size); > + gem_read(drm_fd, handle, 0, cpu_buf, dst_size); > + for (y = 0; y < 128; y++) { > + for (x = 0; x < 128; x++) { > + uint32_t px = cpu_buf[y * 128 + x]; > + > + if (y >= sq_y && y < (sq_y + sq_h) && > + x >= sq_x && x < (sq_x + sq_w)) > + igt_assert_eq_u32(px, color); > + else > + igt_assert(px == 0); > + } > } > + } else { > + buf = create_buf(&data, color); > + ptr = gem_mmap__device_coherent(drm_fd, buf->handle, 0, > + buf->surface[0].size, PROT_READ); > + for (i = 0; i < WIDTH; i++) > + for (j = 0; j < HEIGHT; j++) > + buf_check(ptr, i, j, color); > + munmap(ptr, buf->surface[0].size); > } > > gem_close(drm_fd, handle); > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] [PATCH i-g-t v2 3/3] tests/i915/i915_pm_rpm: Check command property instead of gen 2023-06-27 10:58 [igt-dev] [PATCH i-g-t v2 0/3] Use intel_cmds_info in i915_pm_rpm Karolina Stolarek 2023-06-27 10:58 ` [igt-dev] [PATCH i-g-t v2 1/3] lib/intel_cmds_info: Add library support for XY_COLOR_BLT Karolina Stolarek 2023-06-27 10:58 ` [igt-dev] [PATCH i-g-t v2 2/3] tests/i915/i915_pm_rpm: Modify gem-execbuf test for gen12+ Karolina Stolarek @ 2023-06-27 10:58 ` Karolina Stolarek 2023-06-30 15:42 ` Kamil Konieczny 2023-06-28 8:21 ` [igt-dev] ✗ GitLab.Pipeline: warning for Use intel_cmds_info in i915_pm_rpm (rev3) Patchwork ` (3 subsequent siblings) 6 siblings, 1 reply; 14+ messages in thread From: Karolina Stolarek @ 2023-06-27 10:58 UTC (permalink / raw) To: igt-dev Update submit_blt_cmd() function to check if a platform uses a long version of XY_COLOR_BLT when building the command. Remove checks related to the gen alone. Signed-off-by: Karolina Stolarek <karolina.stolarek@intel.com> --- tests/i915/i915_pm_rpm.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/tests/i915/i915_pm_rpm.c b/tests/i915/i915_pm_rpm.c index dee44d71b..4ce83f27f 100644 --- a/tests/i915/i915_pm_rpm.c +++ b/tests/i915/i915_pm_rpm.c @@ -1492,20 +1492,24 @@ static void submit_blt_cmd(uint32_t dst_handle, int dst_size, uint32_t batch_handle; int batch_size = 8 * sizeof(uint32_t); uint32_t batch_buf[batch_size]; + bool cmd_extended; struct drm_i915_gem_execbuffer2 execbuf = {}; struct drm_i915_gem_exec_object2 objs[2] = {{}, {}}; struct drm_i915_gem_relocation_entry relocs[1] = {{}}; struct drm_i915_gem_wait gem_wait; uint64_t ahnd = get_reloc_ahnd(drm_fd, 0), dst_offset; + const struct intel_cmds_info *cmds_info = intel_get_cmds_info(ms_data.devid); if (ahnd) dst_offset = get_offset(ahnd, dst_handle, dst_size, 0); else dst_offset = *presumed_dst_offset; + cmd_extended = blt_cmd_has_property(cmds_info, XY_COLOR_BLT, + BLT_CMD_EXTENDED); i = 0; - if (intel_gen(ms_data.devid) >= 8) + if (cmd_extended) batch_buf[i++] = XY_COLOR_BLT_CMD_NOLEN | XY_COLOR_BLT_WRITE_ALPHA | XY_COLOR_BLT_WRITE_RGB | 0x5; @@ -1518,12 +1522,12 @@ static void submit_blt_cmd(uint32_t dst_handle, int dst_size, batch_buf[i++] = ((y + height) << 16) | (x + width); reloc_pos = i; batch_buf[i++] = dst_offset; - if (intel_gen(ms_data.devid) >= 8) + if (cmd_extended) batch_buf[i++] = dst_offset >> 32; batch_buf[i++] = color; batch_buf[i++] = MI_BATCH_BUFFER_END; - if (intel_gen(ms_data.devid) < 8) + if (!cmd_extended) batch_buf[i++] = MI_NOOP; igt_assert(i * sizeof(uint32_t) == batch_size); -- 2.25.1 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 3/3] tests/i915/i915_pm_rpm: Check command property instead of gen 2023-06-27 10:58 ` [igt-dev] [PATCH i-g-t v2 3/3] tests/i915/i915_pm_rpm: Check command property instead of gen Karolina Stolarek @ 2023-06-30 15:42 ` Kamil Konieczny 0 siblings, 0 replies; 14+ messages in thread From: Kamil Konieczny @ 2023-06-30 15:42 UTC (permalink / raw) To: igt-dev Hi Karolina, On 2023-06-27 at 12:58:20 +0200, Karolina Stolarek wrote: > Update submit_blt_cmd() function to check if a platform uses a long > version of XY_COLOR_BLT when building the command. Remove checks > related to the gen alone. > > Signed-off-by: Karolina Stolarek <karolina.stolarek@intel.com> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > tests/i915/i915_pm_rpm.c | 10 +++++++--- > 1 file changed, 7 insertions(+), 3 deletions(-) > > diff --git a/tests/i915/i915_pm_rpm.c b/tests/i915/i915_pm_rpm.c > index dee44d71b..4ce83f27f 100644 > --- a/tests/i915/i915_pm_rpm.c > +++ b/tests/i915/i915_pm_rpm.c > @@ -1492,20 +1492,24 @@ static void submit_blt_cmd(uint32_t dst_handle, int dst_size, > uint32_t batch_handle; > int batch_size = 8 * sizeof(uint32_t); > uint32_t batch_buf[batch_size]; > + bool cmd_extended; > struct drm_i915_gem_execbuffer2 execbuf = {}; > struct drm_i915_gem_exec_object2 objs[2] = {{}, {}}; > struct drm_i915_gem_relocation_entry relocs[1] = {{}}; > struct drm_i915_gem_wait gem_wait; > uint64_t ahnd = get_reloc_ahnd(drm_fd, 0), dst_offset; > + const struct intel_cmds_info *cmds_info = intel_get_cmds_info(ms_data.devid); > > if (ahnd) > dst_offset = get_offset(ahnd, dst_handle, dst_size, 0); > else > dst_offset = *presumed_dst_offset; > > + cmd_extended = blt_cmd_has_property(cmds_info, XY_COLOR_BLT, > + BLT_CMD_EXTENDED); > i = 0; > > - if (intel_gen(ms_data.devid) >= 8) > + if (cmd_extended) > batch_buf[i++] = XY_COLOR_BLT_CMD_NOLEN | > XY_COLOR_BLT_WRITE_ALPHA | > XY_COLOR_BLT_WRITE_RGB | 0x5; > @@ -1518,12 +1522,12 @@ static void submit_blt_cmd(uint32_t dst_handle, int dst_size, > batch_buf[i++] = ((y + height) << 16) | (x + width); > reloc_pos = i; > batch_buf[i++] = dst_offset; > - if (intel_gen(ms_data.devid) >= 8) > + if (cmd_extended) > batch_buf[i++] = dst_offset >> 32; > batch_buf[i++] = color; > > batch_buf[i++] = MI_BATCH_BUFFER_END; > - if (intel_gen(ms_data.devid) < 8) > + if (!cmd_extended) > batch_buf[i++] = MI_NOOP; > > igt_assert(i * sizeof(uint32_t) == batch_size); > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] ✗ GitLab.Pipeline: warning for Use intel_cmds_info in i915_pm_rpm (rev3) 2023-06-27 10:58 [igt-dev] [PATCH i-g-t v2 0/3] Use intel_cmds_info in i915_pm_rpm Karolina Stolarek ` (2 preceding siblings ...) 2023-06-27 10:58 ` [igt-dev] [PATCH i-g-t v2 3/3] tests/i915/i915_pm_rpm: Check command property instead of gen Karolina Stolarek @ 2023-06-28 8:21 ` Patchwork 2023-06-29 6:36 ` Karolina Stolarek 2023-06-28 8:50 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork ` (2 subsequent siblings) 6 siblings, 1 reply; 14+ messages in thread From: Patchwork @ 2023-06-28 8:21 UTC (permalink / raw) To: Karolina Stolarek; +Cc: igt-dev == Series Details == Series: Use intel_cmds_info in i915_pm_rpm (rev3) URL : https://patchwork.freedesktop.org/series/118102/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/920880 for the overview. containers:igt has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/44567807): Downloading artifacts from coordinator... ok host=gitlab.freedesktop.org id=44567792 responseStatus=200 OK token=64_SMiPp section_end:1687940177:download_artifacts section_start:1687940177:step_script Executing "step_script" stage of the job script Using docker image sha256:594aa868d31ee3304dee8cae8a3433c89a6fcfcf6c7d420c04cce22f60147176 for registry.freedesktop.org/wayland/ci-templates/buildah:2019-08-13.0 with digest registry.freedesktop.org/wayland/ci-templates/buildah@sha256:7dbcf22cd2c1c7d49db0dc7b4ab207c3d6a4a09bd81cc3b71a688d3727d8749f ... $ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh Checking if the user of the pipeline is allowed... Checking if the job's project is part of a well-known group... Thank you for contributing to freedesktop.org $ podman login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY Login Succeeded! $ .gitlab-ci/pull-or-rebuild.sh igt Dockerfile igt STEP 1: FROM registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora:commit-c7285ff813a8c1caff55691f39366eaf9589821f Error: error creating build container: Error initializing source docker://registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora:commit-c7285ff813a8c1caff55691f39366eaf9589821f: Error reading manifest commit-c7285ff813a8c1caff55691f39366eaf9589821f in registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora: received unexpected HTTP status: 500 Internal Server Error section_end:1687940179:step_script section_start:1687940179:cleanup_file_variables Cleaning up project directory and file based variables section_end:1687940179:cleanup_file_variables ERROR: Job failed: exit code 1 == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/920880 ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] ✗ GitLab.Pipeline: warning for Use intel_cmds_info in i915_pm_rpm (rev3) 2023-06-28 8:21 ` [igt-dev] ✗ GitLab.Pipeline: warning for Use intel_cmds_info in i915_pm_rpm (rev3) Patchwork @ 2023-06-29 6:36 ` Karolina Stolarek 0 siblings, 0 replies; 14+ messages in thread From: Karolina Stolarek @ 2023-06-29 6:36 UTC (permalink / raw) To: igt-dev On 28.06.2023 10:21, Patchwork wrote: > == Series Details == > > Series: Use intel_cmds_info in i915_pm_rpm (rev3) > URL : https://patchwork.freedesktop.org/series/118102/ > State : warning > > == Summary == > > Pipeline status: FAILED. > > see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/920880 for the overview. > > containers:igt has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/44567807): > Downloading artifacts from coordinator... ok host=gitlab.freedesktop.org id=44567792 responseStatus=200 OK token=64_SMiPp > section_end:1687940177:download_artifacts > section_start:1687940177:step_script > Executing "step_script" stage of the job script > Using docker image sha256:594aa868d31ee3304dee8cae8a3433c89a6fcfcf6c7d420c04cce22f60147176 for registry.freedesktop.org/wayland/ci-templates/buildah:2019-08-13.0 with digest registry.freedesktop.org/wayland/ci-templates/buildah@sha256:7dbcf22cd2c1c7d49db0dc7b4ab207c3d6a4a09bd81cc3b71a688d3727d8749f ... > $ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh > Checking if the user of the pipeline is allowed... > Checking if the job's project is part of a well-known group... > Thank you for contributing to freedesktop.org > $ podman login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY > Login Succeeded! > $ .gitlab-ci/pull-or-rebuild.sh igt Dockerfile igt > STEP 1: FROM registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora:commit-c7285ff813a8c1caff55691f39366eaf9589821f > Error: error creating build container: Error initializing source docker://registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora:commit-c7285ff813a8c1caff55691f39366eaf9589821f: Error reading manifest commit-c7285ff813a8c1caff55691f39366eaf9589821f in registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora: received unexpected HTTP status: 500 Internal Server Error > section_end:1687940179:step_script > section_start:1687940179:cleanup_file_variables > Cleaning up project directory and file based variables > section_end:1687940179:cleanup_file_variables > ERROR: Job failed: exit code 1 Looks like a CI hiccup. All the tests have passed and BAT/IGT were run with no significant issues. Thanks, Karolina > == Logs == > > For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/920880 ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Use intel_cmds_info in i915_pm_rpm (rev3) 2023-06-27 10:58 [igt-dev] [PATCH i-g-t v2 0/3] Use intel_cmds_info in i915_pm_rpm Karolina Stolarek ` (3 preceding siblings ...) 2023-06-28 8:21 ` [igt-dev] ✗ GitLab.Pipeline: warning for Use intel_cmds_info in i915_pm_rpm (rev3) Patchwork @ 2023-06-28 8:50 ` Patchwork 2023-06-28 21:45 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-06-30 7:29 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 6 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2023-06-28 8:50 UTC (permalink / raw) To: Karolina Stolarek; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 9623 bytes --] == Series Details == Series: Use intel_cmds_info in i915_pm_rpm (rev3) URL : https://patchwork.freedesktop.org/series/118102/ State : success == Summary == CI Bug Log - changes from IGT_7352 -> IGTPW_9286 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/index.html Participating hosts (41 -> 42) ------------------------------ Additional (2): fi-kbl-soraka bat-adlp-11 Missing (1): fi-snb-2520m New tests --------- New tests have been introduced between IGT_7352 and IGTPW_9286: ### New IGT tests (16) ### * igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@read-crc@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9286 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#2190]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#4613]) +3 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-mtlp-8: NOTRUN -> [SKIP][3] ([i915#4613]) +3 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/bat-mtlp-8/igt@gem_lmem_swapping@parallel-random-engines.html * igt@i915_module_load@load: - bat-adlp-11: NOTRUN -> [ABORT][4] ([i915#4423]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/bat-adlp-11/igt@i915_module_load@load.html * igt@i915_pm_rps@basic-api: - bat-mtlp-8: NOTRUN -> [SKIP][5] ([i915#6621]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/bat-mtlp-8/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][6] ([i915#1886] / [i915#7913]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@requests: - bat-mtlp-8: NOTRUN -> [DMESG-FAIL][7] ([i915#8497]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/bat-mtlp-8/igt@i915_selftest@live@requests.html - bat-rpls-2: [PASS][8] -> [ABORT][9] ([i915#4983] / [i915#7913]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/bat-rpls-2/igt@i915_selftest@live@requests.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/bat-rpls-2/igt@i915_selftest@live@requests.html * igt@i915_suspend@basic-s3-without-i915: - bat-mtlp-8: NOTRUN -> [SKIP][10] ([i915#6645]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - bat-mtlp-8: NOTRUN -> [SKIP][11] ([i915#7828]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/bat-mtlp-8/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-kbl-soraka: NOTRUN -> [SKIP][12] ([fdo#109271]) +14 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/fi-kbl-soraka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [PASS][13] -> [ABORT][14] ([i915#8442]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html * igt@kms_setmode@basic-clone-single-crtc: - fi-kbl-soraka: NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#4579]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/fi-kbl-soraka/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-read: - bat-mtlp-8: NOTRUN -> [SKIP][16] ([i915#3708]) +2 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - bat-mtlp-8: NOTRUN -> [SKIP][17] ([i915#3708] / [i915#4077]) +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/bat-mtlp-8/igt@prime_vgem@basic-gtt.html #### Possible fixes #### * igt@i915_pm_rpm@basic-pci-d3-state: - bat-mtlp-8: [ABORT][18] ([i915#7077] / [i915#7977]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_selftest@live@gt_engines: - bat-atsm-1: [FAIL][20] ([i915#6268]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/bat-atsm-1/igt@i915_selftest@live@gt_engines.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/bat-atsm-1/igt@i915_selftest@live@gt_engines.html * igt@i915_selftest@live@gt_heartbeat: - fi-glk-j4005: [DMESG-FAIL][22] ([i915#5334]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@requests: - bat-mtlp-6: [DMESG-FAIL][24] ([i915#8497]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/bat-mtlp-6/igt@i915_selftest@live@requests.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/bat-mtlp-6/igt@i915_selftest@live@requests.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#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#7077]: https://gitlab.freedesktop.org/drm/intel/issues/7077 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7977]: https://gitlab.freedesktop.org/drm/intel/issues/7977 [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442 [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7352 -> IGTPW_9286 CI-20190529: 20190529 CI_DRM_13328: 12cd6b2d321d9c034f3d4ba14788d68cb8da4eac @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9286: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/index.html IGT_7352: 471bfababd070e1dac0ebb87470ac4f2ae85e663 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/index.html [-- Attachment #2: Type: text/html, Size: 11651 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Use intel_cmds_info in i915_pm_rpm (rev3) 2023-06-27 10:58 [igt-dev] [PATCH i-g-t v2 0/3] Use intel_cmds_info in i915_pm_rpm Karolina Stolarek ` (4 preceding siblings ...) 2023-06-28 8:50 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork @ 2023-06-28 21:45 ` Patchwork 2023-06-29 6:34 ` Karolina Stolarek 2023-06-30 7:29 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 6 siblings, 1 reply; 14+ messages in thread From: Patchwork @ 2023-06-28 21:45 UTC (permalink / raw) To: Karolina Stolarek; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 72478 bytes --] == Series Details == Series: Use intel_cmds_info in i915_pm_rpm (rev3) URL : https://patchwork.freedesktop.org/series/118102/ State : failure == Summary == CI Bug Log - changes from IGT_7352_full -> IGTPW_9286_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9286_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9286_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_9286/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9286_full: ### IGT changes ### #### Possible regressions #### * igt@gem_create@busy-create@lmem0: - shard-dg2: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-7/igt@gem_create@busy-create@lmem0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-8/igt@gem_create@busy-create@lmem0.html * igt@kms_flip@flip-vs-panning-interruptible@b-edp1: - shard-mtlp: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@kms_flip@flip-vs-panning-interruptible@b-edp1.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@kms_flip@flip-vs-panning-interruptible@b-edp1.html New tests --------- New tests have been introduced between IGT_7352_full and IGTPW_9286_full: ### New IGT tests (3) ### * igt@kms_cursor_crc@cursor-alpha-transparent@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_crc@cursor-alpha-transparent@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9286_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8411]) +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-tglu: NOTRUN -> [SKIP][6] ([i915#7701]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@device_reset@cold-reset-bound.html - shard-rkl: NOTRUN -> [SKIP][7] ([i915#7701]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8414]) +4 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@drm_fdinfo@busy-idle@bcs0.html * igt@drm_fdinfo@busy-idle@ccs0: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#4579] / [i915#8414]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@drm_fdinfo@busy-idle@ccs0.html * igt@feature_discovery@chamelium: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#4854]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@feature_discovery@chamelium.html * igt@feature_discovery@display-3x: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#1839]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@feature_discovery@display-3x.html * igt@gem_basic@multigpu-create-close: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#7697]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-6/igt@gem_basic@multigpu-create-close.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#4873]) +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@gem_caching@writes.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglu: NOTRUN -> [SKIP][14] ([i915#6335]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@gem_create@create-ext-cpu-access-big.html - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#6335]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_param@set-priority-not-supported: - shard-tglu: NOTRUN -> [SKIP][16] ([fdo#109314]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@gem_ctx_param@set-priority-not-supported.html - shard-rkl: NOTRUN -> [SKIP][17] ([fdo#109314]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][18] ([i915#7975] / [i915#8213]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-1/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#4771]) +1 similar issue [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#4525]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: NOTRUN -> [FAIL][21] ([i915#2842]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-10/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [PASS][22] -> [FAIL][23] ([i915#2842]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [PASS][24] -> [FAIL][25] ([i915#2842]) +2 similar issues [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-sync: - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#4473] / [i915#4771]) +1 similar issue [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-rkl: NOTRUN -> [SKIP][27] ([fdo#109313]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html - shard-tglu: NOTRUN -> [SKIP][28] ([fdo#109313]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#3711]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_gttfill@multigpu-basic: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#7697]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-6/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#3281]) +3 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-write-cpu-active: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#3281]) +3 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@gem_exec_reloc@basic-write-cpu-active.html * igt@gem_exec_reloc@basic-write-read: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#3281]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-11/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4812]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_whisper@basic-normal: - shard-mtlp: [PASS][35] -> [FAIL][36] ([i915#6363]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@gem_exec_whisper@basic-normal.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@gem_exec_whisper@basic-normal.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#2190]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@gem_huc_copy@huc-copy.html - shard-tglu: NOTRUN -> [SKIP][38] ([i915#2190]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4613]) +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@smem-oom: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#4613]) +1 similar issue [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@gem_lmem_swapping@smem-oom.html * igt@gem_mmap_gtt@hang-user: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4077]) +8 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@gem_mmap_gtt@hang-user.html * igt@gem_mmap_wc@set-cache-level: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4083]) +4 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@gem_mmap_wc@set-cache-level.html * igt@gem_pwrite@basic-self: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3282]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-5/igt@gem_pwrite@basic-self.html * igt@gem_pxp@create-regular-buffer: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#4270]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-tglu: NOTRUN -> [SKIP][45] ([i915#4270]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4270]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_readwrite@new-obj: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#3282]) +2 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@gem_readwrite@new-obj.html * igt@gem_render_copy@y-tiled-to-vebox-linear: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#8428]) +3 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@gem_render_copy@y-tiled-to-vebox-linear.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#8411]) +1 similar issue [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4079]) +1 similar issue [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop: - shard-rkl: NOTRUN -> [SKIP][51] ([fdo#109312]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@gem_softpin@evict-snoop.html - shard-tglu: NOTRUN -> [SKIP][52] ([fdo#109312]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4077]) +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-5/igt@gem_tiled_blits@basic.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#3297]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-6/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@coherency-sync: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#3297]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-10/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@readonly-unsync: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#3297]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@gem_userptr_blits@readonly-unsync.html * igt@gen7_exec_parse@basic-allocation: - shard-rkl: NOTRUN -> [SKIP][57] ([fdo#109289]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@gen7_exec_parse@basic-allocation.html * igt@gen9_exec_parse@basic-rejected: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#2856]) +1 similar issue [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-start-far: - shard-tglu: NOTRUN -> [SKIP][59] ([i915#2527] / [i915#2856]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@gen9_exec_parse@bb-start-far.html * igt@i915_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][60] ([i915#7561]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-7/igt@i915_pm_backlight@fade-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][61] ([i915#7561]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@i915_pm_backlight@fade-with-dpms.html * igt@i915_pm_dc@dc6-dpms: - shard-tglu: [PASS][62] -> [FAIL][63] ([i915#3989] / [i915#454]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-10/igt@i915_pm_dc@dc6-dpms.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-3/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_dc@dc6-psr: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#658]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_dc@dc9-dpms: - shard-tglu: [PASS][65] -> [SKIP][66] ([i915#4281]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-2/igt@i915_pm_dc@dc9-dpms.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_freq_api@freq-reset: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#8399]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-7/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [PASS][68] -> [SKIP][69] ([i915#1397]) +1 similar issue [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-12/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-1/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress: - shard-rkl: [PASS][70] -> [SKIP][71] ([i915#1397]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_selftest@live@gt_heartbeat: - shard-apl: [PASS][72] -> [DMESG-FAIL][73] ([i915#5334]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-apl3/igt@i915_selftest@live@gt_heartbeat.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4212]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs-cc: - shard-tglu: NOTRUN -> [SKIP][75] ([i915#8502]) +7 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs-cc.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][76] ([i915#8247]) +3 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-6/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#404]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#5286]) +2 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html - shard-tglu: NOTRUN -> [SKIP][79] ([fdo#111615] / [i915#5286]) +2 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-10/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][80] -> [FAIL][81] ([i915#5138]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-mtlp: NOTRUN -> [FAIL][82] ([i915#3743]) +2 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][83] ([fdo#111614]) +1 similar issue [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][84] ([fdo#111614]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][85] ([fdo#111614] / [i915#3638]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-7/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#5190]) +2 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-8/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [SKIP][87] ([fdo#111615]) +6 similar issues [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][88] ([fdo#110723]) +1 similar issue [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html - shard-tglu: NOTRUN -> [SKIP][89] ([fdo#111615]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#4538] / [i915#5190]) +1 similar issue [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_joiner@2x-modeset: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#2705]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@kms_big_joiner@2x-modeset.html * igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#6095]) +10 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-3/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#3886] / [i915#5354] / [i915#6095]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-6/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#3689] / [i915#5354]) +2 similar issues [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-1/igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#3689] / [i915#3886] / [i915#5354]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][96] ([i915#5354] / [i915#6095]) +2 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][97] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +1 similar issue [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#5354]) +9 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-6/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_mtl_rc_ccs: - shard-tglu: NOTRUN -> [SKIP][99] ([i915#5354] / [i915#6095]) +5 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-5/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#5354]) +10 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#3886] / [i915#6095]) +6 similar issues [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][102] ([i915#3689] / [i915#5354] / [i915#6095]) +3 similar issues [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-7/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][103] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-5/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-yf_tiled_ccs.html * igt@kms_cdclk@mode-transition: - shard-tglu: NOTRUN -> [SKIP][104] ([i915#3742]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-8/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#7213]) +2 similar issues [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@mode-transition@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#4087]) +5 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-c-hdmi-a-3.html * igt@kms_cdclk@mode-transition@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#4579] / [i915#7213]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@kms_cdclk@mode-transition@pipe-d-edp-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#4087] / [i915#4579]) +1 similar issue [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_chamelium_color@ctm-0-75: - shard-rkl: NOTRUN -> [SKIP][109] ([fdo#111827]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_color@ctm-negative: - shard-tglu: NOTRUN -> [SKIP][110] ([fdo#111827]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-5/igt@kms_chamelium_color@ctm-negative.html - shard-mtlp: NOTRUN -> [SKIP][111] ([fdo#111827]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-6/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#7828]) +2 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-6/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#7828]) +2 similar issues [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-tglu: NOTRUN -> [SKIP][114] ([i915#7828]) +2 similar issues [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#7828]) +3 similar issues [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_content_protection@lic@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][116] ([i915#7173]) +1 similar issue [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-11/igt@kms_content_protection@lic@pipe-a-dp-4.html * igt@kms_content_protection@mei_interface: - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#8063]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@kms_content_protection@mei_interface.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#4579] / [i915#7118]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-5/igt@kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][119] ([i915#4579] / [i915#6944] / [i915#7116] / [i915#7118]) +1 similar issue [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-4/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][120] ([fdo#109279] / [i915#3359]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#3555] / [i915#4579]) +1 similar issue [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-7/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#3359]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-10/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#3555] / [i915#4579]) +5 similar issues [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html - shard-tglu: NOTRUN -> [SKIP][124] ([i915#3555] / [i915#4579]) +2 similar issues [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#3359]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3: - shard-dg2: [PASS][126] -> [FAIL][127] ([fdo#103375]) +2 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-8/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-5/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#4213]) +1 similar issue [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursor-vs-flip-varying-size: - shard-mtlp: [PASS][129] -> [FAIL][130] ([i915#8248]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-6/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-3/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][131] ([fdo#109274] / [i915#5354]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-8/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-tglu: NOTRUN -> [SKIP][132] ([fdo#109274]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#3546]) +3 similar issues [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-3/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][134] -> [FAIL][135] ([i915#2346]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@extended-mode-basic: - shard-tglu: NOTRUN -> [SKIP][136] ([i915#4579]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#4579]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-10/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#3840] / [i915#4579]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-10/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#4579]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][140] ([fdo#109274] / [i915#3637]) +4 similar issues [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-8/igt@kms_flip@2x-blocking-absolute-wf_vblank.html - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#3637]) +5 similar issues [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-4/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][142] ([fdo#109274]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-11/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-rkl: NOTRUN -> [SKIP][143] ([fdo#111825]) +3 similar issues [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-snb: NOTRUN -> [SKIP][144] ([fdo#109271] / [fdo#111767]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-snb7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#2587] / [i915#2672] / [i915#4579]) +1 similar issue [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#2672] / [i915#4579]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#2672] / [i915#4579]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#4579]) +7 similar issues [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#5274]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-3/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#8708]) +2 similar issues [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu: - shard-dg2: [PASS][151] -> [FAIL][152] ([i915#6880]) +1 similar issue [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#3458]) +4 similar issues [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#8708]) +2 similar issues [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#1825]) +15 similar issues [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-rkl: NOTRUN -> [SKIP][156] ([fdo#111825] / [i915#1825]) +10 similar issues [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][157] ([fdo#110189]) +10 similar issues [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#3023]) +6 similar issues [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][159] ([fdo#109280]) +13 similar issues [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_invalid_mode@clock-too-high@edp-1-pipe-b: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#6403]) +2 similar issues [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-4/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-b.html * igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#4579] / [i915#6403]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-4/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][162] ([fdo#103375]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#4579] / [i915#5176]) +1 similar issue [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#5176]) +5 similar issues [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#5176]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#4579] / [i915#5176]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#5176]) +2 similar issues [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][168] ([i915#4579] / [i915#5176]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#5235]) +2 similar issues [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#4579] / [i915#5235]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#5235]) +3 similar issues [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [SKIP][172] ([fdo#109271]) +39 similar issues [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-snb1/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#5235]) +8 similar issues [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-snb: NOTRUN -> [SKIP][174] ([fdo#109271] / [i915#4579]) +15 similar issues [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-snb1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#4579] / [i915#5235]) +3 similar issues [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#4579] / [i915#5235]) +2 similar issues [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-dp-4.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#6524] / [i915#6805]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-6/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@cursor-plane-update-sf: - shard-rkl: NOTRUN -> [SKIP][178] ([fdo#111068] / [i915#658]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@kms_psr2_sf@cursor-plane-update-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][179] ([fdo#111068] / [i915#658]) +1 similar issue [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@kms_psr@cursor_mmap_gtt: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#1072]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-7/igt@kms_psr@cursor_mmap_gtt.html * igt@kms_psr@sprite_render: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#1072]) +1 similar issue [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_psr@sprite_render.html * igt@kms_setmode@basic@pipe-a-vga-1: - shard-snb: NOTRUN -> [FAIL][182] ([i915#5465]) +1 similar issue [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-snb7/igt@kms_setmode@basic@pipe-a-vga-1.html * igt@kms_tv_load_detect@load-detect: - shard-rkl: NOTRUN -> [SKIP][183] ([fdo#109309]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@pipe-c-wait-busy: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#4070] / [i915#6768]) +1 similar issue [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-6/igt@kms_vblank@pipe-c-wait-busy.html * igt@kms_vblank@pipe-d-query-forked-busy: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#4070] / [i915#533] / [i915#6768]) +2 similar issues [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-6/igt@kms_vblank@pipe-d-query-forked-busy.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#2437]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-6/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-tglu: NOTRUN -> [SKIP][187] ([i915#2437]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@kms_writeback@writeback-fb-id.html - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#2437]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@kms_writeback@writeback-fb-id.html * igt@perf@unprivileged-single-ctx-counters: - shard-tglu: NOTRUN -> [SKIP][189] ([fdo#109289]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-4/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][190] ([i915#4349]) +3 similar issues [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html * igt@prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#3708]) +1 similar issue [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@prime_vgem@fence-read-hang.html * igt@sysfs_heartbeat_interval@precise@vecs0: - shard-mtlp: [PASS][192] -> [FAIL][193] ([i915#8332]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@sysfs_heartbeat_interval@precise@vecs0.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@sysfs_heartbeat_interval@precise@vecs0.html * igt@v3d/v3d_mmap@mmap-bo: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#2575]) +7 similar issues [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@v3d/v3d_mmap@mmap-bo.html * igt@v3d/v3d_perfmon@get-values-invalid-perfmon: - shard-tglu: NOTRUN -> [SKIP][195] ([fdo#109315] / [i915#2575]) +4 similar issues [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-3/igt@v3d/v3d_perfmon@get-values-invalid-perfmon.html * igt@v3d/v3d_submit_cl@multisync-out-syncs: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#2575]) +2 similar issues [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-6/igt@v3d/v3d_submit_cl@multisync-out-syncs.html * igt@v3d/v3d_submit_cl@simple-flush-cache: - shard-rkl: NOTRUN -> [SKIP][197] ([fdo#109315]) +1 similar issue [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-6/igt@v3d/v3d_submit_cl@simple-flush-cache.html * igt@vc4/vc4_create_bo@create-bo-0: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#7711]) +3 similar issues [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@vc4/vc4_create_bo@create-bo-0.html * igt@vc4/vc4_perfmon@create-single-perfmon: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#7711]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-6/igt@vc4/vc4_perfmon@create-single-perfmon.html * igt@vc4/vc4_wait_bo@used-bo-0ns: - shard-tglu: NOTRUN -> [SKIP][200] ([i915#2575]) +3 similar issues [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@vc4/vc4_wait_bo@used-bo-0ns.html - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#7711]) +3 similar issues [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-6/igt@vc4/vc4_wait_bo@used-bo-0ns.html #### Possible fixes #### * igt@gem_barrier_race@remote-request@rcs0: - shard-rkl: [ABORT][202] ([i915#8178]) -> [PASS][203] [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-1/igt@gem_barrier_race@remote-request@rcs0.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [FAIL][204] ([i915#6268]) -> [PASS][205] [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@engines-hostile@vcs0: - shard-mtlp: [FAIL][206] ([i915#2410]) -> [PASS][207] +3 similar issues [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@gem_ctx_persistence@engines-hostile@vcs0.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@gem_ctx_persistence@engines-hostile@vcs0.html * igt@gem_eio@context-create: - {shard-dg1}: [DMESG-WARN][208] ([i915#4423]) -> [PASS][209] [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg1-17/igt@gem_eio@context-create.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg1-19/igt@gem_eio@context-create.html * igt@gem_eio@in-flight-contexts-10ms: - shard-mtlp: [ABORT][210] ([i915#7941]) -> [PASS][211] [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@gem_eio@in-flight-contexts-10ms.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@gem_eio@in-flight-contexts-10ms.html * igt@gem_eio@in-flight-contexts-immediate: - shard-mtlp: [ABORT][212] ([i915#8503]) -> [PASS][213] [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@gem_eio@in-flight-contexts-immediate.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@gem_eio@in-flight-contexts-immediate.html * igt@gem_eio@unwedge-stress: - {shard-dg1}: [FAIL][214] ([i915#5784]) -> [PASS][215] [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg1-16/igt@gem_eio@unwedge-stress.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg1-14/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [FAIL][216] ([i915#2846]) -> [PASS][217] [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk7/igt@gem_exec_fair@basic-deadline.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-glk6/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_schedule@deep@vecs0: - shard-mtlp: [FAIL][218] ([i915#8545]) -> [PASS][219] [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@gem_exec_schedule@deep@vecs0.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-4/igt@gem_exec_schedule@deep@vecs0.html * igt@gem_exec_suspend@basic-s0@smem: - shard-tglu: [ABORT][220] ([i915#5122] / [i915#5251]) -> [PASS][221] [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-5/igt@gem_exec_suspend@basic-s0@smem.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-8/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_exec_whisper@basic-queues-all: - shard-mtlp: [FAIL][222] ([i915#6363]) -> [PASS][223] [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@gem_exec_whisper@basic-queues-all.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-3/igt@gem_exec_whisper@basic-queues-all.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-snb: [ABORT][224] ([i915#5161]) -> [PASS][225] [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-snb6/igt@gem_mmap_gtt@fault-concurrent-y.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-snb5/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@gem_workarounds@suspend-resume-context: - shard-dg2: [FAIL][226] ([fdo#103375]) -> [PASS][227] +4 similar issues [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-5/igt@gem_workarounds@suspend-resume-context.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-11/igt@gem_workarounds@suspend-resume-context.html * igt@i915_hangman@gt-engine-error@vcs0: - shard-mtlp: [FAIL][228] ([i915#7069]) -> [PASS][229] [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@i915_hangman@gt-engine-error@vcs0.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@i915_hangman@gt-engine-error@vcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][230] ([i915#8489]) -> [PASS][231] [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rpm@gem-execbuf@smem0: - shard-mtlp: [FAIL][232] ([i915#8457]) -> [PASS][233] [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@i915_pm_rpm@gem-execbuf@smem0.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-3/igt@i915_pm_rpm@gem-execbuf@smem0.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - {shard-dg1}: [SKIP][234] ([i915#1397]) -> [PASS][235] +1 similar issue [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg1-15/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@i915_selftest@live@requests: - shard-mtlp: [DMESG-FAIL][236] ([i915#8497]) -> [PASS][237] [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@i915_selftest@live@requests.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [DMESG-FAIL][238] ([i915#6763]) -> [PASS][239] [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@i915_selftest@live@workarounds.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@i915_selftest@live@workarounds.html * igt@i915_selftest@perf@request: - shard-mtlp: [DMESG-FAIL][240] ([i915#8573]) -> [PASS][241] [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@i915_selftest@perf@request.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-3/igt@i915_selftest@perf@request.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [FAIL][242] ([i915#5138]) -> [PASS][243] [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_cursor_crc@cursor-random-256x85@pipe-d-edp-1: - shard-mtlp: [FAIL][244] -> [PASS][245] +1 similar issue [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@kms_cursor_crc@cursor-random-256x85@pipe-d-edp-1.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-256x85@pipe-d-edp-1.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [FAIL][246] ([i915#2346]) -> [PASS][247] [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary: - shard-dg2: [FAIL][248] ([i915#6880]) -> [PASS][249] +3 similar issues [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html * igt@perf_pmu@busy-double-start@ccs0: - shard-mtlp: [FAIL][250] ([i915#4349]) -> [PASS][251] [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@perf_pmu@busy-double-start@ccs0.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@perf_pmu@busy-double-start@ccs0.html #### Warnings #### * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [TIMEOUT][252] ([i915#5493]) -> [DMESG-WARN][253] ([i915#4936] / [i915#5493]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [WARN][254] ([i915#6596] / [i915#7356]) -> [DMESG-WARN][255] ([i915#7061]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-12/igt@i915_module_load@reload-with-fault-injection.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - shard-tglu: [WARN][256] ([i915#2681]) -> [FAIL][257] ([i915#2681] / [i915#3591]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglu: [FAIL][258] ([i915#2681] / [i915#3591]) -> [WARN][259] ([i915#2681]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@kms_async_flips@crc@pipe-b-edp-1: - shard-mtlp: [FAIL][260] ([i915#8247]) -> [DMESG-FAIL][261] ([i915#8561]) +1 similar issue [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@kms_async_flips@crc@pipe-b-edp-1.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@kms_async_flips@crc@pipe-b-edp-1.html * igt@kms_content_protection@mei_interface: - shard-dg2: [SKIP][262] ([i915#4579] / [i915#7118]) -> [SKIP][263] ([i915#4579] / [i915#7118] / [i915#7162]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-6/igt@kms_content_protection@mei_interface.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-11/igt@kms_content_protection@mei_interface.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: [DMESG-FAIL][264] ([i915#2017] / [i915#5954]) -> [FAIL][265] ([i915#2346]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][266] ([fdo#109285]) -> [SKIP][267] ([fdo#109285] / [i915#4098]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.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#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#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [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#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [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#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#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3711]: https://gitlab.freedesktop.org/drm/intel/issues/3711 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [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#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [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#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [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#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5161]: https://gitlab.freedesktop.org/drm/intel/issues/5161 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5251]: https://gitlab.freedesktop.org/drm/intel/issues/5251 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6363]: https://gitlab.freedesktop.org/drm/intel/issues/6363 [i915#6403]: https://gitlab.freedesktop.org/drm/intel/issues/6403 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6596]: https://gitlab.freedesktop.org/drm/intel/issues/6596 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [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#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7941]: https://gitlab.freedesktop.org/drm/intel/issues/7941 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063 [i915#8178]: https://gitlab.freedesktop.org/drm/intel/issues/8178 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8248]: https://gitlab.freedesktop.org/drm/intel/issues/8248 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8332]: https://gitlab.freedesktop.org/drm/intel/issues/8332 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8457]: https://gitlab.freedesktop.org/drm/intel/issues/8457 [i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489 [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8503]: https://gitlab.freedesktop.org/drm/intel/issues/8503 [i915#8545]: https://gitlab.freedesktop.org/drm/intel/issues/8545 [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [i915#8573]: https://gitlab.freedesktop.org/drm/intel/issues/8573 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7352 -> IGTPW_9286 CI-20190529: 20190529 CI_DRM_13328: 12cd6b2d321d9c034f3d4ba14788d68cb8da4eac @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9286: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/index.html IGT_7352: 471bfababd070e1dac0ebb87470ac4f2ae85e663 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/index.html [-- Attachment #2: Type: text/html, Size: 87554 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Use intel_cmds_info in i915_pm_rpm (rev3) 2023-06-28 21:45 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-06-29 6:34 ` Karolina Stolarek 2023-06-30 7:35 ` Yedireswarapu, SaiX Nandan 0 siblings, 1 reply; 14+ messages in thread From: Karolina Stolarek @ 2023-06-29 6:34 UTC (permalink / raw) To: igt-dev; +Cc: Yedireswarapu, SaiX Nandan On 28.06.2023 23:45, Patchwork wrote: > *Patch Details* > *Series:* Use intel_cmds_info in i915_pm_rpm (rev3) > *URL:* https://patchwork.freedesktop.org/series/118102/ > <https://patchwork.freedesktop.org/series/118102/> > *State:* failure > *Details:* > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/index.html > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/index.html> > > > CI Bug Log - changes from IGT_7352_full -> IGTPW_9286_full > > > Summary > > *FAILURE* > > Serious unknown changes coming with IGTPW_9286_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_9286_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_9286/index.html > > > Participating hosts (9 -> 9) > > No changes in participating hosts > > > Possible new issues > > Here are the unknown changes that may have been introduced in > IGTPW_9286_full: > > > IGT changes > > > Possible regressions > > * > > igt@gem_create@busy-create@lmem0: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-7/igt@gem_create@busy-create@lmem0.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-8/igt@gem_create@busy-create@lmem0.html> > * > > igt@kms_flip@flip-vs-panning-interruptible@b-edp1: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@kms_flip@flip-vs-panning-interruptible@b-edp1.html> -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@kms_flip@flip-vs-panning-interruptible@b-edp1.html> > Not related to my changes. All the best, Karolina > > New tests > > New tests have been introduced between IGT_7352_full and IGTPW_9286_full: > > > New IGT tests (3) > > * > > igt@kms_cursor_crc@cursor-alpha-transparent@pipe-a-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_cursor_crc@cursor-alpha-transparent@pipe-d-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-1: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > > > Known issues > > Here are the changes found in IGTPW_9286_full that come from known issues: > > > IGT changes > > > Issues hit > > * > > igt@api_intel_bb@object-reloc-purge-cache: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@api_intel_bb@object-reloc-purge-cache.html> (i915#8411 <https://gitlab.freedesktop.org/drm/intel/issues/8411>) +1 similar issue > * > > igt@device_reset@cold-reset-bound: > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@device_reset@cold-reset-bound.html> (i915#7701 <https://gitlab.freedesktop.org/drm/intel/issues/7701>) > > o > > shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@device_reset@cold-reset-bound.html> (i915#7701 <https://gitlab.freedesktop.org/drm/intel/issues/7701>) > > * > > igt@drm_fdinfo@busy-idle@bcs0: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@drm_fdinfo@busy-idle@bcs0.html> (i915#8414 <https://gitlab.freedesktop.org/drm/intel/issues/8414>) +4 similar issues > * > > igt@drm_fdinfo@busy-idle@ccs0: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@drm_fdinfo@busy-idle@ccs0.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579> / i915#8414 <https://gitlab.freedesktop.org/drm/intel/issues/8414>) > * > > igt@feature_discovery@chamelium: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@feature_discovery@chamelium.html> (i915#4854 <https://gitlab.freedesktop.org/drm/intel/issues/4854>) > * > > igt@feature_discovery@display-3x: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@feature_discovery@display-3x.html> (i915#1839 <https://gitlab.freedesktop.org/drm/intel/issues/1839>) > * > > igt@gem_basic@multigpu-create-close: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-6/igt@gem_basic@multigpu-create-close.html> (i915#7697 <https://gitlab.freedesktop.org/drm/intel/issues/7697>) > * > > igt@gem_caching@writes: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@gem_caching@writes.html> (i915#4873 <https://gitlab.freedesktop.org/drm/intel/issues/4873>) +1 similar issue > * > > igt@gem_create@create-ext-cpu-access-big: > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@gem_create@create-ext-cpu-access-big.html> (i915#6335 <https://gitlab.freedesktop.org/drm/intel/issues/6335>) > > o > > shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@gem_create@create-ext-cpu-access-big.html> (i915#6335 <https://gitlab.freedesktop.org/drm/intel/issues/6335>) > > * > > igt@gem_ctx_param@set-priority-not-supported: > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@gem_ctx_param@set-priority-not-supported.html> (fdo#109314 <https://bugs.freedesktop.org/show_bug.cgi?id=109314>) > > o > > shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@gem_ctx_param@set-priority-not-supported.html> (fdo#109314 <https://bugs.freedesktop.org/show_bug.cgi?id=109314>) > > * > > igt@gem_eio@hibernate: > > o shard-dg2: NOTRUN -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-1/igt@gem_eio@hibernate.html> (i915#7975 <https://gitlab.freedesktop.org/drm/intel/issues/7975> / i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213>) > * > > igt@gem_exec_balancer@bonded-dual: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@gem_exec_balancer@bonded-dual.html> (i915#4771 <https://gitlab.freedesktop.org/drm/intel/issues/4771>) +1 similar issue > * > > igt@gem_exec_balancer@parallel-bb-first: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@gem_exec_balancer@parallel-bb-first.html> (i915#4525 <https://gitlab.freedesktop.org/drm/intel/issues/4525>) > * > > igt@gem_exec_fair@basic-none-share@rcs0: > > o shard-tglu: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-10/igt@gem_exec_fair@basic-none-share@rcs0.html> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) > * > > igt@gem_exec_fair@basic-pace-share@rcs0: > > o shard-tglu: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) > * > > igt@gem_exec_fair@basic-pace-solo@rcs0: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@gem_exec_fair@basic-pace-solo@rcs0.html> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) +2 similar issues > * > > igt@gem_exec_fair@basic-sync: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@gem_exec_fair@basic-sync.html> (i915#4473 <https://gitlab.freedesktop.org/drm/intel/issues/4473> / i915#4771 <https://gitlab.freedesktop.org/drm/intel/issues/4771>) +1 similar issue > * > > igt@gem_exec_flush@basic-batch-kernel-default-cmd: > > o > > shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html> (fdo#109313 <https://bugs.freedesktop.org/show_bug.cgi?id=109313>) > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html> (fdo#109313 <https://bugs.freedesktop.org/show_bug.cgi?id=109313>) > > o > > shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html> (i915#3711 <https://gitlab.freedesktop.org/drm/intel/issues/3711>) > > * > > igt@gem_exec_gttfill@multigpu-basic: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-6/igt@gem_exec_gttfill@multigpu-basic.html> (i915#7697 <https://gitlab.freedesktop.org/drm/intel/issues/7697>) > * > > igt@gem_exec_reloc@basic-gtt-wc-noreloc: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html> (i915#3281 <https://gitlab.freedesktop.org/drm/intel/issues/3281>) +3 similar issues > * > > igt@gem_exec_reloc@basic-write-cpu-active: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@gem_exec_reloc@basic-write-cpu-active.html> (i915#3281 <https://gitlab.freedesktop.org/drm/intel/issues/3281>) +3 similar issues > * > > igt@gem_exec_reloc@basic-write-read: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-11/igt@gem_exec_reloc@basic-write-read.html> (i915#3281 <https://gitlab.freedesktop.org/drm/intel/issues/3281>) > * > > igt@gem_exec_schedule@preempt-queue-chain: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue-chain.html> (i915#4812 <https://gitlab.freedesktop.org/drm/intel/issues/4812>) > * > > igt@gem_exec_whisper@basic-normal: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@gem_exec_whisper@basic-normal.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@gem_exec_whisper@basic-normal.html> (i915#6363 <https://gitlab.freedesktop.org/drm/intel/issues/6363>) > * > > igt@gem_huc_copy@huc-copy: > > o > > shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@gem_huc_copy@huc-copy.html> (i915#2190 <https://gitlab.freedesktop.org/drm/intel/issues/2190>) > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@gem_huc_copy@huc-copy.html> (i915#2190 <https://gitlab.freedesktop.org/drm/intel/issues/2190>) > > * > > igt@gem_lmem_swapping@parallel-random-verify: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@gem_lmem_swapping@parallel-random-verify.html> (i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1 similar issue > * > > igt@gem_lmem_swapping@smem-oom: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@gem_lmem_swapping@smem-oom.html> (i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1 similar issue > * > > igt@gem_mmap_gtt@hang-user: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@gem_mmap_gtt@hang-user.html> (i915#4077 <https://gitlab.freedesktop.org/drm/intel/issues/4077>) +8 similar issues > * > > igt@gem_mmap_wc@set-cache-level: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@gem_mmap_wc@set-cache-level.html> (i915#4083 <https://gitlab.freedesktop.org/drm/intel/issues/4083>) +4 similar issues > * > > igt@gem_pwrite@basic-self: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-5/igt@gem_pwrite@basic-self.html> (i915#3282 <https://gitlab.freedesktop.org/drm/intel/issues/3282>) > * > > igt@gem_pxp@create-regular-buffer: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@gem_pxp@create-regular-buffer.html> (i915#4270 <https://gitlab.freedesktop.org/drm/intel/issues/4270>) > * > > igt@gem_pxp@regular-baseline-src-copy-readible: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@gem_pxp@regular-baseline-src-copy-readible.html> (i915#4270 <https://gitlab.freedesktop.org/drm/intel/issues/4270>) > * > > igt@gem_pxp@reject-modify-context-protection-off-2: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@gem_pxp@reject-modify-context-protection-off-2.html> (i915#4270 <https://gitlab.freedesktop.org/drm/intel/issues/4270>) > * > > igt@gem_readwrite@new-obj: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@gem_readwrite@new-obj.html> (i915#3282 <https://gitlab.freedesktop.org/drm/intel/issues/3282>) +2 similar issues > * > > igt@gem_render_copy@y-tiled-to-vebox-linear: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@gem_render_copy@y-tiled-to-vebox-linear.html> (i915#8428 <https://gitlab.freedesktop.org/drm/intel/issues/8428>) +3 similar issues > * > > igt@gem_set_tiling_vs_blt@tiled-to-untiled: > > o > > shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html> (i915#8411 <https://gitlab.freedesktop.org/drm/intel/issues/8411>) +1 similar issue > > o > > shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html> (i915#4079 <https://gitlab.freedesktop.org/drm/intel/issues/4079>) +1 similar issue > > * > > igt@gem_softpin@evict-snoop: > > o > > shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@gem_softpin@evict-snoop.html> (fdo#109312 <https://bugs.freedesktop.org/show_bug.cgi?id=109312>) > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@gem_softpin@evict-snoop.html> (fdo#109312 <https://bugs.freedesktop.org/show_bug.cgi?id=109312>) > > * > > igt@gem_tiled_blits@basic: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-5/igt@gem_tiled_blits@basic.html> (i915#4077 <https://gitlab.freedesktop.org/drm/intel/issues/4077>) +1 similar issue > * > > igt@gem_userptr_blits@access-control: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-6/igt@gem_userptr_blits@access-control.html> (i915#3297 <https://gitlab.freedesktop.org/drm/intel/issues/3297>) > * > > igt@gem_userptr_blits@coherency-sync: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-10/igt@gem_userptr_blits@coherency-sync.html> (i915#3297 <https://gitlab.freedesktop.org/drm/intel/issues/3297>) > * > > igt@gem_userptr_blits@readonly-unsync: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@gem_userptr_blits@readonly-unsync.html> (i915#3297 <https://gitlab.freedesktop.org/drm/intel/issues/3297>) > * > > igt@gen7_exec_parse@basic-allocation: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@gen7_exec_parse@basic-allocation.html> (fdo#109289 <https://bugs.freedesktop.org/show_bug.cgi?id=109289>) > * > > igt@gen9_exec_parse@basic-rejected: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@gen9_exec_parse@basic-rejected.html> (i915#2856 <https://gitlab.freedesktop.org/drm/intel/issues/2856>) +1 similar issue > * > > igt@gen9_exec_parse@bb-start-far: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@gen9_exec_parse@bb-start-far.html> (i915#2527 <https://gitlab.freedesktop.org/drm/intel/issues/2527> / i915#2856 <https://gitlab.freedesktop.org/drm/intel/issues/2856>) > * > > igt@i915_pm_backlight@fade-with-dpms: > > o > > shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-7/igt@i915_pm_backlight@fade-with-dpms.html> (i915#7561 <https://gitlab.freedesktop.org/drm/intel/issues/7561>) > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@i915_pm_backlight@fade-with-dpms.html> (i915#7561 <https://gitlab.freedesktop.org/drm/intel/issues/7561>) > > * > > igt@i915_pm_dc@dc6-dpms: > > o shard-tglu: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-10/igt@i915_pm_dc@dc6-dpms.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-3/igt@i915_pm_dc@dc6-dpms.html> (i915#3989 <https://gitlab.freedesktop.org/drm/intel/issues/3989> / i915#454 <https://gitlab.freedesktop.org/drm/intel/issues/454>) > * > > igt@i915_pm_dc@dc6-psr: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@i915_pm_dc@dc6-psr.html> (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) > * > > igt@i915_pm_dc@dc9-dpms: > > o shard-tglu: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-2/igt@i915_pm_dc@dc9-dpms.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@i915_pm_dc@dc9-dpms.html> (i915#4281 <https://gitlab.freedesktop.org/drm/intel/issues/4281>) > * > > igt@i915_pm_freq_api@freq-reset: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-7/igt@i915_pm_freq_api@freq-reset.html> (i915#8399 <https://gitlab.freedesktop.org/drm/intel/issues/8399>) > * > > igt@i915_pm_rpm@dpms-mode-unset-lpsp: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-12/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-1/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html> (i915#1397 <https://gitlab.freedesktop.org/drm/intel/issues/1397>) +1 similar issue > * > > igt@i915_pm_rpm@modeset-lpsp-stress: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@i915_pm_rpm@modeset-lpsp-stress.html> (i915#1397 <https://gitlab.freedesktop.org/drm/intel/issues/1397>) > * > > igt@i915_selftest@live@gt_heartbeat: > > o shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-apl3/igt@i915_selftest@live@gt_heartbeat.html> -> DMESG-FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html> (i915#5334 <https://gitlab.freedesktop.org/drm/intel/issues/5334>) > * > > igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html> (i915#4212 <https://gitlab.freedesktop.org/drm/intel/issues/4212>) > * > > igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs-cc: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs-cc.html> (i915#8502 <https://gitlab.freedesktop.org/drm/intel/issues/8502>) +7 similar issues > * > > igt@kms_async_flips@crc@pipe-a-hdmi-a-3: > > o shard-dg2: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-6/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html> (i915#8247 <https://gitlab.freedesktop.org/drm/intel/issues/8247>) +3 similar issues > * > > igt@kms_atomic@plane-primary-overlay-mutable-zpos: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> (i915#404 <https://gitlab.freedesktop.org/drm/intel/issues/404>) > * > > igt@kms_big_fb@4-tiled-32bpp-rotate-270: > > o > > shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html> (i915#5286 <https://gitlab.freedesktop.org/drm/intel/issues/5286>) +2 similar issues > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-10/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html> (fdo#111615 <https://bugs.freedesktop.org/show_bug.cgi?id=111615> / i915#5286 <https://gitlab.freedesktop.org/drm/intel/issues/5286>) +2 similar issues > > * > > igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> (i915#5138 <https://gitlab.freedesktop.org/drm/intel/issues/5138>) > * > > igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: > > o shard-mtlp: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (i915#3743 <https://gitlab.freedesktop.org/drm/intel/issues/3743>) +2 similar issues > * > > igt@kms_big_fb@linear-16bpp-rotate-90: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_big_fb@linear-16bpp-rotate-90.html> (fdo#111614 <https://bugs.freedesktop.org/show_bug.cgi?id=111614>) +1 similar issue > * > > igt@kms_big_fb@x-tiled-32bpp-rotate-270: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html> (fdo#111614 <https://bugs.freedesktop.org/show_bug.cgi?id=111614>) > * > > igt@kms_big_fb@x-tiled-8bpp-rotate-90: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-7/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html> (fdo#111614 <https://bugs.freedesktop.org/show_bug.cgi?id=111614> / i915#3638 <https://gitlab.freedesktop.org/drm/intel/issues/3638>) > * > > igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-8/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html> (i915#5190 <https://gitlab.freedesktop.org/drm/intel/issues/5190>) +2 similar issues > * > > igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> (fdo#111615 <https://bugs.freedesktop.org/show_bug.cgi?id=111615>) +6 similar issues > * > > igt@kms_big_fb@yf-tiled-16bpp-rotate-0: > > o > > shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html> (fdo#110723 <https://bugs.freedesktop.org/show_bug.cgi?id=110723>) +1 similar issue > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html> (fdo#111615 <https://bugs.freedesktop.org/show_bug.cgi?id=111615>) > > * > > igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html> (i915#4538 <https://gitlab.freedesktop.org/drm/intel/issues/4538> / i915#5190 <https://gitlab.freedesktop.org/drm/intel/issues/5190>) +1 similar issue > * > > igt@kms_big_joiner@2x-modeset: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@kms_big_joiner@2x-modeset.html> (i915#2705 <https://gitlab.freedesktop.org/drm/intel/issues/2705>) > * > > igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-3/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs.html> (i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>) +10 similar issues > * > > igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-6/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs.html> (i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>) > * > > igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-1/igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs.html> (i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354>) +2 similar issues > * > > igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html> (i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354>) > * > > igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs.html> (i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>) +2 similar issues > * > > igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html> (i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>) +1 similar issue > * > > igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-6/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html> (i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354>) +9 similar issues > * > > igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_mtl_rc_ccs: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-5/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_mtl_rc_ccs.html> (i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>) +5 similar issues > * > > igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs.html> (i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354>) +10 similar issues > * > > igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html> (i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>) +6 similar issues > * > > igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-7/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html> (i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>) +3 similar issues > * > > igt@kms_ccs@pipe-d-crc-sprite-planes-basic-yf_tiled_ccs: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-5/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-yf_tiled_ccs.html> (fdo#111615 <https://bugs.freedesktop.org/show_bug.cgi?id=111615> / i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>) > * > > igt@kms_cdclk@mode-transition: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-8/igt@kms_cdclk@mode-transition.html> (i915#3742 <https://gitlab.freedesktop.org/drm/intel/issues/3742>) > * > > igt@kms_cdclk@mode-transition@pipe-b-edp-1: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html> (i915#7213 <https://gitlab.freedesktop.org/drm/intel/issues/7213>) +2 similar issues > * > > igt@kms_cdclk@mode-transition@pipe-c-hdmi-a-3: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-c-hdmi-a-3.html> (i915#4087 <https://gitlab.freedesktop.org/drm/intel/issues/4087>) +5 similar issues > * > > igt@kms_cdclk@mode-transition@pipe-d-edp-1: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@kms_cdclk@mode-transition@pipe-d-edp-1.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579> / i915#7213 <https://gitlab.freedesktop.org/drm/intel/issues/7213>) > * > > igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html> (i915#4087 <https://gitlab.freedesktop.org/drm/intel/issues/4087> / i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579>) +1 similar issue > * > > igt@kms_chamelium_color@ctm-0-75: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@kms_chamelium_color@ctm-0-75.html> (fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) > * > > igt@kms_chamelium_color@ctm-negative: > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-5/igt@kms_chamelium_color@ctm-negative.html> (fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) > > o > > shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-6/igt@kms_chamelium_color@ctm-negative.html> (fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) > > * > > igt@kms_chamelium_frames@dp-frame-dump: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-6/igt@kms_chamelium_frames@dp-frame-dump.html> (i915#7828 <https://gitlab.freedesktop.org/drm/intel/issues/7828>) +2 similar issues > * > > igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html> (i915#7828 <https://gitlab.freedesktop.org/drm/intel/issues/7828>) +2 similar issues > * > > igt@kms_chamelium_hpd@dp-hpd-storm-disable: > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html> (i915#7828 <https://gitlab.freedesktop.org/drm/intel/issues/7828>) +2 similar issues > > o > > shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html> (i915#7828 <https://gitlab.freedesktop.org/drm/intel/issues/7828>) +3 similar issues > > * > > igt@kms_content_protection@lic@pipe-a-dp-4: > > o shard-dg2: NOTRUN -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-11/igt@kms_content_protection@lic@pipe-a-dp-4.html> (i915#7173 <https://gitlab.freedesktop.org/drm/intel/issues/7173>) +1 similar issue > * > > igt@kms_content_protection@mei_interface: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@kms_content_protection@mei_interface.html> (i915#8063 <https://gitlab.freedesktop.org/drm/intel/issues/8063>) > * > > igt@kms_content_protection@srm: > > o > > shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-5/igt@kms_content_protection@srm.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579> / i915#7118 <https://gitlab.freedesktop.org/drm/intel/issues/7118>) > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-4/igt@kms_content_protection@srm.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579> / 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>) +1 similar issue > > * > > igt@kms_cursor_crc@cursor-offscreen-512x170: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html> (fdo#109279 <https://bugs.freedesktop.org/show_bug.cgi?id=109279> / i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>) > * > > igt@kms_cursor_crc@cursor-random-32x32: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-7/igt@kms_cursor_crc@cursor-random-32x32.html> (i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579>) +1 similar issue > * > > igt@kms_cursor_crc@cursor-random-512x512: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-10/igt@kms_cursor_crc@cursor-random-512x512.html> (i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>) > * > > igt@kms_cursor_crc@cursor-rapid-movement-32x10: > > o > > shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html> (i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579>) +5 similar issues > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html> (i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579>) +2 similar issues > > * > > igt@kms_cursor_crc@cursor-sliding-512x170: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x170.html> (i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>) > * > > igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-8/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-5/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3.html> (fdo#103375 <https://bugs.freedesktop.org/show_bug.cgi?id=103375>) +2 similar issues > * > > igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html> (i915#4213 <https://gitlab.freedesktop.org/drm/intel/issues/4213>) +1 similar issue > * > > igt@kms_cursor_legacy@cursor-vs-flip-varying-size: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-6/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-3/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html> (i915#8248 <https://gitlab.freedesktop.org/drm/intel/issues/8248>) > * > > igt@kms_cursor_legacy@cursora-vs-flipb-toggle: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-8/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html> (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274> / i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354>) > * > > igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html> (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274>) > > o > > shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-3/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html> (i915#3546 <https://gitlab.freedesktop.org/drm/intel/issues/3546>) +3 similar issues > > * > > igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> (i915#2346 <https://gitlab.freedesktop.org/drm/intel/issues/2346>) > * > > igt@kms_display_modes@extended-mode-basic: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@kms_display_modes@extended-mode-basic.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579>) > * > > igt@kms_draw_crc@draw-method-mmap-gtt: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-10/igt@kms_draw_crc@draw-method-mmap-gtt.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579>) > * > > igt@kms_dsc@dsc-with-bpc-formats: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-10/igt@kms_dsc@dsc-with-bpc-formats.html> (i915#3840 <https://gitlab.freedesktop.org/drm/intel/issues/3840> / i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579>) > * > > igt@kms_dsc@dsc-with-output-formats: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579>) > * > > igt@kms_flip@2x-blocking-absolute-wf_vblank: > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-8/igt@kms_flip@2x-blocking-absolute-wf_vblank.html> (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274> / i915#3637 <https://gitlab.freedesktop.org/drm/intel/issues/3637>) +4 similar issues > > o > > shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-4/igt@kms_flip@2x-blocking-absolute-wf_vblank.html> (i915#3637 <https://gitlab.freedesktop.org/drm/intel/issues/3637>) +5 similar issues > > * > > igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-11/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html> (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274>) > * > > igt@kms_flip@2x-flip-vs-panning-vs-hang: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@kms_flip@2x-flip-vs-panning-vs-hang.html> (fdo#111825 <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +3 similar issues > * > > igt@kms_flip@2x-flip-vs-rmfb-interruptible: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-snb7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111767 <https://bugs.freedesktop.org/show_bug.cgi?id=111767>) > * > > igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html> (i915#2587 <https://gitlab.freedesktop.org/drm/intel/issues/2587> / i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672> / i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579>) +1 similar issue > * > > igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html> (i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672> / i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579>) > * > > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html> (i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672> / i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579>) > * > > igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579>) +7 similar issues > * > > igt@kms_force_connector_basic@prune-stale-modes: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-3/igt@kms_force_connector_basic@prune-stale-modes.html> (i915#5274 <https://gitlab.freedesktop.org/drm/intel/issues/5274>) > * > > igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html> (i915#8708 <https://gitlab.freedesktop.org/drm/intel/issues/8708>) +2 similar issues > * > > igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html> (i915#6880 <https://gitlab.freedesktop.org/drm/intel/issues/6880>) +1 similar issue > * > > igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render.html> (i915#3458 <https://gitlab.freedesktop.org/drm/intel/issues/3458>) +4 similar issues > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html> (i915#8708 <https://gitlab.freedesktop.org/drm/intel/issues/8708>) +2 similar issues > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html> (i915#1825 <https://gitlab.freedesktop.org/drm/intel/issues/1825>) +15 similar issues > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html> (fdo#111825 <https://bugs.freedesktop.org/show_bug.cgi?id=111825> / i915#1825 <https://gitlab.freedesktop.org/drm/intel/issues/1825>) +10 similar issues > * > > igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html> (fdo#110189 <https://bugs.freedesktop.org/show_bug.cgi?id=110189>) +10 similar issues > * > > igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html> (i915#3023 <https://gitlab.freedesktop.org/drm/intel/issues/3023>) +6 similar issues > * > > igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html> (fdo#109280 <https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +13 similar issues > * > > igt@kms_invalid_mode@clock-too-high@edp-1-pipe-b: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-4/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-b.html> (i915#6403 <https://gitlab.freedesktop.org/drm/intel/issues/6403>) +2 similar issues > * > > igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-4/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579> / i915#6403 <https://gitlab.freedesktop.org/drm/intel/issues/6403>) > * > > igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-3: > > o shard-dg2: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-3.html> (fdo#103375 <https://bugs.freedesktop.org/show_bug.cgi?id=103375>) > * > > igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-hdmi-a-3: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-hdmi-a-3.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579> / i915#5176 <https://gitlab.freedesktop.org/drm/intel/issues/5176>) +1 similar issue > * > > igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html> (i915#5176 <https://gitlab.freedesktop.org/drm/intel/issues/5176>) +5 similar issues > * > > igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-2: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-2.html> (i915#5176 <https://gitlab.freedesktop.org/drm/intel/issues/5176>) > * > > igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-b-hdmi-a-2: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-b-hdmi-a-2.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579> / i915#5176 <https://gitlab.freedesktop.org/drm/intel/issues/5176>) > * > > igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-1: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-1.html> (i915#5176 <https://gitlab.freedesktop.org/drm/intel/issues/5176>) +2 similar issues > * > > igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-d-hdmi-a-1: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-d-hdmi-a-1.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579> / i915#5176 <https://gitlab.freedesktop.org/drm/intel/issues/5176>) > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html> (i915#5235 <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +2 similar issues > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579> / i915#5235 <https://gitlab.freedesktop.org/drm/intel/issues/5235>) > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-2: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-2.html> (i915#5235 <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +3 similar issues > * > > igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-hdmi-a-1: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-snb1/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-hdmi-a-1.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +39 similar issues > * > > igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4.html> (i915#5235 <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +8 similar issues > * > > igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-1: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-snb1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-1.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579>) +15 similar issues > * > > igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579> / i915#5235 <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +3 similar issues > * > > igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-dp-4: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-dp-4.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579> / i915#5235 <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +2 similar issues > * > > igt@kms_prime@basic-modeset-hybrid: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-6/igt@kms_prime@basic-modeset-hybrid.html> (i915#6524 <https://gitlab.freedesktop.org/drm/intel/issues/6524> / i915#6805 <https://gitlab.freedesktop.org/drm/intel/issues/6805>) > * > > igt@kms_psr2_sf@cursor-plane-update-sf: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@kms_psr2_sf@cursor-plane-update-sf.html> (fdo#111068 <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) > * > > igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html> (fdo#111068 <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) +1 similar issue > * > > igt@kms_psr@cursor_mmap_gtt: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-7/igt@kms_psr@cursor_mmap_gtt.html> (i915#1072 <https://gitlab.freedesktop.org/drm/intel/issues/1072>) > * > > igt@kms_psr@sprite_render: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_psr@sprite_render.html> (i915#1072 <https://gitlab.freedesktop.org/drm/intel/issues/1072>) +1 similar issue > * > > igt@kms_setmode@basic@pipe-a-vga-1: > > o shard-snb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-snb7/igt@kms_setmode@basic@pipe-a-vga-1.html> (i915#5465 <https://gitlab.freedesktop.org/drm/intel/issues/5465>) +1 similar issue > * > > igt@kms_tv_load_detect@load-detect: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@kms_tv_load_detect@load-detect.html> (fdo#109309 <https://bugs.freedesktop.org/show_bug.cgi?id=109309>) > * > > igt@kms_vblank@pipe-c-wait-busy: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-6/igt@kms_vblank@pipe-c-wait-busy.html> (i915#4070 <https://gitlab.freedesktop.org/drm/intel/issues/4070> / i915#6768 <https://gitlab.freedesktop.org/drm/intel/issues/6768>) +1 similar issue > * > > igt@kms_vblank@pipe-d-query-forked-busy: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-6/igt@kms_vblank@pipe-d-query-forked-busy.html> (i915#4070 <https://gitlab.freedesktop.org/drm/intel/issues/4070> / i915#533 <https://gitlab.freedesktop.org/drm/intel/issues/533> / i915#6768 <https://gitlab.freedesktop.org/drm/intel/issues/6768>) +2 similar issues > * > > igt@kms_writeback@writeback-check-output: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-6/igt@kms_writeback@writeback-check-output.html> (i915#2437 <https://gitlab.freedesktop.org/drm/intel/issues/2437>) > * > > igt@kms_writeback@writeback-fb-id: > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@kms_writeback@writeback-fb-id.html> (i915#2437 <https://gitlab.freedesktop.org/drm/intel/issues/2437>) > > o > > shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@kms_writeback@writeback-fb-id.html> (i915#2437 <https://gitlab.freedesktop.org/drm/intel/issues/2437>) > > * > > igt@perf@unprivileged-single-ctx-counters: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-4/igt@perf@unprivileged-single-ctx-counters.html> (fdo#109289 <https://bugs.freedesktop.org/show_bug.cgi?id=109289>) > * > > igt@perf_pmu@busy-double-start@vecs1: > > o shard-dg2: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html> (i915#4349 <https://gitlab.freedesktop.org/drm/intel/issues/4349>) +3 similar issues > * > > igt@prime_vgem@fence-read-hang: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@prime_vgem@fence-read-hang.html> (i915#3708 <https://gitlab.freedesktop.org/drm/intel/issues/3708>) +1 similar issue > * > > igt@sysfs_heartbeat_interval@precise@vecs0: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@sysfs_heartbeat_interval@precise@vecs0.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@sysfs_heartbeat_interval@precise@vecs0.html> (i915#8332 <https://gitlab.freedesktop.org/drm/intel/issues/8332>) > * > > igt@v3d/v3d_mmap@mmap-bo: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@v3d/v3d_mmap@mmap-bo.html> (i915#2575 <https://gitlab.freedesktop.org/drm/intel/issues/2575>) +7 similar issues > * > > igt@v3d/v3d_perfmon@get-values-invalid-perfmon: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-3/igt@v3d/v3d_perfmon@get-values-invalid-perfmon.html> (fdo#109315 <https://bugs.freedesktop.org/show_bug.cgi?id=109315> / i915#2575 <https://gitlab.freedesktop.org/drm/intel/issues/2575>) +4 similar issues > * > > igt@v3d/v3d_submit_cl@multisync-out-syncs: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-6/igt@v3d/v3d_submit_cl@multisync-out-syncs.html> (i915#2575 <https://gitlab.freedesktop.org/drm/intel/issues/2575>) +2 similar issues > * > > igt@v3d/v3d_submit_cl@simple-flush-cache: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-6/igt@v3d/v3d_submit_cl@simple-flush-cache.html> (fdo#109315 <https://bugs.freedesktop.org/show_bug.cgi?id=109315>) +1 similar issue > * > > igt@vc4/vc4_create_bo@create-bo-0: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@vc4/vc4_create_bo@create-bo-0.html> (i915#7711 <https://gitlab.freedesktop.org/drm/intel/issues/7711>) +3 similar issues > * > > igt@vc4/vc4_perfmon@create-single-perfmon: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-6/igt@vc4/vc4_perfmon@create-single-perfmon.html> (i915#7711 <https://gitlab.freedesktop.org/drm/intel/issues/7711>) > * > > igt@vc4/vc4_wait_bo@used-bo-0ns: > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@vc4/vc4_wait_bo@used-bo-0ns.html> (i915#2575 <https://gitlab.freedesktop.org/drm/intel/issues/2575>) +3 similar issues > > o > > shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-6/igt@vc4/vc4_wait_bo@used-bo-0ns.html> (i915#7711 <https://gitlab.freedesktop.org/drm/intel/issues/7711>) +3 similar issues > > > Possible fixes > > * > > igt@gem_barrier_race@remote-request@rcs0: > > o shard-rkl: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-1/igt@gem_barrier_race@remote-request@rcs0.html> (i915#8178 <https://gitlab.freedesktop.org/drm/intel/issues/8178>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@gem_barrier_race@remote-request@rcs0.html> > * > > igt@gem_ctx_exec@basic-nohangcheck: > > o shard-rkl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html> (i915#6268 <https://gitlab.freedesktop.org/drm/intel/issues/6268>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@gem_ctx_exec@basic-nohangcheck.html> > * > > igt@gem_ctx_persistence@engines-hostile@vcs0: > > o shard-mtlp: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@gem_ctx_persistence@engines-hostile@vcs0.html> (i915#2410 <https://gitlab.freedesktop.org/drm/intel/issues/2410>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@gem_ctx_persistence@engines-hostile@vcs0.html> +3 similar issues > * > > igt@gem_eio@context-create: > > o {shard-dg1}: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg1-17/igt@gem_eio@context-create.html> (i915#4423 <https://gitlab.freedesktop.org/drm/intel/issues/4423>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg1-19/igt@gem_eio@context-create.html> > * > > igt@gem_eio@in-flight-contexts-10ms: > > o shard-mtlp: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@gem_eio@in-flight-contexts-10ms.html> (i915#7941 <https://gitlab.freedesktop.org/drm/intel/issues/7941>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@gem_eio@in-flight-contexts-10ms.html> > * > > igt@gem_eio@in-flight-contexts-immediate: > > o shard-mtlp: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@gem_eio@in-flight-contexts-immediate.html> (i915#8503 <https://gitlab.freedesktop.org/drm/intel/issues/8503>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@gem_eio@in-flight-contexts-immediate.html> > * > > igt@gem_eio@unwedge-stress: > > o {shard-dg1}: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg1-16/igt@gem_eio@unwedge-stress.html> (i915#5784 <https://gitlab.freedesktop.org/drm/intel/issues/5784>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg1-14/igt@gem_eio@unwedge-stress.html> > * > > igt@gem_exec_fair@basic-deadline: > > o shard-glk: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk7/igt@gem_exec_fair@basic-deadline.html> (i915#2846 <https://gitlab.freedesktop.org/drm/intel/issues/2846>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-glk6/igt@gem_exec_fair@basic-deadline.html> > * > > igt@gem_exec_schedule@deep@vecs0: > > o shard-mtlp: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@gem_exec_schedule@deep@vecs0.html> (i915#8545 <https://gitlab.freedesktop.org/drm/intel/issues/8545>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-4/igt@gem_exec_schedule@deep@vecs0.html> > * > > igt@gem_exec_suspend@basic-s0@smem: > > o shard-tglu: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-5/igt@gem_exec_suspend@basic-s0@smem.html> (i915#5122 <https://gitlab.freedesktop.org/drm/intel/issues/5122> / i915#5251 <https://gitlab.freedesktop.org/drm/intel/issues/5251>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-8/igt@gem_exec_suspend@basic-s0@smem.html> > * > > igt@gem_exec_whisper@basic-queues-all: > > o shard-mtlp: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@gem_exec_whisper@basic-queues-all.html> (i915#6363 <https://gitlab.freedesktop.org/drm/intel/issues/6363>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-3/igt@gem_exec_whisper@basic-queues-all.html> > * > > igt@gem_mmap_gtt@fault-concurrent-y: > > o shard-snb: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-snb6/igt@gem_mmap_gtt@fault-concurrent-y.html> (i915#5161 <https://gitlab.freedesktop.org/drm/intel/issues/5161>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-snb5/igt@gem_mmap_gtt@fault-concurrent-y.html> > * > > igt@gem_workarounds@suspend-resume-context: > > o shard-dg2: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-5/igt@gem_workarounds@suspend-resume-context.html> (fdo#103375 <https://bugs.freedesktop.org/show_bug.cgi?id=103375>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-11/igt@gem_workarounds@suspend-resume-context.html> +4 similar issues > * > > igt@i915_hangman@gt-engine-error@vcs0: > > o shard-mtlp: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@i915_hangman@gt-engine-error@vcs0.html> (i915#7069 <https://gitlab.freedesktop.org/drm/intel/issues/7069>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@i915_hangman@gt-engine-error@vcs0.html> > * > > igt@i915_module_load@reload-with-fault-injection: > > o shard-mtlp: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html> (i915#8489 <https://gitlab.freedesktop.org/drm/intel/issues/8489>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html> > * > > igt@i915_pm_rpm@gem-execbuf@smem0: > > o shard-mtlp: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@i915_pm_rpm@gem-execbuf@smem0.html> (i915#8457 <https://gitlab.freedesktop.org/drm/intel/issues/8457>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-3/igt@i915_pm_rpm@gem-execbuf@smem0.html> > * > > igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: > > o {shard-dg1}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html> (i915#1397 <https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg1-15/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html> +1 similar issue > * > > igt@i915_selftest@live@requests: > > o shard-mtlp: DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@i915_selftest@live@requests.html> (i915#8497 <https://gitlab.freedesktop.org/drm/intel/issues/8497>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@i915_selftest@live@requests.html> > * > > igt@i915_selftest@live@workarounds: > > o shard-mtlp: DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@i915_selftest@live@workarounds.html> (i915#6763 <https://gitlab.freedesktop.org/drm/intel/issues/6763>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@i915_selftest@live@workarounds.html> > * > > igt@i915_selftest@perf@request: > > o shard-mtlp: DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@i915_selftest@perf@request.html> (i915#8573 <https://gitlab.freedesktop.org/drm/intel/issues/8573>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-3/igt@i915_selftest@perf@request.html> > * > > igt@kms_big_fb@4-tiled-64bpp-rotate-180: > > o shard-mtlp: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html> (i915#5138 <https://gitlab.freedesktop.org/drm/intel/issues/5138>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html> > * > > igt@kms_cursor_crc@cursor-random-256x85@pipe-d-edp-1: > > o shard-mtlp: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@kms_cursor_crc@cursor-random-256x85@pipe-d-edp-1.html> -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-256x85@pipe-d-edp-1.html> +1 similar issue > * > > igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > > o shard-apl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> (i915#2346 <https://gitlab.freedesktop.org/drm/intel/issues/2346>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> > * > > igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary: > > o shard-dg2: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html> (i915#6880 <https://gitlab.freedesktop.org/drm/intel/issues/6880>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html> +3 similar issues > * > > igt@perf_pmu@busy-double-start@ccs0: > > o shard-mtlp: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@perf_pmu@busy-double-start@ccs0.html> (i915#4349 <https://gitlab.freedesktop.org/drm/intel/issues/4349>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@perf_pmu@busy-double-start@ccs0.html> > > > Warnings > > * > > igt@gem_lmem_swapping@smem-oom@lmem0: > > o shard-dg2: TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html> (i915#5493 <https://gitlab.freedesktop.org/drm/intel/issues/5493>) -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@gem_lmem_swapping@smem-oom@lmem0.html> (i915#4936 <https://gitlab.freedesktop.org/drm/intel/issues/4936> / i915#5493 <https://gitlab.freedesktop.org/drm/intel/issues/5493>) > * > > igt@i915_module_load@reload-with-fault-injection: > > o shard-dg2: WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-12/igt@i915_module_load@reload-with-fault-injection.html> (i915#6596 <https://gitlab.freedesktop.org/drm/intel/issues/6596> / i915#7356 <https://gitlab.freedesktop.org/drm/intel/issues/7356>) -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html> (i915#7061 <https://gitlab.freedesktop.org/drm/intel/issues/7061>) > * > > igt@i915_pm_rc6_residency@rc6-idle@bcs0: > > o shard-tglu: WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html> (i915#2681 <https://gitlab.freedesktop.org/drm/intel/issues/2681>) -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html> (i915#2681 <https://gitlab.freedesktop.org/drm/intel/issues/2681> / i915#3591 <https://gitlab.freedesktop.org/drm/intel/issues/3591>) > * > > igt@i915_pm_rc6_residency@rc6-idle@rcs0: > > o shard-tglu: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> (i915#2681 <https://gitlab.freedesktop.org/drm/intel/issues/2681> / i915#3591 <https://gitlab.freedesktop.org/drm/intel/issues/3591>) -> WARN <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> (i915#2681 <https://gitlab.freedesktop.org/drm/intel/issues/2681>) > * > > igt@kms_async_flips@crc@pipe-b-edp-1: > > o shard-mtlp: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@kms_async_flips@crc@pipe-b-edp-1.html> (i915#8247 <https://gitlab.freedesktop.org/drm/intel/issues/8247>) -> DMESG-FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@kms_async_flips@crc@pipe-b-edp-1.html> (i915#8561 <https://gitlab.freedesktop.org/drm/intel/issues/8561>) +1 similar issue > * > > igt@kms_content_protection@mei_interface: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-6/igt@kms_content_protection@mei_interface.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579> / i915#7118 <https://gitlab.freedesktop.org/drm/intel/issues/7118>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-11/igt@kms_content_protection@mei_interface.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579> / i915#7118 <https://gitlab.freedesktop.org/drm/intel/issues/7118> / i915#7162 <https://gitlab.freedesktop.org/drm/intel/issues/7162>) > * > > igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > > o shard-mtlp: DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> (i915#2017 <https://gitlab.freedesktop.org/drm/intel/issues/2017> / i915#5954 <https://gitlab.freedesktop.org/drm/intel/issues/5954>) -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> (i915#2346 <https://gitlab.freedesktop.org/drm/intel/issues/2346>) > * > > igt@kms_force_connector_basic@force-load-detect: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html> (fdo#109285 <https://bugs.freedesktop.org/show_bug.cgi?id=109285>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html> (fdo#109285 <https://bugs.freedesktop.org/show_bug.cgi?id=109285> / i915#4098 <https://gitlab.freedesktop.org/drm/intel/issues/4098>) > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > > Build changes > > * CI: CI-20190529 -> None > * IGT: IGT_7352 -> IGTPW_9286 > > CI-20190529: 20190529 > CI_DRM_13328: 12cd6b2d321d9c034f3d4ba14788d68cb8da4eac @ > git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_9286: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/index.html > IGT_7352: 471bfababd070e1dac0ebb87470ac4f2ae85e663 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Use intel_cmds_info in i915_pm_rpm (rev3) 2023-06-29 6:34 ` Karolina Stolarek @ 2023-06-30 7:35 ` Yedireswarapu, SaiX Nandan 0 siblings, 0 replies; 14+ messages in thread From: Yedireswarapu, SaiX Nandan @ 2023-06-30 7:35 UTC (permalink / raw) To: Stolarek, Karolina, igt-dev@lists.freedesktop.org Cc: Marikkar, SanjuX, Veesam, RavitejaX Hi, Issue re-reported, https://patchwork.freedesktop.org/series/118102/ Thanks, Y Sai Nandan -----Original Message----- From: Stolarek, Karolina <karolina.stolarek@intel.com> Sent: Thursday, June 29, 2023 12:05 PM To: igt-dev@lists.freedesktop.org Cc: Yedireswarapu, SaiX Nandan <saix.nandan.yedireswarapu@intel.com> Subject: Re: ✗ Fi.CI.IGT: failure for Use intel_cmds_info in i915_pm_rpm (rev3) On 28.06.2023 23:45, Patchwork wrote: > *Patch Details* > *Series:* Use intel_cmds_info in i915_pm_rpm (rev3) > *URL:* https://patchwork.freedesktop.org/series/118102/ > <https://patchwork.freedesktop.org/series/118102/> > *State:* failure > *Details:* > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/index.html > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/index.html> > > > CI Bug Log - changes from IGT_7352_full -> IGTPW_9286_full > > > Summary > > *FAILURE* > > Serious unknown changes coming with IGTPW_9286_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_9286_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_9286/index.html > > > Participating hosts (9 -> 9) > > No changes in participating hosts > > > Possible new issues > > Here are the unknown changes that may have been introduced in > IGTPW_9286_full: > > > IGT changes > > > Possible regressions > > * > > igt@gem_create@busy-create@lmem0: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-7/igt@gem_create@busy-create@lmem0.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-8/igt@gem_create@busy-create@lmem0.html> > * > > igt@kms_flip@flip-vs-panning-interruptible@b-edp1: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@kms_flip@flip-vs-panning-interruptible@b-edp1.html> -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@kms_flip@flip-vs-panning-interruptible@b-edp1.html> > Not related to my changes. All the best, Karolina > > New tests > > New tests have been introduced between IGT_7352_full and IGTPW_9286_full: > > > New IGT tests (3) > > * > > igt@kms_cursor_crc@cursor-alpha-transparent@pipe-a-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_cursor_crc@cursor-alpha-transparent@pipe-d-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-1: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > > > Known issues > > Here are the changes found in IGTPW_9286_full that come from known issues: > > > IGT changes > > > Issues hit > > * > > igt@api_intel_bb@object-reloc-purge-cache: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@api_intel_bb@object-reloc-purge-cache.html> (i915#8411 <https://gitlab.freedesktop.org/drm/intel/issues/8411>) +1 similar issue > * > > igt@device_reset@cold-reset-bound: > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@device_reset@cold-reset-bound.html> (i915#7701 <https://gitlab.freedesktop.org/drm/intel/issues/7701>) > > o > > shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@device_reset@cold-reset-bound.html> (i915#7701 <https://gitlab.freedesktop.org/drm/intel/issues/7701>) > > * > > igt@drm_fdinfo@busy-idle@bcs0: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@drm_fdinfo@busy-idle@bcs0.html> (i915#8414 <https://gitlab.freedesktop.org/drm/intel/issues/8414>) +4 similar issues > * > > igt@drm_fdinfo@busy-idle@ccs0: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@drm_fdinfo@busy-idle@ccs0.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579> / i915#8414 <https://gitlab.freedesktop.org/drm/intel/issues/8414>) > * > > igt@feature_discovery@chamelium: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@feature_discovery@chamelium.html> (i915#4854 <https://gitlab.freedesktop.org/drm/intel/issues/4854>) > * > > igt@feature_discovery@display-3x: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@feature_discovery@display-3x.html> (i915#1839 <https://gitlab.freedesktop.org/drm/intel/issues/1839>) > * > > igt@gem_basic@multigpu-create-close: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-6/igt@gem_basic@multigpu-create-close.html> (i915#7697 <https://gitlab.freedesktop.org/drm/intel/issues/7697>) > * > > igt@gem_caching@writes: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@gem_caching@writes.html> (i915#4873 <https://gitlab.freedesktop.org/drm/intel/issues/4873>) +1 similar issue > * > > igt@gem_create@create-ext-cpu-access-big: > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@gem_create@create-ext-cpu-access-big.html> (i915#6335 <https://gitlab.freedesktop.org/drm/intel/issues/6335>) > > o > > shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@gem_create@create-ext-cpu-access-big.html> (i915#6335 <https://gitlab.freedesktop.org/drm/intel/issues/6335>) > > * > > igt@gem_ctx_param@set-priority-not-supported: > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@gem_ctx_param@set-priority-not-supported.html> (fdo#109314 <https://bugs.freedesktop.org/show_bug.cgi?id=109314>) > > o > > shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@gem_ctx_param@set-priority-not-supported.html> (fdo#109314 <https://bugs.freedesktop.org/show_bug.cgi?id=109314>) > > * > > igt@gem_eio@hibernate: > > o shard-dg2: NOTRUN -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-1/igt@gem_eio@hibernate.html> (i915#7975 <https://gitlab.freedesktop.org/drm/intel/issues/7975> / i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213>) > * > > igt@gem_exec_balancer@bonded-dual: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@gem_exec_balancer@bonded-dual.html> (i915#4771 <https://gitlab.freedesktop.org/drm/intel/issues/4771>) +1 similar issue > * > > igt@gem_exec_balancer@parallel-bb-first: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@gem_exec_balancer@parallel-bb-first.html> (i915#4525 <https://gitlab.freedesktop.org/drm/intel/issues/4525>) > * > > igt@gem_exec_fair@basic-none-share@rcs0: > > o shard-tglu: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-10/igt@gem_exec_fair@basic-none-share@rcs0.html> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) > * > > igt@gem_exec_fair@basic-pace-share@rcs0: > > o shard-tglu: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) > * > > igt@gem_exec_fair@basic-pace-solo@rcs0: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@gem_exec_fair@basic-pace-solo@rcs0.html> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) +2 similar issues > * > > igt@gem_exec_fair@basic-sync: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@gem_exec_fair@basic-sync.html> (i915#4473 <https://gitlab.freedesktop.org/drm/intel/issues/4473> / i915#4771 <https://gitlab.freedesktop.org/drm/intel/issues/4771>) +1 similar issue > * > > igt@gem_exec_flush@basic-batch-kernel-default-cmd: > > o > > shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html> (fdo#109313 <https://bugs.freedesktop.org/show_bug.cgi?id=109313>) > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html> (fdo#109313 <https://bugs.freedesktop.org/show_bug.cgi?id=109313>) > > o > > shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html> (i915#3711 <https://gitlab.freedesktop.org/drm/intel/issues/3711>) > > * > > igt@gem_exec_gttfill@multigpu-basic: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-6/igt@gem_exec_gttfill@multigpu-basic.html> (i915#7697 <https://gitlab.freedesktop.org/drm/intel/issues/7697>) > * > > igt@gem_exec_reloc@basic-gtt-wc-noreloc: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html> (i915#3281 <https://gitlab.freedesktop.org/drm/intel/issues/3281>) +3 similar issues > * > > igt@gem_exec_reloc@basic-write-cpu-active: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@gem_exec_reloc@basic-write-cpu-active.html> (i915#3281 <https://gitlab.freedesktop.org/drm/intel/issues/3281>) +3 similar issues > * > > igt@gem_exec_reloc@basic-write-read: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-11/igt@gem_exec_reloc@basic-write-read.html> (i915#3281 <https://gitlab.freedesktop.org/drm/intel/issues/3281>) > * > > igt@gem_exec_schedule@preempt-queue-chain: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue-chain.html> (i915#4812 <https://gitlab.freedesktop.org/drm/intel/issues/4812>) > * > > igt@gem_exec_whisper@basic-normal: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@gem_exec_whisper@basic-normal.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@gem_exec_whisper@basic-normal.html> (i915#6363 <https://gitlab.freedesktop.org/drm/intel/issues/6363>) > * > > igt@gem_huc_copy@huc-copy: > > o > > shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@gem_huc_copy@huc-copy.html> (i915#2190 <https://gitlab.freedesktop.org/drm/intel/issues/2190>) > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@gem_huc_copy@huc-copy.html> (i915#2190 <https://gitlab.freedesktop.org/drm/intel/issues/2190>) > > * > > igt@gem_lmem_swapping@parallel-random-verify: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@gem_lmem_swapping@parallel-random-verify.html> (i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1 similar issue > * > > igt@gem_lmem_swapping@smem-oom: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@gem_lmem_swapping@smem-oom.html> (i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1 similar issue > * > > igt@gem_mmap_gtt@hang-user: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@gem_mmap_gtt@hang-user.html> (i915#4077 <https://gitlab.freedesktop.org/drm/intel/issues/4077>) +8 similar issues > * > > igt@gem_mmap_wc@set-cache-level: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@gem_mmap_wc@set-cache-level.html> (i915#4083 <https://gitlab.freedesktop.org/drm/intel/issues/4083>) +4 similar issues > * > > igt@gem_pwrite@basic-self: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-5/igt@gem_pwrite@basic-self.html> (i915#3282 <https://gitlab.freedesktop.org/drm/intel/issues/3282>) > * > > igt@gem_pxp@create-regular-buffer: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@gem_pxp@create-regular-buffer.html> (i915#4270 <https://gitlab.freedesktop.org/drm/intel/issues/4270>) > * > > igt@gem_pxp@regular-baseline-src-copy-readible: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@gem_pxp@regular-baseline-src-copy-readible.html> (i915#4270 <https://gitlab.freedesktop.org/drm/intel/issues/4270>) > * > > igt@gem_pxp@reject-modify-context-protection-off-2: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@gem_pxp@reject-modify-context-protection-off-2.html> (i915#4270 <https://gitlab.freedesktop.org/drm/intel/issues/4270>) > * > > igt@gem_readwrite@new-obj: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@gem_readwrite@new-obj.html> (i915#3282 <https://gitlab.freedesktop.org/drm/intel/issues/3282>) +2 similar issues > * > > igt@gem_render_copy@y-tiled-to-vebox-linear: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@gem_render_copy@y-tiled-to-vebox-linear.html> (i915#8428 <https://gitlab.freedesktop.org/drm/intel/issues/8428>) +3 similar issues > * > > igt@gem_set_tiling_vs_blt@tiled-to-untiled: > > o > > shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html> (i915#8411 <https://gitlab.freedesktop.org/drm/intel/issues/8411>) +1 similar issue > > o > > shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html> (i915#4079 <https://gitlab.freedesktop.org/drm/intel/issues/4079>) +1 similar issue > > * > > igt@gem_softpin@evict-snoop: > > o > > shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@gem_softpin@evict-snoop.html> (fdo#109312 <https://bugs.freedesktop.org/show_bug.cgi?id=109312>) > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@gem_softpin@evict-snoop.html> (fdo#109312 <https://bugs.freedesktop.org/show_bug.cgi?id=109312>) > > * > > igt@gem_tiled_blits@basic: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-5/igt@gem_tiled_blits@basic.html> (i915#4077 <https://gitlab.freedesktop.org/drm/intel/issues/4077>) +1 similar issue > * > > igt@gem_userptr_blits@access-control: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-6/igt@gem_userptr_blits@access-control.html> (i915#3297 <https://gitlab.freedesktop.org/drm/intel/issues/3297>) > * > > igt@gem_userptr_blits@coherency-sync: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-10/igt@gem_userptr_blits@coherency-sync.html> (i915#3297 <https://gitlab.freedesktop.org/drm/intel/issues/3297>) > * > > igt@gem_userptr_blits@readonly-unsync: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@gem_userptr_blits@readonly-unsync.html> (i915#3297 <https://gitlab.freedesktop.org/drm/intel/issues/3297>) > * > > igt@gen7_exec_parse@basic-allocation: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@gen7_exec_parse@basic-allocation.html> (fdo#109289 <https://bugs.freedesktop.org/show_bug.cgi?id=109289>) > * > > igt@gen9_exec_parse@basic-rejected: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@gen9_exec_parse@basic-rejected.html> (i915#2856 <https://gitlab.freedesktop.org/drm/intel/issues/2856>) +1 similar issue > * > > igt@gen9_exec_parse@bb-start-far: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@gen9_exec_parse@bb-start-far.html> (i915#2527 <https://gitlab.freedesktop.org/drm/intel/issues/2527> / i915#2856 <https://gitlab.freedesktop.org/drm/intel/issues/2856>) > * > > igt@i915_pm_backlight@fade-with-dpms: > > o > > shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-7/igt@i915_pm_backlight@fade-with-dpms.html> (i915#7561 <https://gitlab.freedesktop.org/drm/intel/issues/7561>) > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@i915_pm_backlight@fade-with-dpms.html> (i915#7561 <https://gitlab.freedesktop.org/drm/intel/issues/7561>) > > * > > igt@i915_pm_dc@dc6-dpms: > > o shard-tglu: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-10/igt@i915_pm_dc@dc6-dpms.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-3/igt@i915_pm_dc@dc6-dpms.html> (i915#3989 <https://gitlab.freedesktop.org/drm/intel/issues/3989> / i915#454 <https://gitlab.freedesktop.org/drm/intel/issues/454>) > * > > igt@i915_pm_dc@dc6-psr: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@i915_pm_dc@dc6-psr.html> (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) > * > > igt@i915_pm_dc@dc9-dpms: > > o shard-tglu: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-2/igt@i915_pm_dc@dc9-dpms.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@i915_pm_dc@dc9-dpms.html> (i915#4281 <https://gitlab.freedesktop.org/drm/intel/issues/4281>) > * > > igt@i915_pm_freq_api@freq-reset: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-7/igt@i915_pm_freq_api@freq-reset.html> (i915#8399 <https://gitlab.freedesktop.org/drm/intel/issues/8399>) > * > > igt@i915_pm_rpm@dpms-mode-unset-lpsp: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-12/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-1/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html> (i915#1397 <https://gitlab.freedesktop.org/drm/intel/issues/1397>) +1 similar issue > * > > igt@i915_pm_rpm@modeset-lpsp-stress: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@i915_pm_rpm@modeset-lpsp-stress.html> (i915#1397 <https://gitlab.freedesktop.org/drm/intel/issues/1397>) > * > > igt@i915_selftest@live@gt_heartbeat: > > o shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-apl3/igt@i915_selftest@live@gt_heartbeat.html> -> DMESG-FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html> (i915#5334 <https://gitlab.freedesktop.org/drm/intel/issues/5334>) > * > > igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html> (i915#4212 <https://gitlab.freedesktop.org/drm/intel/issues/4212>) > * > > igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs-cc: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs-cc.html> (i915#8502 <https://gitlab.freedesktop.org/drm/intel/issues/8502>) +7 similar issues > * > > igt@kms_async_flips@crc@pipe-a-hdmi-a-3: > > o shard-dg2: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-6/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html> (i915#8247 <https://gitlab.freedesktop.org/drm/intel/issues/8247>) +3 similar issues > * > > igt@kms_atomic@plane-primary-overlay-mutable-zpos: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> (i915#404 <https://gitlab.freedesktop.org/drm/intel/issues/404>) > * > > igt@kms_big_fb@4-tiled-32bpp-rotate-270: > > o > > shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html> (i915#5286 <https://gitlab.freedesktop.org/drm/intel/issues/5286>) +2 similar issues > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-10/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html> (fdo#111615 <https://bugs.freedesktop.org/show_bug.cgi?id=111615> / i915#5286 <https://gitlab.freedesktop.org/drm/intel/issues/5286>) +2 similar issues > > * > > igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> (i915#5138 <https://gitlab.freedesktop.org/drm/intel/issues/5138>) > * > > igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: > > o shard-mtlp: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (i915#3743 <https://gitlab.freedesktop.org/drm/intel/issues/3743>) +2 similar issues > * > > igt@kms_big_fb@linear-16bpp-rotate-90: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_big_fb@linear-16bpp-rotate-90.html> (fdo#111614 <https://bugs.freedesktop.org/show_bug.cgi?id=111614>) +1 similar issue > * > > igt@kms_big_fb@x-tiled-32bpp-rotate-270: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html> (fdo#111614 <https://bugs.freedesktop.org/show_bug.cgi?id=111614>) > * > > igt@kms_big_fb@x-tiled-8bpp-rotate-90: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-7/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html> (fdo#111614 <https://bugs.freedesktop.org/show_bug.cgi?id=111614> / i915#3638 <https://gitlab.freedesktop.org/drm/intel/issues/3638>) > * > > igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-8/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html> (i915#5190 <https://gitlab.freedesktop.org/drm/intel/issues/5190>) +2 similar issues > * > > igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> (fdo#111615 <https://bugs.freedesktop.org/show_bug.cgi?id=111615>) +6 similar issues > * > > igt@kms_big_fb@yf-tiled-16bpp-rotate-0: > > o > > shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html> (fdo#110723 <https://bugs.freedesktop.org/show_bug.cgi?id=110723>) +1 similar issue > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html> (fdo#111615 <https://bugs.freedesktop.org/show_bug.cgi?id=111615>) > > * > > igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html> (i915#4538 <https://gitlab.freedesktop.org/drm/intel/issues/4538> / i915#5190 <https://gitlab.freedesktop.org/drm/intel/issues/5190>) +1 similar issue > * > > igt@kms_big_joiner@2x-modeset: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@kms_big_joiner@2x-modeset.html> (i915#2705 <https://gitlab.freedesktop.org/drm/intel/issues/2705>) > * > > igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-3/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs.html> (i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>) +10 similar issues > * > > igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-6/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs.html> (i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>) > * > > igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-1/igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs.html> (i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354>) +2 similar issues > * > > igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html> (i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354>) > * > > igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs.html> (i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>) +2 similar issues > * > > igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html> (i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>) +1 similar issue > * > > igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-6/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html> (i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354>) +9 similar issues > * > > igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_mtl_rc_ccs: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-5/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_mtl_rc_ccs.html> (i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>) +5 similar issues > * > > igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs.html> (i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354>) +10 similar issues > * > > igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html> (i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>) +6 similar issues > * > > igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-7/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html> (i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>) +3 similar issues > * > > igt@kms_ccs@pipe-d-crc-sprite-planes-basic-yf_tiled_ccs: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-5/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-yf_tiled_ccs.html> (fdo#111615 <https://bugs.freedesktop.org/show_bug.cgi?id=111615> / i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>) > * > > igt@kms_cdclk@mode-transition: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-8/igt@kms_cdclk@mode-transition.html> (i915#3742 <https://gitlab.freedesktop.org/drm/intel/issues/3742>) > * > > igt@kms_cdclk@mode-transition@pipe-b-edp-1: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html> (i915#7213 <https://gitlab.freedesktop.org/drm/intel/issues/7213>) +2 similar issues > * > > igt@kms_cdclk@mode-transition@pipe-c-hdmi-a-3: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-c-hdmi-a-3.html> (i915#4087 <https://gitlab.freedesktop.org/drm/intel/issues/4087>) +5 similar issues > * > > igt@kms_cdclk@mode-transition@pipe-d-edp-1: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@kms_cdclk@mode-transition@pipe-d-edp-1.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579> / i915#7213 <https://gitlab.freedesktop.org/drm/intel/issues/7213>) > * > > igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html> (i915#4087 <https://gitlab.freedesktop.org/drm/intel/issues/4087> / i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579>) +1 similar issue > * > > igt@kms_chamelium_color@ctm-0-75: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@kms_chamelium_color@ctm-0-75.html> (fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) > * > > igt@kms_chamelium_color@ctm-negative: > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-5/igt@kms_chamelium_color@ctm-negative.html> (fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) > > o > > shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-6/igt@kms_chamelium_color@ctm-negative.html> (fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) > > * > > igt@kms_chamelium_frames@dp-frame-dump: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-6/igt@kms_chamelium_frames@dp-frame-dump.html> (i915#7828 <https://gitlab.freedesktop.org/drm/intel/issues/7828>) +2 similar issues > * > > igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html> (i915#7828 <https://gitlab.freedesktop.org/drm/intel/issues/7828>) +2 similar issues > * > > igt@kms_chamelium_hpd@dp-hpd-storm-disable: > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html> (i915#7828 <https://gitlab.freedesktop.org/drm/intel/issues/7828>) +2 similar issues > > o > > shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html> (i915#7828 <https://gitlab.freedesktop.org/drm/intel/issues/7828>) +3 similar issues > > * > > igt@kms_content_protection@lic@pipe-a-dp-4: > > o shard-dg2: NOTRUN -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-11/igt@kms_content_protection@lic@pipe-a-dp-4.html> (i915#7173 <https://gitlab.freedesktop.org/drm/intel/issues/7173>) +1 similar issue > * > > igt@kms_content_protection@mei_interface: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@kms_content_protection@mei_interface.html> (i915#8063 <https://gitlab.freedesktop.org/drm/intel/issues/8063>) > * > > igt@kms_content_protection@srm: > > o > > shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-5/igt@kms_content_protection@srm.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579> / i915#7118 <https://gitlab.freedesktop.org/drm/intel/issues/7118>) > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-4/igt@kms_content_protection@srm.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579> / 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>) +1 similar issue > > * > > igt@kms_cursor_crc@cursor-offscreen-512x170: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html> (fdo#109279 <https://bugs.freedesktop.org/show_bug.cgi?id=109279> / i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>) > * > > igt@kms_cursor_crc@cursor-random-32x32: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-7/igt@kms_cursor_crc@cursor-random-32x32.html> (i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579>) +1 similar issue > * > > igt@kms_cursor_crc@cursor-random-512x512: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-10/igt@kms_cursor_crc@cursor-random-512x512.html> (i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>) > * > > igt@kms_cursor_crc@cursor-rapid-movement-32x10: > > o > > shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html> (i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579>) +5 similar issues > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html> (i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579>) +2 similar issues > > * > > igt@kms_cursor_crc@cursor-sliding-512x170: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x170.html> (i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>) > * > > igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-8/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-5/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3.html> (fdo#103375 <https://bugs.freedesktop.org/show_bug.cgi?id=103375>) +2 similar issues > * > > igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html> (i915#4213 <https://gitlab.freedesktop.org/drm/intel/issues/4213>) +1 similar issue > * > > igt@kms_cursor_legacy@cursor-vs-flip-varying-size: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-6/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-3/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html> (i915#8248 <https://gitlab.freedesktop.org/drm/intel/issues/8248>) > * > > igt@kms_cursor_legacy@cursora-vs-flipb-toggle: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-8/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html> (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274> / i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354>) > * > > igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html> (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274>) > > o > > shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-3/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html> (i915#3546 <https://gitlab.freedesktop.org/drm/intel/issues/3546>) +3 similar issues > > * > > igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> (i915#2346 <https://gitlab.freedesktop.org/drm/intel/issues/2346>) > * > > igt@kms_display_modes@extended-mode-basic: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@kms_display_modes@extended-mode-basic.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579>) > * > > igt@kms_draw_crc@draw-method-mmap-gtt: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-10/igt@kms_draw_crc@draw-method-mmap-gtt.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579>) > * > > igt@kms_dsc@dsc-with-bpc-formats: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-10/igt@kms_dsc@dsc-with-bpc-formats.html> (i915#3840 <https://gitlab.freedesktop.org/drm/intel/issues/3840> / i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579>) > * > > igt@kms_dsc@dsc-with-output-formats: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579>) > * > > igt@kms_flip@2x-blocking-absolute-wf_vblank: > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-8/igt@kms_flip@2x-blocking-absolute-wf_vblank.html> (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274> / i915#3637 <https://gitlab.freedesktop.org/drm/intel/issues/3637>) +4 similar issues > > o > > shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-4/igt@kms_flip@2x-blocking-absolute-wf_vblank.html> (i915#3637 <https://gitlab.freedesktop.org/drm/intel/issues/3637>) +5 similar issues > > * > > igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-11/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html> (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274>) > * > > igt@kms_flip@2x-flip-vs-panning-vs-hang: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@kms_flip@2x-flip-vs-panning-vs-hang.html> (fdo#111825 <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +3 similar issues > * > > igt@kms_flip@2x-flip-vs-rmfb-interruptible: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-snb7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111767 <https://bugs.freedesktop.org/show_bug.cgi?id=111767>) > * > > igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html> (i915#2587 <https://gitlab.freedesktop.org/drm/intel/issues/2587> / i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672> / i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579>) +1 similar issue > * > > igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html> (i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672> / i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579>) > * > > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html> (i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672> / i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579>) > * > > igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579>) +7 similar issues > * > > igt@kms_force_connector_basic@prune-stale-modes: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-3/igt@kms_force_connector_basic@prune-stale-modes.html> (i915#5274 <https://gitlab.freedesktop.org/drm/intel/issues/5274>) > * > > igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html> (i915#8708 <https://gitlab.freedesktop.org/drm/intel/issues/8708>) +2 similar issues > * > > igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html> (i915#6880 <https://gitlab.freedesktop.org/drm/intel/issues/6880>) +1 similar issue > * > > igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render.html> (i915#3458 <https://gitlab.freedesktop.org/drm/intel/issues/3458>) +4 similar issues > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html> (i915#8708 <https://gitlab.freedesktop.org/drm/intel/issues/8708>) +2 similar issues > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html> (i915#1825 <https://gitlab.freedesktop.org/drm/intel/issues/1825>) +15 similar issues > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html> (fdo#111825 <https://bugs.freedesktop.org/show_bug.cgi?id=111825> / i915#1825 <https://gitlab.freedesktop.org/drm/intel/issues/1825>) +10 similar issues > * > > igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html> (fdo#110189 <https://bugs.freedesktop.org/show_bug.cgi?id=110189>) +10 similar issues > * > > igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html> (i915#3023 <https://gitlab.freedesktop.org/drm/intel/issues/3023>) +6 similar issues > * > > igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html> (fdo#109280 <https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +13 similar issues > * > > igt@kms_invalid_mode@clock-too-high@edp-1-pipe-b: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-4/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-b.html> (i915#6403 <https://gitlab.freedesktop.org/drm/intel/issues/6403>) +2 similar issues > * > > igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-4/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579> / i915#6403 <https://gitlab.freedesktop.org/drm/intel/issues/6403>) > * > > igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-3: > > o shard-dg2: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-3.html> (fdo#103375 <https://bugs.freedesktop.org/show_bug.cgi?id=103375>) > * > > igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-hdmi-a-3: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-hdmi-a-3.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579> / i915#5176 <https://gitlab.freedesktop.org/drm/intel/issues/5176>) +1 similar issue > * > > igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html> (i915#5176 <https://gitlab.freedesktop.org/drm/intel/issues/5176>) +5 similar issues > * > > igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-2: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-2.html> (i915#5176 <https://gitlab.freedesktop.org/drm/intel/issues/5176>) > * > > igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-b-hdmi-a-2: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-b-hdmi-a-2.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579> / i915#5176 <https://gitlab.freedesktop.org/drm/intel/issues/5176>) > * > > igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-1: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-1.html> (i915#5176 <https://gitlab.freedesktop.org/drm/intel/issues/5176>) +2 similar issues > * > > igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-d-hdmi-a-1: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-d-hdmi-a-1.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579> / i915#5176 <https://gitlab.freedesktop.org/drm/intel/issues/5176>) > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html> (i915#5235 <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +2 similar issues > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579> / i915#5235 <https://gitlab.freedesktop.org/drm/intel/issues/5235>) > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-2: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-2.html> (i915#5235 <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +3 similar issues > * > > igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-hdmi-a-1: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-snb1/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-hdmi-a-1.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +39 similar issues > * > > igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4.html> (i915#5235 <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +8 similar issues > * > > igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-1: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-snb1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-1.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579>) +15 similar issues > * > > igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579> / i915#5235 <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +3 similar issues > * > > igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-dp-4: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-dp-4.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579> / i915#5235 <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +2 similar issues > * > > igt@kms_prime@basic-modeset-hybrid: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-6/igt@kms_prime@basic-modeset-hybrid.html> (i915#6524 <https://gitlab.freedesktop.org/drm/intel/issues/6524> / i915#6805 <https://gitlab.freedesktop.org/drm/intel/issues/6805>) > * > > igt@kms_psr2_sf@cursor-plane-update-sf: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@kms_psr2_sf@cursor-plane-update-sf.html> (fdo#111068 <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) > * > > igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html> (fdo#111068 <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) +1 similar issue > * > > igt@kms_psr@cursor_mmap_gtt: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-7/igt@kms_psr@cursor_mmap_gtt.html> (i915#1072 <https://gitlab.freedesktop.org/drm/intel/issues/1072>) > * > > igt@kms_psr@sprite_render: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_psr@sprite_render.html> (i915#1072 <https://gitlab.freedesktop.org/drm/intel/issues/1072>) +1 similar issue > * > > igt@kms_setmode@basic@pipe-a-vga-1: > > o shard-snb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-snb7/igt@kms_setmode@basic@pipe-a-vga-1.html> (i915#5465 <https://gitlab.freedesktop.org/drm/intel/issues/5465>) +1 similar issue > * > > igt@kms_tv_load_detect@load-detect: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@kms_tv_load_detect@load-detect.html> (fdo#109309 <https://bugs.freedesktop.org/show_bug.cgi?id=109309>) > * > > igt@kms_vblank@pipe-c-wait-busy: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-6/igt@kms_vblank@pipe-c-wait-busy.html> (i915#4070 <https://gitlab.freedesktop.org/drm/intel/issues/4070> / i915#6768 <https://gitlab.freedesktop.org/drm/intel/issues/6768>) +1 similar issue > * > > igt@kms_vblank@pipe-d-query-forked-busy: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-6/igt@kms_vblank@pipe-d-query-forked-busy.html> (i915#4070 <https://gitlab.freedesktop.org/drm/intel/issues/4070> / i915#533 <https://gitlab.freedesktop.org/drm/intel/issues/533> / i915#6768 <https://gitlab.freedesktop.org/drm/intel/issues/6768>) +2 similar issues > * > > igt@kms_writeback@writeback-check-output: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-6/igt@kms_writeback@writeback-check-output.html> (i915#2437 <https://gitlab.freedesktop.org/drm/intel/issues/2437>) > * > > igt@kms_writeback@writeback-fb-id: > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@kms_writeback@writeback-fb-id.html> (i915#2437 <https://gitlab.freedesktop.org/drm/intel/issues/2437>) > > o > > shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@kms_writeback@writeback-fb-id.html> (i915#2437 <https://gitlab.freedesktop.org/drm/intel/issues/2437>) > > * > > igt@perf@unprivileged-single-ctx-counters: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-4/igt@perf@unprivileged-single-ctx-counters.html> (fdo#109289 <https://bugs.freedesktop.org/show_bug.cgi?id=109289>) > * > > igt@perf_pmu@busy-double-start@vecs1: > > o shard-dg2: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html> (i915#4349 <https://gitlab.freedesktop.org/drm/intel/issues/4349>) +3 similar issues > * > > igt@prime_vgem@fence-read-hang: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@prime_vgem@fence-read-hang.html> (i915#3708 <https://gitlab.freedesktop.org/drm/intel/issues/3708>) +1 similar issue > * > > igt@sysfs_heartbeat_interval@precise@vecs0: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@sysfs_heartbeat_interval@precise@vecs0.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@sysfs_heartbeat_interval@precise@vecs0.html> (i915#8332 <https://gitlab.freedesktop.org/drm/intel/issues/8332>) > * > > igt@v3d/v3d_mmap@mmap-bo: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@v3d/v3d_mmap@mmap-bo.html> (i915#2575 <https://gitlab.freedesktop.org/drm/intel/issues/2575>) +7 similar issues > * > > igt@v3d/v3d_perfmon@get-values-invalid-perfmon: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-3/igt@v3d/v3d_perfmon@get-values-invalid-perfmon.html> (fdo#109315 <https://bugs.freedesktop.org/show_bug.cgi?id=109315> / i915#2575 <https://gitlab.freedesktop.org/drm/intel/issues/2575>) +4 similar issues > * > > igt@v3d/v3d_submit_cl@multisync-out-syncs: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-6/igt@v3d/v3d_submit_cl@multisync-out-syncs.html> (i915#2575 <https://gitlab.freedesktop.org/drm/intel/issues/2575>) +2 similar issues > * > > igt@v3d/v3d_submit_cl@simple-flush-cache: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-6/igt@v3d/v3d_submit_cl@simple-flush-cache.html> (fdo#109315 <https://bugs.freedesktop.org/show_bug.cgi?id=109315>) +1 similar issue > * > > igt@vc4/vc4_create_bo@create-bo-0: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@vc4/vc4_create_bo@create-bo-0.html> (i915#7711 <https://gitlab.freedesktop.org/drm/intel/issues/7711>) +3 similar issues > * > > igt@vc4/vc4_perfmon@create-single-perfmon: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-6/igt@vc4/vc4_perfmon@create-single-perfmon.html> (i915#7711 <https://gitlab.freedesktop.org/drm/intel/issues/7711>) > * > > igt@vc4/vc4_wait_bo@used-bo-0ns: > > o > > shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@vc4/vc4_wait_bo@used-bo-0ns.html> (i915#2575 <https://gitlab.freedesktop.org/drm/intel/issues/2575>) +3 similar issues > > o > > shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-6/igt@vc4/vc4_wait_bo@used-bo-0ns.html> (i915#7711 <https://gitlab.freedesktop.org/drm/intel/issues/7711>) +3 similar issues > > > Possible fixes > > * > > igt@gem_barrier_race@remote-request@rcs0: > > o shard-rkl: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-1/igt@gem_barrier_race@remote-request@rcs0.html> (i915#8178 <https://gitlab.freedesktop.org/drm/intel/issues/8178>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@gem_barrier_race@remote-request@rcs0.html> > * > > igt@gem_ctx_exec@basic-nohangcheck: > > o shard-rkl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html> (i915#6268 <https://gitlab.freedesktop.org/drm/intel/issues/6268>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@gem_ctx_exec@basic-nohangcheck.html> > * > > igt@gem_ctx_persistence@engines-hostile@vcs0: > > o shard-mtlp: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@gem_ctx_persistence@engines-hostile@vcs0.html> (i915#2410 <https://gitlab.freedesktop.org/drm/intel/issues/2410>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@gem_ctx_persistence@engines-hostile@vcs0.html> +3 similar issues > * > > igt@gem_eio@context-create: > > o {shard-dg1}: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg1-17/igt@gem_eio@context-create.html> (i915#4423 <https://gitlab.freedesktop.org/drm/intel/issues/4423>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg1-19/igt@gem_eio@context-create.html> > * > > igt@gem_eio@in-flight-contexts-10ms: > > o shard-mtlp: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@gem_eio@in-flight-contexts-10ms.html> (i915#7941 <https://gitlab.freedesktop.org/drm/intel/issues/7941>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@gem_eio@in-flight-contexts-10ms.html> > * > > igt@gem_eio@in-flight-contexts-immediate: > > o shard-mtlp: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@gem_eio@in-flight-contexts-immediate.html> (i915#8503 <https://gitlab.freedesktop.org/drm/intel/issues/8503>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@gem_eio@in-flight-contexts-immediate.html> > * > > igt@gem_eio@unwedge-stress: > > o {shard-dg1}: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg1-16/igt@gem_eio@unwedge-stress.html> (i915#5784 <https://gitlab.freedesktop.org/drm/intel/issues/5784>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg1-14/igt@gem_eio@unwedge-stress.html> > * > > igt@gem_exec_fair@basic-deadline: > > o shard-glk: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk7/igt@gem_exec_fair@basic-deadline.html> (i915#2846 <https://gitlab.freedesktop.org/drm/intel/issues/2846>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-glk6/igt@gem_exec_fair@basic-deadline.html> > * > > igt@gem_exec_schedule@deep@vecs0: > > o shard-mtlp: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@gem_exec_schedule@deep@vecs0.html> (i915#8545 <https://gitlab.freedesktop.org/drm/intel/issues/8545>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-4/igt@gem_exec_schedule@deep@vecs0.html> > * > > igt@gem_exec_suspend@basic-s0@smem: > > o shard-tglu: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-5/igt@gem_exec_suspend@basic-s0@smem.html> (i915#5122 <https://gitlab.freedesktop.org/drm/intel/issues/5122> / i915#5251 <https://gitlab.freedesktop.org/drm/intel/issues/5251>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-8/igt@gem_exec_suspend@basic-s0@smem.html> > * > > igt@gem_exec_whisper@basic-queues-all: > > o shard-mtlp: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@gem_exec_whisper@basic-queues-all.html> (i915#6363 <https://gitlab.freedesktop.org/drm/intel/issues/6363>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-3/igt@gem_exec_whisper@basic-queues-all.html> > * > > igt@gem_mmap_gtt@fault-concurrent-y: > > o shard-snb: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-snb6/igt@gem_mmap_gtt@fault-concurrent-y.html> (i915#5161 <https://gitlab.freedesktop.org/drm/intel/issues/5161>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-snb5/igt@gem_mmap_gtt@fault-concurrent-y.html> > * > > igt@gem_workarounds@suspend-resume-context: > > o shard-dg2: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-5/igt@gem_workarounds@suspend-resume-context.html> (fdo#103375 <https://bugs.freedesktop.org/show_bug.cgi?id=103375>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-11/igt@gem_workarounds@suspend-resume-context.html> +4 similar issues > * > > igt@i915_hangman@gt-engine-error@vcs0: > > o shard-mtlp: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@i915_hangman@gt-engine-error@vcs0.html> (i915#7069 <https://gitlab.freedesktop.org/drm/intel/issues/7069>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@i915_hangman@gt-engine-error@vcs0.html> > * > > igt@i915_module_load@reload-with-fault-injection: > > o shard-mtlp: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html> (i915#8489 <https://gitlab.freedesktop.org/drm/intel/issues/8489>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html> > * > > igt@i915_pm_rpm@gem-execbuf@smem0: > > o shard-mtlp: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@i915_pm_rpm@gem-execbuf@smem0.html> (i915#8457 <https://gitlab.freedesktop.org/drm/intel/issues/8457>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-3/igt@i915_pm_rpm@gem-execbuf@smem0.html> > * > > igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: > > o {shard-dg1}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html> (i915#1397 <https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg1-15/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html> +1 similar issue > * > > igt@i915_selftest@live@requests: > > o shard-mtlp: DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@i915_selftest@live@requests.html> (i915#8497 <https://gitlab.freedesktop.org/drm/intel/issues/8497>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@i915_selftest@live@requests.html> > * > > igt@i915_selftest@live@workarounds: > > o shard-mtlp: DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@i915_selftest@live@workarounds.html> (i915#6763 <https://gitlab.freedesktop.org/drm/intel/issues/6763>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@i915_selftest@live@workarounds.html> > * > > igt@i915_selftest@perf@request: > > o shard-mtlp: DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@i915_selftest@perf@request.html> (i915#8573 <https://gitlab.freedesktop.org/drm/intel/issues/8573>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-3/igt@i915_selftest@perf@request.html> > * > > igt@kms_big_fb@4-tiled-64bpp-rotate-180: > > o shard-mtlp: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html> (i915#5138 <https://gitlab.freedesktop.org/drm/intel/issues/5138>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html> > * > > igt@kms_cursor_crc@cursor-random-256x85@pipe-d-edp-1: > > o shard-mtlp: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@kms_cursor_crc@cursor-random-256x85@pipe-d-edp-1.html> -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-256x85@pipe-d-edp-1.html> +1 similar issue > * > > igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > > o shard-apl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> (i915#2346 <https://gitlab.freedesktop.org/drm/intel/issues/2346>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> > * > > igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary: > > o shard-dg2: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html> (i915#6880 <https://gitlab.freedesktop.org/drm/intel/issues/6880>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html> +3 similar issues > * > > igt@perf_pmu@busy-double-start@ccs0: > > o shard-mtlp: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@perf_pmu@busy-double-start@ccs0.html> (i915#4349 <https://gitlab.freedesktop.org/drm/intel/issues/4349>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@perf_pmu@busy-double-start@ccs0.html> > > > Warnings > > * > > igt@gem_lmem_swapping@smem-oom@lmem0: > > o shard-dg2: TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html> (i915#5493 <https://gitlab.freedesktop.org/drm/intel/issues/5493>) -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@gem_lmem_swapping@smem-oom@lmem0.html> (i915#4936 <https://gitlab.freedesktop.org/drm/intel/issues/4936> / i915#5493 <https://gitlab.freedesktop.org/drm/intel/issues/5493>) > * > > igt@i915_module_load@reload-with-fault-injection: > > o shard-dg2: WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-12/igt@i915_module_load@reload-with-fault-injection.html> (i915#6596 <https://gitlab.freedesktop.org/drm/intel/issues/6596> / i915#7356 <https://gitlab.freedesktop.org/drm/intel/issues/7356>) -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html> (i915#7061 <https://gitlab.freedesktop.org/drm/intel/issues/7061>) > * > > igt@i915_pm_rc6_residency@rc6-idle@bcs0: > > o shard-tglu: WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html> (i915#2681 <https://gitlab.freedesktop.org/drm/intel/issues/2681>) -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html> (i915#2681 <https://gitlab.freedesktop.org/drm/intel/issues/2681> / i915#3591 <https://gitlab.freedesktop.org/drm/intel/issues/3591>) > * > > igt@i915_pm_rc6_residency@rc6-idle@rcs0: > > o shard-tglu: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> (i915#2681 <https://gitlab.freedesktop.org/drm/intel/issues/2681> / i915#3591 <https://gitlab.freedesktop.org/drm/intel/issues/3591>) -> WARN <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> (i915#2681 <https://gitlab.freedesktop.org/drm/intel/issues/2681>) > * > > igt@kms_async_flips@crc@pipe-b-edp-1: > > o shard-mtlp: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@kms_async_flips@crc@pipe-b-edp-1.html> (i915#8247 <https://gitlab.freedesktop.org/drm/intel/issues/8247>) -> DMESG-FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@kms_async_flips@crc@pipe-b-edp-1.html> (i915#8561 <https://gitlab.freedesktop.org/drm/intel/issues/8561>) +1 similar issue > * > > igt@kms_content_protection@mei_interface: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-6/igt@kms_content_protection@mei_interface.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579> / i915#7118 <https://gitlab.freedesktop.org/drm/intel/issues/7118>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-11/igt@kms_content_protection@mei_interface.html> (i915#4579 <https://gitlab.freedesktop.org/drm/intel/issues/4579> / i915#7118 <https://gitlab.freedesktop.org/drm/intel/issues/7118> / i915#7162 <https://gitlab.freedesktop.org/drm/intel/issues/7162>) > * > > igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > > o shard-mtlp: DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> (i915#2017 <https://gitlab.freedesktop.org/drm/intel/issues/2017> / i915#5954 <https://gitlab.freedesktop.org/drm/intel/issues/5954>) -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> (i915#2346 <https://gitlab.freedesktop.org/drm/intel/issues/2346>) > * > > igt@kms_force_connector_basic@force-load-detect: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html> (fdo#109285 <https://bugs.freedesktop.org/show_bug.cgi?id=109285>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html> (fdo#109285 <https://bugs.freedesktop.org/show_bug.cgi?id=109285> / i915#4098 <https://gitlab.freedesktop.org/drm/intel/issues/4098>) > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > > Build changes > > * CI: CI-20190529 -> None > * IGT: IGT_7352 -> IGTPW_9286 > > CI-20190529: 20190529 > CI_DRM_13328: 12cd6b2d321d9c034f3d4ba14788d68cb8da4eac @ > git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_9286: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/index.html > IGT_7352: 471bfababd070e1dac0ebb87470ac4f2ae85e663 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Use intel_cmds_info in i915_pm_rpm (rev3) 2023-06-27 10:58 [igt-dev] [PATCH i-g-t v2 0/3] Use intel_cmds_info in i915_pm_rpm Karolina Stolarek ` (5 preceding siblings ...) 2023-06-28 21:45 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-06-30 7:29 ` Patchwork 6 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2023-06-30 7:29 UTC (permalink / raw) To: Karolina Stolarek; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 71683 bytes --] == Series Details == Series: Use intel_cmds_info in i915_pm_rpm (rev3) URL : https://patchwork.freedesktop.org/series/118102/ State : success == Summary == CI Bug Log - changes from IGT_7352_full -> IGTPW_9286_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in IGTPW_9286_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][1] ([i915#8411]) +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-tglu: NOTRUN -> [SKIP][2] ([i915#7701]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@device_reset@cold-reset-bound.html - shard-rkl: NOTRUN -> [SKIP][3] ([i915#7701]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8414]) +4 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@drm_fdinfo@busy-idle@bcs0.html * igt@drm_fdinfo@busy-idle@ccs0: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#4579] / [i915#8414]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@drm_fdinfo@busy-idle@ccs0.html * igt@feature_discovery@chamelium: - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#4854]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@feature_discovery@chamelium.html * igt@feature_discovery@display-3x: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#1839]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@feature_discovery@display-3x.html * igt@gem_basic@multigpu-create-close: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#7697]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-6/igt@gem_basic@multigpu-create-close.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#4873]) +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@gem_caching@writes.html * igt@gem_create@busy-create@lmem0: - shard-dg2: [PASS][10] -> [FAIL][11] ([i915#8758]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-7/igt@gem_create@busy-create@lmem0.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-8/igt@gem_create@busy-create@lmem0.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglu: NOTRUN -> [SKIP][12] ([i915#6335]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@gem_create@create-ext-cpu-access-big.html - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#6335]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_param@set-priority-not-supported: - shard-tglu: NOTRUN -> [SKIP][14] ([fdo#109314]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@gem_ctx_param@set-priority-not-supported.html - shard-rkl: NOTRUN -> [SKIP][15] ([fdo#109314]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][16] ([i915#7975] / [i915#8213]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-1/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#4771]) +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][18] ([i915#4525]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: NOTRUN -> [FAIL][19] ([i915#2842]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-10/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [PASS][20] -> [FAIL][21] ([i915#2842]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [PASS][22] -> [FAIL][23] ([i915#2842]) +2 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-sync: - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#4473] / [i915#4771]) +1 similar issue [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-rkl: NOTRUN -> [SKIP][25] ([fdo#109313]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html - shard-tglu: NOTRUN -> [SKIP][26] ([fdo#109313]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#3711]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_gttfill@multigpu-basic: - shard-rkl: NOTRUN -> [SKIP][28] ([i915#7697]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-6/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][29] ([i915#3281]) +3 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-write-cpu-active: - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#3281]) +3 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@gem_exec_reloc@basic-write-cpu-active.html * igt@gem_exec_reloc@basic-write-read: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#3281]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-11/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4812]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_whisper@basic-normal: - shard-mtlp: [PASS][33] -> [FAIL][34] ([i915#6363]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@gem_exec_whisper@basic-normal.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@gem_exec_whisper@basic-normal.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#2190]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@gem_huc_copy@huc-copy.html - shard-tglu: NOTRUN -> [SKIP][36] ([i915#2190]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4613]) +1 similar issue [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@smem-oom: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#4613]) +1 similar issue [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@gem_lmem_swapping@smem-oom.html * igt@gem_mmap_gtt@hang-user: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4077]) +8 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@gem_mmap_gtt@hang-user.html * igt@gem_mmap_wc@set-cache-level: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4083]) +4 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@gem_mmap_wc@set-cache-level.html * igt@gem_pwrite@basic-self: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3282]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-5/igt@gem_pwrite@basic-self.html * igt@gem_pxp@create-regular-buffer: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#4270]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-tglu: NOTRUN -> [SKIP][43] ([i915#4270]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4270]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_readwrite@new-obj: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#3282]) +2 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@gem_readwrite@new-obj.html * igt@gem_render_copy@y-tiled-to-vebox-linear: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#8428]) +3 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@gem_render_copy@y-tiled-to-vebox-linear.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#8411]) +1 similar issue [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4079]) +1 similar issue [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop: - shard-rkl: NOTRUN -> [SKIP][49] ([fdo#109312]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@gem_softpin@evict-snoop.html - shard-tglu: NOTRUN -> [SKIP][50] ([fdo#109312]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4077]) +1 similar issue [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-5/igt@gem_tiled_blits@basic.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#3297]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-6/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@coherency-sync: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3297]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-10/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@readonly-unsync: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#3297]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@gem_userptr_blits@readonly-unsync.html * igt@gen7_exec_parse@basic-allocation: - shard-rkl: NOTRUN -> [SKIP][55] ([fdo#109289]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@gen7_exec_parse@basic-allocation.html * igt@gen9_exec_parse@basic-rejected: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#2856]) +1 similar issue [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-start-far: - shard-tglu: NOTRUN -> [SKIP][57] ([i915#2527] / [i915#2856]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@gen9_exec_parse@bb-start-far.html * igt@i915_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#7561]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-7/igt@i915_pm_backlight@fade-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][59] ([i915#7561]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@i915_pm_backlight@fade-with-dpms.html * igt@i915_pm_dc@dc6-dpms: - shard-tglu: [PASS][60] -> [FAIL][61] ([i915#3989] / [i915#454]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-10/igt@i915_pm_dc@dc6-dpms.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-3/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_dc@dc6-psr: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#658]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_dc@dc9-dpms: - shard-tglu: [PASS][63] -> [SKIP][64] ([i915#4281]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-2/igt@i915_pm_dc@dc9-dpms.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_freq_api@freq-reset: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#8399]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-7/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [PASS][66] -> [SKIP][67] ([i915#1397]) +1 similar issue [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-12/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-1/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress: - shard-rkl: [PASS][68] -> [SKIP][69] ([i915#1397]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_selftest@live@gt_heartbeat: - shard-apl: [PASS][70] -> [DMESG-FAIL][71] ([i915#5334]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-apl3/igt@i915_selftest@live@gt_heartbeat.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4212]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs-cc: - shard-tglu: NOTRUN -> [SKIP][73] ([i915#8502]) +7 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs-cc.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][74] ([i915#8247]) +3 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-6/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#404]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#5286]) +2 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html - shard-tglu: NOTRUN -> [SKIP][77] ([fdo#111615] / [i915#5286]) +2 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-10/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][78] -> [FAIL][79] ([i915#5138]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-mtlp: NOTRUN -> [FAIL][80] ([i915#3743]) +2 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][81] ([fdo#111614]) +1 similar issue [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][82] ([fdo#111614]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][83] ([fdo#111614] / [i915#3638]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-7/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#5190]) +2 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-8/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [SKIP][85] ([fdo#111615]) +6 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][86] ([fdo#110723]) +1 similar issue [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html - shard-tglu: NOTRUN -> [SKIP][87] ([fdo#111615]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#4538] / [i915#5190]) +1 similar issue [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_joiner@2x-modeset: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#2705]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@kms_big_joiner@2x-modeset.html * igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#6095]) +10 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-3/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#3886] / [i915#5354] / [i915#6095]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-6/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#3689] / [i915#5354]) +2 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-1/igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#3689] / [i915#3886] / [i915#5354]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#5354] / [i915#6095]) +2 similar issues [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][95] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +1 similar issue [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#5354]) +9 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-6/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_mtl_rc_ccs: - shard-tglu: NOTRUN -> [SKIP][97] ([i915#5354] / [i915#6095]) +5 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-5/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#5354]) +10 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#3886] / [i915#6095]) +6 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][100] ([i915#3689] / [i915#5354] / [i915#6095]) +3 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-7/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][101] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-5/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-yf_tiled_ccs.html * igt@kms_cdclk@mode-transition: - shard-tglu: NOTRUN -> [SKIP][102] ([i915#3742]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-8/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#7213]) +2 similar issues [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@mode-transition@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#4087]) +5 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-c-hdmi-a-3.html * igt@kms_cdclk@mode-transition@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#4579] / [i915#7213]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@kms_cdclk@mode-transition@pipe-d-edp-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#4087] / [i915#4579]) +1 similar issue [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_chamelium_color@ctm-0-75: - shard-rkl: NOTRUN -> [SKIP][107] ([fdo#111827]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_color@ctm-negative: - shard-tglu: NOTRUN -> [SKIP][108] ([fdo#111827]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-5/igt@kms_chamelium_color@ctm-negative.html - shard-mtlp: NOTRUN -> [SKIP][109] ([fdo#111827]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-6/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#7828]) +2 similar issues [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-6/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#7828]) +2 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-tglu: NOTRUN -> [SKIP][112] ([i915#7828]) +2 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#7828]) +3 similar issues [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_content_protection@lic@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][114] ([i915#7173]) +1 similar issue [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-11/igt@kms_content_protection@lic@pipe-a-dp-4.html * igt@kms_content_protection@mei_interface: - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#8063]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@kms_content_protection@mei_interface.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#4579] / [i915#7118]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-5/igt@kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][117] ([i915#4579] / [i915#6944] / [i915#7116] / [i915#7118]) +1 similar issue [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-4/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][118] ([fdo#109279] / [i915#3359]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#3555] / [i915#4579]) +1 similar issue [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-7/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#3359]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-10/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#3555] / [i915#4579]) +5 similar issues [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html - shard-tglu: NOTRUN -> [SKIP][122] ([i915#3555] / [i915#4579]) +2 similar issues [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#3359]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3: - shard-dg2: [PASS][124] -> [FAIL][125] ([fdo#103375]) +2 similar issues [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-8/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-5/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#4213]) +1 similar issue [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursor-vs-flip-varying-size: - shard-mtlp: [PASS][127] -> [FAIL][128] ([i915#8248]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-6/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-3/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][129] ([fdo#109274] / [i915#5354]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-8/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-tglu: NOTRUN -> [SKIP][130] ([fdo#109274]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#3546]) +3 similar issues [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-3/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][132] -> [FAIL][133] ([i915#2346]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@extended-mode-basic: - shard-tglu: NOTRUN -> [SKIP][134] ([i915#4579]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#4579]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-10/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-tglu: NOTRUN -> [SKIP][136] ([i915#3840] / [i915#4579]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-10/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#4579]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][138] ([fdo#109274] / [i915#3637]) +4 similar issues [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-8/igt@kms_flip@2x-blocking-absolute-wf_vblank.html - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#3637]) +5 similar issues [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-4/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][140] ([fdo#109274]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-11/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-rkl: NOTRUN -> [SKIP][141] ([fdo#111825]) +3 similar issues [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-snb: NOTRUN -> [SKIP][142] ([fdo#109271] / [fdo#111767]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-snb7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@flip-vs-panning-interruptible@b-edp1: - shard-mtlp: [PASS][143] -> [INCOMPLETE][144] ([i915#8731]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@kms_flip@flip-vs-panning-interruptible@b-edp1.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@kms_flip@flip-vs-panning-interruptible@b-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#2587] / [i915#2672] / [i915#4579]) +1 similar issue [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#2672] / [i915#4579]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#2672] / [i915#4579]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#4579]) +7 similar issues [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#5274]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-3/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#8708]) +2 similar issues [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu: - shard-dg2: [PASS][151] -> [FAIL][152] ([i915#6880]) +1 similar issue [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#3458]) +4 similar issues [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#8708]) +2 similar issues [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#1825]) +15 similar issues [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-rkl: NOTRUN -> [SKIP][156] ([fdo#111825] / [i915#1825]) +10 similar issues [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][157] ([fdo#110189]) +10 similar issues [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#3023]) +6 similar issues [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][159] ([fdo#109280]) +13 similar issues [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_invalid_mode@clock-too-high@edp-1-pipe-b: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#6403]) +2 similar issues [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-4/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-b.html * igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#4579] / [i915#6403]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-4/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][162] ([fdo#103375]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#4579] / [i915#5176]) +1 similar issue [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#5176]) +5 similar issues [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#5176]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#4579] / [i915#5176]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#5176]) +2 similar issues [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][168] ([i915#4579] / [i915#5176]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-9/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#5235]) +2 similar issues [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#4579] / [i915#5235]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#5235]) +3 similar issues [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [SKIP][172] ([fdo#109271]) +39 similar issues [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-snb1/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#5235]) +8 similar issues [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-snb: NOTRUN -> [SKIP][174] ([fdo#109271] / [i915#4579]) +15 similar issues [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-snb1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#4579] / [i915#5235]) +3 similar issues [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#4579] / [i915#5235]) +2 similar issues [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-dp-4.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#6524] / [i915#6805]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-6/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@cursor-plane-update-sf: - shard-rkl: NOTRUN -> [SKIP][178] ([fdo#111068] / [i915#658]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@kms_psr2_sf@cursor-plane-update-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][179] ([fdo#111068] / [i915#658]) +1 similar issue [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@kms_psr@cursor_mmap_gtt: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#1072]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-7/igt@kms_psr@cursor_mmap_gtt.html * igt@kms_psr@sprite_render: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#1072]) +1 similar issue [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@kms_psr@sprite_render.html * igt@kms_setmode@basic@pipe-a-vga-1: - shard-snb: NOTRUN -> [FAIL][182] ([i915#5465]) +1 similar issue [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-snb7/igt@kms_setmode@basic@pipe-a-vga-1.html * igt@kms_tv_load_detect@load-detect: - shard-rkl: NOTRUN -> [SKIP][183] ([fdo#109309]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@pipe-c-wait-busy: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#4070] / [i915#6768]) +1 similar issue [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-6/igt@kms_vblank@pipe-c-wait-busy.html * igt@kms_vblank@pipe-d-query-forked-busy: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#4070] / [i915#533] / [i915#6768]) +2 similar issues [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-6/igt@kms_vblank@pipe-d-query-forked-busy.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#2437]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-6/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-tglu: NOTRUN -> [SKIP][187] ([i915#2437]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@kms_writeback@writeback-fb-id.html - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#2437]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@kms_writeback@writeback-fb-id.html * igt@perf@unprivileged-single-ctx-counters: - shard-tglu: NOTRUN -> [SKIP][189] ([fdo#109289]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-4/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][190] ([i915#4349]) +3 similar issues [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html * igt@prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#3708]) +1 similar issue [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@prime_vgem@fence-read-hang.html * igt@sysfs_heartbeat_interval@precise@vecs0: - shard-mtlp: [PASS][192] -> [FAIL][193] ([i915#8332]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@sysfs_heartbeat_interval@precise@vecs0.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@sysfs_heartbeat_interval@precise@vecs0.html * igt@v3d/v3d_mmap@mmap-bo: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#2575]) +7 similar issues [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@v3d/v3d_mmap@mmap-bo.html * igt@v3d/v3d_perfmon@get-values-invalid-perfmon: - shard-tglu: NOTRUN -> [SKIP][195] ([fdo#109315] / [i915#2575]) +4 similar issues [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-3/igt@v3d/v3d_perfmon@get-values-invalid-perfmon.html * igt@v3d/v3d_submit_cl@multisync-out-syncs: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#2575]) +2 similar issues [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-6/igt@v3d/v3d_submit_cl@multisync-out-syncs.html * igt@v3d/v3d_submit_cl@simple-flush-cache: - shard-rkl: NOTRUN -> [SKIP][197] ([fdo#109315]) +1 similar issue [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-6/igt@v3d/v3d_submit_cl@simple-flush-cache.html * igt@vc4/vc4_create_bo@create-bo-0: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#7711]) +3 similar issues [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-4/igt@vc4/vc4_create_bo@create-bo-0.html * igt@vc4/vc4_perfmon@create-single-perfmon: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#7711]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-6/igt@vc4/vc4_perfmon@create-single-perfmon.html * igt@vc4/vc4_wait_bo@used-bo-0ns: - shard-tglu: NOTRUN -> [SKIP][200] ([i915#2575]) +3 similar issues [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-6/igt@vc4/vc4_wait_bo@used-bo-0ns.html - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#7711]) +3 similar issues [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-6/igt@vc4/vc4_wait_bo@used-bo-0ns.html #### Possible fixes #### * igt@gem_barrier_race@remote-request@rcs0: - shard-rkl: [ABORT][202] ([i915#8178]) -> [PASS][203] [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-1/igt@gem_barrier_race@remote-request@rcs0.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [FAIL][204] ([i915#6268]) -> [PASS][205] [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-3/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@engines-hostile@vcs0: - shard-mtlp: [FAIL][206] ([i915#2410]) -> [PASS][207] +3 similar issues [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@gem_ctx_persistence@engines-hostile@vcs0.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@gem_ctx_persistence@engines-hostile@vcs0.html * igt@gem_eio@context-create: - {shard-dg1}: [DMESG-WARN][208] ([i915#4423]) -> [PASS][209] [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg1-17/igt@gem_eio@context-create.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg1-19/igt@gem_eio@context-create.html * igt@gem_eio@in-flight-contexts-10ms: - shard-mtlp: [ABORT][210] ([i915#7941]) -> [PASS][211] [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@gem_eio@in-flight-contexts-10ms.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@gem_eio@in-flight-contexts-10ms.html * igt@gem_eio@in-flight-contexts-immediate: - shard-mtlp: [ABORT][212] ([i915#8503]) -> [PASS][213] [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@gem_eio@in-flight-contexts-immediate.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@gem_eio@in-flight-contexts-immediate.html * igt@gem_eio@unwedge-stress: - {shard-dg1}: [FAIL][214] ([i915#5784]) -> [PASS][215] [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg1-16/igt@gem_eio@unwedge-stress.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg1-14/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [FAIL][216] ([i915#2846]) -> [PASS][217] [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk7/igt@gem_exec_fair@basic-deadline.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-glk6/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_schedule@deep@vecs0: - shard-mtlp: [FAIL][218] ([i915#8545]) -> [PASS][219] [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@gem_exec_schedule@deep@vecs0.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-4/igt@gem_exec_schedule@deep@vecs0.html * igt@gem_exec_suspend@basic-s0@smem: - shard-tglu: [ABORT][220] ([i915#5122] / [i915#5251]) -> [PASS][221] [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-5/igt@gem_exec_suspend@basic-s0@smem.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-8/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_exec_whisper@basic-queues-all: - shard-mtlp: [FAIL][222] ([i915#6363]) -> [PASS][223] [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@gem_exec_whisper@basic-queues-all.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-3/igt@gem_exec_whisper@basic-queues-all.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-snb: [ABORT][224] ([i915#5161]) -> [PASS][225] [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-snb6/igt@gem_mmap_gtt@fault-concurrent-y.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-snb5/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@gem_workarounds@suspend-resume-context: - shard-dg2: [FAIL][226] ([fdo#103375]) -> [PASS][227] +4 similar issues [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-5/igt@gem_workarounds@suspend-resume-context.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-11/igt@gem_workarounds@suspend-resume-context.html * igt@i915_hangman@gt-engine-error@vcs0: - shard-mtlp: [FAIL][228] ([i915#7069]) -> [PASS][229] [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@i915_hangman@gt-engine-error@vcs0.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-2/igt@i915_hangman@gt-engine-error@vcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][230] ([i915#8489]) -> [PASS][231] [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rpm@gem-execbuf@smem0: - shard-mtlp: [FAIL][232] ([i915#8457]) -> [PASS][233] [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@i915_pm_rpm@gem-execbuf@smem0.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-3/igt@i915_pm_rpm@gem-execbuf@smem0.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - {shard-dg1}: [SKIP][234] ([i915#1397]) -> [PASS][235] +1 similar issue [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg1-15/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@i915_selftest@live@requests: - shard-mtlp: [DMESG-FAIL][236] ([i915#8497]) -> [PASS][237] [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@i915_selftest@live@requests.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [DMESG-FAIL][238] ([i915#6763]) -> [PASS][239] [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@i915_selftest@live@workarounds.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-1/igt@i915_selftest@live@workarounds.html * igt@i915_selftest@perf@request: - shard-mtlp: [DMESG-FAIL][240] ([i915#8573]) -> [PASS][241] [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@i915_selftest@perf@request.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-3/igt@i915_selftest@perf@request.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [FAIL][242] ([i915#5138]) -> [PASS][243] [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_cursor_crc@cursor-random-256x85@pipe-d-edp-1: - shard-mtlp: [FAIL][244] -> [PASS][245] +1 similar issue [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@kms_cursor_crc@cursor-random-256x85@pipe-d-edp-1.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-256x85@pipe-d-edp-1.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [FAIL][246] ([i915#2346]) -> [PASS][247] [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary: - shard-dg2: [FAIL][248] ([i915#6880]) -> [PASS][249] +3 similar issues [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html * igt@perf_pmu@busy-double-start@ccs0: - shard-mtlp: [FAIL][250] ([i915#4349]) -> [PASS][251] [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@perf_pmu@busy-double-start@ccs0.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-8/igt@perf_pmu@busy-double-start@ccs0.html #### Warnings #### * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [TIMEOUT][252] ([i915#5493]) -> [DMESG-WARN][253] ([i915#4936] / [i915#5493]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-3/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [WARN][254] ([i915#6596] / [i915#7356]) -> [DMESG-WARN][255] ([i915#7061]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-12/igt@i915_module_load@reload-with-fault-injection.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - shard-tglu: [WARN][256] ([i915#2681]) -> [FAIL][257] ([i915#2681] / [i915#3591]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglu: [FAIL][258] ([i915#2681] / [i915#3591]) -> [WARN][259] ([i915#2681]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@kms_async_flips@crc@pipe-b-edp-1: - shard-mtlp: [FAIL][260] ([i915#8247]) -> [DMESG-FAIL][261] ([i915#8561]) +1 similar issue [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@kms_async_flips@crc@pipe-b-edp-1.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@kms_async_flips@crc@pipe-b-edp-1.html * igt@kms_content_protection@mei_interface: - shard-dg2: [SKIP][262] ([i915#4579] / [i915#7118]) -> [SKIP][263] ([i915#4579] / [i915#7118] / [i915#7162]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-6/igt@kms_content_protection@mei_interface.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-dg2-11/igt@kms_content_protection@mei_interface.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: [DMESG-FAIL][264] ([i915#2017] / [i915#5954]) -> [FAIL][265] ([i915#2346]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-mtlp-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][266] ([fdo#109285]) -> [SKIP][267] ([fdo#109285] / [i915#4098]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.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#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#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [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#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [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#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#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3711]: https://gitlab.freedesktop.org/drm/intel/issues/3711 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [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#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [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#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [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#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5161]: https://gitlab.freedesktop.org/drm/intel/issues/5161 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5251]: https://gitlab.freedesktop.org/drm/intel/issues/5251 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6363]: https://gitlab.freedesktop.org/drm/intel/issues/6363 [i915#6403]: https://gitlab.freedesktop.org/drm/intel/issues/6403 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6596]: https://gitlab.freedesktop.org/drm/intel/issues/6596 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [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#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7941]: https://gitlab.freedesktop.org/drm/intel/issues/7941 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063 [i915#8178]: https://gitlab.freedesktop.org/drm/intel/issues/8178 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8248]: https://gitlab.freedesktop.org/drm/intel/issues/8248 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8332]: https://gitlab.freedesktop.org/drm/intel/issues/8332 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8457]: https://gitlab.freedesktop.org/drm/intel/issues/8457 [i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489 [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8503]: https://gitlab.freedesktop.org/drm/intel/issues/8503 [i915#8545]: https://gitlab.freedesktop.org/drm/intel/issues/8545 [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [i915#8573]: https://gitlab.freedesktop.org/drm/intel/issues/8573 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8731]: https://gitlab.freedesktop.org/drm/intel/issues/8731 [i915#8758]: https://gitlab.freedesktop.org/drm/intel/issues/8758 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7352 -> IGTPW_9286 CI-20190529: 20190529 CI_DRM_13328: 12cd6b2d321d9c034f3d4ba14788d68cb8da4eac @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9286: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/index.html IGT_7352: 471bfababd070e1dac0ebb87470ac4f2ae85e663 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9286/index.html [-- Attachment #2: Type: text/html, Size: 86636 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2023-06-30 15:42 UTC | newest] Thread overview: 14+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-06-27 10:58 [igt-dev] [PATCH i-g-t v2 0/3] Use intel_cmds_info in i915_pm_rpm Karolina Stolarek 2023-06-27 10:58 ` [igt-dev] [PATCH i-g-t v2 1/3] lib/intel_cmds_info: Add library support for XY_COLOR_BLT Karolina Stolarek 2023-06-30 15:40 ` Kamil Konieczny 2023-06-27 10:58 ` [igt-dev] [PATCH i-g-t v2 2/3] tests/i915/i915_pm_rpm: Modify gem-execbuf test for gen12+ Karolina Stolarek 2023-06-30 15:41 ` Kamil Konieczny 2023-06-27 10:58 ` [igt-dev] [PATCH i-g-t v2 3/3] tests/i915/i915_pm_rpm: Check command property instead of gen Karolina Stolarek 2023-06-30 15:42 ` Kamil Konieczny 2023-06-28 8:21 ` [igt-dev] ✗ GitLab.Pipeline: warning for Use intel_cmds_info in i915_pm_rpm (rev3) Patchwork 2023-06-29 6:36 ` Karolina Stolarek 2023-06-28 8:50 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2023-06-28 21:45 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-06-29 6:34 ` Karolina Stolarek 2023-06-30 7:35 ` Yedireswarapu, SaiX Nandan 2023-06-30 7:29 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox