* [PATCH i-g-t 0/2] tests/intel/xe_oa: Refactors related to OA buffer size
@ 2024-11-18 6:32 Sai Teja Pottumuttu
2024-11-18 6:32 ` [PATCH i-g-t 1/2] tests/intel/xe_oa: Fetch OA buffer size from observation IOCTL Sai Teja Pottumuttu
` (4 more replies)
0 siblings, 5 replies; 13+ messages in thread
From: Sai Teja Pottumuttu @ 2024-11-18 6:32 UTC (permalink / raw)
To: igt-dev; +Cc: ashutosh.dixit, sai.teja.pottumuttu
Currently, the OA buffer size is hardcoded in IGT. This patch series
refactors it to get the oa buffer size using DRM_XE_OBSERVATION_IOCTL_INFO
ioctl.
This way we need not change the oa buffer size in IGT if there are any
changes with the default size on the kernel side.
Sai Teja Pottumuttu (2):
tests/intel/xe_oa: Fetch OA buffer size from observation IOCTL
tests/intel/xe_oa: Replace hardcoded OA buffer size assumptions
tests/intel/xe_oa.c | 67 +++++++++++++++++++++++++++++++--------------
1 file changed, 46 insertions(+), 21 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 13+ messages in thread* [PATCH i-g-t 1/2] tests/intel/xe_oa: Fetch OA buffer size from observation IOCTL 2024-11-18 6:32 [PATCH i-g-t 0/2] tests/intel/xe_oa: Refactors related to OA buffer size Sai Teja Pottumuttu @ 2024-11-18 6:32 ` Sai Teja Pottumuttu 2024-11-18 19:51 ` Dixit, Ashutosh 2024-11-18 20:03 ` Dixit, Ashutosh 2024-11-18 6:32 ` [PATCH i-g-t 2/2] tests/intel/xe_oa: Replace hardcoded OA buffer size assumptions Sai Teja Pottumuttu ` (3 subsequent siblings) 4 siblings, 2 replies; 13+ messages in thread From: Sai Teja Pottumuttu @ 2024-11-18 6:32 UTC (permalink / raw) To: igt-dev; +Cc: ashutosh.dixit, sai.teja.pottumuttu Currently, the OA buffer size is hardcoded to 16MB in IGT. The patch refactors it to get the default oa buffer size using DRM_XE_OBSERVATION_IOCTL_INFO ioctl. This way if we decide to increase the default OA buffer size, it wouldn't need IGT modification every time. Signed-off-by: Sai Teja Pottumuttu <sai.teja.pottumuttu@intel.com> --- tests/intel/xe_oa.c | 61 ++++++++++++++++++++++++++++++++------------- 1 file changed, 43 insertions(+), 18 deletions(-) diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c index 33e978a48..4e4d0fabc 100644 --- a/tests/intel/xe_oa.c +++ b/tests/intel/xe_oa.c @@ -63,9 +63,6 @@ #define PIPE_CONTROL_PPGTT_WRITE (0 << 2) #define PIPE_CONTROL_GLOBAL_GTT_WRITE (1 << 2) -#define MAX_OA_BUF_SIZE (16 * 1024 * 1024) -#define OA_BUFFER_SIZE MAX_OA_BUF_SIZE - #define RING_FORCE_TO_NONPRIV_ADDRESS_MASK 0x03fffffc /* * Engine specific registers defined as offsets from engine->mmio_base. For @@ -303,6 +300,7 @@ struct drm_xe_engine_class_instance default_hwe; static struct intel_xe_perf *intel_xe_perf; static uint64_t oa_exp_1_millisec; +static uint64_t oa_buffer_size; struct intel_mmio_data mmio_data; static igt_render_copyfunc_t render_copy; @@ -511,6 +509,30 @@ __perf_open(int fd, struct intel_xe_oa_open_prop *param, bool prevent_pm) return ret; } +static u64 get_default_oa_buffer_size(int fd) +{ + struct drm_xe_oa_stream_info info; + uint64_t properties[] = { + DRM_XE_OA_PROPERTY_OA_UNIT_ID, 0, + DRM_XE_OA_PROPERTY_SAMPLE_OA, true, + + /* OA unit configuration */ + DRM_XE_OA_PROPERTY_OA_METRIC_SET, default_test_set->perf_oa_metrics_set, + DRM_XE_OA_PROPERTY_OA_FORMAT, __ff(default_test_set->perf_oa_format), + DRM_XE_OA_PROPERTY_OA_PERIOD_EXPONENT, oa_exp_1_millisec, + }; + struct intel_xe_oa_open_prop param = { + .num_properties = ARRAY_SIZE(properties) / 2, + .properties_ptr = to_user_pointer(properties), + }; + + stream_fd = __perf_open(fd, ¶m, false); + do_ioctl(stream_fd, DRM_XE_OBSERVATION_IOCTL_INFO, &info); + __perf_close(stream_fd); + + return info.oa_buf_size; +} + static uint64_t read_u64_file(const char *path) { @@ -1074,6 +1096,9 @@ init_sys_info(void) oa_exp_1_millisec = max_oa_exponent_for_period_lte(1000000); + oa_buffer_size = get_default_oa_buffer_size(drm_fd); + igt_debug("oa_buffer_size: %"PRIu64"\n", oa_buffer_size); + return true; } @@ -1263,7 +1288,7 @@ read_2_oa_reports(int format_id, * to indicate that the OA unit may be over taxed if lots of reports * are being lost. */ - int max_reports = MAX_OA_BUF_SIZE / format_size; + int max_reports = oa_buffer_size / format_size; int buf_size = format_size * max_reports * 1.5; uint8_t *buf = malloc(buf_size); int n = 0; @@ -1685,7 +1710,7 @@ static void test_oa_exponents(const struct drm_xe_engine_class_instance *hwe) }; uint64_t expected_timestamp_delta = 2ULL << exponent; size_t format_size = get_oa_format(fmt).size; - int max_reports = MAX_OA_BUF_SIZE / format_size; + int max_reports = oa_buffer_size / format_size; int buf_size = format_size * max_reports * 1.5; uint8_t *buf = calloc(1, buf_size); int ret, n_timer_reports = 0; @@ -2367,7 +2392,7 @@ test_buffer_fill(const struct drm_xe_engine_class_instance *hwe) int buf_size = 65536 * report_size; uint8_t *buf = malloc(buf_size); int len; - size_t oa_buf_size = MAX_OA_BUF_SIZE; + size_t oa_buf_size = oa_buffer_size; int n_full_oa_reports = oa_buf_size / report_size; uint64_t fill_duration = n_full_oa_reports * oa_period; uint32_t *last_periodic_report = malloc(report_size); @@ -2592,7 +2617,7 @@ test_enable_disable(const struct drm_xe_engine_class_instance *hwe) size_t report_size = get_oa_format(fmt).size; int buf_size = 65536 * report_size; uint8_t *buf = malloc(buf_size); - size_t oa_buf_size = MAX_OA_BUF_SIZE; + size_t oa_buf_size = oa_buffer_size; int n_full_oa_reports = oa_buf_size / report_size; uint64_t fill_duration = n_full_oa_reports * oa_period; uint32_t *last_periodic_report = malloc(report_size); @@ -4012,7 +4037,7 @@ __test_mmio_triggered_reports(struct drm_xe_engine_class_instance *hwe) stream_fd = __perf_open(drm_fd, ¶m, false); set_fd_flags(stream_fd, O_CLOEXEC); - buf = mmap(0, OA_BUFFER_SIZE, PROT_READ, MAP_PRIVATE, stream_fd, 0); + buf = mmap(0, oa_buffer_size, PROT_READ, MAP_PRIVATE, stream_fd, 0); igt_assert(buf != NULL); emit_oa_reg_read(ibb, dst_buf, 0, OAG_OABUFFER); @@ -4061,7 +4086,7 @@ __test_mmio_triggered_reports(struct drm_xe_engine_class_instance *hwe) igt_assert_eq(mmio_triggered_reports, 2); - munmap(buf, OA_BUFFER_SIZE); + munmap(buf, oa_buffer_size); intel_buf_close(bops, &src); intel_buf_close(bops, &dst); intel_buf_unmap(dst_buf); @@ -4241,10 +4266,10 @@ test_oa_unit_concurrent_oa_buffer_read(void) static void *map_oa_buffer(u32 *size) { - void *vaddr = mmap(0, OA_BUFFER_SIZE, PROT_READ, MAP_PRIVATE, stream_fd, 0); + void *vaddr = mmap(0, oa_buffer_size, PROT_READ, MAP_PRIVATE, stream_fd, 0); igt_assert(vaddr != NULL); - *size = OA_BUFFER_SIZE; + *size = oa_buffer_size; return vaddr; } @@ -4254,32 +4279,32 @@ static void invalid_param_map_oa_buffer(const struct drm_xe_engine_class_instanc /* try a couple invalid mmaps */ /* bad prots */ - oa_vaddr = mmap(0, OA_BUFFER_SIZE, PROT_WRITE, MAP_PRIVATE, stream_fd, 0); + oa_vaddr = mmap(0, oa_buffer_size, PROT_WRITE, MAP_PRIVATE, stream_fd, 0); igt_assert(oa_vaddr == MAP_FAILED); - oa_vaddr = mmap(0, OA_BUFFER_SIZE, PROT_EXEC, MAP_PRIVATE, stream_fd, 0); + oa_vaddr = mmap(0, oa_buffer_size, PROT_EXEC, MAP_PRIVATE, stream_fd, 0); igt_assert(oa_vaddr == MAP_FAILED); /* bad MAPs */ - oa_vaddr = mmap(0, OA_BUFFER_SIZE, PROT_READ, MAP_SHARED, stream_fd, 0); + oa_vaddr = mmap(0, oa_buffer_size, PROT_READ, MAP_SHARED, stream_fd, 0); igt_assert(oa_vaddr == MAP_FAILED); /* bad size */ - oa_vaddr = mmap(0, OA_BUFFER_SIZE + 1, PROT_READ, MAP_PRIVATE, stream_fd, 0); + oa_vaddr = mmap(0, oa_buffer_size + 1, PROT_READ, MAP_PRIVATE, stream_fd, 0); igt_assert(oa_vaddr == MAP_FAILED); /* do the right thing */ - oa_vaddr = mmap(0, OA_BUFFER_SIZE, PROT_READ, MAP_PRIVATE, stream_fd, 0); + oa_vaddr = mmap(0, oa_buffer_size, PROT_READ, MAP_PRIVATE, stream_fd, 0); igt_assert(oa_vaddr != MAP_FAILED && oa_vaddr != NULL); - munmap(oa_vaddr, OA_BUFFER_SIZE); + munmap(oa_vaddr, oa_buffer_size); } static void unprivileged_try_to_map_oa_buffer(void) { void *oa_vaddr; - oa_vaddr = mmap(0, OA_BUFFER_SIZE, PROT_READ, MAP_PRIVATE, stream_fd, 0); + oa_vaddr = mmap(0, oa_buffer_size, PROT_READ, MAP_PRIVATE, stream_fd, 0); igt_assert(oa_vaddr == MAP_FAILED); igt_assert_eq(errno, EACCES); } -- 2.34.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t 1/2] tests/intel/xe_oa: Fetch OA buffer size from observation IOCTL 2024-11-18 6:32 ` [PATCH i-g-t 1/2] tests/intel/xe_oa: Fetch OA buffer size from observation IOCTL Sai Teja Pottumuttu @ 2024-11-18 19:51 ` Dixit, Ashutosh 2024-11-19 6:19 ` Pottumuttu, Sai Teja 2024-11-18 20:03 ` Dixit, Ashutosh 1 sibling, 1 reply; 13+ messages in thread From: Dixit, Ashutosh @ 2024-11-18 19:51 UTC (permalink / raw) To: Sai Teja Pottumuttu; +Cc: igt-dev On Sun, 17 Nov 2024 22:32:22 -0800, Sai Teja Pottumuttu wrote: > This one mostly looks good, just a couple of nits below. Also how are you testing these patches? To test I suggest just run: sudo ./build/tests/xe_oa > diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c > index 33e978a48..4e4d0fabc 100644 > --- a/tests/intel/xe_oa.c > +++ b/tests/intel/xe_oa.c > @@ -63,9 +63,6 @@ > #define PIPE_CONTROL_PPGTT_WRITE (0 << 2) > #define PIPE_CONTROL_GLOBAL_GTT_WRITE (1 << 2) > > -#define MAX_OA_BUF_SIZE (16 * 1024 * 1024) > -#define OA_BUFFER_SIZE MAX_OA_BUF_SIZE > - > #define RING_FORCE_TO_NONPRIV_ADDRESS_MASK 0x03fffffc > /* > * Engine specific registers defined as offsets from engine->mmio_base. For > @@ -303,6 +300,7 @@ struct drm_xe_engine_class_instance default_hwe; > > static struct intel_xe_perf *intel_xe_perf; > static uint64_t oa_exp_1_millisec; > +static uint64_t oa_buffer_size; s/size_t/uint64_t/ Also, for clarity, let's call this default_oa_buffer_size too. Because oa_buffer_size later can be changed per stream. So that later when we introduce different oa buffer sizes etc there won't be any confusion. > struct intel_mmio_data mmio_data; > static igt_render_copyfunc_t render_copy; > > @@ -511,6 +509,30 @@ __perf_open(int fd, struct intel_xe_oa_open_prop *param, bool prevent_pm) > return ret; > } > > +static u64 get_default_oa_buffer_size(int fd) Let's make the return type size_t here too. Rest lgtm. I'll take a quick look at the next version and should be able to R-b it. Thanks. -- Ashutosh ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t 1/2] tests/intel/xe_oa: Fetch OA buffer size from observation IOCTL 2024-11-18 19:51 ` Dixit, Ashutosh @ 2024-11-19 6:19 ` Pottumuttu, Sai Teja 0 siblings, 0 replies; 13+ messages in thread From: Pottumuttu, Sai Teja @ 2024-11-19 6:19 UTC (permalink / raw) To: Dixit, Ashutosh; +Cc: igt-dev On 19-11-2024 01:21, Dixit, Ashutosh wrote: > On Sun, 17 Nov 2024 22:32:22 -0800, Sai Teja Pottumuttu wrote: >> > > This one mostly looks good, just a couple of nits below. > > Also how are you testing these patches? To test I suggest just run: > > sudo ./build/tests/xe_oa Yes, I ran all the tests that way multiple times and all of them passed. > >> diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c >> index 33e978a48..4e4d0fabc 100644 >> --- a/tests/intel/xe_oa.c >> +++ b/tests/intel/xe_oa.c >> @@ -63,9 +63,6 @@ >> #define PIPE_CONTROL_PPGTT_WRITE (0 << 2) >> #define PIPE_CONTROL_GLOBAL_GTT_WRITE (1 << 2) >> >> -#define MAX_OA_BUF_SIZE (16 * 1024 * 1024) >> -#define OA_BUFFER_SIZE MAX_OA_BUF_SIZE >> - >> #define RING_FORCE_TO_NONPRIV_ADDRESS_MASK 0x03fffffc >> /* >> * Engine specific registers defined as offsets from engine->mmio_base. For >> @@ -303,6 +300,7 @@ struct drm_xe_engine_class_instance default_hwe; >> >> static struct intel_xe_perf *intel_xe_perf; >> static uint64_t oa_exp_1_millisec; >> +static uint64_t oa_buffer_size; > > s/size_t/uint64_t/ > > Also, for clarity, let's call this default_oa_buffer_size too. Because > oa_buffer_size later can be changed per stream. So that later when we > introduce different oa buffer sizes etc there won't be any confusion. > >> struct intel_mmio_data mmio_data; >> static igt_render_copyfunc_t render_copy; >> >> @@ -511,6 +509,30 @@ __perf_open(int fd, struct intel_xe_oa_open_prop *param, bool prevent_pm) >> return ret; >> } >> >> +static u64 get_default_oa_buffer_size(int fd) > > Let's make the return type size_t here too. > > Rest lgtm. I'll take a quick look at the next version and should be able to > R-b it. Sure, will make all these changes and send a new revision. Thanks for the review - Sai Teja > > Thanks. > -- > Ashutosh ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t 1/2] tests/intel/xe_oa: Fetch OA buffer size from observation IOCTL 2024-11-18 6:32 ` [PATCH i-g-t 1/2] tests/intel/xe_oa: Fetch OA buffer size from observation IOCTL Sai Teja Pottumuttu 2024-11-18 19:51 ` Dixit, Ashutosh @ 2024-11-18 20:03 ` Dixit, Ashutosh 1 sibling, 0 replies; 13+ messages in thread From: Dixit, Ashutosh @ 2024-11-18 20:03 UTC (permalink / raw) To: Sai Teja Pottumuttu; +Cc: igt-dev On Sun, 17 Nov 2024 22:32:22 -0800, Sai Teja Pottumuttu wrote: > > @@ -2367,7 +2392,7 @@ test_buffer_fill(const struct drm_xe_engine_class_instance *hwe) > int buf_size = 65536 * report_size; > uint8_t *buf = malloc(buf_size); > int len; > - size_t oa_buf_size = MAX_OA_BUF_SIZE; > + size_t oa_buf_size = oa_buffer_size; > int n_full_oa_reports = oa_buf_size / report_size; > uint64_t fill_duration = n_full_oa_reports * oa_period; > uint32_t *last_periodic_report = malloc(report_size); > @@ -2592,7 +2617,7 @@ test_enable_disable(const struct drm_xe_engine_class_instance *hwe) > size_t report_size = get_oa_format(fmt).size; > int buf_size = 65536 * report_size; > uint8_t *buf = malloc(buf_size); > - size_t oa_buf_size = MAX_OA_BUF_SIZE; > + size_t oa_buf_size = oa_buffer_size; > int n_full_oa_reports = oa_buf_size / report_size; > uint64_t fill_duration = n_full_oa_reports * oa_period; > uint32_t *last_periodic_report = malloc(report_size); Maybe get rid of these two oa_buf_size local variables too, directly use default_oa_buffer_size. ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH i-g-t 2/2] tests/intel/xe_oa: Replace hardcoded OA buffer size assumptions 2024-11-18 6:32 [PATCH i-g-t 0/2] tests/intel/xe_oa: Refactors related to OA buffer size Sai Teja Pottumuttu 2024-11-18 6:32 ` [PATCH i-g-t 1/2] tests/intel/xe_oa: Fetch OA buffer size from observation IOCTL Sai Teja Pottumuttu @ 2024-11-18 6:32 ` Sai Teja Pottumuttu 2024-11-18 20:24 ` Dixit, Ashutosh 2024-11-18 7:10 ` ✗ CI.xeBAT: failure for tests/intel/xe_oa: Refactors related to OA buffer size Patchwork ` (2 subsequent siblings) 4 siblings, 1 reply; 13+ messages in thread From: Sai Teja Pottumuttu @ 2024-11-18 6:32 UTC (permalink / raw) To: igt-dev; +Cc: ashutosh.dixit, sai.teja.pottumuttu A few xe_oa tests assumed that the default OA buffer size is 16MB and had calculations around it. These would fail if the default buffer size is changed on the kernel side. Replace such assumptions with the OA buffer size we get from DRM_XE_OBSERVATION_IOCTL_INFO ioctl Signed-off-by: Sai Teja Pottumuttu <sai.teja.pottumuttu@intel.com> --- tests/intel/xe_oa.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c index 4e4d0fabc..3b65212ae 100644 --- a/tests/intel/xe_oa.c +++ b/tests/intel/xe_oa.c @@ -2389,7 +2389,7 @@ test_buffer_fill(const struct drm_xe_engine_class_instance *hwe) .properties_ptr = to_user_pointer(properties), }; size_t report_size = get_oa_format(fmt).size; - int buf_size = 65536 * report_size; + int buf_size = oa_buffer_size; uint8_t *buf = malloc(buf_size); int len; size_t oa_buf_size = oa_buffer_size; @@ -2533,7 +2533,7 @@ test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe) .num_properties = ARRAY_SIZE(properties) / 2, .properties_ptr = to_user_pointer(properties), }; - uint32_t buf_size = 3 * 65536 * report_size; + uint32_t buf_size = 3 * oa_buffer_size; uint8_t *buf = malloc(buf_size); uint32_t total_len = 0; const uint32_t *last_report; @@ -2615,7 +2615,7 @@ test_enable_disable(const struct drm_xe_engine_class_instance *hwe) .properties_ptr = to_user_pointer(properties), }; size_t report_size = get_oa_format(fmt).size; - int buf_size = 65536 * report_size; + int buf_size = oa_buffer_size; uint8_t *buf = malloc(buf_size); size_t oa_buf_size = oa_buffer_size; int n_full_oa_reports = oa_buf_size / report_size; -- 2.34.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/intel/xe_oa: Replace hardcoded OA buffer size assumptions 2024-11-18 6:32 ` [PATCH i-g-t 2/2] tests/intel/xe_oa: Replace hardcoded OA buffer size assumptions Sai Teja Pottumuttu @ 2024-11-18 20:24 ` Dixit, Ashutosh 2024-11-19 7:01 ` Pottumuttu, Sai Teja 0 siblings, 1 reply; 13+ messages in thread From: Dixit, Ashutosh @ 2024-11-18 20:24 UTC (permalink / raw) To: Sai Teja Pottumuttu; +Cc: igt-dev On Sun, 17 Nov 2024 22:32:23 -0800, Sai Teja Pottumuttu wrote: > > A few xe_oa tests assumed that the default OA buffer size is 16MB > and had calculations around it. These would fail if the default > buffer size is changed on the kernel side. > I don't think this is correct. buf_size below refers to the size of the user's buffer, not the size of the kernel OA buffer. You also seem to be assuming that '65536 * report_size == oa_buffer_size' (65536 * 256 == 16 MB) but report size is not only 256, Xe2 default report size is 576 bytes and there are other report sizes too. Maybe ok to do what this patch is doing for test_buffer_fill and test_enable_disable, but we need to be careful about test_non_zero_reason since that test is very useful for testing OA buffer wrap-arounds (and some corner cases there). I'd say let's drop this patch for now and revisit later if needed. > Replace such assumptions with the OA buffer size we get from > DRM_XE_OBSERVATION_IOCTL_INFO ioctl > > Signed-off-by: Sai Teja Pottumuttu <sai.teja.pottumuttu@intel.com> > --- > tests/intel/xe_oa.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c > index 4e4d0fabc..3b65212ae 100644 > --- a/tests/intel/xe_oa.c > +++ b/tests/intel/xe_oa.c > @@ -2389,7 +2389,7 @@ test_buffer_fill(const struct drm_xe_engine_class_instance *hwe) > .properties_ptr = to_user_pointer(properties), > }; > size_t report_size = get_oa_format(fmt).size; > - int buf_size = 65536 * report_size; > + int buf_size = oa_buffer_size; > uint8_t *buf = malloc(buf_size); > int len; > size_t oa_buf_size = oa_buffer_size; > @@ -2533,7 +2533,7 @@ test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe) > .num_properties = ARRAY_SIZE(properties) / 2, > .properties_ptr = to_user_pointer(properties), > }; > - uint32_t buf_size = 3 * 65536 * report_size; > + uint32_t buf_size = 3 * oa_buffer_size; > uint8_t *buf = malloc(buf_size); > uint32_t total_len = 0; > const uint32_t *last_report; > @@ -2615,7 +2615,7 @@ test_enable_disable(const struct drm_xe_engine_class_instance *hwe) > .properties_ptr = to_user_pointer(properties), > }; > size_t report_size = get_oa_format(fmt).size; > - int buf_size = 65536 * report_size; > + int buf_size = oa_buffer_size; > uint8_t *buf = malloc(buf_size); > size_t oa_buf_size = oa_buffer_size; > int n_full_oa_reports = oa_buf_size / report_size; > -- > 2.34.1 > Thanks. -- Ashutosh ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/intel/xe_oa: Replace hardcoded OA buffer size assumptions 2024-11-18 20:24 ` Dixit, Ashutosh @ 2024-11-19 7:01 ` Pottumuttu, Sai Teja 2024-11-19 7:21 ` Dixit, Ashutosh 0 siblings, 1 reply; 13+ messages in thread From: Pottumuttu, Sai Teja @ 2024-11-19 7:01 UTC (permalink / raw) To: Dixit, Ashutosh; +Cc: igt-dev On 19-11-2024 01:54, Dixit, Ashutosh wrote: > On Sun, 17 Nov 2024 22:32:23 -0800, Sai Teja Pottumuttu wrote: >> >> A few xe_oa tests assumed that the default OA buffer size is 16MB >> and had calculations around it. These would fail if the default >> buffer size is changed on the kernel side. >> > > I don't think this is correct. buf_size below refers to the size of the > user's buffer, not the size of the kernel OA buffer. > > You also seem to be assuming that '65536 * report_size == oa_buffer_size' > (65536 * 256 == 16 MB) but report size is not only 256, Xe2 default report > size is 576 bytes and there are other report sizes too. > > Maybe ok to do what this patch is doing for test_buffer_fill and > test_enable_disable, but we need to be careful about test_non_zero_reason > since that test is very useful for testing OA buffer wrap-arounds (and some > corner cases there). > So, my assumption was that in i915 we were trying to do = (oa_buffer_size / report_size) * (report_size + header_size) which we hardcoded like = 65536 * (report_size + header_size) And this was done to get a buffer full of reports and allocate user buffer a little bigger than kernel buffer as we had headers there. I think this translated into just 65536 * report_size in xe as we don't have headers separately here. Am I correct with this assumption? 1. If yes, replacing it with oa_buffer_size is fine for atleast test_buffer_fill and test_enable_disable right? As we were essentially trying to allocate a user buffer which can take all the reports which would fit in a kernel oa buffer. Am I missing something? If that's correct, as we are already at it, maybe we can keep the change for these two tests? 2. For test_non_zero_reason I think I get your point that with the current sizing greater than 3 * oa_buffer_size, probably we could catch more issues. So, we can keep it as it is probably. Thanks - Sai Teja > I'd say let's drop this patch for now and revisit later if needed. > >> Replace such assumptions with the OA buffer size we get from >> DRM_XE_OBSERVATION_IOCTL_INFO ioctl >> >> Signed-off-by: Sai Teja Pottumuttu <sai.teja.pottumuttu@intel.com> >> --- >> tests/intel/xe_oa.c | 6 +++--- >> 1 file changed, 3 insertions(+), 3 deletions(-) >> >> diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c >> index 4e4d0fabc..3b65212ae 100644 >> --- a/tests/intel/xe_oa.c >> +++ b/tests/intel/xe_oa.c >> @@ -2389,7 +2389,7 @@ test_buffer_fill(const struct drm_xe_engine_class_instance *hwe) >> .properties_ptr = to_user_pointer(properties), >> }; >> size_t report_size = get_oa_format(fmt).size; >> - int buf_size = 65536 * report_size; >> + int buf_size = oa_buffer_size; >> uint8_t *buf = malloc(buf_size); >> int len; >> size_t oa_buf_size = oa_buffer_size; >> @@ -2533,7 +2533,7 @@ test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe) >> .num_properties = ARRAY_SIZE(properties) / 2, >> .properties_ptr = to_user_pointer(properties), >> }; >> - uint32_t buf_size = 3 * 65536 * report_size; >> + uint32_t buf_size = 3 * oa_buffer_size; >> uint8_t *buf = malloc(buf_size); >> uint32_t total_len = 0; >> const uint32_t *last_report; >> @@ -2615,7 +2615,7 @@ test_enable_disable(const struct drm_xe_engine_class_instance *hwe) >> .properties_ptr = to_user_pointer(properties), >> }; >> size_t report_size = get_oa_format(fmt).size; >> - int buf_size = 65536 * report_size; >> + int buf_size = oa_buffer_size; >> uint8_t *buf = malloc(buf_size); >> size_t oa_buf_size = oa_buffer_size; >> int n_full_oa_reports = oa_buf_size / report_size; >> -- >> 2.34.1 >> > > Thanks. > -- > Ashutosh ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/intel/xe_oa: Replace hardcoded OA buffer size assumptions 2024-11-19 7:01 ` Pottumuttu, Sai Teja @ 2024-11-19 7:21 ` Dixit, Ashutosh 2024-11-19 7:28 ` Pottumuttu, Sai Teja 0 siblings, 1 reply; 13+ messages in thread From: Dixit, Ashutosh @ 2024-11-19 7:21 UTC (permalink / raw) To: Pottumuttu, Sai Teja; +Cc: igt-dev On Mon, 18 Nov 2024 23:01:50 -0800, Pottumuttu, Sai Teja wrote: > > On 19-11-2024 01:54, Dixit, Ashutosh wrote: > > On Sun, 17 Nov 2024 22:32:23 -0800, Sai Teja Pottumuttu wrote: > >> > >> A few xe_oa tests assumed that the default OA buffer size is 16MB > >> and had calculations around it. These would fail if the default > >> buffer size is changed on the kernel side. > >> > > > > I don't think this is correct. buf_size below refers to the size of the > > user's buffer, not the size of the kernel OA buffer. > > > > You also seem to be assuming that '65536 * report_size == oa_buffer_size' > > (65536 * 256 == 16 MB) but report size is not only 256, Xe2 default report > > size is 576 bytes and there are other report sizes too. > > > > Maybe ok to do what this patch is doing for test_buffer_fill and > > test_enable_disable, but we need to be careful about test_non_zero_reason > > since that test is very useful for testing OA buffer wrap-arounds (and some > > corner cases there). > > > > So, my assumption was that in i915 we were trying to do > > = (oa_buffer_size / report_size) * (report_size + header_size) > > which we hardcoded like > > = 65536 * (report_size + header_size) > > And this was done to get a buffer full of reports and allocate user buffer > a little bigger than kernel buffer as we had headers there. > > I think this translated into just 65536 * report_size in xe as we don't > have headers separately here. > > Am I correct with this assumption? Yes. > > 1. If yes, replacing it with oa_buffer_size is fine for atleast > test_buffer_fill and test_enable_disable right? As we were essentially > trying to allocate a user buffer which can take all the reports which would > fit in a kernel oa buffer. Am I missing something? > > If that's correct, as we are already at it, maybe we can keep the change > for these two tests? But even here, why would we link the kernel internal OA buffer size with the user buffer size? User buffer size can be independent of the OA buffer size. > 2. For test_non_zero_reason I think I get your point that with the current > sizing greater than 3 * oa_buffer_size, probably we could catch more > issues. So, we can keep it as it is probably. > > Thanks > - Sai Teja > > > I'd say let's drop this patch for now and revisit later if needed. > > > >> Replace such assumptions with the OA buffer size we get from > >> DRM_XE_OBSERVATION_IOCTL_INFO ioctl > >> > >> Signed-off-by: Sai Teja Pottumuttu <sai.teja.pottumuttu@intel.com> > >> --- > >> tests/intel/xe_oa.c | 6 +++--- > >> 1 file changed, 3 insertions(+), 3 deletions(-) > >> > >> diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c > >> index 4e4d0fabc..3b65212ae 100644 > >> --- a/tests/intel/xe_oa.c > >> +++ b/tests/intel/xe_oa.c > >> @@ -2389,7 +2389,7 @@ test_buffer_fill(const struct drm_xe_engine_class_instance *hwe) > >> .properties_ptr = to_user_pointer(properties), > >> }; > >> size_t report_size = get_oa_format(fmt).size; > >> - int buf_size = 65536 * report_size; > >> + int buf_size = oa_buffer_size; > >> uint8_t *buf = malloc(buf_size); > >> int len; > >> size_t oa_buf_size = oa_buffer_size; > >> @@ -2533,7 +2533,7 @@ test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe) > >> .num_properties = ARRAY_SIZE(properties) / 2, > >> .properties_ptr = to_user_pointer(properties), > >> }; > >> - uint32_t buf_size = 3 * 65536 * report_size; > >> + uint32_t buf_size = 3 * oa_buffer_size; > >> uint8_t *buf = malloc(buf_size); > >> uint32_t total_len = 0; > >> const uint32_t *last_report; > >> @@ -2615,7 +2615,7 @@ test_enable_disable(const struct drm_xe_engine_class_instance *hwe) > >> .properties_ptr = to_user_pointer(properties), > >> }; > >> size_t report_size = get_oa_format(fmt).size; > >> - int buf_size = 65536 * report_size; > >> + int buf_size = oa_buffer_size; > >> uint8_t *buf = malloc(buf_size); > >> size_t oa_buf_size = oa_buffer_size; > >> int n_full_oa_reports = oa_buf_size / report_size; > >> -- > >> 2.34.1 > >> > > > > Thanks. > > -- > > Ashutosh ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/intel/xe_oa: Replace hardcoded OA buffer size assumptions 2024-11-19 7:21 ` Dixit, Ashutosh @ 2024-11-19 7:28 ` Pottumuttu, Sai Teja 0 siblings, 0 replies; 13+ messages in thread From: Pottumuttu, Sai Teja @ 2024-11-19 7:28 UTC (permalink / raw) To: Dixit, Ashutosh; +Cc: igt-dev On 19-11-2024 12:51, Dixit, Ashutosh wrote: > On Mon, 18 Nov 2024 23:01:50 -0800, Pottumuttu, Sai Teja wrote: >> >> On 19-11-2024 01:54, Dixit, Ashutosh wrote: >>> On Sun, 17 Nov 2024 22:32:23 -0800, Sai Teja Pottumuttu wrote: >>>> >>>> A few xe_oa tests assumed that the default OA buffer size is 16MB >>>> and had calculations around it. These would fail if the default >>>> buffer size is changed on the kernel side. >>>> >>> >>> I don't think this is correct. buf_size below refers to the size of the >>> user's buffer, not the size of the kernel OA buffer. >>> >>> You also seem to be assuming that '65536 * report_size == oa_buffer_size' >>> (65536 * 256 == 16 MB) but report size is not only 256, Xe2 default report >>> size is 576 bytes and there are other report sizes too. >>> >>> Maybe ok to do what this patch is doing for test_buffer_fill and >>> test_enable_disable, but we need to be careful about test_non_zero_reason >>> since that test is very useful for testing OA buffer wrap-arounds (and some >>> corner cases there). >>> >> >> So, my assumption was that in i915 we were trying to do >> >> = (oa_buffer_size / report_size) * (report_size + header_size) >> >> which we hardcoded like >> >> = 65536 * (report_size + header_size) >> >> And this was done to get a buffer full of reports and allocate user buffer >> a little bigger than kernel buffer as we had headers there. >> >> I think this translated into just 65536 * report_size in xe as we don't >> have headers separately here. >> >> Am I correct with this assumption? > > Yes. > >> >> 1. If yes, replacing it with oa_buffer_size is fine for atleast >> test_buffer_fill and test_enable_disable right? As we were essentially >> trying to allocate a user buffer which can take all the reports which would >> fit in a kernel oa buffer. Am I missing something? >> >> If that's correct, as we are already at it, maybe we can keep the change >> for these two tests? > > But even here, why would we link the kernel internal OA buffer size with > the user buffer size? User buffer size can be independent of the OA buffer > size. If we want to keep it separate then yeah this patch isn't required I think. I was just trying to make it dynamic so that we completely get rid of hardcoded oa buffer sizes. I will drop this patch in next revision. Thanks - Sai Teja > >> 2. For test_non_zero_reason I think I get your point that with the current >> sizing greater than 3 * oa_buffer_size, probably we could catch more >> issues. So, we can keep it as it is probably. >> >> Thanks >> - Sai Teja >> >>> I'd say let's drop this patch for now and revisit later if needed. >>> >>>> Replace such assumptions with the OA buffer size we get from >>>> DRM_XE_OBSERVATION_IOCTL_INFO ioctl >>>> >>>> Signed-off-by: Sai Teja Pottumuttu <sai.teja.pottumuttu@intel.com> >>>> --- >>>> tests/intel/xe_oa.c | 6 +++--- >>>> 1 file changed, 3 insertions(+), 3 deletions(-) >>>> >>>> diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c >>>> index 4e4d0fabc..3b65212ae 100644 >>>> --- a/tests/intel/xe_oa.c >>>> +++ b/tests/intel/xe_oa.c >>>> @@ -2389,7 +2389,7 @@ test_buffer_fill(const struct drm_xe_engine_class_instance *hwe) >>>> .properties_ptr = to_user_pointer(properties), >>>> }; >>>> size_t report_size = get_oa_format(fmt).size; >>>> - int buf_size = 65536 * report_size; >>>> + int buf_size = oa_buffer_size; >>>> uint8_t *buf = malloc(buf_size); >>>> int len; >>>> size_t oa_buf_size = oa_buffer_size; >>>> @@ -2533,7 +2533,7 @@ test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe) >>>> .num_properties = ARRAY_SIZE(properties) / 2, >>>> .properties_ptr = to_user_pointer(properties), >>>> }; >>>> - uint32_t buf_size = 3 * 65536 * report_size; >>>> + uint32_t buf_size = 3 * oa_buffer_size; >>>> uint8_t *buf = malloc(buf_size); >>>> uint32_t total_len = 0; >>>> const uint32_t *last_report; >>>> @@ -2615,7 +2615,7 @@ test_enable_disable(const struct drm_xe_engine_class_instance *hwe) >>>> .properties_ptr = to_user_pointer(properties), >>>> }; >>>> size_t report_size = get_oa_format(fmt).size; >>>> - int buf_size = 65536 * report_size; >>>> + int buf_size = oa_buffer_size; >>>> uint8_t *buf = malloc(buf_size); >>>> size_t oa_buf_size = oa_buffer_size; >>>> int n_full_oa_reports = oa_buf_size / report_size; >>>> -- >>>> 2.34.1 >>>> >>> >>> Thanks. >>> -- >>> Ashutosh ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ CI.xeBAT: failure for tests/intel/xe_oa: Refactors related to OA buffer size 2024-11-18 6:32 [PATCH i-g-t 0/2] tests/intel/xe_oa: Refactors related to OA buffer size Sai Teja Pottumuttu 2024-11-18 6:32 ` [PATCH i-g-t 1/2] tests/intel/xe_oa: Fetch OA buffer size from observation IOCTL Sai Teja Pottumuttu 2024-11-18 6:32 ` [PATCH i-g-t 2/2] tests/intel/xe_oa: Replace hardcoded OA buffer size assumptions Sai Teja Pottumuttu @ 2024-11-18 7:10 ` Patchwork 2024-11-18 11:48 ` ✓ Fi.CI.BAT: success " Patchwork 2024-11-18 12:42 ` ✗ CI.xeFULL: failure " Patchwork 4 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2024-11-18 7:10 UTC (permalink / raw) To: Sai Teja Pottumuttu; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6623 bytes --] == Series Details == Series: tests/intel/xe_oa: Refactors related to OA buffer size URL : https://patchwork.freedesktop.org/series/141471/ State : failure == Summary == CI Bug Log - changes from XEIGT_8114_BAT -> XEIGTPW_12119_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12119_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12119_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12119_BAT: ### IGT changes ### #### Possible regressions #### * igt@core_hotunplug@unbind-rebind: - bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] +2 other tests dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html Known issues ------------ Here are the changes found in XEIGTPW_12119_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_psr@psr-cursor-plane-move: - bat-adlp-7: [PASS][3] -> [SKIP][4] ([Intel XE#3443] / [Intel XE#455]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch: - bat-lnl-1: [PASS][5] -> [DMESG-FAIL][6] ([Intel XE#3466]) +33 other tests dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/bat-lnl-1/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/bat-lnl-1/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch: - bat-lnl-2: [PASS][7] -> [DMESG-FAIL][8] ([Intel XE#3466]) +33 other tests dmesg-fail [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/bat-lnl-2/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/bat-lnl-2/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html * igt@xe_exec_threads@threads-basic: - bat-lnl-1: [PASS][9] -> [DMESG-WARN][10] ([Intel XE#3466]) +3 other tests dmesg-warn [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/bat-lnl-1/igt@xe_exec_threads@threads-basic.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/bat-lnl-1/igt@xe_exec_threads@threads-basic.html * igt@xe_exec_threads@threads-mixed-basic: - bat-lnl-2: [PASS][11] -> [DMESG-WARN][12] ([Intel XE#3466]) +3 other tests dmesg-warn [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/bat-lnl-2/igt@xe_exec_threads@threads-mixed-basic.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/bat-lnl-2/igt@xe_exec_threads@threads-mixed-basic.html * igt@xe_live_ktest@xe_migrate: - bat-lnl-2: [PASS][13] -> [SKIP][14] ([Intel XE#1192]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/bat-lnl-2/igt@xe_live_ktest@xe_migrate.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/bat-lnl-2/igt@xe_live_ktest@xe_migrate.html - bat-adlp-vf: [PASS][15] -> [SKIP][16] ([Intel XE#1192]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html - bat-lnl-1: [PASS][17] -> [SKIP][18] ([Intel XE#1192]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/bat-lnl-1/igt@xe_live_ktest@xe_migrate.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/bat-lnl-1/igt@xe_live_ktest@xe_migrate.html * igt@xe_pat@pat-index-xelp@render: - bat-adlp-vf: [PASS][19] -> [DMESG-WARN][20] ([Intel XE#358]) +1 other test dmesg-warn [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/bat-adlp-vf/igt@xe_pat@pat-index-xelp@render.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/bat-adlp-vf/igt@xe_pat@pat-index-xelp@render.html #### Warnings #### * igt@xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][21] ([Intel XE#2229] / [Intel XE#455]) -> [SKIP][22] ([Intel XE#1192]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html - bat-lnl-1: [SKIP][23] ([Intel XE#2229]) -> [SKIP][24] ([Intel XE#1192]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/bat-lnl-1/igt@xe_live_ktest@xe_bo.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/bat-lnl-1/igt@xe_live_ktest@xe_bo.html - bat-lnl-2: [SKIP][25] ([Intel XE#2229]) -> [SKIP][26] ([Intel XE#1192]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/bat-lnl-2/igt@xe_live_ktest@xe_bo.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/bat-lnl-2/igt@xe_live_ktest@xe_bo.html [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#3443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3443 [Intel XE#3466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3466 [Intel XE#358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/358 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8114 -> IGTPW_12119 * Linux: xe-2235-36fec0eb87867bca47f8829c9e5dbf5b3e2b3aaf -> xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f IGTPW_12119: 12119 IGT_8114: 8114 xe-2235-36fec0eb87867bca47f8829c9e5dbf5b3e2b3aaf: 36fec0eb87867bca47f8829c9e5dbf5b3e2b3aaf xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f: 57639ceec0f66f06f4a8a8ac3b9551b7b493c33f == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/index.html [-- Attachment #2: Type: text/html, Size: 8193 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ Fi.CI.BAT: success for tests/intel/xe_oa: Refactors related to OA buffer size 2024-11-18 6:32 [PATCH i-g-t 0/2] tests/intel/xe_oa: Refactors related to OA buffer size Sai Teja Pottumuttu ` (2 preceding siblings ...) 2024-11-18 7:10 ` ✗ CI.xeBAT: failure for tests/intel/xe_oa: Refactors related to OA buffer size Patchwork @ 2024-11-18 11:48 ` Patchwork 2024-11-18 12:42 ` ✗ CI.xeFULL: failure " Patchwork 4 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2024-11-18 11:48 UTC (permalink / raw) To: Sai Teja Pottumuttu; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6479 bytes --] == Series Details == Series: tests/intel/xe_oa: Refactors related to OA buffer size URL : https://patchwork.freedesktop.org/series/141471/ State : success == Summary == CI Bug Log - changes from IGT_8114 -> IGTPW_12119 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12119/index.html Participating hosts (46 -> 46) ------------------------------ Additional (1): bat-mtlp-8 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12119 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-mtlp-8: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12119/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-mtlp-8: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12119/bat-mtlp-8/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_mmap@basic: - bat-mtlp-8: NOTRUN -> [SKIP][3] ([i915#4083]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12119/bat-mtlp-8/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-mtlp-8: NOTRUN -> [SKIP][4] ([i915#4079]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12119/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_fence_blits@basic: - bat-mtlp-8: NOTRUN -> [SKIP][5] ([i915#4077]) +2 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12119/bat-mtlp-8/igt@gem_tiled_fence_blits@basic.html * igt@i915_pm_rps@basic-api: - bat-mtlp-8: NOTRUN -> [SKIP][6] ([i915#11681] / [i915#6621]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12119/bat-mtlp-8/igt@i915_pm_rps@basic-api.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-mtlp-8: NOTRUN -> [SKIP][7] ([i915#4212] / [i915#5190]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12119/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-mtlp-8: NOTRUN -> [SKIP][8] ([i915#4212]) +8 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12119/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-mtlp-8: NOTRUN -> [SKIP][9] ([i915#4213]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12119/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-mtlp-8: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#3840] / [i915#9159]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12119/bat-mtlp-8/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-mtlp-8: NOTRUN -> [SKIP][11] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12119/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-mtlp-8: NOTRUN -> [SKIP][12] ([i915#5274]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12119/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_psr@psr-primary-mmap-gtt: - bat-mtlp-8: NOTRUN -> [SKIP][13] ([i915#4077] / [i915#9688]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12119/bat-mtlp-8/igt@kms_psr@psr-primary-mmap-gtt.html * igt@kms_setmode@basic-clone-single-crtc: - bat-mtlp-8: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#8809]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12119/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-read: - bat-mtlp-8: NOTRUN -> [SKIP][15] ([i915#3708]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12119/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - bat-mtlp-8: NOTRUN -> [SKIP][16] ([i915#3708] / [i915#4077]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12119/bat-mtlp-8/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-write: - bat-mtlp-8: NOTRUN -> [SKIP][17] ([i915#10216] / [i915#3708]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12119/bat-mtlp-8/igt@prime_vgem@basic-write.html [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8114 -> IGTPW_12119 * Linux: CI_DRM_15707 -> CI_DRM_15713 CI-20190529: 20190529 CI_DRM_15707: c43ac257e8f2dfe3a5f56d3565472cb8051ca32d @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15713: 57639ceec0f66f06f4a8a8ac3b9551b7b493c33f @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12119: 12119 IGT_8114: 8114 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12119/index.html [-- Attachment #2: Type: text/html, Size: 7959 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ CI.xeFULL: failure for tests/intel/xe_oa: Refactors related to OA buffer size 2024-11-18 6:32 [PATCH i-g-t 0/2] tests/intel/xe_oa: Refactors related to OA buffer size Sai Teja Pottumuttu ` (3 preceding siblings ...) 2024-11-18 11:48 ` ✓ Fi.CI.BAT: success " Patchwork @ 2024-11-18 12:42 ` Patchwork 4 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2024-11-18 12:42 UTC (permalink / raw) To: Sai Teja Pottumuttu; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 101179 bytes --] == Series Details == Series: tests/intel/xe_oa: Refactors related to OA buffer size URL : https://patchwork.freedesktop.org/series/141471/ State : failure == Summary == CI Bug Log - changes from XEIGT_8114_full -> XEIGTPW_12119_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12119_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12119_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12119_full: ### IGT changes ### #### Possible regressions #### * igt@core_hotunplug@hotreplug: - shard-lnl: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-7/igt@core_hotunplug@hotreplug.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-2/igt@core_hotunplug@hotreplug.html * igt@core_hotunplug@hotunplug-rescan: - shard-lnl: NOTRUN -> [ABORT][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-1/igt@core_hotunplug@hotunplug-rescan.html * igt@kms_atomic@plane-immutable-zpos: - shard-bmg: [PASS][4] -> [INCOMPLETE][5] +4 other tests incomplete [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-2/igt@kms_atomic@plane-immutable-zpos.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-4/igt@kms_atomic@plane-immutable-zpos.html * igt@kms_atomic_interruptible@legacy-pageflip: - shard-dg2-set2: [PASS][6] -> [DMESG-WARN][7] +17 other tests dmesg-warn [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-466/igt@kms_atomic_interruptible@legacy-pageflip.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-436/igt@kms_atomic_interruptible@legacy-pageflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: NOTRUN -> [DMESG-WARN][8] +26 other tests dmesg-warn [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_flip@2x-flip-vs-suspend: - shard-dg2-set2: [PASS][9] -> [DMESG-FAIL][10] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-466/igt@kms_flip@2x-flip-vs-suspend.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-433/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [DMESG-FAIL][11] +7 other tests dmesg-fail [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-1/igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][12] +5 other tests dmesg-fail [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-433/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-suspend@bd-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [ABORT][13] [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-1/igt@kms_flip@2x-flip-vs-suspend@bd-dp2-hdmi-a3.html * igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4: - shard-bmg: [PASS][14] -> [DMESG-FAIL][15] +9 other tests dmesg-fail [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-4/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-4/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4.html * igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-x: - shard-bmg: [PASS][16] -> [SKIP][17] [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-4/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-x.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-4/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-x.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [PASS][18] -> [ABORT][19] [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-463/igt@kms_pm_rpm@system-suspend-modeset.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-463/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_sequence@queue-idle@pipe-c-hdmi-a-3: - shard-bmg: [PASS][20] -> [DMESG-WARN][21] +59 other tests dmesg-warn [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-7/igt@kms_sequence@queue-idle@pipe-c-hdmi-a-3.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-3/igt@kms_sequence@queue-idle@pipe-c-hdmi-a-3.html * igt@xe_exec_threads@threads-userptr-rebind-err: - shard-lnl: [PASS][22] -> [DMESG-WARN][23] +1 other test dmesg-warn [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-3/igt@xe_exec_threads@threads-userptr-rebind-err.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-5/igt@xe_exec_threads@threads-userptr-rebind-err.html * igt@xe_gt_freq@freq_suspend: - shard-bmg: [PASS][24] -> [ABORT][25] +1 other test abort [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-1/igt@xe_gt_freq@freq_suspend.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-3/igt@xe_gt_freq@freq_suspend.html * igt@xe_module_load@many-reload: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][26] [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-464/igt@xe_module_load@many-reload.html #### Warnings #### * igt@core_hotunplug@hotreplug-lateclose: - shard-lnl: [DMESG-WARN][27] -> [ABORT][28] [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-2/igt@core_hotunplug@hotreplug-lateclose.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-1/igt@core_hotunplug@hotreplug-lateclose.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][29] ([Intel XE#3442]) -> [SKIP][30] [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][31] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][32] +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: [SKIP][33] ([Intel XE#3189]) -> [DMESG-WARN][34] [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-2/igt@kms_display_modes@extended-mode-basic.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-7/igt@kms_display_modes@extended-mode-basic.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-bmg: [FAIL][35] ([Intel XE#1695]) -> [DMESG-FAIL][36] [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-4/igt@kms_fbcon_fbt@fbc-suspend.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-3/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [INCOMPLETE][37] ([Intel XE#2635]) -> [DMESG-FAIL][38] [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3: - shard-bmg: [INCOMPLETE][39] -> [DMESG-WARN][40] [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][41] ([Intel XE#2312]) -> [DMESG-FAIL][42] [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [FAIL][43] ([Intel XE#2333]) -> [DMESG-FAIL][44] +4 other tests dmesg-fail [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@xe_module_load@reload-no-display: - shard-bmg: [FAIL][45] ([Intel XE#2136]) -> [DMESG-WARN][46] [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-2/igt@xe_module_load@reload-no-display.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-8/igt@xe_module_load@reload-no-display.html - shard-dg2-set2: [FAIL][47] ([Intel XE#2136]) -> [DMESG-WARN][48] [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-435/igt@xe_module_load@reload-no-display.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-436/igt@xe_module_load@reload-no-display.html * igt@xe_oa@non-privileged-map-oa-buffer: - shard-dg2-set2: [SKIP][49] ([Intel XE#2541]) -> [SKIP][50] +17 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-466/igt@xe_oa@non-privileged-map-oa-buffer.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-435/igt@xe_oa@non-privileged-map-oa-buffer.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare}: - shard-bmg: [FAIL][51] ([Intel XE#3499]) -> [DMESG-FAIL][52] [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html Known issues ------------ Here are the changes found in XEIGTPW_12119_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@hotunplug-rescan: - shard-dg2-set2: [PASS][53] -> [SKIP][54] ([Intel XE#1885]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-463/igt@core_hotunplug@hotunplug-rescan.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@core_hotunplug@hotunplug-rescan.html * igt@core_setmaster@master-drop-set-root: - shard-dg2-set2: [PASS][55] -> [FAIL][56] ([Intel XE#3130] / [Intel XE#3249]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-435/igt@core_setmaster@master-drop-set-root.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@core_setmaster@master-drop-set-root.html * igt@core_setmaster@master-drop-set-shared-fd: - shard-dg2-set2: [PASS][57] -> [SKIP][58] ([Intel XE#3453]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-434/igt@core_setmaster@master-drop-set-shared-fd.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@core_setmaster@master-drop-set-shared-fd.html * igt@core_setmaster_vs_auth: - shard-dg2-set2: [PASS][59] -> [SKIP][60] ([Intel XE#2423]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-464/igt@core_setmaster_vs_auth.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@core_setmaster_vs_auth.html * igt@fbdev@read: - shard-dg2-set2: [PASS][61] -> [SKIP][62] ([Intel XE#2134]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-436/igt@fbdev@read.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@fbdev@read.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-lnl: [PASS][63] -> [FAIL][64] ([Intel XE#1701]) +1 other test fail [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-6/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-4/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#316]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-435/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1407]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-7/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2327]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-2/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-bmg: [PASS][68] -> [DMESG-FAIL][69] ([Intel XE#3468]) +6 other tests dmesg-fail [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#607]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1124]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#1124]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#1124]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-7/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt@kms_bw@linear-tiling-1-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#367]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-435/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html * igt@kms_bw@linear-tiling-4-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#367]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-4/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2887]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-5/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#787]) +18 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-464/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#2907]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#455] / [Intel XE#787]) +5 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#2887]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-5/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html * igt@kms_cdclk@plane-scaling: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2724]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-7/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2325]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-2/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#373]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-435/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#373]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2252]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-6/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_content_protection@lic-type-1: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2341]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-5/igt@kms_content_protection@lic-type-1.html * igt@kms_cursor_crc@cursor-offscreen-256x85: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2320]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-256x85.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2321]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#308]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-435/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [FAIL][91] ([Intel XE#2141]) +2 other tests fail [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_feature_discovery@dp-mst: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#1137]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-434/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1421]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][94] ([Intel XE#301]) +5 other tests fail [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][95] ([Intel XE#2882]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: [PASS][96] -> [FAIL][97] ([Intel XE#2882]) +1 other test fail [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-2/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-2/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-dg2-set2: [PASS][98] -> [INCOMPLETE][99] ([Intel XE#1195] / [Intel XE#2049] / [Intel XE#2597]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-464/igt@kms_flip@flip-vs-suspend.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-435/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a6: - shard-dg2-set2: [PASS][100] -> [INCOMPLETE][101] ([Intel XE#1195]) +2 other tests incomplete [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-464/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-435/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html * igt@kms_flip@plain-flip-ts-check: - shard-lnl: [PASS][102] -> [FAIL][103] ([Intel XE#3149] / [Intel XE#886]) +1 other test fail [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-2/igt@kms_flip@plain-flip-ts-check.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-4/igt@kms_flip@plain-flip-ts-check.html * igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3: - shard-bmg: [PASS][104] -> [DMESG-WARN][105] ([Intel XE#3468]) +20 other tests dmesg-warn [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-6/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-7/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html * igt@kms_flip@plain-flip-ts-check@c-edp1: - shard-lnl: [PASS][106] -> [FAIL][107] ([Intel XE#886]) +7 other tests fail [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-2/igt@kms_flip@plain-flip-ts-check@c-edp1.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-4/igt@kms_flip@plain-flip-ts-check@c-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#455]) +3 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2293]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#651]) +8 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [PASS][112] -> [SKIP][113] ([Intel XE#2136]) +49 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [PASS][114] -> [SKIP][115] ([Intel XE#2136] / [Intel XE#2351]) +25 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [FAIL][116] ([Intel XE#2333]) +3 other tests fail [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2-set2: NOTRUN -> [ABORT][117] ([Intel XE#3468]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#651]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-suspend: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2311]) +9 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#653]) +4 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2313]) +7 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#2136] / [Intel XE#2351]) +10 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#656]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#2136]) +28 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-slowdraw.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [PASS][125] -> [SKIP][126] ([Intel XE#1503]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-4/igt@kms_hdr@invalid-hdr.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-6/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#346]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-3/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#2927]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-464/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2934]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3: - shard-bmg: [PASS][130] -> [INCOMPLETE][131] ([Intel XE#3468]) +1 other test incomplete [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3.html * igt@kms_plane_lowres@tiling-x@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#599]) +3 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-5/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html * igt@kms_plane_lowres@tiling-yf: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2393]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-3/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: - shard-bmg: NOTRUN -> [DMESG-WARN][134] ([Intel XE#2566]) +1 other test dmesg-warn [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25: - shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#2763]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#2763]) +9 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_pm_backlight@fade-with-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#870]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-464/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#2392]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-4/igt@kms_pm_dc@dc5-psr.html - shard-lnl: [PASS][139] -> [FAIL][140] ([Intel XE#718]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-2/igt@kms_pm_dc@dc5-psr.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-2/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#2446]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@universal-planes: - shard-dg2-set2: [PASS][142] -> [SKIP][143] ([Intel XE#2446]) +6 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-436/igt@kms_pm_rpm@universal-planes.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_pm_rpm@universal-planes.html * igt@kms_pm_rpm@universal-planes-dpms: - shard-bmg: [PASS][144] -> [INCOMPLETE][145] ([Intel XE#2864]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-3/igt@kms_pm_rpm@universal-planes-dpms.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-8/igt@kms_pm_rpm@universal-planes-dpms.html * igt@kms_pm_rpm@universal-planes@plane-68: - shard-lnl: [PASS][146] -> [DMESG-WARN][147] ([Intel XE#2932]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-8/igt@kms_pm_rpm@universal-planes@plane-68.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-7/igt@kms_pm_rpm@universal-planes@plane-68.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#1489]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-463/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#1489]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr@fbc-pr-no-drrs: - shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-5/igt@kms_psr@fbc-pr-no-drrs.html * igt@kms_psr@fbc-psr2-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-435/igt@kms_psr@fbc-psr2-dpms.html * igt@kms_psr@psr2-sprite-blt: - shard-lnl: [PASS][152] -> [DMESG-WARN][153] ([Intel XE#3466]) +3 other tests dmesg-warn [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-7/igt@kms_psr@psr2-sprite-blt.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-4/igt@kms_psr@psr2-sprite-blt.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#1127]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-180: - shard-dg2-set2: [PASS][155] -> [SKIP][156] ([Intel XE#2423] / [i915#2575]) +186 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-436/igt@kms_rotation_crc@sprite-rotation-180.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-180.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#3414]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-7/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-lnl: [PASS][158] -> [FAIL][159] ([Intel XE#899]) +1 other test fail [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][160] -> [FAIL][161] ([Intel XE#2159]) +1 other test fail [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@flip-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#2423] / [i915#2575]) +29 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@lobf: - shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#1499]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-6/igt@kms_vrr@lobf.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#756]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@xe_eudebug@basic-exec-queues: - shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#2905]) +2 other tests skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-3/igt@xe_eudebug@basic-exec-queues.html * igt@xe_eudebug_online@preempt-breakpoint: - shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#2905]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-434/igt@xe_eudebug_online@preempt-breakpoint.html * igt@xe_eudebug_online@resume-one: - shard-lnl: NOTRUN -> [SKIP][167] ([Intel XE#2905]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-7/igt@xe_eudebug_online@resume-one.html * igt@xe_exec_balancer@once-parallel-rebind: - shard-dg2-set2: [PASS][168] -> [SKIP][169] ([Intel XE#1130]) +333 other tests skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-436/igt@xe_exec_balancer@once-parallel-rebind.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@xe_exec_balancer@once-parallel-rebind.html * igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap: - shard-bmg: NOTRUN -> [SKIP][170] ([Intel XE#2322]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-6/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html * igt@xe_exec_basic@multigpu-no-exec-rebind: - shard-lnl: NOTRUN -> [SKIP][171] ([Intel XE#1392]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-8/igt@xe_exec_basic@multigpu-no-exec-rebind.html * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm: - shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#288]) +6 other tests skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html * igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate: - shard-lnl: [PASS][173] -> [DMESG-FAIL][174] ([Intel XE#2687] / [Intel XE#3371]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-3/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-2/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html * igt@xe_exec_threads@threads-hang-rebind-err: - shard-dg2-set2: [PASS][175] -> [DMESG-WARN][176] ([Intel XE#358]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-463/igt@xe_exec_threads@threads-hang-rebind-err.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-464/igt@xe_exec_threads@threads-hang-rebind-err.html * igt@xe_fault_injection@inject-fault-probe-function-xe_device_create: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][177] ([Intel XE#3467]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-463/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early: - shard-bmg: [PASS][178] -> [DMESG-WARN][179] ([Intel XE#3467]) +3 other tests dmesg-warn [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init: - shard-dg2-set2: [PASS][180] -> [DMESG-WARN][181] ([Intel XE#3467]) +7 other tests dmesg-warn [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-463/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-433/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html * igt@xe_live_ktest@xe_bo: - shard-lnl: [PASS][182] -> [DMESG-FAIL][183] ([Intel XE#3466]) +4 other tests dmesg-fail [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-6/igt@xe_live_ktest@xe_bo.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-4/igt@xe_live_ktest@xe_bo.html * igt@xe_live_ktest@xe_dma_buf: - shard-lnl: [PASS][184] -> [SKIP][185] ([Intel XE#1192]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-4/igt@xe_live_ktest@xe_dma_buf.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-6/igt@xe_live_ktest@xe_dma_buf.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][186] ([Intel XE#1999]) +2 other tests fail [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-463/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_module_load@force-load: - shard-bmg: NOTRUN -> [SKIP][187] ([Intel XE#2457]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-8/igt@xe_module_load@force-load.html * igt@xe_module_load@load: - shard-dg2-set2: NOTRUN -> [SKIP][188] ([Intel XE#378]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-435/igt@xe_module_load@load.html * igt@xe_module_load@reload: - shard-dg2-set2: [PASS][189] -> [FAIL][190] ([Intel XE#2136]) [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-466/igt@xe_module_load@reload.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@xe_module_load@reload.html * igt@xe_oa@mmio-triggered-reports: - shard-lnl: [PASS][191] -> [FAIL][192] ([Intel XE#2249]) +1 other test fail [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-6/igt@xe_oa@mmio-triggered-reports.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-4/igt@xe_oa@mmio-triggered-reports.html * igt@xe_pm@s2idle-vm-bind-userptr: - shard-bmg: [PASS][193] -> [DMESG-WARN][194] ([Intel XE#1616]) [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-8/igt@xe_pm@s2idle-vm-bind-userptr.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-1/igt@xe_pm@s2idle-vm-bind-userptr.html * igt@xe_pm@s3-vm-bind-unbind-all: - shard-dg2-set2: [PASS][195] -> [DMESG-WARN][196] ([Intel XE#569]) +1 other test dmesg-warn [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-435/igt@xe_pm@s3-vm-bind-unbind-all.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-464/igt@xe_pm@s3-vm-bind-unbind-all.html - shard-bmg: [PASS][197] -> [DMESG-WARN][198] ([Intel XE#569]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-2/igt@xe_pm@s3-vm-bind-unbind-all.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-5/igt@xe_pm@s3-vm-bind-unbind-all.html * igt@xe_pm@s4-exec-after: - shard-dg2-set2: [PASS][199] -> [DMESG-WARN][200] ([Intel XE#3468]) +1 other test dmesg-warn [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-463/igt@xe_pm@s4-exec-after.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-436/igt@xe_pm@s4-exec-after.html * igt@xe_pm_residency@idle-residency-on-exec: - shard-lnl: [PASS][201] -> [FAIL][202] ([Intel XE#2564]) +1 other test fail [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-1/igt@xe_pm_residency@idle-residency-on-exec.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-5/igt@xe_pm_residency@idle-residency-on-exec.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][203] -> [FAIL][204] ([Intel XE#958]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-8/igt@xe_pm_residency@toggle-gt-c6.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: NOTRUN -> [SKIP][205] ([Intel XE#944]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-7/igt@xe_query@multigpu-query-invalid-cs-cycles.html * igt@xe_query@multigpu-query-uc-fw-version-huc: - shard-lnl: NOTRUN -> [SKIP][206] ([Intel XE#944]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-4/igt@xe_query@multigpu-query-uc-fw-version-huc.html * igt@xe_vm@large-misaligned-binds-2097152: - shard-dg2-set2: NOTRUN -> [SKIP][207] ([Intel XE#1130]) +49 other tests skip [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@xe_vm@large-misaligned-binds-2097152.html #### Possible fixes #### * igt@fbdev@unaligned-read: - shard-bmg: [SKIP][208] ([Intel XE#2134]) -> [PASS][209] [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-2/igt@fbdev@unaligned-read.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-8/igt@fbdev@unaligned-read.html * igt@kms_atomic_transition@modeset-transition-nonblocking: - shard-lnl: [FAIL][210] ([Intel XE#1701]) -> [PASS][211] +1 other test pass [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-6/igt@kms_atomic_transition@modeset-transition-nonblocking.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-3/igt@kms_atomic_transition@modeset-transition-nonblocking.html * igt@kms_big_fb@linear-64bpp-rotate-180: - shard-dg2-set2: [DMESG-WARN][212] ([Intel XE#877]) -> [PASS][213] [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-436/igt@kms_big_fb@linear-64bpp-rotate-180.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-180.html * igt@kms_cursor_crc@cursor-sliding-64x64: - shard-dg2-set2: [SKIP][214] ([Intel XE#2924]) -> [PASS][215] +4 other tests pass [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-435/igt@kms_cursor_crc@cursor-sliding-64x64.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-64x64.html * igt@kms_flip@2x-flip-vs-dpms: - shard-bmg: [DMESG-WARN][216] ([Intel XE#2955] / [Intel XE#877]) -> [PASS][217] [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-dpms@ad-dp2-hdmi-a3: - shard-bmg: [DMESG-WARN][218] ([Intel XE#877]) -> [PASS][219] [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms@ad-dp2-hdmi-a3.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms@ad-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3: - shard-bmg: [FAIL][220] ([Intel XE#3486]) -> [PASS][221] +2 other tests pass [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank@a-dp4: - shard-dg2-set2: [FAIL][222] ([Intel XE#3487]) -> [PASS][223] [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6: - shard-dg2-set2: [FAIL][224] ([Intel XE#301]) -> [PASS][225] +6 other tests pass [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html * igt@kms_flip@flip-vs-wf_vblank-interruptible: - shard-lnl: [FAIL][226] ([Intel XE#886]) -> [PASS][227] +7 other tests pass [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-7/igt@kms_flip@flip-vs-wf_vblank-interruptible.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-1/igt@kms_flip@flip-vs-wf_vblank-interruptible.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format: - shard-bmg: [SKIP][228] ([Intel XE#3189]) -> [PASS][229] +3 other tests pass [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html * igt@kms_pm_dc@dc6-dpms: - shard-lnl: [FAIL][230] ([Intel XE#1430]) -> [PASS][231] [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-7/igt@kms_pm_dc@dc6-dpms.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@universal-planes@plane-59: - shard-lnl: [DMESG-WARN][232] ([Intel XE#3184]) -> [PASS][233] +1 other test pass [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-8/igt@kms_pm_rpm@universal-planes@plane-59.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-7/igt@kms_pm_rpm@universal-planes@plane-59.html * igt@kms_rotation_crc@cursor-rotation-180: - shard-bmg: [SKIP][234] ([Intel XE#829]) -> [PASS][235] +1 other test pass [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-2/igt@kms_rotation_crc@cursor-rotation-180.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-6/igt@kms_rotation_crc@cursor-rotation-180.html - shard-dg2-set2: [SKIP][236] ([Intel XE#829]) -> [PASS][237] +1 other test pass [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-435/igt@kms_rotation_crc@cursor-rotation-180.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-434/igt@kms_rotation_crc@cursor-rotation-180.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [TIMEOUT][238] ([Intel XE#1473] / [Intel XE#2472]) -> [PASS][239] [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_compute_mode@many-userptr-rebind: - shard-lnl: [FAIL][240] ([Intel XE#3233]) -> [PASS][241] [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-7/igt@xe_exec_compute_mode@many-userptr-rebind.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-1/igt@xe_exec_compute_mode@many-userptr-rebind.html * igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate: - shard-bmg: [DMESG-FAIL][242] ([Intel XE#3371]) -> [PASS][243] [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-7/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-4/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html * igt@xe_module_load@reload: - shard-lnl: [DMESG-WARN][244] -> [PASS][245] [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-5/igt@xe_module_load@reload.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-4/igt@xe_module_load@reload.html * igt@xe_pm@s4-vm-bind-prefetch: - shard-lnl: [ABORT][246] ([Intel XE#1607] / [Intel XE#1794]) -> [PASS][247] [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-2/igt@xe_pm@s4-vm-bind-prefetch.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-8/igt@xe_pm@s4-vm-bind-prefetch.html #### Warnings #### * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: [SKIP][248] ([Intel XE#623]) -> [SKIP][249] ([Intel XE#2423] / [i915#2575]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-436/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-dg2-set2: [SKIP][250] ([Intel XE#316]) -> [SKIP][251] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-434/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-dg2-set2: [SKIP][252] ([Intel XE#316]) -> [SKIP][253] ([Intel XE#2136]) +7 other tests skip [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-436/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-16bpp-rotate-90: - shard-dg2-set2: [SKIP][254] ([Intel XE#1124]) -> [SKIP][255] ([Intel XE#2136]) +14 other tests skip [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-433/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][256] ([Intel XE#607]) -> [SKIP][257] ([Intel XE#2136] / [Intel XE#2351]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-433/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: [SKIP][258] ([Intel XE#1124]) -> [SKIP][259] ([Intel XE#2136] / [Intel XE#2351]) +8 other tests skip [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-433/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: [SKIP][260] ([Intel XE#367]) -> [SKIP][261] ([Intel XE#2423] / [i915#2575]) +8 other tests skip [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-436/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: [SKIP][262] ([Intel XE#2191]) -> [SKIP][263] ([Intel XE#2423] / [i915#2575]) [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-dg2-set2: [SKIP][264] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][265] ([Intel XE#2136]) +19 other tests skip [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-433/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][266] ([Intel XE#2907]) -> [SKIP][267] ([Intel XE#2136]) +2 other tests skip [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][268] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][269] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-436/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][270] ([Intel XE#1195] / [Intel XE#2692]) -> [SKIP][271] ([Intel XE#2136]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [INCOMPLETE][272] ([Intel XE#1195] / [Intel XE#1727]) -> [SKIP][273] ([Intel XE#2136]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_chamelium_color@ctm-0-25: - shard-dg2-set2: [SKIP][274] ([Intel XE#306]) -> [SKIP][275] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-464/igt@kms_chamelium_color@ctm-0-25.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@ctm-0-50: - shard-bmg: [SKIP][276] ([Intel XE#3189]) -> [SKIP][277] ([Intel XE#2325]) [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-2/igt@kms_chamelium_color@ctm-0-50.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-3/igt@kms_chamelium_color@ctm-0-50.html - shard-dg2-set2: [SKIP][278] ([Intel XE#2924]) -> [SKIP][279] ([Intel XE#306]) [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-435/igt@kms_chamelium_color@ctm-0-50.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-464/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: [SKIP][280] ([Intel XE#373]) -> [SKIP][281] ([Intel XE#2423] / [i915#2575]) +20 other tests skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: [SKIP][282] ([Intel XE#307]) -> [SKIP][283] ([Intel XE#2423] / [i915#2575]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-0.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@lic-type-0: - shard-dg2-set2: [FAIL][284] ([Intel XE#1178]) -> [SKIP][285] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-464/igt@kms_content_protection@lic-type-0.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_content_protection@lic-type-0.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: [SKIP][286] ([Intel XE#308]) -> [SKIP][287] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x512.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-bmg: [SKIP][288] ([Intel XE#3189]) -> [SKIP][289] ([Intel XE#2320]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2-set2: [SKIP][290] ([Intel XE#323]) -> [SKIP][291] ([Intel XE#2423] / [i915#2575]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: [SKIP][292] ([Intel XE#776]) -> [SKIP][293] ([Intel XE#2136]) [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-434/igt@kms_fbcon_fbt@psr-suspend.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-dg2-set2: [SKIP][294] ([Intel XE#701]) -> [SKIP][295] ([Intel XE#2423] / [i915#2575]) [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-435/igt@kms_feature_discovery@chamelium.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-4x: - shard-dg2-set2: [SKIP][296] ([Intel XE#1138]) -> [SKIP][297] ([Intel XE#2423] / [i915#2575]) [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-436/igt@kms_feature_discovery@display-4x.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr2: - shard-dg2-set2: [SKIP][298] ([Intel XE#1135]) -> [SKIP][299] ([Intel XE#2423] / [i915#2575]) [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-464/igt@kms_feature_discovery@psr2.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][300] ([Intel XE#301]) -> [SKIP][301] ([Intel XE#2423] / [i915#2575]) [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3: - shard-bmg: [FAIL][302] ([Intel XE#3486]) -> [FAIL][303] ([Intel XE#3321] / [Intel XE#3486]) [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-panning: - shard-dg2-set2: [SKIP][304] ([Intel XE#2924]) -> [SKIP][305] ([Intel XE#2423] / [i915#2575]) [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-435/igt@kms_flip@2x-flip-vs-panning.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@bo-too-big-interruptible@a-edp1: - shard-lnl: [TIMEOUT][306] ([Intel XE#1504]) -> [INCOMPLETE][307] ([Intel XE#1504]) +1 other test incomplete [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-7/igt@kms_flip@bo-too-big-interruptible@a-edp1.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-lnl-2/igt@kms_flip@bo-too-big-interruptible@a-edp1.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [INCOMPLETE][308] ([Intel XE#1195] / [Intel XE#2049] / [Intel XE#2597]) -> [SKIP][309] ([Intel XE#2423] / [i915#2575]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][310] ([Intel XE#455]) -> [SKIP][311] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: [SKIP][312] ([Intel XE#455]) -> [SKIP][313] ([Intel XE#2136]) +10 other tests skip [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][314] ([Intel XE#651]) -> [SKIP][315] ([Intel XE#2136]) +39 other tests skip [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][316] ([Intel XE#651]) -> [SKIP][317] ([Intel XE#2136] / [Intel XE#2351]) +23 other tests skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [FAIL][318] ([Intel XE#2333]) -> [DMESG-FAIL][319] ([Intel XE#3468]) +4 other tests dmesg-fail [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][320] ([Intel XE#2924]) -> [SKIP][321] ([Intel XE#651]) [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html - shard-bmg: [SKIP][322] ([Intel XE#3189]) -> [SKIP][323] ([Intel XE#2311]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][324] ([Intel XE#653]) -> [SKIP][325] ([Intel XE#2136]) +45 other tests skip [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render: - shard-dg2-set2: [SKIP][326] ([Intel XE#2924]) -> [SKIP][327] ([Intel XE#653]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html - shard-bmg: [SKIP][328] ([Intel XE#3189]) -> [SKIP][329] ([Intel XE#2313]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][330] ([Intel XE#2312]) -> [SKIP][331] ([Intel XE#2313]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][332] ([Intel XE#653]) -> [SKIP][333] ([Intel XE#2136] / [Intel XE#2351]) +20 other tests skip [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_joiner@basic-big-joiner: - shard-dg2-set2: [SKIP][334] ([Intel XE#346]) -> [SKIP][335] ([Intel XE#2136]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-463/igt@kms_joiner@basic-big-joiner.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg2-set2: [SKIP][336] ([Intel XE#2925]) -> [SKIP][337] ([Intel XE#2136]) [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-433/igt@kms_joiner@basic-force-ultra-joiner.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: [SKIP][338] ([Intel XE#2927]) -> [SKIP][339] ([Intel XE#2136]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-434/igt@kms_joiner@invalid-modeset-ultra-joiner.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg2-set2: [SKIP][340] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][341] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_pm_backlight@bad-brightness: - shard-dg2-set2: [SKIP][342] ([Intel XE#870]) -> [SKIP][343] ([Intel XE#2136]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-434/igt@kms_pm_backlight@bad-brightness.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc6-psr: - shard-dg2-set2: [SKIP][344] ([Intel XE#1129]) -> [SKIP][345] ([Intel XE#2136] / [Intel XE#2351]) [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-466/igt@kms_pm_dc@dc6-psr.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@deep-pkgc: - shard-dg2-set2: [SKIP][346] ([Intel XE#908]) -> [SKIP][347] ([Intel XE#2136]) [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-434/igt@kms_pm_dc@deep-pkgc.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_pm_dc@deep-pkgc.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: [SKIP][348] ([Intel XE#1489]) -> [SKIP][349] ([Intel XE#2136]) +17 other tests skip [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg2-set2: [SKIP][350] ([Intel XE#2924]) -> [SKIP][351] ([Intel XE#2136]) [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-435/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html - shard-bmg: [SKIP][352] ([Intel XE#3189]) -> [SKIP][353] ([Intel XE#1489]) [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-2/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2-set2: [SKIP][354] ([Intel XE#1122]) -> [SKIP][355] ([Intel XE#2136]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-434/igt@kms_psr2_su@page_flip-nv12.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr-no-drrs: - shard-dg2-set2: [SKIP][356] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][357] ([Intel XE#2136] / [Intel XE#2351]) +11 other tests skip [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-434/igt@kms_psr@fbc-psr-no-drrs.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr-sprite-render: - shard-dg2-set2: [SKIP][358] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][359] ([Intel XE#2136]) +18 other tests skip [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-render.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-render.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][360] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][361] ([Intel XE#2351]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-466/igt@kms_psr@psr-sprite-plane-onoff.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr@psr2-cursor-render: - shard-dg2-set2: [SKIP][362] ([Intel XE#2924]) -> [SKIP][363] ([Intel XE#2850] / [Intel XE#929]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-435/igt@kms_psr@psr2-cursor-render.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-435/igt@kms_psr@psr2-cursor-render.html - shard-bmg: [SKIP][364] ([Intel XE#3189]) -> [SKIP][365] ([Intel XE#2234] / [Intel XE#2850]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-2/igt@kms_psr@psr2-cursor-render.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-1/igt@kms_psr@psr2-cursor-render.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-set2: [SKIP][366] ([Intel XE#2939]) -> [SKIP][367] ([Intel XE#2136] / [Intel XE#2351]) [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-434/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-set2: [SKIP][368] ([Intel XE#2939]) -> [SKIP][369] ([Intel XE#2136]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-463/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2-set2: [SKIP][370] ([Intel XE#1127]) -> [SKIP][371] ([Intel XE#2423] / [i915#2575]) [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: [SKIP][372] ([Intel XE#3414]) -> [SKIP][373] ([Intel XE#2423] / [i915#2575]) +6 other tests skip [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][374] ([Intel XE#2426]) -> [FAIL][375] ([Intel XE#1729]) [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tv_load_detect@load-detect: - shard-dg2-set2: [SKIP][376] ([Intel XE#330]) -> [SKIP][377] ([Intel XE#2423] / [i915#2575]) [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-464/igt@kms_tv_load_detect@load-detect.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@flipline: - shard-dg2-set2: [SKIP][378] ([Intel XE#455]) -> [SKIP][379] ([Intel XE#2423] / [i915#2575]) +9 other tests skip [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-463/igt@kms_vrr@flipline.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-dg2-set2: [SKIP][380] ([Intel XE#2168]) -> [SKIP][381] ([Intel XE#2423] / [i915#2575]) [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-463/igt@kms_vrr@lobf.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_vrr@lobf.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2-set2: [SKIP][382] ([Intel XE#756]) -> [SKIP][383] ([Intel XE#2423] / [i915#2575]) +1 other test skip [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-433/igt@kms_writeback@writeback-pixel-formats.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@kms_writeback@writeback-pixel-formats.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: [SKIP][384] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][385] ([Intel XE#2423] / [i915#2575]) +1 other test skip [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-434/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: [SKIP][386] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][387] ([Intel XE#1130]) [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-435/igt@xe_compute_preempt@compute-preempt-many.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_copy_basic@mem-copy-linear-0xfffe: - shard-dg2-set2: [SKIP][388] ([Intel XE#1123]) -> [SKIP][389] ([Intel XE#1130]) +1 other test skip [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-464/igt@xe_copy_basic@mem-copy-linear-0xfffe.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0xfffe.html * igt@xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: [SKIP][390] ([Intel XE#1126]) -> [SKIP][391] ([Intel XE#1130]) +1 other test skip [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfffe.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfffe.html * igt@xe_eudebug_online@interrupt-all-set-breakpoint: - shard-dg2-set2: [SKIP][392] ([Intel XE#2905]) -> [SKIP][393] ([Intel XE#1130]) +23 other tests skip [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-434/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][394] ([Intel XE#1473]) -> [SKIP][395] ([Intel XE#1130]) [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-large.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [TIMEOUT][396] ([Intel XE#1473]) -> [INCOMPLETE][397] ([Intel XE#1473]) [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-7/igt@xe_evict@evict-beng-mixed-many-threads-small.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: [SKIP][398] ([Intel XE#288]) -> [SKIP][399] ([Intel XE#1130]) +54 other tests skip [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: [SKIP][400] ([Intel XE#2360]) -> [SKIP][401] ([Intel XE#1130]) [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-463/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init: - shard-dg2-set2: [DMESG-WARN][402] ([Intel XE#3343]) -> [SKIP][403] ([Intel XE#1130]) +1 other test skip [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-464/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute: - shard-bmg: [FAIL][404] ([Intel XE#3499]) -> [DMESG-FAIL][405] ([Intel XE#3467]) +1 other test dmesg-fail [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html * igt@xe_huc_copy@huc_copy: - shard-dg2-set2: [SKIP][406] ([Intel XE#255]) -> [SKIP][407] ([Intel XE#1130]) [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-436/igt@xe_huc_copy@huc_copy.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@xe_huc_copy@huc_copy.html * igt@xe_oa@oa-unit-exclusive-stream-sample-oa: - shard-dg2-set2: [SKIP][408] ([Intel XE#2541]) -> [SKIP][409] ([Intel XE#1130]) +15 other tests skip [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-434/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html * igt@xe_pat@pat-index-xelpg: - shard-dg2-set2: [SKIP][410] ([Intel XE#979]) -> [SKIP][411] ([Intel XE#1130]) [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-466/igt@xe_pat@pat-index-xelpg.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm@d3cold-basic-exec: - shard-dg2-set2: [SKIP][412] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][413] ([Intel XE#1130]) +2 other tests skip [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-436/igt@xe_pm@d3cold-basic-exec.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@xe_pm@d3cold-basic-exec.html * igt@xe_pm@vram-d3cold-threshold: - shard-dg2-set2: [SKIP][414] ([Intel XE#579]) -> [SKIP][415] ([Intel XE#1130]) [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-464/igt@xe_pm@vram-d3cold-threshold.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_query@multigpu-query-engines: - shard-dg2-set2: [SKIP][416] ([Intel XE#944]) -> [SKIP][417] ([Intel XE#1130]) +4 other tests skip [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-463/igt@xe_query@multigpu-query-engines.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@xe_query@multigpu-query-engines.html * igt@xe_sriov_flr@flr-each-isolation: - shard-dg2-set2: [SKIP][418] ([Intel XE#3342]) -> [SKIP][419] ([Intel XE#1130]) [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-434/igt@xe_sriov_flr@flr-each-isolation.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@xe_sriov_flr@flr-each-isolation.html * igt@xe_wedged@wedged-mode-toggle: - shard-dg2-set2: [ABORT][420] ([Intel XE#3075] / [Intel XE#3084]) -> [SKIP][421] ([Intel XE#1130]) [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-435/igt@xe_wedged@wedged-mode-toggle.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/shard-dg2-466/igt@xe_wedged@wedged-mode-toggle.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2564 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2687 [Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2924]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2924 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932 [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939 [Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084 [Intel XE#3130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3130 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184 [Intel XE#3189]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3189 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3233 [Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343 [Intel XE#3371]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3371 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 [Intel XE#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3466 [Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467 [Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468 [Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486 [Intel XE#3487]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487 [Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499 [Intel XE#358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/358 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8114 -> IGTPW_12119 * Linux: xe-2235-36fec0eb87867bca47f8829c9e5dbf5b3e2b3aaf -> xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f IGTPW_12119: 12119 IGT_8114: 8114 xe-2235-36fec0eb87867bca47f8829c9e5dbf5b3e2b3aaf: 36fec0eb87867bca47f8829c9e5dbf5b3e2b3aaf xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f: 57639ceec0f66f06f4a8a8ac3b9551b7b493c33f == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12119/index.html [-- Attachment #2: Type: text/html, Size: 123354 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2024-11-19 7:44 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-11-18 6:32 [PATCH i-g-t 0/2] tests/intel/xe_oa: Refactors related to OA buffer size Sai Teja Pottumuttu 2024-11-18 6:32 ` [PATCH i-g-t 1/2] tests/intel/xe_oa: Fetch OA buffer size from observation IOCTL Sai Teja Pottumuttu 2024-11-18 19:51 ` Dixit, Ashutosh 2024-11-19 6:19 ` Pottumuttu, Sai Teja 2024-11-18 20:03 ` Dixit, Ashutosh 2024-11-18 6:32 ` [PATCH i-g-t 2/2] tests/intel/xe_oa: Replace hardcoded OA buffer size assumptions Sai Teja Pottumuttu 2024-11-18 20:24 ` Dixit, Ashutosh 2024-11-19 7:01 ` Pottumuttu, Sai Teja 2024-11-19 7:21 ` Dixit, Ashutosh 2024-11-19 7:28 ` Pottumuttu, Sai Teja 2024-11-18 7:10 ` ✗ CI.xeBAT: failure for tests/intel/xe_oa: Refactors related to OA buffer size Patchwork 2024-11-18 11:48 ` ✓ Fi.CI.BAT: success " Patchwork 2024-11-18 12:42 ` ✗ CI.xeFULL: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox