* [PATCH i-g-t v2 0/2] Add tests for EU stall sampling
@ 2025-02-18 18:21 Harish Chegondi
2025-02-18 18:21 ` [PATCH i-g-t v2 1/2] drm-uapi/xe: Sync with EU stall sampling uapi updates Harish Chegondi
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Harish Chegondi @ 2025-02-18 18:21 UTC (permalink / raw)
To: igt-dev
Cc: ashutosh.dixit, james.ausmus, felix.j.degrood, shubham.kumar,
kamil.konieczny, Harish Chegondi
The patches in this series add IGT tests for EU stall sampling, a
hardware feature first introduced in PVC and also supported in XE2 and
later architecture GPUs.
The Xe driver patches that add support for EU stall sampling are under
review: https://patchwork.freedesktop.org/series/144609/
These IGT tests are being used to test the driver changes for EU stall
sampling.
v2: No longer use the OA library functions used in v1
Move xe_drm.h header changes into separate patch
Address review feedback from v1
Signed-off-by: Harish Chegondi <harish.chegondi@intel.com>
Harish Chegondi (2):
drm-uapi/xe: Sync with EU stall sampling uapi updates
tests/intel/xe_eu_stall: Add tests for EU stall sampling
include/drm-uapi/xe_drm.h | 74 +++++
tests/intel/xe_eu_stall.c | 623 ++++++++++++++++++++++++++++++++++++++
tests/meson.build | 1 +
3 files changed, 698 insertions(+)
create mode 100644 tests/intel/xe_eu_stall.c
--
2.48.1
^ permalink raw reply [flat|nested] 8+ messages in thread* [PATCH i-g-t v2 1/2] drm-uapi/xe: Sync with EU stall sampling uapi updates 2025-02-18 18:21 [PATCH i-g-t v2 0/2] Add tests for EU stall sampling Harish Chegondi @ 2025-02-18 18:21 ` Harish Chegondi 2025-03-03 19:11 ` Dixit, Ashutosh 2025-02-18 18:21 ` [PATCH i-g-t v2 2/2] tests/intel/xe_eu_stall: Add tests for EU stall sampling Harish Chegondi ` (3 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Harish Chegondi @ 2025-02-18 18:21 UTC (permalink / raw) To: igt-dev Cc: ashutosh.dixit, james.ausmus, felix.j.degrood, shubham.kumar, kamil.konieczny, Harish Chegondi Align with the following commits: ("drm/xe/uapi: Introduce API for EU stall sampling") ("drm/xe/uapi: Add a device query to get EU stall sampling information") Link: https://patchwork.freedesktop.org/series/144609/ Signed-off-by: Harish Chegondi <harish.chegondi@intel.com> --- include/drm-uapi/xe_drm.h | 74 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h index 08e263b3b..f143f2e65 100644 --- a/include/drm-uapi/xe_drm.h +++ b/include/drm-uapi/xe_drm.h @@ -700,6 +700,7 @@ struct drm_xe_device_query { #define DRM_XE_DEVICE_QUERY_ENGINE_CYCLES 6 #define DRM_XE_DEVICE_QUERY_UC_FW_VERSION 7 #define DRM_XE_DEVICE_QUERY_OA_UNITS 8 +#define DRM_XE_DEVICE_QUERY_EU_STALL 10 /** @query: The type of data to query */ __u32 query; @@ -1397,6 +1398,8 @@ struct drm_xe_wait_user_fence { enum drm_xe_observation_type { /** @DRM_XE_OBSERVATION_TYPE_OA: OA observation stream type */ DRM_XE_OBSERVATION_TYPE_OA, + /** @DRM_XE_OBSERVATION_TYPE_EU_STALL: EU stall sampling observation stream type */ + DRM_XE_OBSERVATION_TYPE_EU_STALL, }; /** @@ -1729,6 +1732,77 @@ struct drm_xe_oa_stream_info { __u64 reserved[3]; }; +/** + * enum drm_xe_eu_stall_property_id - EU stall sampling input property ids. + * + * These properties are passed to the driver at open as a chain of + * @drm_xe_ext_set_property structures with @property set to these + * properties' enums and @value set to the corresponding values of these + * properties. @drm_xe_user_extension base.name should be set to + * @DRM_XE_EU_STALL_EXTENSION_SET_PROPERTY. + * + * With the file descriptor obtained from open, user space must enable + * the EU stall stream fd with @DRM_XE_OBSERVATION_IOCTL_ENABLE before + * calling read(). EIO errno from read() indicates HW dropped data + * due to full buffer. + */ +enum drm_xe_eu_stall_property_id { +#define DRM_XE_EU_STALL_EXTENSION_SET_PROPERTY 0 + /** + * @DRM_XE_EU_STALL_PROP_GT_ID: @gt_id of the GT on which + * EU stall data will be captured. + */ + DRM_XE_EU_STALL_PROP_GT_ID = 1, + + /** + * @DRM_XE_EU_STALL_PROP_SAMPLE_RATE: Sampling rate in + * GPU cycles from @sampling_rates in struct @drm_xe_query_eu_stall + */ + DRM_XE_EU_STALL_PROP_SAMPLE_RATE, + + /** + * @DRM_XE_EU_STALL_PROP_WAIT_NUM_REPORTS: Minimum number of + * EU stall data reports to be present in the kernel buffer + * before unblocking poll or read that is blocked. + */ + DRM_XE_EU_STALL_PROP_WAIT_NUM_REPORTS, +}; + +/** + * struct drm_xe_query_eu_stall - Information about EU stall sampling. + * + * If a query is made with a struct @drm_xe_device_query where .query + * is equal to @DRM_XE_DEVICE_QUERY_EU_STALL, then the reply uses + * struct @drm_xe_query_eu_stall in .data. + */ +struct drm_xe_query_eu_stall { + /** @extensions: Pointer to the first extension struct, if any */ + __u64 extensions; + + /** @capabilities: EU stall capabilities bit-mask */ + __u64 capabilities; +#define DRM_XE_EU_STALL_CAPS_BASE (1 << 0) + + /** @record_size: size of each EU stall data record */ + __u64 record_size; + + /** @per_xecore_buf_size: internal per XeCore buffer size */ + __u64 per_xecore_buf_size; + + /** @reserved: Reserved */ + __u64 reserved[5]; + + /** @num_sampling_rates: Number of sampling rates in @sampling_rates array */ + __u64 num_sampling_rates; + + /** + * @sampling_rates: Flexible array of sampling rates + * sorted in the fastest to slowest order. + * Sampling rates are specified in GPU clock cycles. + */ + __u64 sampling_rates[]; +}; + #if defined(__cplusplus) } #endif -- 2.48.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t v2 1/2] drm-uapi/xe: Sync with EU stall sampling uapi updates 2025-02-18 18:21 ` [PATCH i-g-t v2 1/2] drm-uapi/xe: Sync with EU stall sampling uapi updates Harish Chegondi @ 2025-03-03 19:11 ` Dixit, Ashutosh 0 siblings, 0 replies; 8+ messages in thread From: Dixit, Ashutosh @ 2025-03-03 19:11 UTC (permalink / raw) To: Harish Chegondi; +Cc: igt-dev On Tue, 18 Feb 2025 10:21:26 -0800, Harish Chegondi wrote: > > Align with the following commits: > ("drm/xe/uapi: Introduce API for EU stall sampling") > ("drm/xe/uapi: Add a device query to get EU stall sampling information") I have merged the EU xe_drm.h changes so this patch can be dropped. > > Link: https://patchwork.freedesktop.org/series/144609/ > Signed-off-by: Harish Chegondi <harish.chegondi@intel.com> > --- > include/drm-uapi/xe_drm.h | 74 +++++++++++++++++++++++++++++++++++++++ > 1 file changed, 74 insertions(+) > > diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h > index 08e263b3b..f143f2e65 100644 > --- a/include/drm-uapi/xe_drm.h > +++ b/include/drm-uapi/xe_drm.h > @@ -700,6 +700,7 @@ struct drm_xe_device_query { > #define DRM_XE_DEVICE_QUERY_ENGINE_CYCLES 6 > #define DRM_XE_DEVICE_QUERY_UC_FW_VERSION 7 > #define DRM_XE_DEVICE_QUERY_OA_UNITS 8 > +#define DRM_XE_DEVICE_QUERY_EU_STALL 10 > /** @query: The type of data to query */ > __u32 query; > > @@ -1397,6 +1398,8 @@ struct drm_xe_wait_user_fence { > enum drm_xe_observation_type { > /** @DRM_XE_OBSERVATION_TYPE_OA: OA observation stream type */ > DRM_XE_OBSERVATION_TYPE_OA, > + /** @DRM_XE_OBSERVATION_TYPE_EU_STALL: EU stall sampling observation stream type */ > + DRM_XE_OBSERVATION_TYPE_EU_STALL, > }; > > /** > @@ -1729,6 +1732,77 @@ struct drm_xe_oa_stream_info { > __u64 reserved[3]; > }; > > +/** > + * enum drm_xe_eu_stall_property_id - EU stall sampling input property ids. > + * > + * These properties are passed to the driver at open as a chain of > + * @drm_xe_ext_set_property structures with @property set to these > + * properties' enums and @value set to the corresponding values of these > + * properties. @drm_xe_user_extension base.name should be set to > + * @DRM_XE_EU_STALL_EXTENSION_SET_PROPERTY. > + * > + * With the file descriptor obtained from open, user space must enable > + * the EU stall stream fd with @DRM_XE_OBSERVATION_IOCTL_ENABLE before > + * calling read(). EIO errno from read() indicates HW dropped data > + * due to full buffer. > + */ > +enum drm_xe_eu_stall_property_id { > +#define DRM_XE_EU_STALL_EXTENSION_SET_PROPERTY 0 > + /** > + * @DRM_XE_EU_STALL_PROP_GT_ID: @gt_id of the GT on which > + * EU stall data will be captured. > + */ > + DRM_XE_EU_STALL_PROP_GT_ID = 1, > + > + /** > + * @DRM_XE_EU_STALL_PROP_SAMPLE_RATE: Sampling rate in > + * GPU cycles from @sampling_rates in struct @drm_xe_query_eu_stall > + */ > + DRM_XE_EU_STALL_PROP_SAMPLE_RATE, > + > + /** > + * @DRM_XE_EU_STALL_PROP_WAIT_NUM_REPORTS: Minimum number of > + * EU stall data reports to be present in the kernel buffer > + * before unblocking poll or read that is blocked. > + */ > + DRM_XE_EU_STALL_PROP_WAIT_NUM_REPORTS, > +}; > + > +/** > + * struct drm_xe_query_eu_stall - Information about EU stall sampling. > + * > + * If a query is made with a struct @drm_xe_device_query where .query > + * is equal to @DRM_XE_DEVICE_QUERY_EU_STALL, then the reply uses > + * struct @drm_xe_query_eu_stall in .data. > + */ > +struct drm_xe_query_eu_stall { > + /** @extensions: Pointer to the first extension struct, if any */ > + __u64 extensions; > + > + /** @capabilities: EU stall capabilities bit-mask */ > + __u64 capabilities; > +#define DRM_XE_EU_STALL_CAPS_BASE (1 << 0) > + > + /** @record_size: size of each EU stall data record */ > + __u64 record_size; > + > + /** @per_xecore_buf_size: internal per XeCore buffer size */ > + __u64 per_xecore_buf_size; > + > + /** @reserved: Reserved */ > + __u64 reserved[5]; > + > + /** @num_sampling_rates: Number of sampling rates in @sampling_rates array */ > + __u64 num_sampling_rates; > + > + /** > + * @sampling_rates: Flexible array of sampling rates > + * sorted in the fastest to slowest order. > + * Sampling rates are specified in GPU clock cycles. > + */ > + __u64 sampling_rates[]; > +}; > + > #if defined(__cplusplus) > } > #endif > -- > 2.48.1 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH i-g-t v2 2/2] tests/intel/xe_eu_stall: Add tests for EU stall sampling 2025-02-18 18:21 [PATCH i-g-t v2 0/2] Add tests for EU stall sampling Harish Chegondi 2025-02-18 18:21 ` [PATCH i-g-t v2 1/2] drm-uapi/xe: Sync with EU stall sampling uapi updates Harish Chegondi @ 2025-02-18 18:21 ` Harish Chegondi 2025-03-03 19:11 ` Dixit, Ashutosh 2025-02-18 19:16 ` ✓ Xe.CI.BAT: success for Add tests for EU stall sampling (rev2) Patchwork ` (2 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Harish Chegondi @ 2025-02-18 18:21 UTC (permalink / raw) To: igt-dev Cc: ashutosh.dixit, james.ausmus, felix.j.degrood, shubham.kumar, kamil.konieczny, Harish Chegondi A new hardware feature first introduced in PVC gives capability to periodically sample EU stall state and record counts for different stall reasons, on a per IP basis, aggregate across all EUs in a subslice and record the samples in a buffer in each subslice. Eventually, the aggregated data is written out to a buffer in the memory. This feature is also supported in XE2 and later architecture GPUs. Add tests to test EU stall sampling functionality in the Xe driver. These tests accept several inputs from the user, enable EU stall counters, run a given workload on a child process while the parent process reads the stall data and parses the data. The EU stall counters are disabled once the workload completes execution. If the user doesn't provide any input workload, GPGPU fill is used as the workload. gpgpu_fill() and related functions have been reused from xe_gpgpu_fill.c. v2: Addressed review feedback from v1 User can pass an output file to write the EU stall data xe_drm.h file changes have been moved into a separate patch Signed-off-by: Harish Chegondi <harish.chegondi@intel.com> --- tests/intel/xe_eu_stall.c | 623 ++++++++++++++++++++++++++++++++++++++ tests/meson.build | 1 + 2 files changed, 624 insertions(+) create mode 100644 tests/intel/xe_eu_stall.c diff --git a/tests/intel/xe_eu_stall.c b/tests/intel/xe_eu_stall.c new file mode 100644 index 000000000..964bb7c91 --- /dev/null +++ b/tests/intel/xe_eu_stall.c @@ -0,0 +1,623 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright(c) 2025 Intel Corporation. All rights reserved. + */ + +/** + * TEST: Basic tests for EU stall sampling functionality + * Category: Core + * Functionality: EU stall sampling + * Mega feature: Performance interface + * Sub-category: Performance + * Test category: xe + * + * SUBTEST: non-blocking-read + * Description: Verify non-blocking read of EU stall data during a workload run + * + * SUBTEST: blocking-read + * Description: Verify blocking read of EU stall data during a workload run + * + * SUBTEST: unprivileged-access + * Description: Verify unprivileged open of a EU stall data stream fd + */ + +#include <fcntl.h> +#include <poll.h> +#include <sys/ioctl.h> +#include <sys/wait.h> + +#include "igt.h" +#include "igt_core.h" +#include "xe_drm.h" +#include "xe/xe_ioctl.h" + +#define OBSERVATION_PARANOID "/proc/sys/dev/xe/observation_paranoid" + +#define NUM_ITERS_GPGPU_FILL 100 +#define DEFAULT_NUM_REPORTS 1 +#define DEFAULT_SAMPLE_RATE (251 * 4) +#define DEFAULT_USER_BUF_SIZE (64 * 512 * 1024) + +#define WIDTH 64 +#define HEIGHT 64 +#define COLOR_88 0x88 +#define COLOR_4C 0x4c + +static FILE *output; +static char *p_args[8]; +static char *output_file; +static uint8_t p_gt_id; +static uint32_t p_rate; +static uint32_t p_user = DEFAULT_USER_BUF_SIZE; +static uint32_t p_num_reports = DEFAULT_NUM_REPORTS; + +static volatile bool child_is_running = true; + +/* + * EU stall data format for PVC + */ +struct xe_eu_stall_data_pvc { + __u64 ip_addr:29; /* Bits 0 to 28 */ + __u64 active_count:8; /* Bits 29 to 36 */ + __u64 other_count:8; /* Bits 37 to 44 */ + __u64 control_count:8; /* Bits 45 to 52 */ + __u64 pipestall_count:8; /* Bits 53 to 60 */ + __u64 send_count:8; /* Bits 61 to 68 */ + __u64 dist_acc_count:8; /* Bits 69 to 76 */ + __u64 sbid_count:8; /* Bits 77 to 84 */ + __u64 sync_count:8; /* Bits 85 to 92 */ + __u64 inst_fetch_count:8; /* Bits 93 to 100 */ + __u64 unused_bits:27; + __u64 unused[6]; +} __attribute__((packed)); + +/* + * EU stall data format for Xe2 arch GPUs (LNL, BMG). + */ +struct xe_eu_stall_data_xe2 { + __u64 ip_addr:29; /* Bits 0 to 28 */ + __u64 tdr_count:8; /* Bits 29 to 36 */ + __u64 other_count:8; /* Bits 37 to 44 */ + __u64 control_count:8; /* Bits 45 to 52 */ + __u64 pipestall_count:8; /* Bits 53 to 60 */ + __u64 send_count:8; /* Bits 61 to 68 */ + __u64 dist_acc_count:8; /* Bits 69 to 76 */ + __u64 sbid_count:8; /* Bits 77 to 84 */ + __u64 sync_count:8; /* Bits 85 to 92 */ + __u64 inst_fetch_count:8; /* Bits 93 to 100 */ + __u64 active_count:8; /* Bits 101 to 108 */ + __u64 ex_id:3; /* Bits 109 to 111 */ + __u64 end_flag:1; /* Bit 112 */ + __u64 unused_bits:15; + __u64 unused[6]; +} __attribute__((packed)); + +struct xe_eu_stall_open_prop { + uint32_t num_properties; + uint32_t reserved; + uint64_t properties_ptr; +}; + +union xe_eu_stall_data { + struct xe_eu_stall_data_pvc pvc; + struct xe_eu_stall_data_xe2 xe2; +}; + +typedef struct { + int drm_fd; + uint32_t devid; + struct buf_ops *bops; +} data_t; + +static struct intel_buf * +create_buf(data_t *data, int width, int height, uint8_t color, uint64_t region) +{ + struct intel_buf *buf; + uint8_t *ptr; + int i; + + buf = calloc(1, sizeof(*buf)); + igt_assert(buf); + + buf = intel_buf_create(data->bops, width / 4, height, 32, 0, + I915_TILING_NONE, 0); + + ptr = xe_bo_map(data->drm_fd, buf->handle, buf->surface[0].size); + + for (i = 0; i < buf->surface[0].size; i++) + ptr[i] = color; + + munmap(ptr, buf->surface[0].size); + + return buf; +} + +static void buf_check(uint8_t *ptr, int width, int x, int y, uint8_t color) +{ + uint8_t val; + + val = ptr[y * width + x]; + igt_assert_f(val == color, + "Expected 0x%02x, found 0x%02x at (%d,%d)\n", + color, val, x, y); +} + +static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region, + uint32_t surf_width, uint32_t surf_height, + uint32_t x, uint32_t y, + uint32_t width, uint32_t height) +{ + struct intel_buf *buf; + uint8_t *ptr; + int i, j; + + buf = create_buf(data, surf_width, surf_height, COLOR_88, region); + ptr = xe_bo_map(data->drm_fd, buf->handle, buf->surface[0].size); + + for (i = 0; i < surf_width; i++) + for (j = 0; j < surf_height; j++) + buf_check(ptr, surf_width, i, j, COLOR_88); + + fill(data->drm_fd, buf, x, y, width, height, COLOR_4C); + + for (i = 0; i < surf_width; i++) + for (j = 0; j < surf_height; j++) + if (i >= x && i < width + x && + j >= y && j < height + y) + buf_check(ptr, surf_width, i, j, COLOR_4C); + else + buf_check(ptr, surf_height, i, j, COLOR_88); + + munmap(ptr, buf->surface[0].size); +} + +static int run_gpgpu_fill(int drm_fd, uint32_t devid) +{ + data_t data = {drm_fd, devid, NULL}; + igt_fillfunc_t fill_fn = NULL; + unsigned int i; + + data.bops = buf_ops_create(drm_fd); + fill_fn = igt_get_gpgpu_fillfunc(devid); + + for (i = 0; i < NUM_ITERS_GPGPU_FILL; i++) + gpgpu_fill(&data, fill_fn, 0, WIDTH, HEIGHT, 16, 16, WIDTH / 2, HEIGHT / 2); + + buf_ops_destroy(data.bops); + + return EXIT_SUCCESS; +} + +/** + * xe_eu_stall_prop_to_ext: + * @properties: pointer to internal IGT properties + * @extn: Pointer to array of set_property uapi structs + * + * Convert 'struct xe_eu_stall_open_prop' properties used internally in IGT + * into chained 'struct drm_xe_ext_set_property' structures used in + * EU stall sampling uapi + */ +static void xe_eu_stall_prop_to_ext(struct xe_eu_stall_open_prop *properties, + struct drm_xe_ext_set_property *extn) +{ + __u64 *prop = from_user_pointer(properties->properties_ptr); + struct drm_xe_ext_set_property *ext = extn; + int i, j; + + for (i = 0; i < properties->num_properties; i++) { + ext->base.name = DRM_XE_EU_STALL_EXTENSION_SET_PROPERTY; + ext->property = *prop++; + ext->value = *prop++; + ext++; + } + + igt_assert_lte(1, i); + ext = extn; + for (j = 0; j < i - 1; j++) + ext[j].base.next_extension = to_user_pointer(&ext[j + 1]); +} + +static int xe_eu_stall_ioctl(int fd, enum drm_xe_observation_op op, void *arg) +{ +#define XE_EU_STALL_MAX_SET_PROPERTIES 5 + + struct drm_xe_ext_set_property ext[XE_EU_STALL_MAX_SET_PROPERTIES] = {}; + + /* Chain the PERF layer struct */ + struct drm_xe_observation_param p = { + .extensions = 0, + .observation_type = DRM_XE_OBSERVATION_TYPE_EU_STALL, + .observation_op = op, + .param = to_user_pointer((op == DRM_XE_OBSERVATION_OP_STREAM_OPEN) ? ext : arg), + }; + + if (op == DRM_XE_OBSERVATION_OP_STREAM_OPEN) { + struct xe_eu_stall_open_prop *oprop = (struct xe_eu_stall_open_prop *)arg; + + igt_assert_lte(oprop->num_properties, XE_EU_STALL_MAX_SET_PROPERTIES); + xe_eu_stall_prop_to_ext(oprop, ext); + } + + return igt_ioctl(fd, DRM_IOCTL_XE_OBSERVATION, &p); +} + +static void xe_eu_stall_ioctl_err(int fd, enum drm_xe_observation_op op, void *arg, int err) +{ + igt_assert_eq(xe_eu_stall_ioctl(fd, op, arg), -1); + igt_assert_eq(errno, err); + errno = 0; +} + +static uint64_t read_u64_file(const char *path) +{ + FILE *f; + uint64_t val; + + f = fopen(path, "r"); + igt_assert(f); + + igt_assert_eq(fscanf(f, "%"PRIu64, &val), 1); + + fclose(f); + + return val; +} + +static void write_u64_file(const char *path, uint64_t val) +{ + FILE *f; + + f = fopen(path, "w"); + igt_assert(f); + + igt_assert(fprintf(f, "%"PRIu64, val) > 0); + + fclose(f); +} + +static void set_fd_flags(int fd, int flags) +{ + int old = fcntl(fd, F_GETFL, 0); + + igt_assert_lte(0, old); + igt_assert_eq(0, fcntl(fd, F_SETFL, old | flags)); +} + +static inline void enable_paranoid(void) +{ + write_u64_file(OBSERVATION_PARANOID, 1); +} + +static inline void disable_paranoid(void) +{ + write_u64_file(OBSERVATION_PARANOID, 0); +} + +/* + * Test to verify that only a privileged process can open + * an EU stall data stream file descriptor. + */ +static void test_non_privileged_access(int drm_fd) +{ + int paranoid, stream_fd; + + paranoid = read_u64_file(OBSERVATION_PARANOID); + + igt_fork(child, 1) { + uint64_t properties[] = { + DRM_XE_EU_STALL_PROP_GT_ID, p_gt_id, + DRM_XE_EU_STALL_PROP_SAMPLE_RATE, DEFAULT_SAMPLE_RATE, + DRM_XE_EU_STALL_PROP_WAIT_NUM_REPORTS, p_num_reports, + }; + + struct xe_eu_stall_open_prop props = { + .num_properties = ARRAY_SIZE(properties) / 2, + .properties_ptr = to_user_pointer(properties), + }; + + if (!paranoid) + enable_paranoid(); + + igt_drop_root(); + + xe_eu_stall_ioctl_err(drm_fd, DRM_XE_OBSERVATION_OP_STREAM_OPEN, &props, EACCES); + } + + igt_waitchildren(); + + igt_fork(child, 1) { + uint64_t properties[] = { + DRM_XE_EU_STALL_PROP_GT_ID, p_gt_id, + DRM_XE_EU_STALL_PROP_SAMPLE_RATE, DEFAULT_SAMPLE_RATE, + DRM_XE_EU_STALL_PROP_WAIT_NUM_REPORTS, p_num_reports, + }; + + struct xe_eu_stall_open_prop props = { + .num_properties = ARRAY_SIZE(properties) / 2, + .properties_ptr = to_user_pointer(properties), + }; + + disable_paranoid(); + + igt_drop_root(); + + stream_fd = xe_eu_stall_ioctl(drm_fd, DRM_XE_OBSERVATION_OP_STREAM_OPEN, &props); + igt_require_fd(stream_fd); + close(stream_fd); + } + + igt_waitchildren(); + + /* restore paranoid state */ + if (paranoid) + enable_paranoid(); +} + +static int wait_child(struct igt_helper_process *child_proc) +{ + int status; + + status = igt_wait_helper(child_proc); + if (WIFEXITED(status)) + return WEXITSTATUS(status); + if (WIFSIGNALED(status)) + return (128 + WTERMSIG(status)); + return 0; +} + +static void sighandler(int sig) +{ + child_is_running = false; +} + +static void print_eu_stall_data(uint32_t devid, uint8_t *buf, size_t size) +{ + int i; + uint8_t *sample_addr; + union xe_eu_stall_data stall_data; + + for (i = 0; i < size / sizeof(stall_data); i++) { + sample_addr = buf + (i * sizeof(stall_data)); + memcpy(&stall_data, sample_addr, sizeof(stall_data)); + if (IS_PONTEVECCHIO(devid)) { + fprintf(output, "ip: 0x%08x ", stall_data.pvc.ip_addr); + fprintf(output, "active: %u ", stall_data.pvc.active_count); + fprintf(output, "other: %u ", stall_data.pvc.other_count); + fprintf(output, "control: %u ", stall_data.pvc.control_count); + fprintf(output, "pipestall: %u ", stall_data.pvc.pipestall_count); + fprintf(output, "send: %u ", stall_data.pvc.send_count); + fprintf(output, "dist_acc: %u ", stall_data.pvc.dist_acc_count); + fprintf(output, "sbid: %u ", stall_data.pvc.sbid_count); + fprintf(output, "sync: %u ", stall_data.pvc.sync_count); + fprintf(output, "inst_fetch: %u\n", stall_data.pvc.inst_fetch_count); + } else { + fprintf(output, "ip: 0x%08x ", stall_data.xe2.ip_addr); + fprintf(output, "tdr: %u ", stall_data.xe2.tdr_count); + fprintf(output, "other: %u ", stall_data.xe2.other_count); + fprintf(output, "control: %u ", stall_data.xe2.control_count); + fprintf(output, "pipestall: %u ", stall_data.xe2.pipestall_count); + fprintf(output, "send: %u ", stall_data.xe2.send_count); + fprintf(output, "dist_acc: %u ", stall_data.xe2.dist_acc_count); + fprintf(output, "sbid: %u ", stall_data.xe2.sbid_count); + fprintf(output, "sync: %u ", stall_data.xe2.sync_count); + fprintf(output, "inst_fetch: %u ", stall_data.xe2.inst_fetch_count); + fprintf(output, "active: %u ", stall_data.xe2.active_count); + fprintf(output, "ex_id: %u ", stall_data.xe2.ex_id); + fprintf(output, "end_flag: %u\n", stall_data.xe2.end_flag); + } + } +} + +/* + * Test enables EU stall counters, runs a given workload on a child process + * while the parent process reads the stall counters data, disables EU stall + * counters once the workload completes execution. + */ +static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read) +{ + uint32_t num_samples = 0, num_drops = 0; + struct igt_helper_process work_load = {}; + struct sigaction sa = { 0 }; + int ret, flags, stream_fd; + uint64_t total_size = 0; + uint8_t *buf; + + uint64_t properties[] = { + DRM_XE_EU_STALL_PROP_GT_ID, p_gt_id, + DRM_XE_EU_STALL_PROP_SAMPLE_RATE, p_rate, + DRM_XE_EU_STALL_PROP_WAIT_NUM_REPORTS, p_num_reports, + }; + + struct xe_eu_stall_open_prop props = { + .num_properties = ARRAY_SIZE(properties) / 2, + .properties_ptr = to_user_pointer(properties), + }; + + struct drm_xe_query_eu_stall *query_eu_stall_data; + struct drm_xe_device_query query = { + .extensions = 0, + .query = DRM_XE_DEVICE_QUERY_EU_STALL, + .size = 0, + .data = 0, + }; + + igt_info("User buffer size: %u\n", p_user); + if (p_args[0]) + igt_info("Workload: %s\n", p_args[0]); + else + igt_info("Workload: GPGPU fill\n"); + + buf = malloc(p_user); + igt_assert(buf); + + igt_assert_eq(igt_ioctl(drm_fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), 0); + igt_assert_neq(query.size, 0); + + query_eu_stall_data = malloc(query.size); + igt_assert(query_eu_stall_data); + + query.data = to_user_pointer(query_eu_stall_data); + igt_assert_eq(igt_ioctl(drm_fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), 0); + + igt_assert(query_eu_stall_data->num_sampling_rates > 0); + if (p_rate == 0) + properties[3] = query_eu_stall_data->sampling_rates[0]; + igt_info("Sampling Rate: %lu\n", properties[3]); + + stream_fd = xe_eu_stall_ioctl(drm_fd, DRM_XE_OBSERVATION_OP_STREAM_OPEN, &props); + igt_require_fd(stream_fd); + + if (!blocking_read) + flags = O_CLOEXEC | O_NONBLOCK; + else + flags = O_CLOEXEC; + + set_fd_flags(stream_fd, flags); + + do_ioctl(stream_fd, DRM_XE_OBSERVATION_IOCTL_ENABLE, 0); + + sa.sa_handler = sighandler; + if (sigaction(SIGCHLD, &sa, NULL) == -1) { + igt_critical("Failed to register SIGCHLD signal handler\n"); + igt_fail(IGT_EXIT_FAILURE); + } + + child_is_running = true; + /* Child process runs the workload */ + igt_fork_helper(&work_load) { + setpgid(0, 0); + if (p_args[0]) { + execv(p_args[0], p_args); + _exit(EXIT_FAILURE); + } else { + _exit(run_gpgpu_fill(drm_fd, devid)); + } + } + /* Parent process reads the EU stall counters data */ + do { + if (!blocking_read) { + struct pollfd pollfd = { .fd = stream_fd, .events = POLLIN }; + + ret = poll(&pollfd, 1, 0); + if (ret <= 0) + continue; + igt_assert_eq(ret, 1); + igt_assert(pollfd.revents & POLLIN); + } + ret = read(stream_fd, buf, p_user); + if (ret > 0) { + total_size += ret; + if (output) + print_eu_stall_data(devid, buf, ret); + num_samples += ret / query_eu_stall_data->record_size; + } else if ((ret < 0) && (errno != EAGAIN)) { + if (errno == EINTR) + continue; + if (errno == EIO) { + num_drops++; + continue; + } + igt_critical("read() - ret: %d, errno: %d\n", ret, errno); + kill(-work_load.pid, SIGTERM); + break; + } + } while (child_is_running); + + igt_info("Total size read: %lu\n", total_size); + igt_info("Number of samples: %u\n", num_samples); + igt_info("Number of drops reported: %u\n", num_drops); + + do_ioctl(stream_fd, DRM_XE_OBSERVATION_IOCTL_DISABLE, 0); + + close(stream_fd); + free(buf); + + ret = wait_child(&work_load); + igt_assert_f(ret == 0, "waitpid() - ret: %d, errno: %d\n", ret, errno); + igt_assert_f(num_samples, "No EU stalls detected during the workload\n"); +} + +static int opt_handler(int opt, int opt_index, void *data) +{ + switch (opt) { + case 'e': + p_num_reports = strtoul(optarg, NULL, 0); + break; + case 'g': + p_gt_id = strtoul(optarg, NULL, 0); + break; + case 'o': + output_file = optarg; + break; + case 'r': + p_rate = strtoul(optarg, NULL, 0); + break; + case 'u': + p_user = strtoul(optarg, NULL, 0); + break; + case 'w': + p_args[0] = optarg; + p_args[1] = NULL; + break; + default: + return IGT_OPT_HANDLER_ERROR; + } + + return IGT_OPT_HANDLER_SUCCESS; +} + +const char *help_str = " --event_count | -e\t\tPoll event report count\n" + " --gt_id | -g\t\tGT ID for the GT to sample EU stalls\n" + " --output | -o\t\tOutput file to write EU stall data\n" + " --rate | -r\t\tSampling rate in GPU cycles\n" + " --user_buf_sz | -u\t\tUser buffer size\n" + " --workload | -w\t\tWorkload to run\n"; + +static struct option long_options[] = { + {"event_count", 0, 0, 'e'}, + {"gt_id", 0, 0, 'g'}, + {"output", 0, 0, 'o'}, + {"rate", 0, 0, 'r'}, + {"user_buf_sz", 0, 0, 'u'}, + {"workload", 0, 0, 'w'}, + { NULL, 0, 0, 0 } +}; + +igt_main_args("e:g:o:r:u:w:", long_options, help_str, opt_handler, NULL) +{ + int drm_fd; + uint32_t devid; + bool blocking_read = true; + + igt_fixture { + drm_fd = drm_open_driver(DRIVER_XE); + igt_require_fd(drm_fd); + devid = intel_get_drm_devid(drm_fd); + igt_require(IS_PONTEVECCHIO(devid) || intel_graphics_ver(devid) >= IP_VER(20, 0)); + igt_require_f(igt_get_gpgpu_fillfunc(devid), "no gpgpu-fill function\n"); + if (output_file) { + output = fopen(output_file, "w"); + igt_require(output); + } + } + + igt_describe("Verify non-blocking read of EU stall data during a workload run"); + igt_subtest("non-blocking-read") { + test_eustall(drm_fd, devid, !blocking_read); + } + + igt_describe("Verify blocking read of EU stall data during a workload run"); + igt_subtest("blocking-read") { + test_eustall(drm_fd, devid, blocking_read); + } + + igt_describe("Verify that unprivileged open of a EU stall data fd fails"); + igt_subtest("unprivileged-access") + test_non_privileged_access(drm_fd); + + igt_fixture { + if (output) + fclose(output); + drm_close_driver(drm_fd); + } +} diff --git a/tests/meson.build b/tests/meson.build index f8a0ab836..37e227e7a 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -280,6 +280,7 @@ intel_xe_progs = [ 'xe_dma_buf_sync', 'xe_debugfs', 'xe_drm_fdinfo', + 'xe_eu_stall', 'xe_evict', 'xe_evict_ccs', 'xe_exec_atomic', -- 2.48.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t v2 2/2] tests/intel/xe_eu_stall: Add tests for EU stall sampling 2025-02-18 18:21 ` [PATCH i-g-t v2 2/2] tests/intel/xe_eu_stall: Add tests for EU stall sampling Harish Chegondi @ 2025-03-03 19:11 ` Dixit, Ashutosh 0 siblings, 0 replies; 8+ messages in thread From: Dixit, Ashutosh @ 2025-03-03 19:11 UTC (permalink / raw) To: Harish Chegondi; +Cc: igt-dev On Tue, 18 Feb 2025 10:21:27 -0800, Harish Chegondi wrote: > > +const char *help_str = " --event_count | -e\t\tPoll event report count\n" > + " --gt_id | -g\t\tGT ID for the GT to sample EU stalls\n" > + " --output | -o\t\tOutput file to write EU stall data\n" > + " --rate | -r\t\tSampling rate in GPU cycles\n" > + " --user_buf_sz | -u\t\tUser buffer size\n" > + " --workload | -w\t\tWorkload to run\n"; > + > +static struct option long_options[] = { > + {"event_count", 0, 0, 'e'}, > + {"gt_id", 0, 0, 'g'}, > + {"output", 0, 0, 'o'}, > + {"rate", 0, 0, 'r'}, > + {"user_buf_sz", 0, 0, 'u'}, > + {"workload", 0, 0, 'w'}, > + { NULL, 0, 0, 0 } The tests should probably be extended in the future by iterating over some of these parameters (such as user buffer size, sampling rate, event count). But this is good patch is good enough starting point, so this is now: Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com> ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Xe.CI.BAT: success for Add tests for EU stall sampling (rev2) 2025-02-18 18:21 [PATCH i-g-t v2 0/2] Add tests for EU stall sampling Harish Chegondi 2025-02-18 18:21 ` [PATCH i-g-t v2 1/2] drm-uapi/xe: Sync with EU stall sampling uapi updates Harish Chegondi 2025-02-18 18:21 ` [PATCH i-g-t v2 2/2] tests/intel/xe_eu_stall: Add tests for EU stall sampling Harish Chegondi @ 2025-02-18 19:16 ` Patchwork 2025-02-18 19:34 ` ✗ i915.CI.BAT: failure " Patchwork 2025-02-19 12:26 ` ✗ Xe.CI.Full: " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-02-18 19:16 UTC (permalink / raw) To: Harish Chegondi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3396 bytes --] == Series Details == Series: Add tests for EU stall sampling (rev2) URL : https://patchwork.freedesktop.org/series/143030/ State : success == Summary == CI Bug Log - changes from XEIGT_8236_BAT -> XEIGTPW_12627_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12627_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/bat-adlp-vf/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_live_ktest@xe_migrate@xe_migrate_sanity_kunit: - bat-adlp-vf: NOTRUN -> [DMESG-FAIL][2] ([Intel XE#3890]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/bat-adlp-vf/igt@xe_live_ktest@xe_migrate@xe_migrate_sanity_kunit.html #### Possible fixes #### * igt@xe_live_ktest@xe_dma_buf: - bat-adlp-vf: [SKIP][3] ([Intel XE#4322]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/bat-adlp-vf/igt@xe_live_ktest@xe_dma_buf.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/bat-adlp-vf/igt@xe_live_ktest@xe_dma_buf.html * igt@xe_pat@pat-index-xelp@render: - bat-adlp-vf: [DMESG-WARN][5] ([Intel XE#3970]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/bat-adlp-vf/igt@xe_pat@pat-index-xelp@render.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/bat-adlp-vf/igt@xe_pat@pat-index-xelp@render.html #### Warnings #### * igt@xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][7] ([Intel XE#4322]) -> [SKIP][8] ([Intel XE#2229] / [Intel XE#455]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html * igt@xe_live_ktest@xe_migrate: - bat-adlp-vf: [SKIP][9] ([Intel XE#4322]) -> [DMESG-FAIL][10] ([Intel XE#3890]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#3890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3890 [Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 [Intel XE#4322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4322 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8236 -> IGTPW_12627 * Linux: xe-2679-4cc4e3d6ea1543688d62432dbe0fa750780fb262 -> xe-2681-adeeb34d0f0e6463bea93984a56eed4e3ee0f074 IGTPW_12627: 12627 IGT_8236: 8236 xe-2679-4cc4e3d6ea1543688d62432dbe0fa750780fb262: 4cc4e3d6ea1543688d62432dbe0fa750780fb262 xe-2681-adeeb34d0f0e6463bea93984a56eed4e3ee0f074: adeeb34d0f0e6463bea93984a56eed4e3ee0f074 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/index.html [-- Attachment #2: Type: text/html, Size: 4466 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ i915.CI.BAT: failure for Add tests for EU stall sampling (rev2) 2025-02-18 18:21 [PATCH i-g-t v2 0/2] Add tests for EU stall sampling Harish Chegondi ` (2 preceding siblings ...) 2025-02-18 19:16 ` ✓ Xe.CI.BAT: success for Add tests for EU stall sampling (rev2) Patchwork @ 2025-02-18 19:34 ` Patchwork 2025-02-19 12:26 ` ✗ Xe.CI.Full: " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-02-18 19:34 UTC (permalink / raw) To: Harish Chegondi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5329 bytes --] == Series Details == Series: Add tests for EU stall sampling (rev2) URL : https://patchwork.freedesktop.org/series/143030/ State : failure == Summary == CI Bug Log - changes from IGT_8236 -> IGTPW_12627 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12627 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12627, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12627/index.html Participating hosts (42 -> 41) ------------------------------ Additional (1): fi-kbl-7567u Missing (2): fi-glk-j4005 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12627: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@hangcheck: - fi-bsw-nick: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8236/fi-bsw-nick/igt@i915_selftest@live@hangcheck.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12627/fi-bsw-nick/igt@i915_selftest@live@hangcheck.html Known issues ------------ Here are the changes found in IGTPW_12627 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_huc_copy@huc-copy: - fi-kbl-7567u: NOTRUN -> [SKIP][3] ([i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12627/fi-kbl-7567u/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - fi-kbl-7567u: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12627/fi-kbl-7567u/igt@gem_lmem_swapping@parallel-random-engines.html * igt@i915_module_load@load: - bat-twl-2: [PASS][5] -> [DMESG-WARN][6] ([i915#1982]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8236/bat-twl-2/igt@i915_module_load@load.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12627/bat-twl-2/igt@i915_module_load@load.html * igt@i915_selftest@live: - fi-bsw-nick: NOTRUN -> [ABORT][7] ([i915#12435]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12627/fi-bsw-nick/igt@i915_selftest@live.html * igt@kms_dsc@dsc-basic: - fi-kbl-7567u: NOTRUN -> [SKIP][8] +11 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12627/fi-kbl-7567u/igt@kms_dsc@dsc-basic.html #### Possible fixes #### * igt@i915_selftest@live: - bat-adlp-9: [ABORT][9] -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8236/bat-adlp-9/igt@i915_selftest@live.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12627/bat-adlp-9/igt@i915_selftest@live.html - bat-jsl-3: [INCOMPLETE][11] ([i915#12445] / [i915#13241]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8236/bat-jsl-3/igt@i915_selftest@live.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12627/bat-jsl-3/igt@i915_selftest@live.html * igt@i915_selftest@live@guc: - bat-adlp-9: [ABORT][13] ([i915#13696]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8236/bat-adlp-9/igt@i915_selftest@live@guc.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12627/bat-adlp-9/igt@i915_selftest@live@guc.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [DMESG-FAIL][15] ([i915#12061]) -> [PASS][16] +1 other test pass [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8236/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12627/bat-mtlp-6/igt@i915_selftest@live@workarounds.html - bat-arls-6: [DMESG-FAIL][17] ([i915#12061]) -> [PASS][18] +1 other test pass [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8236/bat-arls-6/igt@i915_selftest@live@workarounds.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12627/bat-arls-6/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12435 [i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445 [i915#13241]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13241 [i915#13696]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13696 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8236 -> IGTPW_12627 * Linux: CI_DRM_16149 -> CI_DRM_16150 CI-20190529: 20190529 CI_DRM_16149: 4587c05996666a92af63f86ba410bae1dc940794 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_16150: adeeb34d0f0e6463bea93984a56eed4e3ee0f074 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12627: 12627 IGT_8236: 8236 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12627/index.html [-- Attachment #2: Type: text/html, Size: 6258 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.Full: failure for Add tests for EU stall sampling (rev2) 2025-02-18 18:21 [PATCH i-g-t v2 0/2] Add tests for EU stall sampling Harish Chegondi ` (3 preceding siblings ...) 2025-02-18 19:34 ` ✗ i915.CI.BAT: failure " Patchwork @ 2025-02-19 12:26 ` Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-02-19 12:26 UTC (permalink / raw) To: Harish Chegondi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 94344 bytes --] == Series Details == Series: Add tests for EU stall sampling (rev2) URL : https://patchwork.freedesktop.org/series/143030/ State : failure == Summary == CI Bug Log - changes from XEIGT_8236_full -> XEIGTPW_12627_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12627_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12627_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_12627_full: ### IGT changes ### #### Possible regressions #### * igt@kms_async_flips@async-flip-with-page-flip-events: - shard-bmg: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-2/igt@kms_async_flips@async-flip-with-page-flip-events.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-2/igt@kms_async_flips@async-flip-with-page-flip-events.html * igt@kms_psr@psr-dpms: - shard-lnl: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-lnl-4/igt@kms_psr@psr-dpms.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-7/igt@kms_psr@psr-dpms.html * igt@xe_eu_stall@non-blocking-read (NEW): - shard-lnl: NOTRUN -> [FAIL][5] +1 other test fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-2/igt@xe_eu_stall@non-blocking-read.html * igt@xe_eu_stall@unprivileged-access (NEW): - shard-bmg: NOTRUN -> [FAIL][6] +1 other test fail [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-7/igt@xe_eu_stall@unprivileged-access.html - shard-dg2-set2: NOTRUN -> [SKIP][7] +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@xe_eu_stall@unprivileged-access.html * igt@xe_live_ktest@xe_bo: - shard-bmg: [PASS][8] -> [SKIP][9] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-1/igt@xe_live_ktest@xe_bo.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-2/igt@xe_live_ktest@xe_bo.html New tests --------- New tests have been introduced between XEIGT_8236_full and XEIGTPW_12627_full: ### New IGT tests (5) ### * igt@kms_cursor_edge_walk@128x128-left-edge@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [3.32] s * igt@kms_cursor_edge_walk@128x128-left-edge@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [3.28] s * igt@xe_eu_stall@blocking-read: - Statuses : - Exec time: [None] s * igt@xe_eu_stall@non-blocking-read: - Statuses : 2 fail(s) 1 skip(s) - Exec time: [0.0, 0.00] s * igt@xe_eu_stall@unprivileged-access: - Statuses : 2 fail(s) 1 skip(s) - Exec time: [0.0, 0.02] s Known issues ------------ Here are the changes found in XEIGTPW_12627_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@intel_hwmon@hwmon-read: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1125]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-5/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#3157]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#3279]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1407]) +2 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-2/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#316]) +3 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2327]) +2 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-32bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +7 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-8/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#610]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#610]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-overflow.html - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1428]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +6 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +14 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: [PASS][22] -> [SKIP][23] ([Intel XE#2191]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-466/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-bmg: [PASS][24] -> [SKIP][25] ([Intel XE#2314] / [Intel XE#2894]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#2191]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2314] / [Intel XE#2894]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-3/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#367]) +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-3840x2160p: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#367]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-4/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html * igt@kms_bw@linear-tiling-3-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#367]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-5/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#455] / [Intel XE#787]) +34 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-466/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [PASS][32] -> [DMESG-WARN][33] ([Intel XE#4199]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#3432]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#3432]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#787]) +93 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-c-hdmi-a-6.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2887]) +7 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-6/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#2907]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2652] / [Intel XE#787]) +34 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-3/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#2887]) +7 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-8/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#1152]) +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#306]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-4/igt@kms_chamelium_color@ctm-blue-to-red.html - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2325]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-4/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#306]) +4 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2252]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-8/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#373]) +6 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-434/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#373]) +3 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-4/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_color@ctm-0-50@pipe-d-dp-2: - shard-bmg: NOTRUN -> [DMESG-WARN][48] ([Intel XE#4330]) +14 other tests dmesg-warn [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-4/igt@kms_color@ctm-0-50@pipe-d-dp-2.html * igt@kms_content_protection@lic-type-0: - shard-dg2-set2: NOTRUN -> [FAIL][49] ([Intel XE#1178]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][50] ([Intel XE#3304]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2321]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-offscreen-64x21: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1424]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-7/igt@kms_cursor_crc@cursor-offscreen-64x21.html - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2320]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-64x21.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#308]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#2321]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-7/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#2291]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#309]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#309]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-5/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2291]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-dg2-set2: [PASS][61] -> [SKIP][62] ([Intel XE#309]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-433/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#4210]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [PASS][64] -> [SKIP][65] ([Intel XE#4294]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-5/igt@kms_dp_linktrain_fallback@dp-fallback.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#4331]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#455]) +19 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_dsc@dsc-with-bpc-formats.html - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#2244]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-6/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2244]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#4156]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-3/igt@kms_fbcon_fbt@fbc-suspend.html - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][71] ([Intel XE#4330]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#776]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-1/igt@kms_fbcon_fbt@psr-suspend.html - shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#776]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-2x: - shard-dg2-set2: [PASS][74] -> [SKIP][75] ([Intel XE#702]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-466/igt@kms_feature_discovery@display-2x.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@psr2: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#1135]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#310]) +4 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1421]) +8 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-2/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-dg2-set2: [PASS][79] -> [SKIP][80] ([Intel XE#310]) +6 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-434/igt@kms_flip@2x-dpms-vs-vblank-race.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-dpms: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2316]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4: - shard-dg2-set2: [PASS][82] -> [FAIL][83] ([Intel XE#301]) +4 other tests fail [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][84] -> [DMESG-FAIL][85] ([Intel XE#4330]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3: - shard-bmg: [PASS][86] -> [FAIL][87] ([Intel XE#3321]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-bmg: [PASS][88] -> [DMESG-WARN][89] ([Intel XE#2955]) +1 other test dmesg-warn [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-2/igt@kms_flip@2x-modeset-vs-vblank-race.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-1/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [PASS][90] -> [SKIP][91] ([Intel XE#2316]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-8/igt@kms_flip@2x-plain-flip-fb-recreate.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-bmg: [PASS][92] -> [FAIL][93] ([Intel XE#2882]) +1 other test fail [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][94] ([Intel XE#2955]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@d-dp4: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][95] ([Intel XE#4330]) +16 other tests dmesg-warn [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@d-dp4.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][96] ([Intel XE#301]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [PASS][97] -> [FAIL][98] ([Intel XE#301]) +3 other tests fail [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip@flip-vs-suspend: - shard-bmg: [PASS][99] -> [INCOMPLETE][100] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-7/igt@kms_flip@flip-vs-suspend.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-8/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-dg2-set2: [PASS][101] -> [DMESG-WARN][102] ([Intel XE#2955]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-433/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-433/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@wf_vblank-ts-check-interruptible: - shard-lnl: [PASS][103] -> [FAIL][104] ([Intel XE#3149] / [Intel XE#886]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check-interruptible.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-2/igt@kms_flip@wf_vblank-ts-check-interruptible.html * igt@kms_flip@wf_vblank-ts-check-interruptible@c-edp1: - shard-lnl: [PASS][105] -> [FAIL][106] ([Intel XE#886]) +3 other tests fail [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check-interruptible@c-edp1.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-2/igt@kms_flip@wf_vblank-ts-check-interruptible@c-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#1397]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#1401] / [Intel XE#1745]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2293] / [Intel XE#2380]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#1401]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2293]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2311]) +20 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#4141]) +7 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [PASS][115] -> [DMESG-WARN][116] ([Intel XE#4330]) +22 other tests dmesg-warn [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#656]) +29 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2312]) +11 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-dg2-set2: [PASS][119] -> [SKIP][120] ([Intel XE#656]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#651]) +7 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#651]) +33 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#656]) +17 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#2313]) +12 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#653]) +27 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [PASS][126] -> [SKIP][127] ([Intel XE#1503]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-8/igt@kms_hdr@invalid-hdr.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-1/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle: - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#1503]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-4/igt@kms_hdr@static-toggle.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#346]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#2927]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-466/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#2925]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#4090]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-7/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2486]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-7/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#4359]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@pixel-format-source-clamping: - shard-bmg: [PASS][135] -> [DMESG-WARN][136] ([Intel XE#2566] / [Intel XE#4330]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-8/igt@kms_plane@pixel-format-source-clamping.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-2/igt@kms_plane@pixel-format-source-clamping.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#2571]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#2763]) +5 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-d: - shard-dg2-set2: [PASS][139] -> [DMESG-WARN][140] ([Intel XE#2566] / [Intel XE#4330]) +1 other test dmesg-warn [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-d.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-d.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#2763]) +11 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b: - shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2763]) +9 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html * igt@kms_pm_backlight@fade: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#870]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: NOTRUN -> [FAIL][145] ([Intel XE#718]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [PASS][146] -> [FAIL][147] ([Intel XE#718]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#3309]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_pm_dc@dc5-retention-flops.html - shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#3309]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-2/igt@kms_pm_dc@dc5-retention-flops.html - shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#3309]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-8/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_rpm@modeset-lpsp: - shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#836]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#2893]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#1489]) +9 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#1489]) +4 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr@fbc-pr-sprite-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-4/igt@kms_psr@fbc-pr-sprite-plane-onoff.html - shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#1406]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-4/igt@kms_psr@fbc-pr-sprite-plane-onoff.html * igt@kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#2850] / [Intel XE#929]) +12 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-434/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_rotation_crc@bad-pixel-format: - shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-3/igt@kms_rotation_crc@bad-pixel-format.html - shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#3414]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_rotation_crc@bad-pixel-format.html - shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#3414] / [Intel XE#3904]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-6/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_sequence@queue-busy@pipe-d-hdmi-a-6: - shard-dg2-set2: [PASS][162] -> [INCOMPLETE][163] ([Intel XE#4169]) +1 other test incomplete [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-464/igt@kms_sequence@queue-busy@pipe-d-hdmi-a-6.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-466/igt@kms_sequence@queue-busy@pipe-d-hdmi-a-6.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [PASS][164] -> [FAIL][165] ([Intel XE#2883]) +2 other tests fail [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-lnl-3/igt@kms_setmode@basic@pipe-b-edp-1.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-8/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_setmode@clone-exclusive-crtc: - shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#1435]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-4/igt@kms_setmode@clone-exclusive-crtc.html - shard-lnl: NOTRUN -> [SKIP][167] ([Intel XE#1435]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-2/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_vrr@flip-basic: - shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#1499]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-1/igt@kms_vrr@flip-basic.html * igt@kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#1499]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-4/igt@kms_vrr@negative-basic.html * igt@testdisplay: - shard-dg2-set2: [PASS][170] -> [DMESG-WARN][171] ([Intel XE#2705] / [Intel XE#4212]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-463/igt@testdisplay.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@testdisplay.html * igt@xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#1280] / [Intel XE#455]) +3 other tests skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-466/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_eudebug@basic-read-event: - shard-bmg: NOTRUN -> [SKIP][173] ([Intel XE#2905]) +5 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-4/igt@xe_eudebug@basic-read-event.html * igt@xe_eudebug@basic-vm-access-parameters: - shard-dg2-set2: NOTRUN -> [SKIP][174] ([Intel XE#2905]) +16 other tests skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@xe_eudebug@basic-vm-access-parameters.html - shard-lnl: NOTRUN -> [SKIP][175] ([Intel XE#2905]) +8 other tests skip [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-6/igt@xe_eudebug@basic-vm-access-parameters.html * igt@xe_evict@evict-beng-small: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][176] ([Intel XE#1473] / [Intel XE#4330]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@xe_evict@evict-beng-small.html * igt@xe_evict@evict-small-cm: - shard-bmg: [PASS][177] -> [DMESG-WARN][178] ([Intel XE#1473] / [Intel XE#4330]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-4/igt@xe_evict@evict-small-cm.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-4/igt@xe_evict@evict-small-cm.html * igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd: - shard-lnl: NOTRUN -> [SKIP][179] ([Intel XE#688]) +4 other tests skip [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-6/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: NOTRUN -> [SKIP][180] ([Intel XE#2322]) +4 other tests skip [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][181] ([Intel XE#1392]) +4 other tests skip [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-6/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html * igt@xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][182] ([Intel XE#288]) +26 other tests skip [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt@xe_mmap@pci-membarrier: - shard-lnl: NOTRUN -> [SKIP][183] ([Intel XE#4045]) [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-8/igt@xe_mmap@pci-membarrier.html * igt@xe_module_load@load: - shard-bmg: ([PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208]) -> ([PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [SKIP][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233]) ([Intel XE#2457]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-3/igt@xe_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-3/igt@xe_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-3/igt@xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-8/igt@xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-3/igt@xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-7/igt@xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-7/igt@xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-6/igt@xe_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-2/igt@xe_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-8/igt@xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-6/igt@xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-6/igt@xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-1/igt@xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-4/igt@xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-4/igt@xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-8/igt@xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-8/igt@xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-5/igt@xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-2/igt@xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-4/igt@xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-5/igt@xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-5/igt@xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-2/igt@xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-1/igt@xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-1/igt@xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-5/igt@xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-8/igt@xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-8/igt@xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-5/igt@xe_module_load@load.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-4/igt@xe_module_load@load.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-6/igt@xe_module_load@load.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-5/igt@xe_module_load@load.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-5/igt@xe_module_load@load.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-1/igt@xe_module_load@load.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-2/igt@xe_module_load@load.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-2/igt@xe_module_load@load.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-1/igt@xe_module_load@load.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-3/igt@xe_module_load@load.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-3/igt@xe_module_load@load.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-3/igt@xe_module_load@load.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-3/igt@xe_module_load@load.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-8/igt@xe_module_load@load.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-4/igt@xe_module_load@load.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-1/igt@xe_module_load@load.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-2/igt@xe_module_load@load.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-6/igt@xe_module_load@load.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-6/igt@xe_module_load@load.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-6/igt@xe_module_load@load.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-7/igt@xe_module_load@load.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-4/igt@xe_module_load@load.html - shard-dg2-set2: ([PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257]) -> ([PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [SKIP][277], [PASS][278], [PASS][279], [PASS][280], [PASS][281], [PASS][282], [PASS][283]) ([Intel XE#378]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-464/igt@xe_module_load@load.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-464/igt@xe_module_load@load.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-464/igt@xe_module_load@load.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-464/igt@xe_module_load@load.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-464/igt@xe_module_load@load.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-464/igt@xe_module_load@load.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-434/igt@xe_module_load@load.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-434/igt@xe_module_load@load.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-466/igt@xe_module_load@load.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-466/igt@xe_module_load@load.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-464/igt@xe_module_load@load.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-433/igt@xe_module_load@load.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-466/igt@xe_module_load@load.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-466/igt@xe_module_load@load.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-434/igt@xe_module_load@load.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-434/igt@xe_module_load@load.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-466/igt@xe_module_load@load.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-463/igt@xe_module_load@load.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-433/igt@xe_module_load@load.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-433/igt@xe_module_load@load.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-433/igt@xe_module_load@load.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-433/igt@xe_module_load@load.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-463/igt@xe_module_load@load.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-463/igt@xe_module_load@load.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-466/igt@xe_module_load@load.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-434/igt@xe_module_load@load.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@xe_module_load@load.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@xe_module_load@load.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@xe_module_load@load.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@xe_module_load@load.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@xe_module_load@load.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@xe_module_load@load.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@xe_module_load@load.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@xe_module_load@load.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@xe_module_load@load.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-466/igt@xe_module_load@load.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-466/igt@xe_module_load@load.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-466/igt@xe_module_load@load.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-433/igt@xe_module_load@load.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@xe_module_load@load.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-433/igt@xe_module_load@load.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-434/igt@xe_module_load@load.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-434/igt@xe_module_load@load.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-434/igt@xe_module_load@load.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@xe_module_load@load.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@xe_module_load@load.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-434/igt@xe_module_load@load.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-434/igt@xe_module_load@load.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-466/igt@xe_module_load@load.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-466/igt@xe_module_load@load.html * igt@xe_oa@oa-tlb-invalidate: - shard-dg2-set2: NOTRUN -> [SKIP][284] ([Intel XE#2541] / [Intel XE#3573]) +6 other tests skip [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-434/igt@xe_oa@oa-tlb-invalidate.html - shard-lnl: NOTRUN -> [SKIP][285] ([Intel XE#2248]) [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-4/igt@xe_oa@oa-tlb-invalidate.html - shard-bmg: NOTRUN -> [SKIP][286] ([Intel XE#2248]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-5/igt@xe_oa@oa-tlb-invalidate.html * igt@xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][287] ([Intel XE#2838] / [Intel XE#979]) [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@xe_pat@pat-index-xehpc.html * igt@xe_peer2peer@write: - shard-bmg: NOTRUN -> [SKIP][288] ([Intel XE#2427]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-7/igt@xe_peer2peer@write.html - shard-lnl: NOTRUN -> [SKIP][289] ([Intel XE#1061]) [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-7/igt@xe_peer2peer@write.html * igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][290] ([Intel XE#1173]) +1 other test fail [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][291] ([Intel XE#2284] / [Intel XE#366]) [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@xe_pm@d3cold-basic-exec.html - shard-bmg: NOTRUN -> [SKIP][292] ([Intel XE#2284]) [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-5/igt@xe_pm@d3cold-basic-exec.html * igt@xe_pm@s3-mocs: - shard-dg2-set2: [PASS][293] -> [DMESG-WARN][294] ([Intel XE#4330] / [Intel XE#569]) [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-464/igt@xe_pm@s3-mocs.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@xe_pm@s3-mocs.html * igt@xe_pm@s3-multiple-execs: - shard-bmg: [PASS][295] -> [DMESG-WARN][296] ([Intel XE#4330] / [Intel XE#569]) +1 other test dmesg-warn [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-2/igt@xe_pm@s3-multiple-execs.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-4/igt@xe_pm@s3-multiple-execs.html - shard-dg2-set2: NOTRUN -> [DMESG-WARN][297] ([Intel XE#4330] / [Intel XE#569]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@xe_pm@s3-multiple-execs.html * igt@xe_pm@s4-basic: - shard-dg2-set2: NOTRUN -> [ABORT][298] ([Intel XE#4268]) +1 other test abort [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-434/igt@xe_pm@s4-basic.html - shard-bmg: NOTRUN -> [ABORT][299] ([Intel XE#4268]) +1 other test abort [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-6/igt@xe_pm@s4-basic.html * igt@xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][300] ([Intel XE#579]) [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@xe_pm@vram-d3cold-threshold.html - shard-lnl: NOTRUN -> [SKIP][301] ([Intel XE#579]) [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-8/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: NOTRUN -> [SKIP][302] ([Intel XE#944]) +2 other tests skip [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-434/igt@xe_query@multigpu-query-uc-fw-version-guc.html - shard-lnl: NOTRUN -> [SKIP][303] ([Intel XE#944]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-4/igt@xe_query@multigpu-query-uc-fw-version-guc.html - shard-bmg: NOTRUN -> [SKIP][304] ([Intel XE#944]) [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-5/igt@xe_query@multigpu-query-uc-fw-version-guc.html * igt@xe_sriov_auto_provisioning@exclusive-ranges: - shard-bmg: NOTRUN -> [SKIP][305] ([Intel XE#4130]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-8/igt@xe_sriov_auto_provisioning@exclusive-ranges.html * igt@xe_sriov_auto_provisioning@fair-allocation: - shard-lnl: NOTRUN -> [SKIP][306] ([Intel XE#4130]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-7/igt@xe_sriov_auto_provisioning@fair-allocation.html * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling: - shard-dg2-set2: NOTRUN -> [SKIP][307] ([Intel XE#4130]) +2 other tests skip [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: - shard-bmg: [PASS][308] -> [DMESG-WARN][309] ([Intel XE#4330]) +58 other tests dmesg-warn [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-8/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-3/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html #### Possible fixes #### * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: [SKIP][310] ([Intel XE#2191]) -> [PASS][311] [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-434/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-d-dp-4: - shard-dg2-set2: [DMESG-WARN][312] ([Intel XE#4330]) -> [PASS][313] +45 other tests pass [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-d-dp-4.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-d-dp-4.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [DMESG-WARN][314] -> [PASS][315] [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_cursor_crc@cursor-suspend: - shard-bmg: [DMESG-WARN][316] ([Intel XE#4330]) -> [PASS][317] +37 other tests pass [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-1/igt@kms_cursor_crc@cursor-suspend.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-2/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-dg2-set2: [SKIP][318] ([Intel XE#309]) -> [PASS][319] +3 other tests pass [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-464/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html - shard-bmg: [SKIP][320] ([Intel XE#2291]) -> [PASS][321] [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-4/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-3/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@torture-move: - shard-bmg: [INCOMPLETE][322] ([Intel XE#3226]) -> [PASS][323] +1 other test pass [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-7/igt@kms_cursor_legacy@torture-move.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-2/igt@kms_cursor_legacy@torture-move.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2-set2: [SKIP][324] ([Intel XE#4331]) -> [PASS][325] [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-464/igt@kms_dp_linktrain_fallback@dp-fallback.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3: - shard-bmg: [FAIL][326] ([Intel XE#3321]) -> [PASS][327] [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-modeset: - shard-dg2-set2: [SKIP][328] ([Intel XE#310]) -> [PASS][329] +2 other tests pass [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-464/igt@kms_flip@2x-flip-vs-modeset.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-434/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-bmg: [SKIP][330] ([Intel XE#2316]) -> [PASS][331] +4 other tests pass [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-4/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-3/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@flip-vs-dpms-off-vs-modeset: - shard-dg2-set2: [DMESG-WARN][332] ([Intel XE#2955]) -> [PASS][333] [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-463/igt@kms_flip@flip-vs-dpms-off-vs-modeset.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_flip@flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@flip-vs-suspend@d-dp4: - shard-dg2-set2: [INCOMPLETE][334] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][335] +1 other test pass [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-466/igt@kms_flip@flip-vs-suspend@d-dp4.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-466/igt@kms_flip@flip-vs-suspend@d-dp4.html * igt@kms_flip@plain-flip-ts-check-interruptible@a-dp2: - shard-bmg: [FAIL][336] ([Intel XE#2882]) -> [PASS][337] +1 other test pass [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-4/igt@kms_flip@plain-flip-ts-check-interruptible@a-dp2.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-1/igt@kms_flip@plain-flip-ts-check-interruptible@a-dp2.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][338] ([Intel XE#656]) -> [PASS][339] +6 other tests pass [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2-set2: [SKIP][340] ([Intel XE#4328]) -> [PASS][341] [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-464/igt@kms_joiner@invalid-modeset-force-big-joiner.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-dg2-set2: [DMESG-WARN][342] ([Intel XE#2566]) -> [PASS][343] +1 other test pass [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [DMESG-WARN][344] ([Intel XE#2042]) -> [PASS][345] [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-433/igt@kms_pm_rpm@system-suspend-modeset.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-dg2-set2: [SKIP][346] ([Intel XE#455]) -> [PASS][347] [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-464/igt@kms_setmode@invalid-clone-single-crtc.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_vblank@wait-forked-busy-hang@pipe-a-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][348] -> [PASS][349] +5 other tests pass [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-463/igt@kms_vblank@wait-forked-busy-hang@pipe-a-hdmi-a-6.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_vblank@wait-forked-busy-hang@pipe-a-hdmi-a-6.html * igt@xe_exec_reset@parallel-gt-reset: - shard-bmg: [DMESG-WARN][350] -> [PASS][351] [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-3/igt@xe_exec_reset@parallel-gt-reset.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-2/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_live_ktest@xe_migrate: - shard-bmg: [SKIP][352] -> [PASS][353] [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-6/igt@xe_live_ktest@xe_migrate.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-3/igt@xe_live_ktest@xe_migrate.html * igt@xe_pm@s3-d3hot-basic-exec: - shard-bmg: [DMESG-WARN][354] ([Intel XE#569]) -> [PASS][355] +2 other tests pass [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-8/igt@xe_pm@s3-d3hot-basic-exec.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-8/igt@xe_pm@s3-d3hot-basic-exec.html - shard-dg2-set2: [DMESG-WARN][356] ([Intel XE#569]) -> [PASS][357] +2 other tests pass [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-466/igt@xe_pm@s3-d3hot-basic-exec.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@xe_pm@s3-d3hot-basic-exec.html #### Warnings #### * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-dg2-set2: [DMESG-WARN][358] ([Intel XE#4330]) -> [SKIP][359] ([Intel XE#2191]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-433/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][360] ([Intel XE#787]) -> [SKIP][361] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-433/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][362] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][363] ([Intel XE#787]) +8 other tests skip [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-464/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1: - shard-lnl: [SKIP][364] ([Intel XE#3433]) -> [SKIP][365] ([Intel XE#2669] / [Intel XE#3433]) +3 other tests skip [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-lnl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html * igt@kms_content_protection@atomic: - shard-bmg: [FAIL][366] ([Intel XE#1178]) -> [DMESG-FAIL][367] ([Intel XE#4330]) +1 other test dmesg-fail [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-4/igt@kms_content_protection@atomic.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-2/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms: - shard-dg2-set2: [FAIL][368] ([Intel XE#1178]) -> [SKIP][369] ([Intel XE#455]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-434/igt@kms_content_protection@atomic-dpms.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@lic-type-0: - shard-bmg: [FAIL][370] ([Intel XE#1178]) -> [SKIP][371] ([Intel XE#2341]) [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-2/igt@kms_content_protection@lic-type-0.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-6/igt@kms_content_protection@lic-type-0.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-dg2-set2: [DMESG-WARN][372] ([Intel XE#4330]) -> [SKIP][373] ([Intel XE#309]) [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-463/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-bmg: [SKIP][374] ([Intel XE#2316]) -> [DMESG-WARN][375] ([Intel XE#4330]) [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-4/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-2/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [DMESG-FAIL][376] ([Intel XE#4330]) -> [FAIL][377] ([Intel XE#3321]) [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][378] ([Intel XE#301]) -> [DMESG-FAIL][379] ([Intel XE#4330]) [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-bmg: [SKIP][380] ([Intel XE#2316]) -> [DMESG-WARN][381] ([Intel XE#2955]) +1 other test dmesg-warn [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-4/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-3/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html - shard-dg2-set2: [SKIP][382] ([Intel XE#310]) -> [DMESG-WARN][383] ([Intel XE#2955]) [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-464/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-flip-vs-suspend: - shard-dg2-set2: [DMESG-WARN][384] ([Intel XE#2955]) -> [SKIP][385] ([Intel XE#310]) [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-463/igt@kms_flip@2x-flip-vs-suspend.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@flip-vs-expired-vblank: - shard-dg2-set2: [DMESG-WARN][386] ([Intel XE#4330]) -> [FAIL][387] ([Intel XE#301]) [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][388] ([Intel XE#651]) -> [SKIP][389] ([Intel XE#656]) +15 other tests skip [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][390] ([Intel XE#656]) -> [SKIP][391] ([Intel XE#651]) +15 other tests skip [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][392] ([Intel XE#2312]) -> [SKIP][393] ([Intel XE#2311]) +8 other tests skip [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][394] ([Intel XE#2311]) -> [SKIP][395] ([Intel XE#2312]) +7 other tests skip [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2-set2: [SKIP][396] ([Intel XE#656]) -> [DMESG-WARN][397] ([Intel XE#4330]) [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-bmg: [SKIP][398] ([Intel XE#4141]) -> [SKIP][399] ([Intel XE#2312]) +3 other tests skip [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][400] ([Intel XE#2312]) -> [SKIP][401] ([Intel XE#4141]) +5 other tests skip [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][402] ([Intel XE#2313]) -> [SKIP][403] ([Intel XE#2312]) +12 other tests skip [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt: - shard-bmg: [SKIP][404] ([Intel XE#2312]) -> [SKIP][405] ([Intel XE#2313]) +15 other tests skip [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt: - shard-dg2-set2: [SKIP][406] ([Intel XE#653]) -> [SKIP][407] ([Intel XE#656]) +12 other tests skip [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][408] ([Intel XE#656]) -> [SKIP][409] ([Intel XE#653]) +8 other tests skip [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: [DMESG-WARN][410] ([Intel XE#4212]) -> [DMESG-WARN][411] ([Intel XE#2705] / [Intel XE#4212]) [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: - shard-bmg: [DMESG-WARN][412] ([Intel XE#2566]) -> [DMESG-WARN][413] ([Intel XE#2566] / [Intel XE#4330]) [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html - shard-dg2-set2: [DMESG-WARN][414] ([Intel XE#2566]) -> [DMESG-WARN][415] ([Intel XE#2566] / [Intel XE#4330]) [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-464/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-464/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html * igt@xe_pm@s3-basic-exec: - shard-dg2-set2: [DMESG-WARN][416] ([Intel XE#569]) -> [DMESG-WARN][417] ([Intel XE#4330] / [Intel XE#569]) +2 other tests dmesg-warn [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-dg2-464/igt@xe_pm@s3-basic-exec.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-dg2-463/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s3-vm-bind-prefetch: - shard-bmg: [DMESG-WARN][418] ([Intel XE#569]) -> [DMESG-WARN][419] ([Intel XE#4330] / [Intel XE#569]) +2 other tests dmesg-warn [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8236/shard-bmg-3/igt@xe_pm@s3-vm-bind-prefetch.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/shard-bmg-1/igt@xe_pm@s3-vm-bind-prefetch.html [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [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#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [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#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [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#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [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#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156 [Intel XE#4169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4169 [Intel XE#4199]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4199 [Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210 [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212 [Intel XE#4268]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268 [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294 [Intel XE#4328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4328 [Intel XE#4330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4330 [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331 [Intel XE#4359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4359 [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#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [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#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * IGT: IGT_8236 -> IGTPW_12627 * Linux: xe-2679-4cc4e3d6ea1543688d62432dbe0fa750780fb262 -> xe-2681-adeeb34d0f0e6463bea93984a56eed4e3ee0f074 IGTPW_12627: 12627 IGT_8236: 8236 xe-2679-4cc4e3d6ea1543688d62432dbe0fa750780fb262: 4cc4e3d6ea1543688d62432dbe0fa750780fb262 xe-2681-adeeb34d0f0e6463bea93984a56eed4e3ee0f074: adeeb34d0f0e6463bea93984a56eed4e3ee0f074 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12627/index.html [-- Attachment #2: Type: text/html, Size: 111823 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2025-03-03 19:11 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-02-18 18:21 [PATCH i-g-t v2 0/2] Add tests for EU stall sampling Harish Chegondi 2025-02-18 18:21 ` [PATCH i-g-t v2 1/2] drm-uapi/xe: Sync with EU stall sampling uapi updates Harish Chegondi 2025-03-03 19:11 ` Dixit, Ashutosh 2025-02-18 18:21 ` [PATCH i-g-t v2 2/2] tests/intel/xe_eu_stall: Add tests for EU stall sampling Harish Chegondi 2025-03-03 19:11 ` Dixit, Ashutosh 2025-02-18 19:16 ` ✓ Xe.CI.BAT: success for Add tests for EU stall sampling (rev2) Patchwork 2025-02-18 19:34 ` ✗ i915.CI.BAT: failure " Patchwork 2025-02-19 12:26 ` ✗ Xe.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox