* [igt-dev] [PATCH i-g-t v9 0/4] Handle GT and tile seperation in IGT
@ 2023-07-10 4:43 Himal Prasad Ghimiray
2023-07-10 4:43 ` [igt-dev] [PATCH i-g-t v9 1/4] lib/igt_sysfs: Add support to query number of tiles Himal Prasad Ghimiray
` (8 more replies)
0 siblings, 9 replies; 16+ messages in thread
From: Himal Prasad Ghimiray @ 2023-07-10 4:43 UTC (permalink / raw)
To: igt-dev; +Cc: Upadhyay
With seperation of GT and tiles in KMD, we will have sysfs entries
for properties associated with tile and gtX sysfs parent will be moving
under tileX. This series provides helper functions for accessing tile
associated sysfs entries and gt specific sysfs under respective tile.
series addresses gt related sysfs path change for xe_guc_pc.c test case
and introduces new test to verify addr_range for each vram.
Cc: Priyanka Dandamudi <priyanka.dandamudi@intel.com>
Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
Cc: Francois Dugast <francois.dugast@intel.com>
Cc: Aravind Iddamsetty <aravind.iddamsetty@intel.com>
Cc: Upadhyay <tejas.upadhyay@intel.com>
Signed-off-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
Himal Prasad Ghimiray (4):
lib/igt_sysfs: Add support to query number of tiles
lib/igt_sysfs: Handling gt related sysfs uapi changes
tests/xe/xe_guc_pc: Change the sysfs paths
tests/xe/xe_sysfs_tile: adds new test to verify per tile vram
addr_range
lib/igt_sysfs.c | 125 ++++++++++++++++++++++++++
lib/igt_sysfs.h | 10 +++
tests/meson.build | 1 +
tests/xe/xe_guc_pc.c | 186 ++++++++++++++++++++-------------------
tests/xe/xe_sysfs_tile.c | 55 ++++++++++++
5 files changed, 288 insertions(+), 89 deletions(-)
create mode 100644 tests/xe/xe_sysfs_tile.c
--
2.25.1
^ permalink raw reply [flat|nested] 16+ messages in thread* [igt-dev] [PATCH i-g-t v9 1/4] lib/igt_sysfs: Add support to query number of tiles 2023-07-10 4:43 [igt-dev] [PATCH i-g-t v9 0/4] Handle GT and tile seperation in IGT Himal Prasad Ghimiray @ 2023-07-10 4:43 ` Himal Prasad Ghimiray 2023-07-10 6:34 ` Dixit, Ashutosh 2023-07-10 4:43 ` [igt-dev] [PATCH i-g-t v9 2/4] lib/igt_sysfs: Handling gt related sysfs uapi changes Himal Prasad Ghimiray ` (7 subsequent siblings) 8 siblings, 1 reply; 16+ messages in thread From: Himal Prasad Ghimiray @ 2023-07-10 4:43 UTC (permalink / raw) To: igt-dev; +Cc: Upadhyay With tile and GT seperation in KMD, we need to know number of tiles supported by platform. We will need to access tile associated properties from IGT. Hence adding iterator for all supported tiles. v2: - Calculate number of tiles once within iterator. (Rahul) - Use snprintf instead of sprintf. v3: - Remove unrequired for_each_sysfs_tile_dirfd (Ashutosh) v4: - Implement tiles related functions in lib. (Ashutosh) v5: - Fix comments and remove not required conditional check. (Ashutosh) v6: - Remove xe_for_each_tile. (Ashutosh) Cc: Ashutosh Dixit <ashutosh.dixit@intel.com> Cc: Aravind Iddamsetty <aravind.iddamsetty@intel.com> Cc: Upadhyay <tejas.upadhyay@intel.com> Cc: Janga Rahul Kumar <janga.rahul.kumar@intel.com> Signed-off-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com> --- lib/igt_sysfs.c | 71 +++++++++++++++++++++++++++++++++++++++++++++++++ lib/igt_sysfs.h | 8 ++++++ 2 files changed, 79 insertions(+) diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c index 0876f4c6b..eb35a8088 100644 --- a/lib/igt_sysfs.c +++ b/lib/igt_sysfs.c @@ -903,3 +903,74 @@ void igt_sysfs_engines(int xe, int engines, const char **property, close(engine_fd); } } + +/** + * xe_sysfs_tile_path: + * @xe_device: fd of the device + * @tile: tile number + * @path: buffer to fill with the sysfs tile path to the device + * @pathlen: length of @path buffer + * + * Returns: + * The directory path, or NULL on failure. + */ +char *xe_sysfs_tile_path(int xe_device, int tile, char *path, int pathlen) +{ + struct stat st; + + if (xe_device < 0) + return NULL; + + if (igt_debug_on(fstat(xe_device, &st)) || igt_debug_on(!S_ISCHR(st.st_mode))) + return NULL; + + snprintf(path, pathlen, "/sys/dev/char/%d:%d/device/tile%d", + major(st.st_rdev), minor(st.st_rdev), tile); + + if (!access(path, F_OK)) + return path; + return NULL; +} + +/** + * xe_sysfs_tile_open: + * @xe_device: fd of the device + * @tile: tile number + * + * This opens the sysfs tile directory corresponding to device and tile for use + * + * Returns: + * The directory fd, or -1 on failure. + */ +int xe_sysfs_tile_open(int xe_device, int tile) +{ + char path[96]; + + if (!xe_sysfs_tile_path(xe_device, tile, path, sizeof(path))) + return -1; + + return open(path, O_RDONLY); +} + +/** + * xe_sysfs_get_num_tiles: + * @xe_device: fd of the device + * + * Reads number of tile sysfs entries. + * Asserts for at least one tile entry. + * (see xe_sysfs_tile_path). + * + * Returns: Number of tiles. + */ +int xe_sysfs_get_num_tiles(int xe_device) +{ + int num_tiles = 0; + char path[96]; + + while (xe_sysfs_tile_path(xe_device, num_tiles, path, sizeof(path))) + ++num_tiles; + + igt_assert_f(num_tiles > 0, "No GT sysfs entry is found."); + + return num_tiles; +} diff --git a/lib/igt_sysfs.h b/lib/igt_sysfs.h index 5635fc690..6d7154329 100644 --- a/lib/igt_sysfs.h +++ b/lib/igt_sysfs.h @@ -38,6 +38,11 @@ (dirfd__ = igt_sysfs_gt_open(i915__, gt__)) != -1; \ close(dirfd__), gt__++) +#define for_each_sysfs_tile_dirfd(xe__, dirfd__, tile__) \ + for (tile__ = 0; \ + (dirfd__ = xe_sysfs_tile_open(xe__, tile__)) != -1; \ + close(dirfd__), tile__++) + #define i915_for_each_gt for_each_sysfs_gt_dirfd #define igt_sysfs_rps_write(dir, id, data, len) \ @@ -150,4 +155,7 @@ void igt_sysfs_rw_attr_verify(igt_sysfs_rw_attr_t *rw); void igt_sysfs_engines(int xe, int engines, const char **property, void (*test)(int, int, const char **)); +char *xe_sysfs_tile_path(int xe_device, int tile, char *path, int pathlen); +int xe_sysfs_tile_open(int xe_device, int tile); +int xe_sysfs_get_num_tiles(int xe_device); #endif /* __IGT_SYSFS_H__ */ -- 2.25.1 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v9 1/4] lib/igt_sysfs: Add support to query number of tiles 2023-07-10 4:43 ` [igt-dev] [PATCH i-g-t v9 1/4] lib/igt_sysfs: Add support to query number of tiles Himal Prasad Ghimiray @ 2023-07-10 6:34 ` Dixit, Ashutosh 0 siblings, 0 replies; 16+ messages in thread From: Dixit, Ashutosh @ 2023-07-10 6:34 UTC (permalink / raw) To: Himal Prasad Ghimiray; +Cc: igt-dev, Upadhyay On Sun, 09 Jul 2023 21:43:27 -0700, Himal Prasad Ghimiray wrote: > > With tile and GT seperation in KMD, we need to know > number of tiles supported by platform. > We will need to access tile associated properties from IGT. > Hence adding iterator for all supported tiles. > > v2: > - Calculate number of tiles once within iterator. (Rahul) > - Use snprintf instead of sprintf. > > v3: > - Remove unrequired for_each_sysfs_tile_dirfd (Ashutosh) > > v4: > - Implement tiles related functions in lib. (Ashutosh) > > v5: > - Fix comments and remove not required conditional check. (Ashutosh) > > v6: > - Remove xe_for_each_tile. (Ashutosh) Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com> ^ permalink raw reply [flat|nested] 16+ messages in thread
* [igt-dev] [PATCH i-g-t v9 2/4] lib/igt_sysfs: Handling gt related sysfs uapi changes 2023-07-10 4:43 [igt-dev] [PATCH i-g-t v9 0/4] Handle GT and tile seperation in IGT Himal Prasad Ghimiray 2023-07-10 4:43 ` [igt-dev] [PATCH i-g-t v9 1/4] lib/igt_sysfs: Add support to query number of tiles Himal Prasad Ghimiray @ 2023-07-10 4:43 ` Himal Prasad Ghimiray 2023-07-10 6:35 ` Dixit, Ashutosh 2023-07-10 4:43 ` [igt-dev] [PATCH i-g-t v9 3/4] tests/xe/xe_guc_pc: Change the sysfs paths Himal Prasad Ghimiray ` (6 subsequent siblings) 8 siblings, 1 reply; 16+ messages in thread From: Himal Prasad Ghimiray @ 2023-07-10 4:43 UTC (permalink / raw) To: igt-dev; +Cc: Upadhyay Patch https://patchwork.freedesktop.org/series/118927/ is moving gt sysfs parent under tile folder. With the above patch path for sysfs changes: from: /sys/class/drm/cardX/device/gtN/ to : /sys/class/drm/cardX/device/tileN/gtN Adding xe_gt_sysfs_path function to access new path. v2: - Calculate number of tiles once within iterator. (Rahul) v3: - Drop usage of local variable for tilecount. - Change order of tile and gt. (Ashutosh) v4: - Drop xe_for_each_gt_under_each_tile macro add xe_gt_sysfs_path to return path. (Ashutosh) - Support older dir path along with new. (kamil) v5: - Dont use fixed paths. Find gt in available tiles. (Ashutosh) v6: - Define gt related functions for xe. (Ashutosh) v7: - use intel_get_drm_devid to determine devid and fix the parameter for platform check. (Ashutosh) - check pvc instead of mtl and consider other platforms as default. (Ashutosh) Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> Cc: Aravind Iddamsetty <aravind.iddamsetty@intel.com> Cc: Upadhyay <tejas.upadhyay@intel.com> Cc: Janga Rahul Kumar <janga.rahul.kumar@intel.com> Cc: Francois Dugast <francois.dugast@intel.com> Cc: Ashutosh Dixit <ashutosh.dixit@intel.com> Cc: Matt Roper <matthew.d.roper@intel.com> Signed-off-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com> --- lib/igt_sysfs.c | 54 +++++++++++++++++++++++++++++++++++++++++++++++++ lib/igt_sysfs.h | 2 ++ 2 files changed, 56 insertions(+) diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c index eb35a8088..412edfc29 100644 --- a/lib/igt_sysfs.c +++ b/lib/igt_sysfs.c @@ -45,6 +45,7 @@ #include "igt_sysfs.h" #include "igt_device.h" #include "igt_io.h" +#include "intel_chipset.h" /** * SECTION:igt_sysfs @@ -209,6 +210,59 @@ int igt_sysfs_open(int device) return open(path, O_RDONLY); } +/** + * xe_sysfs_gt_path: + * @xe_device: fd of the device + * @gt: gt number + * @path: buffer to fill with the sysfs gt path to the device + * @pathlen: length of @path buffer + * + * Returns: + * The directory path, or NULL on failure. + */ +char *xe_sysfs_gt_path(int xe_device, int gt, char *path, int pathlen) +{ + struct stat st; + + if (xe_device < 0) + return NULL; + + if (igt_debug_on(fstat(xe_device, &st)) || igt_debug_on(!S_ISCHR(st.st_mode))) + return NULL; + + if (IS_PONTEVECCHIO(intel_get_drm_devid(xe_device))) + snprintf(path, pathlen, "/sys/dev/char/%d:%d/device/tile%d/gt%d", + major(st.st_rdev), minor(st.st_rdev), gt, gt); + else + snprintf(path, pathlen, "/sys/dev/char/%d:%d/device/tile0/gt%d", + major(st.st_rdev), minor(st.st_rdev), gt); + + if (!access(path, F_OK)) + return path; + + return NULL; +} + +/** + * xe_sysfs_gt_open: + * @xe_device: fd of the device + * @gt: gt number + * + * This opens the sysfs gt directory corresponding to device and tile for use + * + * Returns: + * The directory fd, or -1 on failure. + */ +int xe_sysfs_gt_open(int xe_device, int gt) +{ + char path[96]; + + if (!xe_sysfs_gt_path(xe_device, gt, path, sizeof(path))) + return -1; + + return open(path, O_RDONLY); +} + /** * igt_sysfs_gt_path: * @device: fd of the device diff --git a/lib/igt_sysfs.h b/lib/igt_sysfs.h index 6d7154329..d507fde8b 100644 --- a/lib/igt_sysfs.h +++ b/lib/igt_sysfs.h @@ -155,6 +155,8 @@ void igt_sysfs_rw_attr_verify(igt_sysfs_rw_attr_t *rw); void igt_sysfs_engines(int xe, int engines, const char **property, void (*test)(int, int, const char **)); +char *xe_sysfs_gt_path(int xe_device, int gt, char *path, int pathlen); +int xe_sysfs_gt_open(int xe_device, int gt); char *xe_sysfs_tile_path(int xe_device, int tile, char *path, int pathlen); int xe_sysfs_tile_open(int xe_device, int tile); int xe_sysfs_get_num_tiles(int xe_device); -- 2.25.1 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v9 2/4] lib/igt_sysfs: Handling gt related sysfs uapi changes 2023-07-10 4:43 ` [igt-dev] [PATCH i-g-t v9 2/4] lib/igt_sysfs: Handling gt related sysfs uapi changes Himal Prasad Ghimiray @ 2023-07-10 6:35 ` Dixit, Ashutosh 0 siblings, 0 replies; 16+ messages in thread From: Dixit, Ashutosh @ 2023-07-10 6:35 UTC (permalink / raw) To: Himal Prasad Ghimiray; +Cc: Upadhyay, igt-dev On Sun, 09 Jul 2023 21:43:28 -0700, Himal Prasad Ghimiray wrote: > > Patch https://patchwork.freedesktop.org/series/118927/ > is moving gt sysfs parent under tile folder. > > With the above patch path for sysfs changes: > from: /sys/class/drm/cardX/device/gtN/ > to : /sys/class/drm/cardX/device/tileN/gtN > > Adding xe_gt_sysfs_path function to access new path. > > v2: > - Calculate number of tiles once within iterator. (Rahul) > > v3: > - Drop usage of local variable for tilecount. > - Change order of tile and gt. (Ashutosh) > > v4: > - Drop xe_for_each_gt_under_each_tile macro > add xe_gt_sysfs_path to return path. (Ashutosh) > - Support older dir path along with new. (kamil) > > v5: > - Dont use fixed paths. Find gt in available tiles. (Ashutosh) > > v6: > - Define gt related functions for xe. (Ashutosh) > > v7: > - use intel_get_drm_devid to determine devid and fix the > parameter for platform check. (Ashutosh) > - check pvc instead of mtl and consider other platforms as > default. (Ashutosh) Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com> ^ permalink raw reply [flat|nested] 16+ messages in thread
* [igt-dev] [PATCH i-g-t v9 3/4] tests/xe/xe_guc_pc: Change the sysfs paths 2023-07-10 4:43 [igt-dev] [PATCH i-g-t v9 0/4] Handle GT and tile seperation in IGT Himal Prasad Ghimiray 2023-07-10 4:43 ` [igt-dev] [PATCH i-g-t v9 1/4] lib/igt_sysfs: Add support to query number of tiles Himal Prasad Ghimiray 2023-07-10 4:43 ` [igt-dev] [PATCH i-g-t v9 2/4] lib/igt_sysfs: Handling gt related sysfs uapi changes Himal Prasad Ghimiray @ 2023-07-10 4:43 ` Himal Prasad Ghimiray 2023-07-10 6:36 ` Dixit, Ashutosh 2023-07-10 4:43 ` [igt-dev] [PATCH i-g-t v9 4/4] tests/xe/xe_sysfs_tile: adds new test to verify per tile vram addr_range Himal Prasad Ghimiray ` (5 subsequent siblings) 8 siblings, 1 reply; 16+ messages in thread From: Himal Prasad Ghimiray @ 2023-07-10 4:43 UTC (permalink / raw) To: igt-dev; +Cc: Upadhyay, Badal Nilawar Changes to access sysfs entries under tile directory. Access freq sysfs from /sys/class/drm/cardX/device/tileN/gtN path. v2: - Use snprintf instead of sprintf and check error. - Describe what changes are done. (Kamil) v3: - change order of gt and tile and drop passing tilecount.(Ashutosh) v4: - Rebase v5: - Drop usage of xe_for_each_gt_under_each_tile and use a function to return gt path. (Ashutosh) v6: - use gt_path instead of func call (Ashutosh) v7: - use new api's for gt sysfs access. v8: - Change assert condition. (Ashutosh) - Rebase Cc: Ashutosh Dixit <ashutosh.dixit@intel.com> Cc: Aravind Iddamsetty <aravind.iddamsetty@intel.com> Cc: Upadhyay <tejas.upadhyay@intel.com> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> Cc: Badal Nilawar <badal.nilawar@intel.com> Cc: Riana Tauro <riana.tauro@intel.com> Cc: Anshuman Gupta <anshuman.gupta@intel.com> Signed-off-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com> --- tests/xe/xe_guc_pc.c | 186 ++++++++++++++++++++++--------------------- 1 file changed, 97 insertions(+), 89 deletions(-) diff --git a/tests/xe/xe_guc_pc.c b/tests/xe/xe_guc_pc.c index fb3747f46..c34df8d60 100644 --- a/tests/xe/xe_guc_pc.c +++ b/tests/xe/xe_guc_pc.c @@ -133,25 +133,38 @@ static void exec_basic(int fd, struct drm_xe_engine_class_instance *eci, xe_vm_destroy(fd, vm); } -static int set_freq(int sysfs, int gt_id, const char *freq_name, uint32_t freq) +static int set_freq(int fd, int gt_id, const char *freq_name, uint32_t freq) { int ret = -EAGAIN; - char path[32]; + char freq_attr[16]; + int gt_fd; + + snprintf(freq_attr, sizeof(freq_attr), "freq_%s", freq_name); + gt_fd = xe_sysfs_gt_open(fd, gt_id); + igt_assert(gt_fd >= 0); - sprintf(path, "device/gt%d/freq_%s", gt_id, freq_name); while (ret == -EAGAIN) - ret = igt_sysfs_printf(sysfs, path, "%u", freq); + ret = igt_sysfs_printf(gt_fd, freq_attr, "%u", freq); + + close(gt_fd); return ret; } -static uint32_t get_freq(int sysfs, int gt_id, const char *freq_name) +static uint32_t get_freq(int fd, int gt_id, const char *freq_name) { uint32_t freq; int err = -EAGAIN; - char path[32]; - sprintf(path, "device/gt%d/freq_%s", gt_id, freq_name); + char freq_attr[16]; + int gt_fd; + + snprintf(freq_attr, sizeof(freq_attr), "freq_%s", freq_name); + gt_fd = xe_sysfs_gt_open(fd, gt_id); + igt_assert(gt_fd >= 0); + while (err == -EAGAIN) - err = igt_sysfs_scanf(sysfs, path, "%u", &freq); + err = igt_sysfs_scanf(gt_fd, freq_attr, "%u", &freq); + + close(gt_fd); return freq; } @@ -162,37 +175,37 @@ static uint32_t get_freq(int sysfs, int gt_id, const char *freq_name) * Run type: BAT */ -static void test_freq_basic_api(int sysfs, int gt_id) +static void test_freq_basic_api(int fd, int gt_id) { - uint32_t rpn = get_freq(sysfs, gt_id, "rpn"); - uint32_t rpe = get_freq(sysfs, gt_id, "rpe"); - uint32_t rp0 = get_freq(sysfs, gt_id, "rp0"); + uint32_t rpn = get_freq(fd, gt_id, "rpn"); + uint32_t rpe = get_freq(fd, gt_id, "rpe"); + uint32_t rp0 = get_freq(fd, gt_id, "rp0"); /* * Negative bound tests * RPn is the floor * RP0 is the ceiling */ - igt_assert(set_freq(sysfs, gt_id, "min", rpn - 1) < 0); - igt_assert(set_freq(sysfs, gt_id, "min", rp0 + 1) < 0); - igt_assert(set_freq(sysfs, gt_id, "max", rpn - 1) < 0); - igt_assert(set_freq(sysfs, gt_id, "max", rp0 + 1) < 0); + igt_assert(set_freq(fd, gt_id, "min", rpn - 1) < 0); + igt_assert(set_freq(fd, gt_id, "min", rp0 + 1) < 0); + igt_assert(set_freq(fd, gt_id, "max", rpn - 1) < 0); + igt_assert(set_freq(fd, gt_id, "max", rp0 + 1) < 0); /* Assert min requests are respected from rp0 to rpn */ - igt_assert(set_freq(sysfs, gt_id, "min", rp0) > 0); - igt_assert(get_freq(sysfs, gt_id, "min") == rp0); - igt_assert(set_freq(sysfs, gt_id, "min", rpe) > 0); - igt_assert(get_freq(sysfs, gt_id, "min") == rpe); - igt_assert(set_freq(sysfs, gt_id, "min", rpn) > 0); - igt_assert(get_freq(sysfs, gt_id, "min") == rpn); + igt_assert(set_freq(fd, gt_id, "min", rp0) > 0); + igt_assert(get_freq(fd, gt_id, "min") == rp0); + igt_assert(set_freq(fd, gt_id, "min", rpe) > 0); + igt_assert(get_freq(fd, gt_id, "min") == rpe); + igt_assert(set_freq(fd, gt_id, "min", rpn) > 0); + igt_assert(get_freq(fd, gt_id, "min") == rpn); /* Assert max requests are respected from rpn to rp0 */ - igt_assert(set_freq(sysfs, gt_id, "max", rpn) > 0); - igt_assert(get_freq(sysfs, gt_id, "max") == rpn); - igt_assert(set_freq(sysfs, gt_id, "max", rpe) > 0); - igt_assert(get_freq(sysfs, gt_id, "max") == rpe); - igt_assert(set_freq(sysfs, gt_id, "max", rp0) > 0); - igt_assert(get_freq(sysfs, gt_id, "max") == rp0); + igt_assert(set_freq(fd, gt_id, "max", rpn) > 0); + igt_assert(get_freq(fd, gt_id, "max") == rpn); + igt_assert(set_freq(fd, gt_id, "max", rpe) > 0); + igt_assert(get_freq(fd, gt_id, "max") == rpe); + igt_assert(set_freq(fd, gt_id, "max", rp0) > 0); + igt_assert(get_freq(fd, gt_id, "max") == rp0); } /** @@ -205,11 +218,11 @@ static void test_freq_basic_api(int sysfs, int gt_id) * Run type: FULL */ -static void test_freq_fixed(int sysfs, int gt_id) +static void test_freq_fixed(int fd, int gt_id) { - uint32_t rpn = get_freq(sysfs, gt_id, "rpn"); - uint32_t rpe = get_freq(sysfs, gt_id, "rpe"); - uint32_t rp0 = get_freq(sysfs, gt_id, "rp0"); + uint32_t rpn = get_freq(fd, gt_id, "rpn"); + uint32_t rpe = get_freq(fd, gt_id, "rpe"); + uint32_t rp0 = get_freq(fd, gt_id, "rp0"); igt_debug("Starting testing fixed request\n"); @@ -218,27 +231,27 @@ static void test_freq_fixed(int sysfs, int gt_id) * Then we check if hardware is actually operating at the desired freq * And let's do this for all the 3 known Render Performance (RP) values. */ - igt_assert(set_freq(sysfs, gt_id, "min", rpn) > 0); - igt_assert(set_freq(sysfs, gt_id, "max", rpn) > 0); + igt_assert(set_freq(fd, gt_id, "min", rpn) > 0); + igt_assert(set_freq(fd, gt_id, "max", rpn) > 0); usleep(ACT_FREQ_LATENCY_US); - igt_assert(get_freq(sysfs, gt_id, "cur") == rpn); - igt_assert(get_freq(sysfs, gt_id, "act") == rpn); + igt_assert(get_freq(fd, gt_id, "cur") == rpn); + igt_assert(get_freq(fd, gt_id, "act") == rpn); - igt_assert(set_freq(sysfs, gt_id, "min", rpe) > 0); - igt_assert(set_freq(sysfs, gt_id, "max", rpe) > 0); + igt_assert(set_freq(fd, gt_id, "min", rpe) > 0); + igt_assert(set_freq(fd, gt_id, "max", rpe) > 0); usleep(ACT_FREQ_LATENCY_US); - igt_assert(get_freq(sysfs, gt_id, "cur") == rpe); - igt_assert(get_freq(sysfs, gt_id, "act") == rpe); + igt_assert(get_freq(fd, gt_id, "cur") == rpe); + igt_assert(get_freq(fd, gt_id, "act") == rpe); - igt_assert(set_freq(sysfs, gt_id, "min", rp0) > 0); - igt_assert(set_freq(sysfs, gt_id, "max", rp0) > 0); + igt_assert(set_freq(fd, gt_id, "min", rp0) > 0); + igt_assert(set_freq(fd, gt_id, "max", rp0) > 0); usleep(ACT_FREQ_LATENCY_US); /* * It is unlikely that PCODE will *always* respect any request above RPe * So for this level let's only check if GuC PC is doing its job * and respecting our request, by propagating it to the hardware. */ - igt_assert(get_freq(sysfs, gt_id, "cur") == rp0); + igt_assert(get_freq(fd, gt_id, "cur") == rp0); igt_debug("Finished testing fixed request\n"); } @@ -253,20 +266,20 @@ static void test_freq_fixed(int sysfs, int gt_id) * Run type: FULL */ -static void test_freq_range(int sysfs, int gt_id) +static void test_freq_range(int fd, int gt_id) { - uint32_t rpn = get_freq(sysfs, gt_id, "rpn"); - uint32_t rpe = get_freq(sysfs, gt_id, "rpe"); + uint32_t rpn = get_freq(fd, gt_id, "rpn"); + uint32_t rpe = get_freq(fd, gt_id, "rpe"); uint32_t cur, act; igt_debug("Starting testing range request\n"); - igt_assert(set_freq(sysfs, gt_id, "min", rpn) > 0); - igt_assert(set_freq(sysfs, gt_id, "max", rpe) > 0); + igt_assert(set_freq(fd, gt_id, "min", rpn) > 0); + igt_assert(set_freq(fd, gt_id, "max", rpe) > 0); usleep(ACT_FREQ_LATENCY_US); - cur = get_freq(sysfs, gt_id, "cur"); + cur = get_freq(fd, gt_id, "cur"); igt_assert(rpn <= cur && cur <= rpe); - act = get_freq(sysfs, gt_id, "act"); + act = get_freq(fd, gt_id, "act"); igt_assert(rpn <= act && act <= rpe); igt_debug("Finished testing range request\n"); @@ -278,20 +291,20 @@ static void test_freq_range(int sysfs, int gt_id) * Run type: FULL */ -static void test_freq_low_max(int sysfs, int gt_id) +static void test_freq_low_max(int fd, int gt_id) { - uint32_t rpn = get_freq(sysfs, gt_id, "rpn"); - uint32_t rpe = get_freq(sysfs, gt_id, "rpe"); + uint32_t rpn = get_freq(fd, gt_id, "rpn"); + uint32_t rpe = get_freq(fd, gt_id, "rpe"); /* * When max request < min request, max is ignored and min works like * a fixed one. Let's assert this assumption */ - igt_assert(set_freq(sysfs, gt_id, "min", rpe) > 0); - igt_assert(set_freq(sysfs, gt_id, "max", rpn) > 0); + igt_assert(set_freq(fd, gt_id, "min", rpe) > 0); + igt_assert(set_freq(fd, gt_id, "max", rpn) > 0); usleep(ACT_FREQ_LATENCY_US); - igt_assert(get_freq(sysfs, gt_id, "cur") == rpe); - igt_assert(get_freq(sysfs, gt_id, "act") == rpe); + igt_assert(get_freq(fd, gt_id, "cur") == rpe); + igt_assert(get_freq(fd, gt_id, "act") == rpe); } /** @@ -300,20 +313,20 @@ static void test_freq_low_max(int sysfs, int gt_id) * Run type: FULL */ -static void test_suspend(int sysfs, int gt_id) +static void test_suspend(int fd, int gt_id) { - uint32_t rpn = get_freq(sysfs, gt_id, "rpn"); + uint32_t rpn = get_freq(fd, gt_id, "rpn"); - igt_assert(set_freq(sysfs, gt_id, "min", rpn) > 0); - igt_assert(set_freq(sysfs, gt_id, "max", rpn) > 0); + igt_assert(set_freq(fd, gt_id, "min", rpn) > 0); + igt_assert(set_freq(fd, gt_id, "max", rpn) > 0); usleep(ACT_FREQ_LATENCY_US); - igt_assert(get_freq(sysfs, gt_id, "cur") == rpn); + igt_assert(get_freq(fd, gt_id, "cur") == rpn); igt_system_suspend_autoresume(SUSPEND_STATE_S3, SUSPEND_TEST_NONE); - igt_assert(get_freq(sysfs, gt_id, "min") == rpn); - igt_assert(get_freq(sysfs, gt_id, "max") == rpn); + igt_assert(get_freq(fd, gt_id, "min") == rpn); + igt_assert(get_freq(fd, gt_id, "max") == rpn); } /** @@ -326,24 +339,24 @@ static void test_suspend(int sysfs, int gt_id) * Run type: FULL */ -static void test_reset(int fd, int sysfs, int gt_id, int cycles) +static void test_reset(int fd, int gt_id, int cycles) { - uint32_t rpn = get_freq(sysfs, gt_id, "rpn"); + uint32_t rpn = get_freq(fd, gt_id, "rpn"); for (int i = 0; i < cycles; i++) { - igt_assert_f(set_freq(sysfs, gt_id, "min", rpn) > 0, + igt_assert_f(set_freq(fd, gt_id, "min", rpn) > 0, "Failed after %d good cycles\n", i); - igt_assert_f(set_freq(sysfs, gt_id, "max", rpn) > 0, + igt_assert_f(set_freq(fd, gt_id, "max", rpn) > 0, "Failed after %d good cycles\n", i); usleep(ACT_FREQ_LATENCY_US); - igt_assert_f(get_freq(sysfs, gt_id, "cur") == rpn, + igt_assert_f(get_freq(fd, gt_id, "cur") == rpn, "Failed after %d good cycles\n", i); xe_force_gt_reset(fd, gt_id); - igt_assert_f(get_freq(sysfs, gt_id, "min") == rpn, + igt_assert_f(get_freq(fd, gt_id, "min") == rpn, "Failed after %d good cycles\n", i); - igt_assert_f(get_freq(sysfs, gt_id, "max") == rpn, + igt_assert_f(get_freq(fd, gt_id, "max") == rpn, "Failed after %d good cycles\n", i); } } @@ -353,7 +366,6 @@ igt_main struct drm_xe_engine_class_instance *hwe; int fd; int gt; - static int sysfs = -1; int ncpus = sysconf(_SC_NPROCESSORS_ONLN); uint32_t stash_min; uint32_t stash_max; @@ -361,22 +373,19 @@ igt_main igt_fixture { fd = drm_open_driver(DRIVER_XE); - sysfs = igt_sysfs_open(fd); - igt_assert(sysfs != -1); - /* The defaults are the same. Stashing the gt0 is enough */ - stash_min = get_freq(sysfs, 0, "min"); - stash_max = get_freq(sysfs, 0, "max"); + stash_min = get_freq(fd, 0, "min"); + stash_max = get_freq(fd, 0, "max"); } igt_subtest("freq_basic_api") { xe_for_each_gt(fd, gt) - test_freq_basic_api(sysfs, gt); + test_freq_basic_api(fd, gt); } igt_subtest("freq_fixed_idle") { xe_for_each_gt(fd, gt) { - test_freq_fixed(sysfs, gt); + test_freq_fixed(fd, gt); } } @@ -389,14 +398,14 @@ igt_main igt_debug("Execution Finished\n"); } /* While exec in threads above, let's check the freq */ - test_freq_fixed(sysfs, gt); + test_freq_fixed(fd, gt); igt_waitchildren(); } } igt_subtest("freq_range_idle") { xe_for_each_gt(fd, gt) { - test_freq_range(sysfs, gt); + test_freq_range(fd, gt); } } @@ -409,41 +418,40 @@ igt_main igt_debug("Execution Finished\n"); } /* While exec in threads above, let's check the freq */ - test_freq_range(sysfs, gt); + test_freq_range(fd, gt); igt_waitchildren(); } } igt_subtest("freq_low_max") { xe_for_each_gt(fd, gt) { - test_freq_low_max(sysfs, gt); + test_freq_low_max(fd, gt); } } igt_subtest("freq_suspend") { xe_for_each_gt(fd, gt) { - test_suspend(sysfs, gt); + test_suspend(fd, gt); } } igt_subtest("freq_reset") { xe_for_each_gt(fd, gt) { - test_reset(fd, sysfs, gt, 1); + test_reset(fd, gt, 1); } } igt_subtest("freq_reset_multiple") { xe_for_each_gt(fd, gt) { - test_reset(fd, sysfs, gt, 50); + test_reset(fd, gt, 50); } } igt_fixture { xe_for_each_gt(fd, gt) { - set_freq(sysfs, gt, "min", stash_min); - set_freq(sysfs, gt, "max", stash_max); + set_freq(fd, gt, "min", stash_min); + set_freq(fd, gt, "max", stash_max); } - close(sysfs); drm_close_driver(fd); } } -- 2.25.1 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v9 3/4] tests/xe/xe_guc_pc: Change the sysfs paths 2023-07-10 4:43 ` [igt-dev] [PATCH i-g-t v9 3/4] tests/xe/xe_guc_pc: Change the sysfs paths Himal Prasad Ghimiray @ 2023-07-10 6:36 ` Dixit, Ashutosh 0 siblings, 0 replies; 16+ messages in thread From: Dixit, Ashutosh @ 2023-07-10 6:36 UTC (permalink / raw) To: Himal Prasad Ghimiray; +Cc: Upadhyay, igt-dev, Badal Nilawar On Sun, 09 Jul 2023 21:43:29 -0700, Himal Prasad Ghimiray wrote: > > Changes to access sysfs entries under tile directory. > Access freq sysfs from /sys/class/drm/cardX/device/tileN/gtN > path. > > v2: > - Use snprintf instead of sprintf and check error. > - Describe what changes are done. (Kamil) > > v3: > - change order of gt and tile and drop passing tilecount.(Ashutosh) > > v4: > - Rebase > > v5: > - Drop usage of xe_for_each_gt_under_each_tile and use > a function to return gt path. (Ashutosh) > > v6: > - use gt_path instead of func call (Ashutosh) > > v7: > - use new api's for gt sysfs access. > > v8: > - Change assert condition. (Ashutosh) > - Rebase xe_guc_pc pre merge CI failures seem to me to be from a different cause, Badal had sent a patch for this which is not yet merged. I think. Therefore this is also: Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com> ^ permalink raw reply [flat|nested] 16+ messages in thread
* [igt-dev] [PATCH i-g-t v9 4/4] tests/xe/xe_sysfs_tile: adds new test to verify per tile vram addr_range 2023-07-10 4:43 [igt-dev] [PATCH i-g-t v9 0/4] Handle GT and tile seperation in IGT Himal Prasad Ghimiray ` (2 preceding siblings ...) 2023-07-10 4:43 ` [igt-dev] [PATCH i-g-t v9 3/4] tests/xe/xe_guc_pc: Change the sysfs paths Himal Prasad Ghimiray @ 2023-07-10 4:43 ` Himal Prasad Ghimiray 2023-07-10 6:38 ` Dixit, Ashutosh 2023-07-10 5:38 ` [igt-dev] ✓ Fi.CI.BAT: success for Handle GT and tile seperation in IGT (rev8) Patchwork ` (4 subsequent siblings) 8 siblings, 1 reply; 16+ messages in thread From: Himal Prasad Ghimiray @ 2023-07-10 4:43 UTC (permalink / raw) To: igt-dev; +Cc: Upadhyay For each tile the test reads the sysfs entry physical_vram_size_bytes and compares the value with vram size exposed from query ioctl. v2: - Change sysfs entry name. (Tejas) - Change test name to xe_sysfs_tile_prop. (Rahul) v3: - Rectify assertion condition. v4: - use igt_assert_lt_u64 instead of igt_assert_lt for comparing u64. v5: - update xe_for_each_tile call. v6: - Rename testcase to xe_sysfs_tile - Pass tilefd and use it in igt_sysfs_scanf. (Ashutosh) v7: - Use for_each_sysfs_tile_dirfd instead of xe_for_each_tile. Cc: Aravind Iddamsetty <aravind.iddamsetty@intel.com> Cc: Upadhyay <tejas.upadhyay@intel.com> Cc: Janga Rahul Kumar <janga.rahul.kumar@intel.com> Signed-off-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com> --- tests/meson.build | 1 + tests/xe/xe_sysfs_tile.c | 55 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 tests/xe/xe_sysfs_tile.c diff --git a/tests/meson.build b/tests/meson.build index ee066b849..0567449bf 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -268,6 +268,7 @@ xe_progs = [ 'xe_pm', 'xe_prime_self_import', 'xe_query', + 'xe_sysfs_tile', 'xe_vm', 'xe_waitfence', 'xe_spin_batch', diff --git a/tests/xe/xe_sysfs_tile.c b/tests/xe/xe_sysfs_tile.c new file mode 100644 index 000000000..c4c3f5446 --- /dev/null +++ b/tests/xe/xe_sysfs_tile.c @@ -0,0 +1,55 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright © 2023 Intel Corporation + */ + +/** + * TEST: Verify physical_vram_size_bytes of each tiles + * SUBTEST: physical_vram_size_bytes + * Description: + * Read sysfs entry for physical_vram_size_bytes and compare with + * vram size. physical_vram_size_bytes should be more than vram size. + */ + +#include <string.h> +#include <sys/time.h> + +#include "igt.h" +#include "igt_sysfs.h" + +#include "xe_drm.h" +#include "xe/xe_ioctl.h" +#include "xe/xe_query.h" + +static void test_vram_physical_vram_size_bytes(int tile_fd, int tile_num, u64 vram_size) +{ + u64 physical_vram_size_bytes; + + igt_assert(igt_sysfs_scanf(tile_fd, "physical_vram_size_bytes", + "%lx", &physical_vram_size_bytes) > 0); + igt_assert_lt_u64(vram_size, physical_vram_size_bytes); +} + +igt_main +{ + int fd, tilefd, tile; + u64 vram_size; + + igt_fixture { + fd = drm_open_driver(DRIVER_XE); + xe_device_get(fd); + } + + igt_subtest("physical_vram_size_bytes") { + igt_require(xe_has_vram(fd)); + for_each_sysfs_tile_dirfd(fd, tilefd, tile) { + vram_size = xe_vram_size(fd, tile); + test_vram_physical_vram_size_bytes(tilefd, tile, vram_size); + } + } + + igt_fixture { + xe_device_put(fd); + close(fd); + } +} -- 2.25.1 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v9 4/4] tests/xe/xe_sysfs_tile: adds new test to verify per tile vram addr_range 2023-07-10 4:43 ` [igt-dev] [PATCH i-g-t v9 4/4] tests/xe/xe_sysfs_tile: adds new test to verify per tile vram addr_range Himal Prasad Ghimiray @ 2023-07-10 6:38 ` Dixit, Ashutosh 0 siblings, 0 replies; 16+ messages in thread From: Dixit, Ashutosh @ 2023-07-10 6:38 UTC (permalink / raw) To: Himal Prasad Ghimiray; +Cc: igt-dev, Upadhyay On Sun, 09 Jul 2023 21:43:30 -0700, Himal Prasad Ghimiray wrote: > > For each tile the test reads the sysfs entry physical_vram_size_bytes > and compares the value with vram size exposed from query ioctl. > > v2: > - Change sysfs entry name. (Tejas) > - Change test name to xe_sysfs_tile_prop. (Rahul) > > v3: > - Rectify assertion condition. > > v4: > - use igt_assert_lt_u64 instead of igt_assert_lt > for comparing u64. > > v5: > - update xe_for_each_tile call. > > v6: > - Rename testcase to xe_sysfs_tile > - Pass tilefd and use it in igt_sysfs_scanf. (Ashutosh) > > v7: > - Use for_each_sysfs_tile_dirfd instead of xe_for_each_tile. Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com> ^ permalink raw reply [flat|nested] 16+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Handle GT and tile seperation in IGT (rev8) 2023-07-10 4:43 [igt-dev] [PATCH i-g-t v9 0/4] Handle GT and tile seperation in IGT Himal Prasad Ghimiray ` (3 preceding siblings ...) 2023-07-10 4:43 ` [igt-dev] [PATCH i-g-t v9 4/4] tests/xe/xe_sysfs_tile: adds new test to verify per tile vram addr_range Himal Prasad Ghimiray @ 2023-07-10 5:38 ` Patchwork 2023-07-10 5:45 ` [igt-dev] ○ CI.xeBAT: info " Patchwork ` (3 subsequent siblings) 8 siblings, 0 replies; 16+ messages in thread From: Patchwork @ 2023-07-10 5:38 UTC (permalink / raw) To: Himal Prasad Ghimiray; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6891 bytes --] == Series Details == Series: Handle GT and tile seperation in IGT (rev8) URL : https://patchwork.freedesktop.org/series/119801/ State : success == Summary == CI Bug Log - changes from CI_DRM_13360 -> IGTPW_9372 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/index.html Participating hosts (40 -> 39) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9372 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_lmem_swapping@verify-random: - bat-mtlp-8: NOTRUN -> [SKIP][1] ([i915#4613]) +3 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/bat-mtlp-8/igt@gem_lmem_swapping@verify-random.html * igt@i915_pm_rps@basic-api: - bat-mtlp-8: NOTRUN -> [SKIP][2] ([i915#6621]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/bat-mtlp-8/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@gt_mocs: - bat-mtlp-8: NOTRUN -> [DMESG-FAIL][3] ([i915#7059]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@reset: - bat-rpls-2: [PASS][4] -> [ABORT][5] ([i915#4983] / [i915#7461] / [i915#7913] / [i915#8347]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/bat-rpls-2/igt@i915_selftest@live@reset.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/bat-rpls-2/igt@i915_selftest@live@reset.html * igt@i915_suspend@basic-s3-without-i915: - bat-mtlp-8: NOTRUN -> [SKIP][6] ([i915#6645]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - bat-mtlp-8: NOTRUN -> [SKIP][7] ([i915#7828]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/bat-mtlp-8/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_psr@primary_page_flip: - bat-rplp-1: NOTRUN -> [SKIP][8] ([i915#1072]) +1 similar issue [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/bat-rplp-1/igt@kms_psr@primary_page_flip.html * igt@kms_psr@sprite_plane_onoff: - bat-rplp-1: NOTRUN -> [ABORT][9] ([i915#8442] / [i915#8668] / [i915#8712]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html * igt@prime_vgem@basic-fence-mmap: - bat-mtlp-8: NOTRUN -> [SKIP][10] ([i915#3708] / [i915#4077]) +1 similar issue [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/bat-mtlp-8/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - bat-mtlp-8: NOTRUN -> [SKIP][11] ([i915#3708]) +2 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html #### Possible fixes #### * igt@i915_pm_rpm@basic-pci-d3-state: - bat-mtlp-8: [ABORT][12] ([i915#7077] / [i915#7977] / [i915#8668]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_selftest@live@migrate: - bat-dg2-11: [DMESG-WARN][14] ([i915#7699]) -> [PASS][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/bat-dg2-11/igt@i915_selftest@live@migrate.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/bat-dg2-11/igt@i915_selftest@live@migrate.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [ABORT][16] ([i915#8442] / [i915#8668]) -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html #### Warnings #### * igt@i915_module_load@load: - bat-adlp-11: [DMESG-WARN][18] ([i915#4423]) -> [ABORT][19] ([i915#4423]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/bat-adlp-11/igt@i915_module_load@load.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/bat-adlp-11/igt@i915_module_load@load.html * igt@i915_selftest@live@requests: - bat-rpls-1: [ABORT][20] ([i915#4983] / [i915#7911] / [i915#7920]) -> [ABORT][21] ([i915#7911] / [i915#7920]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/bat-rpls-1/igt@i915_selftest@live@requests.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/bat-rpls-1/igt@i915_selftest@live@requests.html [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 [i915#7077]: https://gitlab.freedesktop.org/drm/intel/issues/7077 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7920]: https://gitlab.freedesktop.org/drm/intel/issues/7920 [i915#7977]: https://gitlab.freedesktop.org/drm/intel/issues/7977 [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8712]: https://gitlab.freedesktop.org/drm/intel/issues/8712 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7377 -> IGTPW_9372 CI-20190529: 20190529 CI_DRM_13360: 033ea4a472c5dc3646d343799a2971b4817acfb5 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9372: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/index.html IGT_7377: d1574543ba4bb322597345530053475c07be0eb9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@xe_sysfs_tile@physical_vram_size_bytes == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/index.html [-- Attachment #2: Type: text/html, Size: 8369 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
* [igt-dev] ○ CI.xeBAT: info for Handle GT and tile seperation in IGT (rev8) 2023-07-10 4:43 [igt-dev] [PATCH i-g-t v9 0/4] Handle GT and tile seperation in IGT Himal Prasad Ghimiray ` (4 preceding siblings ...) 2023-07-10 5:38 ` [igt-dev] ✓ Fi.CI.BAT: success for Handle GT and tile seperation in IGT (rev8) Patchwork @ 2023-07-10 5:45 ` Patchwork 2023-07-10 6:52 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork ` (2 subsequent siblings) 8 siblings, 0 replies; 16+ messages in thread From: Patchwork @ 2023-07-10 5:45 UTC (permalink / raw) To: Himal Prasad Ghimiray; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 349 bytes --] == Series Details == Series: Handle GT and tile seperation in IGT (rev8) URL : https://patchwork.freedesktop.org/series/119801/ State : info == Summary == Participating hosts: "bat-pvc-2n""bat-atsm-2n""bat-dg2-oem2n""bat-adlp-7n"Missing hosts results[0]: Results: [IGTPW_9372](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9372/index.html) [-- Attachment #2: Type: text/html, Size: 841 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Handle GT and tile seperation in IGT (rev8) 2023-07-10 4:43 [igt-dev] [PATCH i-g-t v9 0/4] Handle GT and tile seperation in IGT Himal Prasad Ghimiray ` (5 preceding siblings ...) 2023-07-10 5:45 ` [igt-dev] ○ CI.xeBAT: info " Patchwork @ 2023-07-10 6:52 ` Patchwork 2023-07-10 13:36 ` Kamil Konieczny 2023-07-11 6:55 ` Patchwork 2023-07-11 7:29 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 8 siblings, 1 reply; 16+ messages in thread From: Patchwork @ 2023-07-10 6:52 UTC (permalink / raw) To: Himal Prasad Ghimiray; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 67131 bytes --] == Series Details == Series: Handle GT and tile seperation in IGT (rev8) URL : https://patchwork.freedesktop.org/series/119801/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13360_full -> IGTPW_9372_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9372_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9372_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/index.html Participating hosts (9 -> 10) ------------------------------ Additional (1): shard-rkl0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9372_full: ### IGT changes ### #### Possible regressions #### * igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][1] +3 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2.html * igt@prime_self_import@reimport-vs-gem_close-race: - shard-snb: [PASS][2] -> [FAIL][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-snb4/igt@prime_self_import@reimport-vs-gem_close-race.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-snb2/igt@prime_self_import@reimport-vs-gem_close-race.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_lmem_swapping@heavy-random: - {shard-dg1}: NOTRUN -> [FAIL][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg1-14/igt@gem_lmem_swapping@heavy-random.html Known issues ------------ Here are the changes found in IGTPW_9372_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@drm_fdinfo@busy-idle-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8414]) +6 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@drm_fdinfo@busy-idle-check-all@ccs0.html * igt@drm_fdinfo@busy@ccs0: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8414]) +9 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@drm_fdinfo@busy@ccs0.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [PASS][7] -> [FAIL][8] ([i915#7742]) +1 similar issue [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-3/igt@drm_fdinfo@most-busy-check-all@rcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-6/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#658]) +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@feature_discovery@psr2.html - shard-rkl: NOTRUN -> [SKIP][10] ([i915#658]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-6/igt@feature_discovery@psr2.html * igt@gem_bad_reloc@negative-reloc-bltcopy: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#3281]) +2 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@gem_bad_reloc@negative-reloc-bltcopy.html * igt@gem_ccs@block-copy-compressed: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#5325]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@gem_ccs@block-copy-compressed.html * igt@gem_create@hog-create@smem0: - shard-dg2: [PASS][13] -> [FAIL][14] ([i915#5892] / [i915#8758]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-7/igt@gem_create@hog-create@smem0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@gem_create@hog-create@smem0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][15] -> [FAIL][16] ([i915#6268]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-3/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-dg2: NOTRUN -> [FAIL][17] ([fdo#103375] / [i915#6121]) +4 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_ctx_param@set-priority-not-supported: - shard-mtlp: NOTRUN -> [SKIP][18] ([fdo#109314]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@heartbeat-close: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#8555]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8555]) +1 similar issue [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@legacy-engines-hang@bsd1: - shard-mtlp: [PASS][21] -> [FAIL][22] ([i915#2410]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-3/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html * igt@gem_ctx_sseu@invalid-sseu: - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#280]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@kms: - shard-dg2: [PASS][24] -> [INCOMPLETE][25] ([i915#7892]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-5/igt@gem_eio@kms.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@gem_eio@kms.html * igt@gem_exec_balancer@hang: - shard-mtlp: [PASS][26] -> [ABORT][27] ([i915#8104]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@gem_exec_balancer@hang.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@gem_exec_balancer@hang.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][28] ([i915#4525]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-6/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#4812]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@gem_exec_balancer@sliced.html * igt@gem_exec_endless@dispatch@rcs0: - shard-apl: [PASS][30] -> [TIMEOUT][31] ([i915#3778]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl1/igt@gem_exec_endless@dispatch@rcs0.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl6/igt@gem_exec_endless@dispatch@rcs0.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [PASS][33] -> [FAIL][34] ([i915#2842]) +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-6/igt@gem_exec_fair@basic-pace@vecs0.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-3/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fence@submit: - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4812]) +1 similar issue [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@gem_exec_fence@submit.html * igt@gem_exec_gttfill@multigpu-basic: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#7697]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-8/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_params@secure-non-root: - shard-dg2: NOTRUN -> [SKIP][37] ([fdo#112283]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@gem_exec_params@secure-non-root.html - shard-rkl: NOTRUN -> [SKIP][38] ([fdo#112283]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-cpu-wc-active: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@gem_exec_reloc@basic-cpu-wc-active.html - shard-rkl: NOTRUN -> [SKIP][40] ([i915#3281]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@gem_exec_reloc@basic-cpu-wc-active.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-tglu: [PASS][41] -> [ABORT][42] ([i915#7975] / [i915#8213]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-tglu-2/igt@gem_exec_suspend@basic-s4-devices@smem.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_exec_whisper@basic-normal: - shard-mtlp: [PASS][43] -> [FAIL][44] ([i915#6363]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-7/igt@gem_exec_whisper@basic-normal.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@gem_exec_whisper@basic-normal.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4860]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#4613] / [i915#7582]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@verify-random: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#4613]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@gem_lmem_swapping@verify-random.html - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4613]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap@short-mmap: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4083]) +1 similar issue [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@gem_mmap@short-mmap.html * igt@gem_mmap_gtt@basic-read-write-distinct: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4077]) +1 similar issue [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-7/igt@gem_mmap_gtt@basic-read-write-distinct.html * igt@gem_mmap_gtt@basic-short: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4077]) +8 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@gem_mmap_gtt@basic-short.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#3282]) +3 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pwrite@basic-random: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3282]) +5 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-3/igt@gem_pwrite@basic-random.html - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#3282]) +3 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@gem_pwrite@basic-random.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4270]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-tglu: NOTRUN -> [SKIP][56] ([i915#4270]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-5/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#8428]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#5190]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4079]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-rkl: NOTRUN -> [SKIP][60] ([i915#8411]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4079]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3297]) +1 similar issue [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@gem_userptr_blits@access-control.html * igt@gem_workarounds@suspend-resume-fd: - shard-dg2: [PASS][63] -> [FAIL][64] ([fdo#103375] / [i915#6121]) +1 similar issue [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-10/igt@gem_workarounds@suspend-resume-fd.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@gem_workarounds@suspend-resume-fd.html * igt@gen3_mixed_blits: - shard-dg2: NOTRUN -> [SKIP][65] ([fdo#109289]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-3/igt@gen3_mixed_blits.html - shard-rkl: NOTRUN -> [SKIP][66] ([fdo#109289]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@gen3_mixed_blits.html * igt@gen7_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][67] ([fdo#109289]) +1 similar issue [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@gen7_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@allowed-single: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#2527] / [i915#2856]) +1 similar issue [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-9/igt@gen9_exec_parse@allowed-single.html * igt@i915_hangman@engine-engine-error@vcs0: - shard-mtlp: [PASS][69] -> [FAIL][70] ([i915#7069]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-4/igt@i915_hangman@engine-engine-error@vcs0.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@i915_hangman@engine-engine-error@vcs0.html * igt@i915_module_load@load: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#6227]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@i915_module_load@load.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#6412]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-3/igt@i915_module_load@resize-bar.html * igt@i915_pm_backlight@fade-with-suspend: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#5354] / [i915#7561]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@i915_pm_backlight@fade-with-suspend.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#1937]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: [PASS][75] -> [SKIP][76] ([i915#1397]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-2/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@gem-mmap-type@gtt-smem0: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#8431]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@i915_pm_rpm@gem-mmap-type@gtt-smem0.html * igt@i915_pm_rpm@modeset-lpsp: - shard-dg2: [PASS][78] -> [SKIP][79] ([i915#1397]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-12/igt@i915_pm_rpm@modeset-lpsp.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-9/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-glk: NOTRUN -> [SKIP][80] ([fdo#109271]) +11 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk2/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-dg2: NOTRUN -> [SKIP][81] ([fdo#109506]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_pm_rps@basic-api: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#6621]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@i915_pm_rps@basic-api.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][83] ([i915#8247]) +1 similar issue [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][84] ([i915#8247]) +3 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_async_flips@invalid-async-flip: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#6228]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#404]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][87] ([fdo#111614]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [PASS][88] -> [FAIL][89] ([i915#5138]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#5286]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][91] -> [DMESG-WARN][92] ([i915#1982]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][93] ([fdo#111614]) +2 similar issues [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-snb: [PASS][94] -> [SKIP][95] ([fdo#109271]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-snb5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-snb7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: [PASS][96] -> [FAIL][97] ([i915#3743]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][98] ([fdo#111614] / [i915#3638]) +1 similar issue [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][99] ([fdo#111615]) +7 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#4538] / [i915#5190]) +2 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html - shard-rkl: NOTRUN -> [SKIP][101] ([fdo#110723]) +1 similar issue [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][102] ([fdo#111615]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#3734] / [i915#5354] / [i915#6095]) +1 similar issue [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-2/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#5354]) +20 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][105] ([fdo#109271] / [i915#3886]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk4/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#6095]) +17 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#3689] / [i915#3886] / [i915#5354]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#5354] / [i915#6095]) +4 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs: - shard-tglu: NOTRUN -> [SKIP][109] ([i915#5354] / [i915#6095]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-10/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#3886] / [i915#6095]) +3 similar issues [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#3689] / [i915#5354]) +4 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html - shard-rkl: NOTRUN -> [SKIP][112] ([i915#5354]) +5 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#4087] / [i915#7213]) +3 similar issues [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#7828]) +2 similar issues [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-8/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-max: - shard-mtlp: NOTRUN -> [SKIP][115] ([fdo#111827]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#7828]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-9/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_color@deep-color: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#3555]) +2 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][118] ([i915#7173]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#3299]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#7118]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#3555]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#8814]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#3359]) +1 similar issue [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][124] ([fdo#111767] / [i915#3546]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#3546]) +2 similar issues [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-dg2: NOTRUN -> [SKIP][126] ([fdo#109274] / [i915#5354]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [PASS][127] -> [FAIL][128] ([i915#2346]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html - shard-glk: [PASS][129] -> [FAIL][130] ([i915#2346]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#8827]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@kms_display_modes@extended-mode-basic.html * igt@kms_flip@2x-flip-vs-dpms: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#3637]) +2 similar issues [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][133] ([fdo#109274]) +1 similar issue [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@kms_flip@2x-modeset-vs-vblank-race.html - shard-rkl: NOTRUN -> [SKIP][134] ([fdo#111825]) +1 similar issue [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@flip-vs-expired-vblank@a-dp1: - shard-apl: [PASS][135] -> [FAIL][136] ([i915#79]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl7/igt@kms_flip@flip-vs-expired-vblank@a-dp1.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl2/igt@kms_flip@flip-vs-expired-vblank@a-dp1.html * igt@kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#8381]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-suspend@a-dp1: - shard-apl: [PASS][138] -> [ABORT][139] ([i915#180]) +1 similar issue [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl4/igt@kms_flip@flip-vs-suspend@a-dp1.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl1/igt@kms_flip@flip-vs-suspend@a-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#2672]) +1 similar issue [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#8810]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#2672]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg2: [PASS][143] -> [FAIL][144] ([i915#6880]) +1 similar issue [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][145] ([fdo#111825] / [i915#1825]) +6 similar issues [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#8708]) +5 similar issues [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][147] ([fdo#110189]) +5 similar issues [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#8708]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][149] ([fdo#109280]) +2 similar issues [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#1825]) +16 similar issues [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-snb: NOTRUN -> [SKIP][151] ([fdo#109271]) +70 similar issues [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-snb2/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#3023]) +5 similar issues [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#3458]) +3 similar issues [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html * igt@kms_hdr@static-toggle-suspend: - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#8228]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_hdr@static-toggle-suspend.html * igt@kms_plane_lowres@tiling-x@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#3582]) +3 similar issues [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-2: - shard-dg2: NOTRUN -> [FAIL][156] ([i915#8292]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-2.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#5176]) +7 similar issues [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#5176]) +3 similar issues [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-c-edp-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#5176]) +5 similar issues [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#5235]) +3 similar issues [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#5235]) +1 similar issue [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#5235]) +11 similar issues [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][163] ([fdo#111068] / [i915#658]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-6/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#1072]) +1 similar issue [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-7/igt@kms_psr@psr2_sprite_mmap_gtt.html - shard-rkl: NOTRUN -> [SKIP][165] ([i915#1072]) +1 similar issue [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-2/igt@kms_psr@psr2_sprite_mmap_gtt.html * igt@kms_rotation_crc@bad-pixel-format: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#4235]) +1 similar issue [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#5289]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_sysfs_edid_timing: - shard-dg2: [PASS][168] -> [FAIL][169] ([IGT#2]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-12/igt@kms_sysfs_edid_timing.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-10/igt@kms_sysfs_edid_timing.html * igt@kms_tv_load_detect@load-detect: - shard-tglu: NOTRUN -> [SKIP][170] ([fdo#109309]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-2/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@pipe-d-accuracy-idle: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#4070] / [i915#533] / [i915#6768]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@kms_vblank@pipe-d-accuracy-idle.html * igt@kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#2437]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@kms_writeback@writeback-fb-id.html - shard-rkl: NOTRUN -> [SKIP][173] ([i915#2437]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_writeback@writeback-fb-id.html - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#2437]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-invalid-parameters: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#2437]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-4/igt@kms_writeback@writeback-invalid-parameters.html - shard-glk: NOTRUN -> [SKIP][176] ([fdo#109271] / [i915#2437]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk1/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@global-sseu-config-invalid: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#7387]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@perf@global-sseu-config-invalid.html * igt@prime_self_import@reimport-vs-gem_close-race: - shard-mtlp: [PASS][178] -> [FAIL][179] ([i915#7951]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-3/igt@prime_self_import@reimport-vs-gem_close-race.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-8/igt@prime_self_import@reimport-vs-gem_close-race.html * igt@prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#3708] / [i915#4077]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3708]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@prime_vgem@fence-read-hang.html * igt@sysfs_timeslice_duration@timeout@vecs0: - shard-mtlp: [PASS][182] -> [ABORT][183] ([i915#8521]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@sysfs_timeslice_duration@timeout@vecs0.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@sysfs_timeslice_duration@timeout@vecs0.html * igt@v3d/v3d_get_param@base-params: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#2575]) +3 similar issues [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@v3d/v3d_get_param@base-params.html - shard-rkl: NOTRUN -> [SKIP][185] ([fdo#109315]) +1 similar issue [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@v3d/v3d_get_param@base-params.html * igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync: - shard-tglu: NOTRUN -> [SKIP][186] ([fdo#109315] / [i915#2575]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-9/igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync.html * igt@v3d/v3d_submit_cl@single-out-sync: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#2575]) +7 similar issues [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@v3d/v3d_submit_cl@single-out-sync.html * igt@vc4/vc4_tiling@get-after-free: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#7711]) +3 similar issues [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@vc4/vc4_tiling@get-after-free.html * igt@vc4/vc4_tiling@get-bad-modifier: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#7711]) +1 similar issue [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@vc4/vc4_tiling@get-bad-modifier.html #### Possible fixes #### * igt@gem_ctx_persistence@engines-hang@vcs0: - shard-mtlp: [FAIL][190] ([i915#2410]) -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@gem_ctx_persistence@engines-hang@vcs0.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@gem_ctx_persistence@engines-hang@vcs0.html * igt@gem_eio@reset-stress: - shard-dg2: [FAIL][192] ([i915#5784]) -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-7/igt@gem_eio@reset-stress.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@full-pulse: - shard-dg2: [FAIL][194] ([i915#6032]) -> [PASS][195] [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-9/igt@gem_exec_balancer@full-pulse.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@gem_exec_balancer@full-pulse.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [FAIL][196] ([i915#2846]) -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-glk9/igt@gem_exec_fair@basic-deadline.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk9/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [FAIL][198] ([i915#2842]) -> [PASS][199] [198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-rkl: [FAIL][200] ([i915#2842]) -> [PASS][201] +1 similar issue [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-4/igt@gem_exec_fair@basic-throttle@rcs0.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-3/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_schedule@preemptive-hang@vcs0: - shard-mtlp: [FAIL][202] ([i915#7327]) -> [PASS][203] [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-5/igt@gem_exec_schedule@preemptive-hang@vcs0.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@gem_exec_schedule@preemptive-hang@vcs0.html * igt@gem_exec_whisper@basic-forked: - shard-mtlp: [FAIL][204] ([i915#6363]) -> [PASS][205] [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-3/igt@gem_exec_whisper@basic-forked.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@gem_exec_whisper@basic-forked.html * igt@gem_lmem_swapping@smem-oom@lmem0: - {shard-dg1}: [TIMEOUT][206] ([i915#5493]) -> [PASS][207] [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [ABORT][208] ([i915#5566]) -> [PASS][209] [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-glk8/igt@gen9_exec_parse@allowed-single.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk8/igt@gen9_exec_parse@allowed-single.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [SKIP][210] ([fdo#109271]) -> [PASS][211] [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl2/igt@i915_pm_dc@dc9-dpms.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl4/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][212] ([i915#1397]) -> [PASS][213] [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-3/igt@i915_pm_rpm@dpms-lpsp.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [SKIP][214] ([i915#1397]) -> [PASS][215] +3 similar issues [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-10/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-3/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_selftest@live@sanitycheck: - shard-snb: [ABORT][216] ([i915#4528]) -> [PASS][217] [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-snb2/igt@i915_selftest@live@sanitycheck.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-snb2/igt@i915_selftest@live@sanitycheck.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1: - shard-mtlp: [FAIL][218] ([i915#2521]) -> [PASS][219] [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-glk: [FAIL][220] ([i915#72]) -> [PASS][221] [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-glk4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [FAIL][222] ([i915#2346]) -> [PASS][223] [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][224] ([i915#2122]) -> [PASS][225] [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: - shard-dg2: [FAIL][226] ([i915#6880]) -> [PASS][227] [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html * igt@kms_psr@psr2_primary_render: - shard-mtlp: [FAIL][228] ([i915#8726]) -> [PASS][229] [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-7/igt@kms_psr@psr2_primary_render.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_psr@psr2_primary_render.html * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend: - shard-dg2: [FAIL][230] ([fdo#103375] / [i915#6121]) -> [PASS][231] [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-5/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][232] ([i915#7757]) -> [PASS][233] [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-7/igt@perf@non-zero-reason@0-rcs0.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@semaphore-busy@ccs0: - shard-mtlp: [FAIL][234] ([i915#4349]) -> [PASS][235] [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-7/igt@perf_pmu@semaphore-busy@ccs0.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@perf_pmu@semaphore-busy@ccs0.html * igt@sysfs_heartbeat_interval@mixed@ccs0: - shard-mtlp: [ABORT][236] ([i915#8552]) -> [PASS][237] [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-6/igt@sysfs_heartbeat_interval@mixed@ccs0.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@sysfs_heartbeat_interval@mixed@ccs0.html * igt@sysfs_heartbeat_interval@mixed@vecs0: - shard-mtlp: [FAIL][238] ([i915#1731]) -> [PASS][239] [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-6/igt@sysfs_heartbeat_interval@mixed@vecs0.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@sysfs_heartbeat_interval@mixed@vecs0.html * igt@sysfs_heartbeat_interval@nopreempt@vcs0: - shard-mtlp: [FAIL][240] ([i915#6015]) -> [PASS][241] +5 similar issues [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-2/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html * igt@sysfs_heartbeat_interval@precise@vecs0: - shard-mtlp: [FAIL][242] ([i915#8332]) -> [PASS][243] [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-1/igt@sysfs_heartbeat_interval@precise@vecs0.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@sysfs_heartbeat_interval@precise@vecs0.html #### Warnings #### * igt@gem_exec_whisper@basic-contexts-priority-all: - shard-mtlp: [FAIL][244] ([i915#6363]) -> [TIMEOUT][245] ([i915#7392]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-1/igt@gem_exec_whisper@basic-contexts-priority-all.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@gem_exec_whisper@basic-contexts-priority-all.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-mtlp: [SKIP][246] ([fdo#109289]) -> [SKIP][247] ([fdo#109289] / [i915#8403]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@kms_content_protection@mei_interface: - shard-dg2: [SKIP][248] ([i915#7118] / [i915#7162]) -> [SKIP][249] ([i915#7118]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-12/igt@kms_content_protection@mei_interface.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@kms_content_protection@mei_interface.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][250] ([i915#7118]) -> [SKIP][251] ([i915#7118] / [i915#7162]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-8/igt@kms_content_protection@type1.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@kms_content_protection@type1.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: [DMESG-FAIL][252] ([i915#1982] / [i915#2017] / [i915#5954]) -> [DMESG-FAIL][253] ([i915#2017] / [i915#5954]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][254] ([i915#4816]) -> [SKIP][255] ([i915#4070] / [i915#4816]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5892]: https://gitlab.freedesktop.org/drm/intel/issues/5892 [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 [i915#6015]: https://gitlab.freedesktop.org/drm/intel/issues/6015 [i915#6032]: https://gitlab.freedesktop.org/drm/intel/issues/6032 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6363]: https://gitlab.freedesktop.org/drm/intel/issues/6363 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7327]: https://gitlab.freedesktop.org/drm/intel/issues/7327 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7757]: https://gitlab.freedesktop.org/drm/intel/issues/7757 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7892]: https://gitlab.freedesktop.org/drm/intel/issues/7892 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7951]: https://gitlab.freedesktop.org/drm/intel/issues/7951 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8104]: https://gitlab.freedesktop.org/drm/intel/issues/8104 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8332]: https://gitlab.freedesktop.org/drm/intel/issues/8332 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8431]: https://gitlab.freedesktop.org/drm/intel/issues/8431 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521 [i915#8552]: https://gitlab.freedesktop.org/drm/intel/issues/8552 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8726]: https://gitlab.freedesktop.org/drm/intel/issues/8726 [i915#8758]: https://gitlab.freedesktop.org/drm/intel/issues/8758 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8827]: https://gitlab.freedesktop.org/drm/intel/issues/8827 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7377 -> IGTPW_9372 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13360: 033ea4a472c5dc3646d343799a2971b4817acfb5 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9372: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/index.html IGT_7377: d1574543ba4bb322597345530053475c07be0eb9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/index.html [-- Attachment #2: Type: text/html, Size: 78004 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Handle GT and tile seperation in IGT (rev8) 2023-07-10 6:52 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-07-10 13:36 ` Kamil Konieczny 2023-07-11 7:40 ` Yedireswarapu, SaiX Nandan 0 siblings, 1 reply; 16+ messages in thread From: Kamil Konieczny @ 2023-07-10 13:36 UTC (permalink / raw) To: igt-dev; +Cc: SaiX Nandan Yedireswarapu, SanjuX Marikkar, RavitejaX Veesam Hi Sai, On 2023-07-10 at 06:52:11 -0000, Patchwork wrote: > == Series Details == > > Series: Handle GT and tile seperation in IGT (rev8) > URL : https://patchwork.freedesktop.org/series/119801/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_13360_full -> IGTPW_9372_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_9372_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_9372_full, please notify your bug team to allow them > to document this new failure mode, which will reduce false positives in CI. > > External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/index.html > > Participating hosts (9 -> 10) > ------------------------------ > > Additional (1): shard-rkl0 > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_9372_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2: > - shard-dg2: NOTRUN -> [SKIP][1] +3 similar issues > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2.html > > * igt@prime_self_import@reimport-vs-gem_close-race: > - shard-snb: [PASS][2] -> [FAIL][3] > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-snb4/igt@prime_self_import@reimport-vs-gem_close-race.html > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-snb2/igt@prime_self_import@reimport-vs-gem_close-race.html > These fails are for i915 driver, unrelated to change in xe_sysfs* functions in lib/igt_sysfs and a new xe_sysfs_tile test. No need for respin. Regards, Kamil > > #### Suppressed #### > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > * igt@gem_lmem_swapping@heavy-random: > - {shard-dg1}: NOTRUN -> [FAIL][4] > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg1-14/igt@gem_lmem_swapping@heavy-random.html > > > Known issues > ------------ > > Here are the changes found in IGTPW_9372_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@drm_fdinfo@busy-idle-check-all@ccs0: > - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8414]) +6 similar issues > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@drm_fdinfo@busy-idle-check-all@ccs0.html > > * igt@drm_fdinfo@busy@ccs0: > - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8414]) +9 similar issues > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@drm_fdinfo@busy@ccs0.html > > * igt@drm_fdinfo@most-busy-check-all@rcs0: > - shard-rkl: [PASS][7] -> [FAIL][8] ([i915#7742]) +1 similar issue > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-3/igt@drm_fdinfo@most-busy-check-all@rcs0.html > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-6/igt@drm_fdinfo@most-busy-check-all@rcs0.html > > * igt@feature_discovery@psr2: > - shard-dg2: NOTRUN -> [SKIP][9] ([i915#658]) +1 similar issue > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@feature_discovery@psr2.html > - shard-rkl: NOTRUN -> [SKIP][10] ([i915#658]) > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-6/igt@feature_discovery@psr2.html > > * igt@gem_bad_reloc@negative-reloc-bltcopy: > - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#3281]) +2 similar issues > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@gem_bad_reloc@negative-reloc-bltcopy.html > > * igt@gem_ccs@block-copy-compressed: > - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#5325]) > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@gem_ccs@block-copy-compressed.html > > * igt@gem_create@hog-create@smem0: > - shard-dg2: [PASS][13] -> [FAIL][14] ([i915#5892] / [i915#8758]) > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-7/igt@gem_create@hog-create@smem0.html > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@gem_create@hog-create@smem0.html > > * igt@gem_ctx_exec@basic-nohangcheck: > - shard-rkl: [PASS][15] -> [FAIL][16] ([i915#6268]) > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-3/igt@gem_ctx_exec@basic-nohangcheck.html > > * igt@gem_ctx_isolation@preservation-s3@bcs0: > - shard-dg2: NOTRUN -> [FAIL][17] ([fdo#103375] / [i915#6121]) +4 similar issues > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@gem_ctx_isolation@preservation-s3@bcs0.html > > * igt@gem_ctx_param@set-priority-not-supported: > - shard-mtlp: NOTRUN -> [SKIP][18] ([fdo#109314]) > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@gem_ctx_param@set-priority-not-supported.html > > * igt@gem_ctx_persistence@heartbeat-close: > - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#8555]) > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@gem_ctx_persistence@heartbeat-close.html > > * igt@gem_ctx_persistence@heartbeat-hostile: > - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8555]) +1 similar issue > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-hostile.html > > * igt@gem_ctx_persistence@legacy-engines-hang@bsd1: > - shard-mtlp: [PASS][21] -> [FAIL][22] ([i915#2410]) > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-3/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html > > * igt@gem_ctx_sseu@invalid-sseu: > - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#280]) > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@gem_ctx_sseu@invalid-sseu.html > > * igt@gem_eio@kms: > - shard-dg2: [PASS][24] -> [INCOMPLETE][25] ([i915#7892]) > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-5/igt@gem_eio@kms.html > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@gem_eio@kms.html > > * igt@gem_exec_balancer@hang: > - shard-mtlp: [PASS][26] -> [ABORT][27] ([i915#8104]) > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@gem_exec_balancer@hang.html > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@gem_exec_balancer@hang.html > > * igt@gem_exec_balancer@parallel-bb-first: > - shard-rkl: NOTRUN -> [SKIP][28] ([i915#4525]) > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-6/igt@gem_exec_balancer@parallel-bb-first.html > > * igt@gem_exec_balancer@sliced: > - shard-dg2: NOTRUN -> [SKIP][29] ([i915#4812]) > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@gem_exec_balancer@sliced.html > > * igt@gem_exec_endless@dispatch@rcs0: > - shard-apl: [PASS][30] -> [TIMEOUT][31] ([i915#3778]) > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl1/igt@gem_exec_endless@dispatch@rcs0.html > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl6/igt@gem_exec_endless@dispatch@rcs0.html > > * igt@gem_exec_fair@basic-none-rrul: > - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852]) > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@gem_exec_fair@basic-none-rrul.html > > * igt@gem_exec_fair@basic-pace@vecs0: > - shard-rkl: [PASS][33] -> [FAIL][34] ([i915#2842]) +1 similar issue > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-6/igt@gem_exec_fair@basic-pace@vecs0.html > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-3/igt@gem_exec_fair@basic-pace@vecs0.html > > * igt@gem_exec_fence@submit: > - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4812]) +1 similar issue > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@gem_exec_fence@submit.html > > * igt@gem_exec_gttfill@multigpu-basic: > - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#7697]) > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-8/igt@gem_exec_gttfill@multigpu-basic.html > > * igt@gem_exec_params@secure-non-root: > - shard-dg2: NOTRUN -> [SKIP][37] ([fdo#112283]) > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@gem_exec_params@secure-non-root.html > - shard-rkl: NOTRUN -> [SKIP][38] ([fdo#112283]) > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@gem_exec_params@secure-non-root.html > > * igt@gem_exec_reloc@basic-cpu-wc-active: > - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@gem_exec_reloc@basic-cpu-wc-active.html > - shard-rkl: NOTRUN -> [SKIP][40] ([i915#3281]) > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@gem_exec_reloc@basic-cpu-wc-active.html > > * igt@gem_exec_suspend@basic-s4-devices@smem: > - shard-tglu: [PASS][41] -> [ABORT][42] ([i915#7975] / [i915#8213]) > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-tglu-2/igt@gem_exec_suspend@basic-s4-devices@smem.html > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html > > * igt@gem_exec_whisper@basic-normal: > - shard-mtlp: [PASS][43] -> [FAIL][44] ([i915#6363]) > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-7/igt@gem_exec_whisper@basic-normal.html > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@gem_exec_whisper@basic-normal.html > > * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: > - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4860]) > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html > > * igt@gem_lmem_evict@dontneed-evict-race: > - shard-rkl: NOTRUN -> [SKIP][46] ([i915#4613] / [i915#7582]) > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@gem_lmem_evict@dontneed-evict-race.html > > * igt@gem_lmem_swapping@verify-random: > - shard-rkl: NOTRUN -> [SKIP][47] ([i915#4613]) > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@gem_lmem_swapping@verify-random.html > - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4613]) > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@gem_lmem_swapping@verify-random.html > > * igt@gem_mmap@short-mmap: > - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4083]) +1 similar issue > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@gem_mmap@short-mmap.html > > * igt@gem_mmap_gtt@basic-read-write-distinct: > - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4077]) +1 similar issue > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-7/igt@gem_mmap_gtt@basic-read-write-distinct.html > > * igt@gem_mmap_gtt@basic-short: > - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4077]) +8 similar issues > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@gem_mmap_gtt@basic-short.html > > * igt@gem_partial_pwrite_pread@writes-after-reads: > - shard-rkl: NOTRUN -> [SKIP][52] ([i915#3282]) +3 similar issues > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads.html > > * igt@gem_pwrite@basic-random: > - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3282]) +5 similar issues > [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-3/igt@gem_pwrite@basic-random.html > - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#3282]) +3 similar issues > [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@gem_pwrite@basic-random.html > > * igt@gem_pxp@regular-baseline-src-copy-readible: > - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4270]) > [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@gem_pxp@regular-baseline-src-copy-readible.html > > * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: > - shard-tglu: NOTRUN -> [SKIP][56] ([i915#4270]) > [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-5/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html > > * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled: > - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#8428]) > [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html > > * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled: > - shard-dg2: NOTRUN -> [SKIP][58] ([i915#5190]) > [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html > > * igt@gem_set_tiling_vs_blt@tiled-to-untiled: > - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4079]) > [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html > - shard-rkl: NOTRUN -> [SKIP][60] ([i915#8411]) > [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html > > * igt@gem_set_tiling_vs_blt@untiled-to-tiled: > - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4079]) > [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html > > * igt@gem_userptr_blits@access-control: > - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3297]) +1 similar issue > [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@gem_userptr_blits@access-control.html > > * igt@gem_workarounds@suspend-resume-fd: > - shard-dg2: [PASS][63] -> [FAIL][64] ([fdo#103375] / [i915#6121]) +1 similar issue > [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-10/igt@gem_workarounds@suspend-resume-fd.html > [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@gem_workarounds@suspend-resume-fd.html > > * igt@gen3_mixed_blits: > - shard-dg2: NOTRUN -> [SKIP][65] ([fdo#109289]) > [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-3/igt@gen3_mixed_blits.html > - shard-rkl: NOTRUN -> [SKIP][66] ([fdo#109289]) > [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@gen3_mixed_blits.html > > * igt@gen7_exec_parse@cmd-crossing-page: > - shard-mtlp: NOTRUN -> [SKIP][67] ([fdo#109289]) +1 similar issue > [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@gen7_exec_parse@cmd-crossing-page.html > > * igt@gen9_exec_parse@allowed-single: > - shard-tglu: NOTRUN -> [SKIP][68] ([i915#2527] / [i915#2856]) +1 similar issue > [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-9/igt@gen9_exec_parse@allowed-single.html > > * igt@i915_hangman@engine-engine-error@vcs0: > - shard-mtlp: [PASS][69] -> [FAIL][70] ([i915#7069]) > [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-4/igt@i915_hangman@engine-engine-error@vcs0.html > [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@i915_hangman@engine-engine-error@vcs0.html > > * igt@i915_module_load@load: > - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#6227]) > [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@i915_module_load@load.html > > * igt@i915_module_load@resize-bar: > - shard-rkl: NOTRUN -> [SKIP][72] ([i915#6412]) > [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-3/igt@i915_module_load@resize-bar.html > > * igt@i915_pm_backlight@fade-with-suspend: > - shard-dg2: NOTRUN -> [SKIP][73] ([i915#5354] / [i915#7561]) > [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@i915_pm_backlight@fade-with-suspend.html > > * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp: > - shard-dg2: NOTRUN -> [SKIP][74] ([i915#1937]) > [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html > > * igt@i915_pm_rpm@dpms-mode-unset-lpsp: > - shard-rkl: [PASS][75] -> [SKIP][76] ([i915#1397]) > [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html > [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-2/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html > > * igt@i915_pm_rpm@gem-mmap-type@gtt-smem0: > - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#8431]) > [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@i915_pm_rpm@gem-mmap-type@gtt-smem0.html > > * igt@i915_pm_rpm@modeset-lpsp: > - shard-dg2: [PASS][78] -> [SKIP][79] ([i915#1397]) > [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-12/igt@i915_pm_rpm@modeset-lpsp.html > [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-9/igt@i915_pm_rpm@modeset-lpsp.html > > * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: > - shard-glk: NOTRUN -> [SKIP][80] ([fdo#109271]) +11 similar issues > [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk2/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html > > * igt@i915_pm_rpm@modeset-pc8-residency-stress: > - shard-dg2: NOTRUN -> [SKIP][81] ([fdo#109506]) > [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@i915_pm_rpm@modeset-pc8-residency-stress.html > > * igt@i915_pm_rps@basic-api: > - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#6621]) > [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@i915_pm_rps@basic-api.html > > * igt@kms_async_flips@crc@pipe-a-hdmi-a-2: > - shard-rkl: NOTRUN -> [FAIL][83] ([i915#8247]) +1 similar issue > [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html > > * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: > - shard-dg2: NOTRUN -> [FAIL][84] ([i915#8247]) +3 similar issues > [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html > > * igt@kms_async_flips@invalid-async-flip: > - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#6228]) > [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@kms_async_flips@invalid-async-flip.html > > * igt@kms_atomic@plane-primary-overlay-mutable-zpos: > - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#404]) > [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html > > * igt@kms_big_fb@4-tiled-32bpp-rotate-90: > - shard-mtlp: NOTRUN -> [SKIP][87] ([fdo#111614]) > [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html > > * igt@kms_big_fb@4-tiled-64bpp-rotate-180: > - shard-mtlp: [PASS][88] -> [FAIL][89] ([i915#5138]) > [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html > [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html > > * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: > - shard-rkl: NOTRUN -> [SKIP][90] ([i915#5286]) > [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html > > * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: > - shard-mtlp: [PASS][91] -> [DMESG-WARN][92] ([i915#1982]) > [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html > [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html > > * igt@kms_big_fb@x-tiled-16bpp-rotate-90: > - shard-dg2: NOTRUN -> [SKIP][93] ([fdo#111614]) +2 similar issues > [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html > > * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: > - shard-snb: [PASS][94] -> [SKIP][95] ([fdo#109271]) > [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-snb5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html > [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-snb7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html > > * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: > - shard-mtlp: [PASS][96] -> [FAIL][97] ([i915#3743]) > [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html > [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html > > * igt@kms_big_fb@y-tiled-64bpp-rotate-270: > - shard-rkl: NOTRUN -> [SKIP][98] ([fdo#111614] / [i915#3638]) +1 similar issue > [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html > > * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: > - shard-mtlp: NOTRUN -> [SKIP][99] ([fdo#111615]) +7 similar issues > [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html > > * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: > - shard-dg2: NOTRUN -> [SKIP][100] ([i915#4538] / [i915#5190]) +2 similar issues > [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html > - shard-rkl: NOTRUN -> [SKIP][101] ([fdo#110723]) +1 similar issue > [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html > > * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: > - shard-tglu: NOTRUN -> [SKIP][102] ([fdo#111615]) > [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html > > * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_ccs: > - shard-rkl: NOTRUN -> [SKIP][103] ([i915#3734] / [i915#5354] / [i915#6095]) +1 similar issue > [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-2/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_ccs.html > > * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc: > - shard-dg2: NOTRUN -> [SKIP][104] ([i915#5354]) +20 similar issues > [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc.html > > * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs: > - shard-glk: NOTRUN -> [SKIP][105] ([fdo#109271] / [i915#3886]) > [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk4/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs.html > > * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs: > - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#6095]) +17 similar issues > [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs.html > > * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc: > - shard-dg2: NOTRUN -> [SKIP][107] ([i915#3689] / [i915#3886] / [i915#5354]) > [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html > > * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: > - shard-rkl: NOTRUN -> [SKIP][108] ([i915#5354] / [i915#6095]) +4 similar issues > [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html > > * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs: > - shard-tglu: NOTRUN -> [SKIP][109] ([i915#5354] / [i915#6095]) > [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-10/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs.html > > * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: > - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#3886] / [i915#6095]) +3 similar issues > [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html > > * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: > - shard-dg2: NOTRUN -> [SKIP][111] ([i915#3689] / [i915#5354]) +4 similar issues > [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html > - shard-rkl: NOTRUN -> [SKIP][112] ([i915#5354]) +5 similar issues > [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html > > * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: > - shard-dg2: NOTRUN -> [SKIP][113] ([i915#4087] / [i915#7213]) +3 similar issues > [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html > > * igt@kms_chamelium_audio@hdmi-audio-edid: > - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#7828]) +2 similar issues > [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-8/igt@kms_chamelium_audio@hdmi-audio-edid.html > > * igt@kms_chamelium_color@ctm-max: > - shard-mtlp: NOTRUN -> [SKIP][115] ([fdo#111827]) > [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@kms_chamelium_color@ctm-max.html > > * igt@kms_chamelium_frames@dp-frame-dump: > - shard-dg2: NOTRUN -> [SKIP][116] ([i915#7828]) > [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-9/igt@kms_chamelium_frames@dp-frame-dump.html > > * igt@kms_color@deep-color: > - shard-dg2: NOTRUN -> [SKIP][117] ([i915#3555]) +2 similar issues > [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@kms_color@deep-color.html > > * igt@kms_content_protection@atomic@pipe-a-dp-4: > - shard-dg2: NOTRUN -> [TIMEOUT][118] ([i915#7173]) > [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-4.html > > * igt@kms_content_protection@dp-mst-lic-type-0: > - shard-dg2: NOTRUN -> [SKIP][119] ([i915#3299]) > [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@kms_content_protection@dp-mst-lic-type-0.html > > * igt@kms_content_protection@uevent: > - shard-dg2: NOTRUN -> [SKIP][120] ([i915#7118]) > [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@kms_content_protection@uevent.html > > * igt@kms_cursor_crc@cursor-onscreen-32x10: > - shard-rkl: NOTRUN -> [SKIP][121] ([i915#3555]) > [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-32x10.html > > * igt@kms_cursor_crc@cursor-onscreen-32x32: > - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#8814]) > [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html > > * igt@kms_cursor_crc@cursor-random-512x512: > - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#3359]) +1 similar issue > [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@kms_cursor_crc@cursor-random-512x512.html > > * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: > - shard-mtlp: NOTRUN -> [SKIP][124] ([fdo#111767] / [i915#3546]) > [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html > > * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: > - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#3546]) +2 similar issues > [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html > > * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: > - shard-dg2: NOTRUN -> [SKIP][126] ([fdo#109274] / [i915#5354]) > [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > - shard-apl: [PASS][127] -> [FAIL][128] ([i915#2346]) > [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > - shard-glk: [PASS][129] -> [FAIL][130] ([i915#2346]) > [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > > * igt@kms_display_modes@extended-mode-basic: > - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#8827]) > [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@kms_display_modes@extended-mode-basic.html > > * igt@kms_flip@2x-flip-vs-dpms: > - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#3637]) +2 similar issues > [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@kms_flip@2x-flip-vs-dpms.html > > * igt@kms_flip@2x-modeset-vs-vblank-race: > - shard-dg2: NOTRUN -> [SKIP][133] ([fdo#109274]) +1 similar issue > [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@kms_flip@2x-modeset-vs-vblank-race.html > - shard-rkl: NOTRUN -> [SKIP][134] ([fdo#111825]) +1 similar issue > [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_flip@2x-modeset-vs-vblank-race.html > > * igt@kms_flip@flip-vs-expired-vblank@a-dp1: > - shard-apl: [PASS][135] -> [FAIL][136] ([i915#79]) > [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl7/igt@kms_flip@flip-vs-expired-vblank@a-dp1.html > [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl2/igt@kms_flip@flip-vs-expired-vblank@a-dp1.html > > * igt@kms_flip@flip-vs-fences: > - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#8381]) > [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@kms_flip@flip-vs-fences.html > > * igt@kms_flip@flip-vs-suspend@a-dp1: > - shard-apl: [PASS][138] -> [ABORT][139] ([i915#180]) +1 similar issue > [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl4/igt@kms_flip@flip-vs-suspend@a-dp1.html > [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl1/igt@kms_flip@flip-vs-suspend@a-dp1.html > > * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode: > - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#2672]) +1 similar issue > [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html > > * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: > - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#8810]) > [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html > > * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode: > - shard-rkl: NOTRUN -> [SKIP][142] ([i915#2672]) > [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite: > - shard-dg2: [PASS][143] -> [FAIL][144] ([i915#6880]) +1 similar issue > [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html > [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html > > * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: > - shard-rkl: NOTRUN -> [SKIP][145] ([fdo#111825] / [i915#1825]) +6 similar issues > [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html > > * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt: > - shard-dg2: NOTRUN -> [SKIP][146] ([i915#8708]) +5 similar issues > [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html > > * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: > - shard-tglu: NOTRUN -> [SKIP][147] ([fdo#110189]) +5 similar issues > [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html > > * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: > - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#8708]) > [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html > > * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: > - shard-tglu: NOTRUN -> [SKIP][149] ([fdo#109280]) +2 similar issues > [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html > > * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: > - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#1825]) +16 similar issues > [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html > > * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: > - shard-snb: NOTRUN -> [SKIP][151] ([fdo#109271]) +70 similar issues > [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-snb2/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html > > * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: > - shard-rkl: NOTRUN -> [SKIP][152] ([i915#3023]) +5 similar issues > [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html > > * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move: > - shard-dg2: NOTRUN -> [SKIP][153] ([i915#3458]) +3 similar issues > [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html > > * igt@kms_hdr@static-toggle-suspend: > - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#8228]) > [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_hdr@static-toggle-suspend.html > > * igt@kms_plane_lowres@tiling-x@pipe-c-edp-1: > - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#3582]) +3 similar issues > [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html > > * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-2: > - shard-dg2: NOTRUN -> [FAIL][156] ([i915#8292]) > [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-2.html > > * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1: > - shard-dg2: NOTRUN -> [SKIP][157] ([i915#5176]) +7 similar issues > [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1.html > > * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-c-edp-1: > - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#5176]) +3 similar issues > [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-c-edp-1.html > > * igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-2: > - shard-rkl: NOTRUN -> [SKIP][159] ([i915#5176]) +5 similar issues > [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-2.html > > * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1: > - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#5235]) +3 similar issues > [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html > > * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1: > - shard-rkl: NOTRUN -> [SKIP][161] ([i915#5235]) +1 similar issue > [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html > > * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: > - shard-dg2: NOTRUN -> [SKIP][162] ([i915#5235]) +11 similar issues > [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html > > * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: > - shard-rkl: NOTRUN -> [SKIP][163] ([fdo#111068] / [i915#658]) > [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-6/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html > > * igt@kms_psr@psr2_sprite_mmap_gtt: > - shard-dg2: NOTRUN -> [SKIP][164] ([i915#1072]) +1 similar issue > [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-7/igt@kms_psr@psr2_sprite_mmap_gtt.html > - shard-rkl: NOTRUN -> [SKIP][165] ([i915#1072]) +1 similar issue > [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-2/igt@kms_psr@psr2_sprite_mmap_gtt.html > > * igt@kms_rotation_crc@bad-pixel-format: > - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#4235]) +1 similar issue > [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@kms_rotation_crc@bad-pixel-format.html > > * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: > - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#5289]) > [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html > > * igt@kms_sysfs_edid_timing: > - shard-dg2: [PASS][168] -> [FAIL][169] ([IGT#2]) > [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-12/igt@kms_sysfs_edid_timing.html > [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-10/igt@kms_sysfs_edid_timing.html > > * igt@kms_tv_load_detect@load-detect: > - shard-tglu: NOTRUN -> [SKIP][170] ([fdo#109309]) > [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-2/igt@kms_tv_load_detect@load-detect.html > > * igt@kms_vblank@pipe-d-accuracy-idle: > - shard-rkl: NOTRUN -> [SKIP][171] ([i915#4070] / [i915#533] / [i915#6768]) > [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@kms_vblank@pipe-d-accuracy-idle.html > > * igt@kms_writeback@writeback-fb-id: > - shard-dg2: NOTRUN -> [SKIP][172] ([i915#2437]) > [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@kms_writeback@writeback-fb-id.html > - shard-rkl: NOTRUN -> [SKIP][173] ([i915#2437]) > [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_writeback@writeback-fb-id.html > - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#2437]) > [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@kms_writeback@writeback-fb-id.html > > * igt@kms_writeback@writeback-invalid-parameters: > - shard-tglu: NOTRUN -> [SKIP][175] ([i915#2437]) > [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-4/igt@kms_writeback@writeback-invalid-parameters.html > - shard-glk: NOTRUN -> [SKIP][176] ([fdo#109271] / [i915#2437]) > [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk1/igt@kms_writeback@writeback-invalid-parameters.html > > * igt@perf@global-sseu-config-invalid: > - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#7387]) > [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@perf@global-sseu-config-invalid.html > > * igt@prime_self_import@reimport-vs-gem_close-race: > - shard-mtlp: [PASS][178] -> [FAIL][179] ([i915#7951]) > [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-3/igt@prime_self_import@reimport-vs-gem_close-race.html > [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-8/igt@prime_self_import@reimport-vs-gem_close-race.html > > * igt@prime_vgem@basic-fence-mmap: > - shard-dg2: NOTRUN -> [SKIP][180] ([i915#3708] / [i915#4077]) > [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@prime_vgem@basic-fence-mmap.html > > * igt@prime_vgem@fence-read-hang: > - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3708]) > [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@prime_vgem@fence-read-hang.html > > * igt@sysfs_timeslice_duration@timeout@vecs0: > - shard-mtlp: [PASS][182] -> [ABORT][183] ([i915#8521]) > [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@sysfs_timeslice_duration@timeout@vecs0.html > [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@sysfs_timeslice_duration@timeout@vecs0.html > > * igt@v3d/v3d_get_param@base-params: > - shard-dg2: NOTRUN -> [SKIP][184] ([i915#2575]) +3 similar issues > [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@v3d/v3d_get_param@base-params.html > - shard-rkl: NOTRUN -> [SKIP][185] ([fdo#109315]) +1 similar issue > [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@v3d/v3d_get_param@base-params.html > > * igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync: > - shard-tglu: NOTRUN -> [SKIP][186] ([fdo#109315] / [i915#2575]) > [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-9/igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync.html > > * igt@v3d/v3d_submit_cl@single-out-sync: > - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#2575]) +7 similar issues > [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@v3d/v3d_submit_cl@single-out-sync.html > > * igt@vc4/vc4_tiling@get-after-free: > - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#7711]) +3 similar issues > [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@vc4/vc4_tiling@get-after-free.html > > * igt@vc4/vc4_tiling@get-bad-modifier: > - shard-dg2: NOTRUN -> [SKIP][189] ([i915#7711]) +1 similar issue > [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@vc4/vc4_tiling@get-bad-modifier.html > > > #### Possible fixes #### > > * igt@gem_ctx_persistence@engines-hang@vcs0: > - shard-mtlp: [FAIL][190] ([i915#2410]) -> [PASS][191] > [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@gem_ctx_persistence@engines-hang@vcs0.html > [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@gem_ctx_persistence@engines-hang@vcs0.html > > * igt@gem_eio@reset-stress: > - shard-dg2: [FAIL][192] ([i915#5784]) -> [PASS][193] > [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-7/igt@gem_eio@reset-stress.html > [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@gem_eio@reset-stress.html > > * igt@gem_exec_balancer@full-pulse: > - shard-dg2: [FAIL][194] ([i915#6032]) -> [PASS][195] > [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-9/igt@gem_exec_balancer@full-pulse.html > [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@gem_exec_balancer@full-pulse.html > > * igt@gem_exec_fair@basic-deadline: > - shard-glk: [FAIL][196] ([i915#2846]) -> [PASS][197] > [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-glk9/igt@gem_exec_fair@basic-deadline.html > [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk9/igt@gem_exec_fair@basic-deadline.html > > * igt@gem_exec_fair@basic-pace-share@rcs0: > - shard-tglu: [FAIL][198] ([i915#2842]) -> [PASS][199] > [198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html > [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html > > * igt@gem_exec_fair@basic-throttle@rcs0: > - shard-rkl: [FAIL][200] ([i915#2842]) -> [PASS][201] +1 similar issue > [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-4/igt@gem_exec_fair@basic-throttle@rcs0.html > [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-3/igt@gem_exec_fair@basic-throttle@rcs0.html > > * igt@gem_exec_schedule@preemptive-hang@vcs0: > - shard-mtlp: [FAIL][202] ([i915#7327]) -> [PASS][203] > [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-5/igt@gem_exec_schedule@preemptive-hang@vcs0.html > [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@gem_exec_schedule@preemptive-hang@vcs0.html > > * igt@gem_exec_whisper@basic-forked: > - shard-mtlp: [FAIL][204] ([i915#6363]) -> [PASS][205] > [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-3/igt@gem_exec_whisper@basic-forked.html > [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@gem_exec_whisper@basic-forked.html > > * igt@gem_lmem_swapping@smem-oom@lmem0: > - {shard-dg1}: [TIMEOUT][206] ([i915#5493]) -> [PASS][207] > [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html > [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html > > * igt@gen9_exec_parse@allowed-single: > - shard-glk: [ABORT][208] ([i915#5566]) -> [PASS][209] > [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-glk8/igt@gen9_exec_parse@allowed-single.html > [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk8/igt@gen9_exec_parse@allowed-single.html > > * igt@i915_pm_dc@dc9-dpms: > - shard-apl: [SKIP][210] ([fdo#109271]) -> [PASS][211] > [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl2/igt@i915_pm_dc@dc9-dpms.html > [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl4/igt@i915_pm_dc@dc9-dpms.html > > * igt@i915_pm_rpm@dpms-lpsp: > - shard-rkl: [SKIP][212] ([i915#1397]) -> [PASS][213] > [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-3/igt@i915_pm_rpm@dpms-lpsp.html > [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html > > * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: > - shard-dg2: [SKIP][214] ([i915#1397]) -> [PASS][215] +3 similar issues > [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-10/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html > [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-3/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html > > * igt@i915_selftest@live@sanitycheck: > - shard-snb: [ABORT][216] ([i915#4528]) -> [PASS][217] > [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-snb2/igt@i915_selftest@live@sanitycheck.html > [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-snb2/igt@i915_selftest@live@sanitycheck.html > > * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1: > - shard-mtlp: [FAIL][218] ([i915#2521]) -> [PASS][219] > [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html > [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html > > * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: > - shard-glk: [FAIL][220] ([i915#72]) -> [PASS][221] > [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-glk4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html > [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: > - shard-apl: [FAIL][222] ([i915#2346]) -> [PASS][223] > [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html > [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html > > * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2: > - shard-glk: [FAIL][224] ([i915#2122]) -> [PASS][225] > [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html > [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: > - shard-dg2: [FAIL][226] ([i915#6880]) -> [PASS][227] > [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html > [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html > > * igt@kms_psr@psr2_primary_render: > - shard-mtlp: [FAIL][228] ([i915#8726]) -> [PASS][229] > [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-7/igt@kms_psr@psr2_primary_render.html > [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_psr@psr2_primary_render.html > > * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend: > - shard-dg2: [FAIL][230] ([fdo#103375] / [i915#6121]) -> [PASS][231] > [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-5/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html > [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html > > * igt@perf@non-zero-reason@0-rcs0: > - shard-dg2: [FAIL][232] ([i915#7757]) -> [PASS][233] > [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-7/igt@perf@non-zero-reason@0-rcs0.html > [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html > > * igt@perf_pmu@semaphore-busy@ccs0: > - shard-mtlp: [FAIL][234] ([i915#4349]) -> [PASS][235] > [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-7/igt@perf_pmu@semaphore-busy@ccs0.html > [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@perf_pmu@semaphore-busy@ccs0.html > > * igt@sysfs_heartbeat_interval@mixed@ccs0: > - shard-mtlp: [ABORT][236] ([i915#8552]) -> [PASS][237] > [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-6/igt@sysfs_heartbeat_interval@mixed@ccs0.html > [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@sysfs_heartbeat_interval@mixed@ccs0.html > > * igt@sysfs_heartbeat_interval@mixed@vecs0: > - shard-mtlp: [FAIL][238] ([i915#1731]) -> [PASS][239] > [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-6/igt@sysfs_heartbeat_interval@mixed@vecs0.html > [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@sysfs_heartbeat_interval@mixed@vecs0.html > > * igt@sysfs_heartbeat_interval@nopreempt@vcs0: > - shard-mtlp: [FAIL][240] ([i915#6015]) -> [PASS][241] +5 similar issues > [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-2/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html > [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html > > * igt@sysfs_heartbeat_interval@precise@vecs0: > - shard-mtlp: [FAIL][242] ([i915#8332]) -> [PASS][243] > [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-1/igt@sysfs_heartbeat_interval@precise@vecs0.html > [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@sysfs_heartbeat_interval@precise@vecs0.html > > > #### Warnings #### > > * igt@gem_exec_whisper@basic-contexts-priority-all: > - shard-mtlp: [FAIL][244] ([i915#6363]) -> [TIMEOUT][245] ([i915#7392]) > [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-1/igt@gem_exec_whisper@basic-contexts-priority-all.html > [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@gem_exec_whisper@basic-contexts-priority-all.html > > * igt@i915_pm_rc6_residency@media-rc6-accuracy: > - shard-mtlp: [SKIP][246] ([fdo#109289]) -> [SKIP][247] ([fdo#109289] / [i915#8403]) > [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html > [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@i915_pm_rc6_residency@media-rc6-accuracy.html > > * igt@kms_content_protection@mei_interface: > - shard-dg2: [SKIP][248] ([i915#7118] / [i915#7162]) -> [SKIP][249] ([i915#7118]) > [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-12/igt@kms_content_protection@mei_interface.html > [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@kms_content_protection@mei_interface.html > > * igt@kms_content_protection@type1: > - shard-dg2: [SKIP][250] ([i915#7118]) -> [SKIP][251] ([i915#7118] / [i915#7162]) > [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-8/igt@kms_content_protection@type1.html > [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@kms_content_protection@type1.html > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > - shard-mtlp: [DMESG-FAIL][252] ([i915#1982] / [i915#2017] / [i915#5954]) -> [DMESG-FAIL][253] ([i915#2017] / [i915#5954]) > [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > > * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: > - shard-rkl: [SKIP][254] ([i915#4816]) -> [SKIP][255] ([i915#4070] / [i915#4816]) > [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html > [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html > > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 > [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 > [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 > [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 > [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 > [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 > [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 > [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 > [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 > [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 > [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 > [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 > [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 > [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 > [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 > [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 > [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 > [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 > [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 > [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 > [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 > [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 > [i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731 > [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 > [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 > [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 > [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 > [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 > [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 > [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 > [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 > [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 > [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 > [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 > [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 > [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 > [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 > [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 > [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 > [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 > [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 > [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 > [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 > [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 > [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 > [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 > [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 > [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 > [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 > [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 > [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 > [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 > [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 > [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 > [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 > [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 > [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 > [i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 > [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 > [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 > [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 > [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 > [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 > [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 > [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 > [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 > [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 > [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 > [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 > [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 > [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 > [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 > [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 > [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 > [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 > [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 > [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 > [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 > [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 > [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 > [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 > [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 > [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 > [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 > [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 > [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 > [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 > [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 > [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 > [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 > [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 > [i915#5892]: https://gitlab.freedesktop.org/drm/intel/issues/5892 > [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 > [i915#6015]: https://gitlab.freedesktop.org/drm/intel/issues/6015 > [i915#6032]: https://gitlab.freedesktop.org/drm/intel/issues/6032 > [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 > [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 > [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 > [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 > [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 > [i915#6363]: https://gitlab.freedesktop.org/drm/intel/issues/6363 > [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 > [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 > [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 > [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 > [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 > [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 > [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 > [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 > [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 > [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 > [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 > [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 > [i915#7327]: https://gitlab.freedesktop.org/drm/intel/issues/7327 > [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 > [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 > [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 > [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582 > [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 > [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 > [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 > [i915#7757]: https://gitlab.freedesktop.org/drm/intel/issues/7757 > [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 > [i915#7892]: https://gitlab.freedesktop.org/drm/intel/issues/7892 > [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 > [i915#7951]: https://gitlab.freedesktop.org/drm/intel/issues/7951 > [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 > [i915#8104]: https://gitlab.freedesktop.org/drm/intel/issues/8104 > [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 > [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 > [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 > [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 > [i915#8332]: https://gitlab.freedesktop.org/drm/intel/issues/8332 > [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 > [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 > [i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403 > [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 > [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 > [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 > [i915#8431]: https://gitlab.freedesktop.org/drm/intel/issues/8431 > [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 > [i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521 > [i915#8552]: https://gitlab.freedesktop.org/drm/intel/issues/8552 > [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 > [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 > [i915#8726]: https://gitlab.freedesktop.org/drm/intel/issues/8726 > [i915#8758]: https://gitlab.freedesktop.org/drm/intel/issues/8758 > [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 > [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 > [i915#8827]: https://gitlab.freedesktop.org/drm/intel/issues/8827 > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_7377 -> IGTPW_9372 > * Piglit: piglit_4509 -> None > > CI-20190529: 20190529 > CI_DRM_13360: 033ea4a472c5dc3646d343799a2971b4817acfb5 @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_9372: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/index.html > IGT_7377: d1574543ba4bb322597345530053475c07be0eb9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/index.html ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Handle GT and tile seperation in IGT (rev8) 2023-07-10 13:36 ` Kamil Konieczny @ 2023-07-11 7:40 ` Yedireswarapu, SaiX Nandan 0 siblings, 0 replies; 16+ messages in thread From: Yedireswarapu, SaiX Nandan @ 2023-07-11 7:40 UTC (permalink / raw) To: Kamil Konieczny, igt-dev@lists.freedesktop.org Cc: Marikkar, SanjuX, Veesam, RavitejaX Hi, Issue re-reported, https://patchwork.freedesktop.org/series/119801/ Thanks, Y Sai Nandan -----Original Message----- From: Kamil Konieczny <kamil.konieczny@linux.intel.com> Sent: Monday, July 10, 2023 7:07 PM To: igt-dev@lists.freedesktop.org Cc: Yedireswarapu, SaiX Nandan <saix.nandan.yedireswarapu@intel.com>; Veesam, RavitejaX <ravitejax.veesam@intel.com>; Marikkar, SanjuX <sanjux.marikkar@intel.com>; Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com> Subject: Re: [igt-dev] ✗ Fi.CI.IGT: failure for Handle GT and tile seperation in IGT (rev8) Hi Sai, On 2023-07-10 at 06:52:11 -0000, Patchwork wrote: > == Series Details == > > Series: Handle GT and tile seperation in IGT (rev8) > URL : https://patchwork.freedesktop.org/series/119801/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_13360_full -> IGTPW_9372_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_9372_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_9372_full, please notify your bug team to allow them > to document this new failure mode, which will reduce false positives in CI. > > External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/index.html > > Participating hosts (9 -> 10) > ------------------------------ > > Additional (1): shard-rkl0 > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_9372_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2: > - shard-dg2: NOTRUN -> [SKIP][1] +3 similar issues > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2.html > > * igt@prime_self_import@reimport-vs-gem_close-race: > - shard-snb: [PASS][2] -> [FAIL][3] > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-snb4/igt@prime_self_import@reimport-vs-gem_close-race.html > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-snb2/igt@prime_self_import@reimport-vs-gem_close-race.html > These fails are for i915 driver, unrelated to change in xe_sysfs* functions in lib/igt_sysfs and a new xe_sysfs_tile test. No need for respin. Regards, Kamil > > #### Suppressed #### > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > * igt@gem_lmem_swapping@heavy-random: > - {shard-dg1}: NOTRUN -> [FAIL][4] > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg1-14/igt@gem_lmem_swapping@heavy-random.html > > > Known issues > ------------ > > Here are the changes found in IGTPW_9372_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@drm_fdinfo@busy-idle-check-all@ccs0: > - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8414]) +6 similar issues > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@drm_fdinfo@busy-idle-check-all@ccs0.html > > * igt@drm_fdinfo@busy@ccs0: > - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8414]) +9 similar issues > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@drm_fdinfo@busy@ccs0.html > > * igt@drm_fdinfo@most-busy-check-all@rcs0: > - shard-rkl: [PASS][7] -> [FAIL][8] ([i915#7742]) +1 similar issue > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-3/igt@drm_fdinfo@most-busy-check-all@rcs0.html > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-6/igt@drm_fdinfo@most-busy-check-all@rcs0.html > > * igt@feature_discovery@psr2: > - shard-dg2: NOTRUN -> [SKIP][9] ([i915#658]) +1 similar issue > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@feature_discovery@psr2.html > - shard-rkl: NOTRUN -> [SKIP][10] ([i915#658]) > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-6/igt@feature_discovery@psr2.html > > * igt@gem_bad_reloc@negative-reloc-bltcopy: > - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#3281]) +2 similar issues > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@gem_bad_reloc@negative-reloc-bltcopy.html > > * igt@gem_ccs@block-copy-compressed: > - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#5325]) > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@gem_ccs@block-copy-compressed.html > > * igt@gem_create@hog-create@smem0: > - shard-dg2: [PASS][13] -> [FAIL][14] ([i915#5892] / [i915#8758]) > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-7/igt@gem_create@hog-create@smem0.html > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@gem_create@hog-create@smem0.html > > * igt@gem_ctx_exec@basic-nohangcheck: > - shard-rkl: [PASS][15] -> [FAIL][16] ([i915#6268]) > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-3/igt@gem_ctx_exec@basic-nohangcheck.html > > * igt@gem_ctx_isolation@preservation-s3@bcs0: > - shard-dg2: NOTRUN -> [FAIL][17] ([fdo#103375] / [i915#6121]) +4 similar issues > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@gem_ctx_isolation@preservation-s3@bcs0.html > > * igt@gem_ctx_param@set-priority-not-supported: > - shard-mtlp: NOTRUN -> [SKIP][18] ([fdo#109314]) > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@gem_ctx_param@set-priority-not-supported.html > > * igt@gem_ctx_persistence@heartbeat-close: > - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#8555]) > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@gem_ctx_persistence@heartbeat-close.html > > * igt@gem_ctx_persistence@heartbeat-hostile: > - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8555]) +1 similar issue > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-hostile.html > > * igt@gem_ctx_persistence@legacy-engines-hang@bsd1: > - shard-mtlp: [PASS][21] -> [FAIL][22] ([i915#2410]) > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-3/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html > > * igt@gem_ctx_sseu@invalid-sseu: > - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#280]) > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@gem_ctx_sseu@invalid-sseu.html > > * igt@gem_eio@kms: > - shard-dg2: [PASS][24] -> [INCOMPLETE][25] ([i915#7892]) > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-5/igt@gem_eio@kms.html > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@gem_eio@kms.html > > * igt@gem_exec_balancer@hang: > - shard-mtlp: [PASS][26] -> [ABORT][27] ([i915#8104]) > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@gem_exec_balancer@hang.html > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@gem_exec_balancer@hang.html > > * igt@gem_exec_balancer@parallel-bb-first: > - shard-rkl: NOTRUN -> [SKIP][28] ([i915#4525]) > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-6/igt@gem_exec_balancer@parallel-bb-first.html > > * igt@gem_exec_balancer@sliced: > - shard-dg2: NOTRUN -> [SKIP][29] ([i915#4812]) > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@gem_exec_balancer@sliced.html > > * igt@gem_exec_endless@dispatch@rcs0: > - shard-apl: [PASS][30] -> [TIMEOUT][31] ([i915#3778]) > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl1/igt@gem_exec_endless@dispatch@rcs0.html > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl6/igt@gem_exec_endless@dispatch@rcs0.html > > * igt@gem_exec_fair@basic-none-rrul: > - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852]) > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@gem_exec_fair@basic-none-rrul.html > > * igt@gem_exec_fair@basic-pace@vecs0: > - shard-rkl: [PASS][33] -> [FAIL][34] ([i915#2842]) +1 similar issue > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-6/igt@gem_exec_fair@basic-pace@vecs0.html > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-3/igt@gem_exec_fair@basic-pace@vecs0.html > > * igt@gem_exec_fence@submit: > - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4812]) +1 similar issue > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@gem_exec_fence@submit.html > > * igt@gem_exec_gttfill@multigpu-basic: > - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#7697]) > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-8/igt@gem_exec_gttfill@multigpu-basic.html > > * igt@gem_exec_params@secure-non-root: > - shard-dg2: NOTRUN -> [SKIP][37] ([fdo#112283]) > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@gem_exec_params@secure-non-root.html > - shard-rkl: NOTRUN -> [SKIP][38] ([fdo#112283]) > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@gem_exec_params@secure-non-root.html > > * igt@gem_exec_reloc@basic-cpu-wc-active: > - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@gem_exec_reloc@basic-cpu-wc-active.html > - shard-rkl: NOTRUN -> [SKIP][40] ([i915#3281]) > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@gem_exec_reloc@basic-cpu-wc-active.html > > * igt@gem_exec_suspend@basic-s4-devices@smem: > - shard-tglu: [PASS][41] -> [ABORT][42] ([i915#7975] / [i915#8213]) > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-tglu-2/igt@gem_exec_suspend@basic-s4-devices@smem.html > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html > > * igt@gem_exec_whisper@basic-normal: > - shard-mtlp: [PASS][43] -> [FAIL][44] ([i915#6363]) > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-7/igt@gem_exec_whisper@basic-normal.html > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@gem_exec_whisper@basic-normal.html > > * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: > - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4860]) > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html > > * igt@gem_lmem_evict@dontneed-evict-race: > - shard-rkl: NOTRUN -> [SKIP][46] ([i915#4613] / [i915#7582]) > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@gem_lmem_evict@dontneed-evict-race.html > > * igt@gem_lmem_swapping@verify-random: > - shard-rkl: NOTRUN -> [SKIP][47] ([i915#4613]) > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@gem_lmem_swapping@verify-random.html > - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4613]) > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@gem_lmem_swapping@verify-random.html > > * igt@gem_mmap@short-mmap: > - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4083]) +1 similar issue > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@gem_mmap@short-mmap.html > > * igt@gem_mmap_gtt@basic-read-write-distinct: > - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4077]) +1 similar issue > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-7/igt@gem_mmap_gtt@basic-read-write-distinct.html > > * igt@gem_mmap_gtt@basic-short: > - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4077]) +8 similar issues > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@gem_mmap_gtt@basic-short.html > > * igt@gem_partial_pwrite_pread@writes-after-reads: > - shard-rkl: NOTRUN -> [SKIP][52] ([i915#3282]) +3 similar issues > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads.html > > * igt@gem_pwrite@basic-random: > - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3282]) +5 similar issues > [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-3/igt@gem_pwrite@basic-random.html > - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#3282]) +3 similar issues > [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@gem_pwrite@basic-random.html > > * igt@gem_pxp@regular-baseline-src-copy-readible: > - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4270]) > [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@gem_pxp@regular-baseline-src-copy-readible.html > > * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: > - shard-tglu: NOTRUN -> [SKIP][56] ([i915#4270]) > [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-5/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html > > * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled: > - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#8428]) > [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html > > * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled: > - shard-dg2: NOTRUN -> [SKIP][58] ([i915#5190]) > [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html > > * igt@gem_set_tiling_vs_blt@tiled-to-untiled: > - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4079]) > [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html > - shard-rkl: NOTRUN -> [SKIP][60] ([i915#8411]) > [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html > > * igt@gem_set_tiling_vs_blt@untiled-to-tiled: > - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4079]) > [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html > > * igt@gem_userptr_blits@access-control: > - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3297]) +1 similar issue > [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@gem_userptr_blits@access-control.html > > * igt@gem_workarounds@suspend-resume-fd: > - shard-dg2: [PASS][63] -> [FAIL][64] ([fdo#103375] / [i915#6121]) +1 similar issue > [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-10/igt@gem_workarounds@suspend-resume-fd.html > [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@gem_workarounds@suspend-resume-fd.html > > * igt@gen3_mixed_blits: > - shard-dg2: NOTRUN -> [SKIP][65] ([fdo#109289]) > [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-3/igt@gen3_mixed_blits.html > - shard-rkl: NOTRUN -> [SKIP][66] ([fdo#109289]) > [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@gen3_mixed_blits.html > > * igt@gen7_exec_parse@cmd-crossing-page: > - shard-mtlp: NOTRUN -> [SKIP][67] ([fdo#109289]) +1 similar issue > [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@gen7_exec_parse@cmd-crossing-page.html > > * igt@gen9_exec_parse@allowed-single: > - shard-tglu: NOTRUN -> [SKIP][68] ([i915#2527] / [i915#2856]) +1 similar issue > [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-9/igt@gen9_exec_parse@allowed-single.html > > * igt@i915_hangman@engine-engine-error@vcs0: > - shard-mtlp: [PASS][69] -> [FAIL][70] ([i915#7069]) > [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-4/igt@i915_hangman@engine-engine-error@vcs0.html > [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@i915_hangman@engine-engine-error@vcs0.html > > * igt@i915_module_load@load: > - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#6227]) > [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@i915_module_load@load.html > > * igt@i915_module_load@resize-bar: > - shard-rkl: NOTRUN -> [SKIP][72] ([i915#6412]) > [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-3/igt@i915_module_load@resize-bar.html > > * igt@i915_pm_backlight@fade-with-suspend: > - shard-dg2: NOTRUN -> [SKIP][73] ([i915#5354] / [i915#7561]) > [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@i915_pm_backlight@fade-with-suspend.html > > * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp: > - shard-dg2: NOTRUN -> [SKIP][74] ([i915#1937]) > [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html > > * igt@i915_pm_rpm@dpms-mode-unset-lpsp: > - shard-rkl: [PASS][75] -> [SKIP][76] ([i915#1397]) > [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html > [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-2/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html > > * igt@i915_pm_rpm@gem-mmap-type@gtt-smem0: > - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#8431]) > [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@i915_pm_rpm@gem-mmap-type@gtt-smem0.html > > * igt@i915_pm_rpm@modeset-lpsp: > - shard-dg2: [PASS][78] -> [SKIP][79] ([i915#1397]) > [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-12/igt@i915_pm_rpm@modeset-lpsp.html > [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-9/igt@i915_pm_rpm@modeset-lpsp.html > > * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: > - shard-glk: NOTRUN -> [SKIP][80] ([fdo#109271]) +11 similar issues > [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk2/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html > > * igt@i915_pm_rpm@modeset-pc8-residency-stress: > - shard-dg2: NOTRUN -> [SKIP][81] ([fdo#109506]) > [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@i915_pm_rpm@modeset-pc8-residency-stress.html > > * igt@i915_pm_rps@basic-api: > - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#6621]) > [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@i915_pm_rps@basic-api.html > > * igt@kms_async_flips@crc@pipe-a-hdmi-a-2: > - shard-rkl: NOTRUN -> [FAIL][83] ([i915#8247]) +1 similar issue > [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html > > * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: > - shard-dg2: NOTRUN -> [FAIL][84] ([i915#8247]) +3 similar issues > [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html > > * igt@kms_async_flips@invalid-async-flip: > - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#6228]) > [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@kms_async_flips@invalid-async-flip.html > > * igt@kms_atomic@plane-primary-overlay-mutable-zpos: > - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#404]) > [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html > > * igt@kms_big_fb@4-tiled-32bpp-rotate-90: > - shard-mtlp: NOTRUN -> [SKIP][87] ([fdo#111614]) > [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html > > * igt@kms_big_fb@4-tiled-64bpp-rotate-180: > - shard-mtlp: [PASS][88] -> [FAIL][89] ([i915#5138]) > [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html > [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html > > * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: > - shard-rkl: NOTRUN -> [SKIP][90] ([i915#5286]) > [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html > > * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: > - shard-mtlp: [PASS][91] -> [DMESG-WARN][92] ([i915#1982]) > [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html > [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html > > * igt@kms_big_fb@x-tiled-16bpp-rotate-90: > - shard-dg2: NOTRUN -> [SKIP][93] ([fdo#111614]) +2 similar issues > [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html > > * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: > - shard-snb: [PASS][94] -> [SKIP][95] ([fdo#109271]) > [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-snb5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html > [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-snb7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html > > * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: > - shard-mtlp: [PASS][96] -> [FAIL][97] ([i915#3743]) > [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html > [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html > > * igt@kms_big_fb@y-tiled-64bpp-rotate-270: > - shard-rkl: NOTRUN -> [SKIP][98] ([fdo#111614] / [i915#3638]) +1 similar issue > [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html > > * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: > - shard-mtlp: NOTRUN -> [SKIP][99] ([fdo#111615]) +7 similar issues > [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html > > * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: > - shard-dg2: NOTRUN -> [SKIP][100] ([i915#4538] / [i915#5190]) +2 similar issues > [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html > - shard-rkl: NOTRUN -> [SKIP][101] ([fdo#110723]) +1 similar issue > [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html > > * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: > - shard-tglu: NOTRUN -> [SKIP][102] ([fdo#111615]) > [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html > > * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_ccs: > - shard-rkl: NOTRUN -> [SKIP][103] ([i915#3734] / [i915#5354] / [i915#6095]) +1 similar issue > [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-2/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_ccs.html > > * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc: > - shard-dg2: NOTRUN -> [SKIP][104] ([i915#5354]) +20 similar issues > [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc.html > > * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs: > - shard-glk: NOTRUN -> [SKIP][105] ([fdo#109271] / [i915#3886]) > [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk4/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs.html > > * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs: > - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#6095]) +17 similar issues > [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs.html > > * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc: > - shard-dg2: NOTRUN -> [SKIP][107] ([i915#3689] / [i915#3886] / [i915#5354]) > [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html > > * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: > - shard-rkl: NOTRUN -> [SKIP][108] ([i915#5354] / [i915#6095]) +4 similar issues > [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html > > * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs: > - shard-tglu: NOTRUN -> [SKIP][109] ([i915#5354] / [i915#6095]) > [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-10/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs.html > > * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: > - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#3886] / [i915#6095]) +3 similar issues > [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html > > * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: > - shard-dg2: NOTRUN -> [SKIP][111] ([i915#3689] / [i915#5354]) +4 similar issues > [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html > - shard-rkl: NOTRUN -> [SKIP][112] ([i915#5354]) +5 similar issues > [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html > > * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: > - shard-dg2: NOTRUN -> [SKIP][113] ([i915#4087] / [i915#7213]) +3 similar issues > [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html > > * igt@kms_chamelium_audio@hdmi-audio-edid: > - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#7828]) +2 similar issues > [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-8/igt@kms_chamelium_audio@hdmi-audio-edid.html > > * igt@kms_chamelium_color@ctm-max: > - shard-mtlp: NOTRUN -> [SKIP][115] ([fdo#111827]) > [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@kms_chamelium_color@ctm-max.html > > * igt@kms_chamelium_frames@dp-frame-dump: > - shard-dg2: NOTRUN -> [SKIP][116] ([i915#7828]) > [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-9/igt@kms_chamelium_frames@dp-frame-dump.html > > * igt@kms_color@deep-color: > - shard-dg2: NOTRUN -> [SKIP][117] ([i915#3555]) +2 similar issues > [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@kms_color@deep-color.html > > * igt@kms_content_protection@atomic@pipe-a-dp-4: > - shard-dg2: NOTRUN -> [TIMEOUT][118] ([i915#7173]) > [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-4.html > > * igt@kms_content_protection@dp-mst-lic-type-0: > - shard-dg2: NOTRUN -> [SKIP][119] ([i915#3299]) > [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@kms_content_protection@dp-mst-lic-type-0.html > > * igt@kms_content_protection@uevent: > - shard-dg2: NOTRUN -> [SKIP][120] ([i915#7118]) > [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@kms_content_protection@uevent.html > > * igt@kms_cursor_crc@cursor-onscreen-32x10: > - shard-rkl: NOTRUN -> [SKIP][121] ([i915#3555]) > [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-32x10.html > > * igt@kms_cursor_crc@cursor-onscreen-32x32: > - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#8814]) > [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html > > * igt@kms_cursor_crc@cursor-random-512x512: > - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#3359]) +1 similar issue > [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@kms_cursor_crc@cursor-random-512x512.html > > * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: > - shard-mtlp: NOTRUN -> [SKIP][124] ([fdo#111767] / [i915#3546]) > [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html > > * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: > - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#3546]) +2 similar issues > [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html > > * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: > - shard-dg2: NOTRUN -> [SKIP][126] ([fdo#109274] / [i915#5354]) > [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > - shard-apl: [PASS][127] -> [FAIL][128] ([i915#2346]) > [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > - shard-glk: [PASS][129] -> [FAIL][130] ([i915#2346]) > [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > > * igt@kms_display_modes@extended-mode-basic: > - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#8827]) > [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@kms_display_modes@extended-mode-basic.html > > * igt@kms_flip@2x-flip-vs-dpms: > - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#3637]) +2 similar issues > [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@kms_flip@2x-flip-vs-dpms.html > > * igt@kms_flip@2x-modeset-vs-vblank-race: > - shard-dg2: NOTRUN -> [SKIP][133] ([fdo#109274]) +1 similar issue > [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@kms_flip@2x-modeset-vs-vblank-race.html > - shard-rkl: NOTRUN -> [SKIP][134] ([fdo#111825]) +1 similar issue > [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_flip@2x-modeset-vs-vblank-race.html > > * igt@kms_flip@flip-vs-expired-vblank@a-dp1: > - shard-apl: [PASS][135] -> [FAIL][136] ([i915#79]) > [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl7/igt@kms_flip@flip-vs-expired-vblank@a-dp1.html > [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl2/igt@kms_flip@flip-vs-expired-vblank@a-dp1.html > > * igt@kms_flip@flip-vs-fences: > - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#8381]) > [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@kms_flip@flip-vs-fences.html > > * igt@kms_flip@flip-vs-suspend@a-dp1: > - shard-apl: [PASS][138] -> [ABORT][139] ([i915#180]) +1 similar issue > [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl4/igt@kms_flip@flip-vs-suspend@a-dp1.html > [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl1/igt@kms_flip@flip-vs-suspend@a-dp1.html > > * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode: > - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#2672]) +1 similar issue > [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html > > * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: > - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#8810]) > [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html > > * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode: > - shard-rkl: NOTRUN -> [SKIP][142] ([i915#2672]) > [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite: > - shard-dg2: [PASS][143] -> [FAIL][144] ([i915#6880]) +1 similar issue > [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html > [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html > > * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: > - shard-rkl: NOTRUN -> [SKIP][145] ([fdo#111825] / [i915#1825]) +6 similar issues > [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html > > * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt: > - shard-dg2: NOTRUN -> [SKIP][146] ([i915#8708]) +5 similar issues > [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html > > * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: > - shard-tglu: NOTRUN -> [SKIP][147] ([fdo#110189]) +5 similar issues > [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html > > * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: > - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#8708]) > [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html > > * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: > - shard-tglu: NOTRUN -> [SKIP][149] ([fdo#109280]) +2 similar issues > [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html > > * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: > - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#1825]) +16 similar issues > [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html > > * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: > - shard-snb: NOTRUN -> [SKIP][151] ([fdo#109271]) +70 similar issues > [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-snb2/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html > > * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: > - shard-rkl: NOTRUN -> [SKIP][152] ([i915#3023]) +5 similar issues > [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html > > * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move: > - shard-dg2: NOTRUN -> [SKIP][153] ([i915#3458]) +3 similar issues > [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html > > * igt@kms_hdr@static-toggle-suspend: > - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#8228]) > [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_hdr@static-toggle-suspend.html > > * igt@kms_plane_lowres@tiling-x@pipe-c-edp-1: > - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#3582]) +3 similar issues > [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html > > * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-2: > - shard-dg2: NOTRUN -> [FAIL][156] ([i915#8292]) > [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-2.html > > * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1: > - shard-dg2: NOTRUN -> [SKIP][157] ([i915#5176]) +7 similar issues > [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1.html > > * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-c-edp-1: > - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#5176]) +3 similar issues > [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-c-edp-1.html > > * igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-2: > - shard-rkl: NOTRUN -> [SKIP][159] ([i915#5176]) +5 similar issues > [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-2.html > > * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1: > - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#5235]) +3 similar issues > [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html > > * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1: > - shard-rkl: NOTRUN -> [SKIP][161] ([i915#5235]) +1 similar issue > [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html > > * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: > - shard-dg2: NOTRUN -> [SKIP][162] ([i915#5235]) +11 similar issues > [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html > > * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: > - shard-rkl: NOTRUN -> [SKIP][163] ([fdo#111068] / [i915#658]) > [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-6/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html > > * igt@kms_psr@psr2_sprite_mmap_gtt: > - shard-dg2: NOTRUN -> [SKIP][164] ([i915#1072]) +1 similar issue > [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-7/igt@kms_psr@psr2_sprite_mmap_gtt.html > - shard-rkl: NOTRUN -> [SKIP][165] ([i915#1072]) +1 similar issue > [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-2/igt@kms_psr@psr2_sprite_mmap_gtt.html > > * igt@kms_rotation_crc@bad-pixel-format: > - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#4235]) +1 similar issue > [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@kms_rotation_crc@bad-pixel-format.html > > * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: > - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#5289]) > [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html > > * igt@kms_sysfs_edid_timing: > - shard-dg2: [PASS][168] -> [FAIL][169] ([IGT#2]) > [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-12/igt@kms_sysfs_edid_timing.html > [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-10/igt@kms_sysfs_edid_timing.html > > * igt@kms_tv_load_detect@load-detect: > - shard-tglu: NOTRUN -> [SKIP][170] ([fdo#109309]) > [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-2/igt@kms_tv_load_detect@load-detect.html > > * igt@kms_vblank@pipe-d-accuracy-idle: > - shard-rkl: NOTRUN -> [SKIP][171] ([i915#4070] / [i915#533] / [i915#6768]) > [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@kms_vblank@pipe-d-accuracy-idle.html > > * igt@kms_writeback@writeback-fb-id: > - shard-dg2: NOTRUN -> [SKIP][172] ([i915#2437]) > [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@kms_writeback@writeback-fb-id.html > - shard-rkl: NOTRUN -> [SKIP][173] ([i915#2437]) > [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_writeback@writeback-fb-id.html > - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#2437]) > [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@kms_writeback@writeback-fb-id.html > > * igt@kms_writeback@writeback-invalid-parameters: > - shard-tglu: NOTRUN -> [SKIP][175] ([i915#2437]) > [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-4/igt@kms_writeback@writeback-invalid-parameters.html > - shard-glk: NOTRUN -> [SKIP][176] ([fdo#109271] / [i915#2437]) > [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk1/igt@kms_writeback@writeback-invalid-parameters.html > > * igt@perf@global-sseu-config-invalid: > - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#7387]) > [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@perf@global-sseu-config-invalid.html > > * igt@prime_self_import@reimport-vs-gem_close-race: > - shard-mtlp: [PASS][178] -> [FAIL][179] ([i915#7951]) > [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-3/igt@prime_self_import@reimport-vs-gem_close-race.html > [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-8/igt@prime_self_import@reimport-vs-gem_close-race.html > > * igt@prime_vgem@basic-fence-mmap: > - shard-dg2: NOTRUN -> [SKIP][180] ([i915#3708] / [i915#4077]) > [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@prime_vgem@basic-fence-mmap.html > > * igt@prime_vgem@fence-read-hang: > - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3708]) > [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@prime_vgem@fence-read-hang.html > > * igt@sysfs_timeslice_duration@timeout@vecs0: > - shard-mtlp: [PASS][182] -> [ABORT][183] ([i915#8521]) > [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@sysfs_timeslice_duration@timeout@vecs0.html > [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@sysfs_timeslice_duration@timeout@vecs0.html > > * igt@v3d/v3d_get_param@base-params: > - shard-dg2: NOTRUN -> [SKIP][184] ([i915#2575]) +3 similar issues > [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@v3d/v3d_get_param@base-params.html > - shard-rkl: NOTRUN -> [SKIP][185] ([fdo#109315]) +1 similar issue > [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@v3d/v3d_get_param@base-params.html > > * igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync: > - shard-tglu: NOTRUN -> [SKIP][186] ([fdo#109315] / [i915#2575]) > [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-9/igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync.html > > * igt@v3d/v3d_submit_cl@single-out-sync: > - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#2575]) +7 similar issues > [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@v3d/v3d_submit_cl@single-out-sync.html > > * igt@vc4/vc4_tiling@get-after-free: > - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#7711]) +3 similar issues > [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@vc4/vc4_tiling@get-after-free.html > > * igt@vc4/vc4_tiling@get-bad-modifier: > - shard-dg2: NOTRUN -> [SKIP][189] ([i915#7711]) +1 similar issue > [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@vc4/vc4_tiling@get-bad-modifier.html > > > #### Possible fixes #### > > * igt@gem_ctx_persistence@engines-hang@vcs0: > - shard-mtlp: [FAIL][190] ([i915#2410]) -> [PASS][191] > [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@gem_ctx_persistence@engines-hang@vcs0.html > [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@gem_ctx_persistence@engines-hang@vcs0.html > > * igt@gem_eio@reset-stress: > - shard-dg2: [FAIL][192] ([i915#5784]) -> [PASS][193] > [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-7/igt@gem_eio@reset-stress.html > [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@gem_eio@reset-stress.html > > * igt@gem_exec_balancer@full-pulse: > - shard-dg2: [FAIL][194] ([i915#6032]) -> [PASS][195] > [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-9/igt@gem_exec_balancer@full-pulse.html > [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@gem_exec_balancer@full-pulse.html > > * igt@gem_exec_fair@basic-deadline: > - shard-glk: [FAIL][196] ([i915#2846]) -> [PASS][197] > [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-glk9/igt@gem_exec_fair@basic-deadline.html > [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk9/igt@gem_exec_fair@basic-deadline.html > > * igt@gem_exec_fair@basic-pace-share@rcs0: > - shard-tglu: [FAIL][198] ([i915#2842]) -> [PASS][199] > [198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html > [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html > > * igt@gem_exec_fair@basic-throttle@rcs0: > - shard-rkl: [FAIL][200] ([i915#2842]) -> [PASS][201] +1 similar issue > [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-4/igt@gem_exec_fair@basic-throttle@rcs0.html > [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-3/igt@gem_exec_fair@basic-throttle@rcs0.html > > * igt@gem_exec_schedule@preemptive-hang@vcs0: > - shard-mtlp: [FAIL][202] ([i915#7327]) -> [PASS][203] > [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-5/igt@gem_exec_schedule@preemptive-hang@vcs0.html > [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@gem_exec_schedule@preemptive-hang@vcs0.html > > * igt@gem_exec_whisper@basic-forked: > - shard-mtlp: [FAIL][204] ([i915#6363]) -> [PASS][205] > [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-3/igt@gem_exec_whisper@basic-forked.html > [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@gem_exec_whisper@basic-forked.html > > * igt@gem_lmem_swapping@smem-oom@lmem0: > - {shard-dg1}: [TIMEOUT][206] ([i915#5493]) -> [PASS][207] > [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html > [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html > > * igt@gen9_exec_parse@allowed-single: > - shard-glk: [ABORT][208] ([i915#5566]) -> [PASS][209] > [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-glk8/igt@gen9_exec_parse@allowed-single.html > [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk8/igt@gen9_exec_parse@allowed-single.html > > * igt@i915_pm_dc@dc9-dpms: > - shard-apl: [SKIP][210] ([fdo#109271]) -> [PASS][211] > [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl2/igt@i915_pm_dc@dc9-dpms.html > [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl4/igt@i915_pm_dc@dc9-dpms.html > > * igt@i915_pm_rpm@dpms-lpsp: > - shard-rkl: [SKIP][212] ([i915#1397]) -> [PASS][213] > [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-3/igt@i915_pm_rpm@dpms-lpsp.html > [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html > > * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: > - shard-dg2: [SKIP][214] ([i915#1397]) -> [PASS][215] +3 similar issues > [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-10/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html > [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-3/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html > > * igt@i915_selftest@live@sanitycheck: > - shard-snb: [ABORT][216] ([i915#4528]) -> [PASS][217] > [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-snb2/igt@i915_selftest@live@sanitycheck.html > [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-snb2/igt@i915_selftest@live@sanitycheck.html > > * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1: > - shard-mtlp: [FAIL][218] ([i915#2521]) -> [PASS][219] > [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html > [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html > > * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: > - shard-glk: [FAIL][220] ([i915#72]) -> [PASS][221] > [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-glk4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html > [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: > - shard-apl: [FAIL][222] ([i915#2346]) -> [PASS][223] > [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html > [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html > > * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2: > - shard-glk: [FAIL][224] ([i915#2122]) -> [PASS][225] > [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html > [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: > - shard-dg2: [FAIL][226] ([i915#6880]) -> [PASS][227] > [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html > [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html > > * igt@kms_psr@psr2_primary_render: > - shard-mtlp: [FAIL][228] ([i915#8726]) -> [PASS][229] > [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-7/igt@kms_psr@psr2_primary_render.html > [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_psr@psr2_primary_render.html > > * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend: > - shard-dg2: [FAIL][230] ([fdo#103375] / [i915#6121]) -> [PASS][231] > [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-5/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html > [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html > > * igt@perf@non-zero-reason@0-rcs0: > - shard-dg2: [FAIL][232] ([i915#7757]) -> [PASS][233] > [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-7/igt@perf@non-zero-reason@0-rcs0.html > [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html > > * igt@perf_pmu@semaphore-busy@ccs0: > - shard-mtlp: [FAIL][234] ([i915#4349]) -> [PASS][235] > [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-7/igt@perf_pmu@semaphore-busy@ccs0.html > [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@perf_pmu@semaphore-busy@ccs0.html > > * igt@sysfs_heartbeat_interval@mixed@ccs0: > - shard-mtlp: [ABORT][236] ([i915#8552]) -> [PASS][237] > [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-6/igt@sysfs_heartbeat_interval@mixed@ccs0.html > [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@sysfs_heartbeat_interval@mixed@ccs0.html > > * igt@sysfs_heartbeat_interval@mixed@vecs0: > - shard-mtlp: [FAIL][238] ([i915#1731]) -> [PASS][239] > [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-6/igt@sysfs_heartbeat_interval@mixed@vecs0.html > [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@sysfs_heartbeat_interval@mixed@vecs0.html > > * igt@sysfs_heartbeat_interval@nopreempt@vcs0: > - shard-mtlp: [FAIL][240] ([i915#6015]) -> [PASS][241] +5 similar issues > [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-2/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html > [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html > > * igt@sysfs_heartbeat_interval@precise@vecs0: > - shard-mtlp: [FAIL][242] ([i915#8332]) -> [PASS][243] > [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-1/igt@sysfs_heartbeat_interval@precise@vecs0.html > [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@sysfs_heartbeat_interval@precise@vecs0.html > > > #### Warnings #### > > * igt@gem_exec_whisper@basic-contexts-priority-all: > - shard-mtlp: [FAIL][244] ([i915#6363]) -> [TIMEOUT][245] ([i915#7392]) > [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-1/igt@gem_exec_whisper@basic-contexts-priority-all.html > [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@gem_exec_whisper@basic-contexts-priority-all.html > > * igt@i915_pm_rc6_residency@media-rc6-accuracy: > - shard-mtlp: [SKIP][246] ([fdo#109289]) -> [SKIP][247] ([fdo#109289] / [i915#8403]) > [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html > [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@i915_pm_rc6_residency@media-rc6-accuracy.html > > * igt@kms_content_protection@mei_interface: > - shard-dg2: [SKIP][248] ([i915#7118] / [i915#7162]) -> [SKIP][249] ([i915#7118]) > [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-12/igt@kms_content_protection@mei_interface.html > [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@kms_content_protection@mei_interface.html > > * igt@kms_content_protection@type1: > - shard-dg2: [SKIP][250] ([i915#7118]) -> [SKIP][251] ([i915#7118] / [i915#7162]) > [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-8/igt@kms_content_protection@type1.html > [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@kms_content_protection@type1.html > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > - shard-mtlp: [DMESG-FAIL][252] ([i915#1982] / [i915#2017] / [i915#5954]) -> [DMESG-FAIL][253] ([i915#2017] / [i915#5954]) > [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > > * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: > - shard-rkl: [SKIP][254] ([i915#4816]) -> [SKIP][255] ([i915#4070] / [i915#4816]) > [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html > [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html > > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 > [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 > [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 > [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 > [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 > [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 > [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 > [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 > [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 > [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 > [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 > [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 > [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 > [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 > [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 > [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 > [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 > [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 > [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 > [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 > [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 > [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 > [i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731 > [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 > [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 > [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 > [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 > [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 > [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 > [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 > [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 > [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 > [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 > [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 > [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 > [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 > [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 > [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 > [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 > [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 > [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 > [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 > [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 > [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 > [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 > [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 > [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 > [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 > [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 > [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 > [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 > [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 > [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 > [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 > [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 > [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 > [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 > [i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 > [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 > [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 > [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 > [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 > [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 > [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 > [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 > [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 > [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 > [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 > [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 > [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 > [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 > [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 > [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 > [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 > [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 > [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 > [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 > [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 > [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 > [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 > [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 > [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 > [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 > [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 > [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 > [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 > [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 > [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 > [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 > [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 > [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 > [i915#5892]: https://gitlab.freedesktop.org/drm/intel/issues/5892 > [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 > [i915#6015]: https://gitlab.freedesktop.org/drm/intel/issues/6015 > [i915#6032]: https://gitlab.freedesktop.org/drm/intel/issues/6032 > [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 > [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 > [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 > [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 > [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 > [i915#6363]: https://gitlab.freedesktop.org/drm/intel/issues/6363 > [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 > [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 > [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 > [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 > [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 > [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 > [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 > [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 > [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 > [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 > [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 > [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 > [i915#7327]: https://gitlab.freedesktop.org/drm/intel/issues/7327 > [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 > [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 > [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 > [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582 > [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 > [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 > [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 > [i915#7757]: https://gitlab.freedesktop.org/drm/intel/issues/7757 > [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 > [i915#7892]: https://gitlab.freedesktop.org/drm/intel/issues/7892 > [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 > [i915#7951]: https://gitlab.freedesktop.org/drm/intel/issues/7951 > [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 > [i915#8104]: https://gitlab.freedesktop.org/drm/intel/issues/8104 > [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 > [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 > [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 > [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 > [i915#8332]: https://gitlab.freedesktop.org/drm/intel/issues/8332 > [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 > [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 > [i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403 > [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 > [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 > [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 > [i915#8431]: https://gitlab.freedesktop.org/drm/intel/issues/8431 > [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 > [i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521 > [i915#8552]: https://gitlab.freedesktop.org/drm/intel/issues/8552 > [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 > [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 > [i915#8726]: https://gitlab.freedesktop.org/drm/intel/issues/8726 > [i915#8758]: https://gitlab.freedesktop.org/drm/intel/issues/8758 > [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 > [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 > [i915#8827]: https://gitlab.freedesktop.org/drm/intel/issues/8827 > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_7377 -> IGTPW_9372 > * Piglit: piglit_4509 -> None > > CI-20190529: 20190529 > CI_DRM_13360: 033ea4a472c5dc3646d343799a2971b4817acfb5 @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_9372: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/index.html > IGT_7377: d1574543ba4bb322597345530053475c07be0eb9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/index.html ^ permalink raw reply [flat|nested] 16+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Handle GT and tile seperation in IGT (rev8) 2023-07-10 4:43 [igt-dev] [PATCH i-g-t v9 0/4] Handle GT and tile seperation in IGT Himal Prasad Ghimiray ` (6 preceding siblings ...) 2023-07-10 6:52 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-07-11 6:55 ` Patchwork 2023-07-11 7:29 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 8 siblings, 0 replies; 16+ messages in thread From: Patchwork @ 2023-07-11 6:55 UTC (permalink / raw) To: Ghimiray, Himal Prasad; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 67325 bytes --] == Series Details == Series: Handle GT and tile seperation in IGT (rev8) URL : https://patchwork.freedesktop.org/series/119801/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13360_full -> IGTPW_9372_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9372_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9372_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/index.html Participating hosts (9 -> 10) ------------------------------ Additional (1): shard-rkl0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9372_full: ### IGT changes ### #### Possible regressions #### * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][1] +2 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_lmem_swapping@heavy-random: - {shard-dg1}: NOTRUN -> [FAIL][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg1-14/igt@gem_lmem_swapping@heavy-random.html Known issues ------------ Here are the changes found in IGTPW_9372_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@drm_fdinfo@busy-idle-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][3] ([i915#8414]) +6 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@drm_fdinfo@busy-idle-check-all@ccs0.html * igt@drm_fdinfo@busy@ccs0: - shard-dg2: NOTRUN -> [SKIP][4] ([i915#8414]) +9 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@drm_fdinfo@busy@ccs0.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [PASS][5] -> [FAIL][6] ([i915#7742]) +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-3/igt@drm_fdinfo@most-busy-check-all@rcs0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-6/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#658]) +1 similar issue [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@feature_discovery@psr2.html - shard-rkl: NOTRUN -> [SKIP][8] ([i915#658]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-6/igt@feature_discovery@psr2.html * igt@gem_bad_reloc@negative-reloc-bltcopy: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#3281]) +2 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@gem_bad_reloc@negative-reloc-bltcopy.html * igt@gem_ccs@block-copy-compressed: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#5325]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@gem_ccs@block-copy-compressed.html * igt@gem_create@hog-create@smem0: - shard-dg2: [PASS][11] -> [FAIL][12] ([i915#5892] / [i915#8758]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-7/igt@gem_create@hog-create@smem0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@gem_create@hog-create@smem0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][13] -> [FAIL][14] ([i915#6268]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-3/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-dg2: NOTRUN -> [FAIL][15] ([fdo#103375] / [i915#6121]) +4 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_ctx_param@set-priority-not-supported: - shard-mtlp: NOTRUN -> [SKIP][16] ([fdo#109314]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@heartbeat-close: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#8555]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#8555]) +1 similar issue [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@legacy-engines-hang@bsd1: - shard-mtlp: [PASS][19] -> [FAIL][20] ([i915#2410]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-3/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html * igt@gem_ctx_sseu@invalid-sseu: - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#280]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@kms: - shard-dg2: [PASS][22] -> [INCOMPLETE][23] ([i915#7892]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-5/igt@gem_eio@kms.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@gem_eio@kms.html * igt@gem_exec_balancer@hang: - shard-mtlp: [PASS][24] -> [ABORT][25] ([i915#8104]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@gem_exec_balancer@hang.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@gem_exec_balancer@hang.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#4525]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-6/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#4812]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@gem_exec_balancer@sliced.html * igt@gem_exec_endless@dispatch@rcs0: - shard-apl: [PASS][28] -> [TIMEOUT][29] ([i915#3778]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl1/igt@gem_exec_endless@dispatch@rcs0.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl6/igt@gem_exec_endless@dispatch@rcs0.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [PASS][31] -> [FAIL][32] ([i915#2842]) +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-6/igt@gem_exec_fair@basic-pace@vecs0.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-3/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fence@submit: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4812]) +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@gem_exec_fence@submit.html * igt@gem_exec_gttfill@multigpu-basic: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#7697]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-8/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_params@secure-non-root: - shard-dg2: NOTRUN -> [SKIP][35] ([fdo#112283]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@gem_exec_params@secure-non-root.html - shard-rkl: NOTRUN -> [SKIP][36] ([fdo#112283]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-cpu-wc-active: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3281]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@gem_exec_reloc@basic-cpu-wc-active.html - shard-rkl: NOTRUN -> [SKIP][38] ([i915#3281]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@gem_exec_reloc@basic-cpu-wc-active.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-tglu: [PASS][39] -> [ABORT][40] ([i915#7975] / [i915#8213]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-tglu-2/igt@gem_exec_suspend@basic-s4-devices@smem.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_exec_whisper@basic-normal: - shard-mtlp: [PASS][41] -> [FAIL][42] ([i915#6363]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-7/igt@gem_exec_whisper@basic-normal.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@gem_exec_whisper@basic-normal.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4860]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#4613] / [i915#7582]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@verify-random: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#4613]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@gem_lmem_swapping@verify-random.html - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4613]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap@short-mmap: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4083]) +1 similar issue [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@gem_mmap@short-mmap.html * igt@gem_mmap_gtt@basic-read-write-distinct: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4077]) +1 similar issue [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-7/igt@gem_mmap_gtt@basic-read-write-distinct.html * igt@gem_mmap_gtt@basic-short: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4077]) +8 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@gem_mmap_gtt@basic-short.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#3282]) +3 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pwrite@basic-random: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#3282]) +5 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-3/igt@gem_pwrite@basic-random.html - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#3282]) +3 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@gem_pwrite@basic-random.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4270]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-tglu: NOTRUN -> [SKIP][54] ([i915#4270]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-5/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#8428]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#5190]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4079]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-rkl: NOTRUN -> [SKIP][58] ([i915#8411]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4079]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#3297]) +1 similar issue [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@gem_userptr_blits@access-control.html * igt@gem_workarounds@suspend-resume-fd: - shard-dg2: [PASS][61] -> [FAIL][62] ([fdo#103375] / [i915#6121]) +1 similar issue [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-10/igt@gem_workarounds@suspend-resume-fd.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@gem_workarounds@suspend-resume-fd.html * igt@gen3_mixed_blits: - shard-dg2: NOTRUN -> [SKIP][63] ([fdo#109289]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-3/igt@gen3_mixed_blits.html - shard-rkl: NOTRUN -> [SKIP][64] ([fdo#109289]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@gen3_mixed_blits.html * igt@gen7_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][65] ([fdo#109289]) +1 similar issue [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@gen7_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@allowed-single: - shard-tglu: NOTRUN -> [SKIP][66] ([i915#2527] / [i915#2856]) +1 similar issue [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-9/igt@gen9_exec_parse@allowed-single.html * igt@i915_hangman@engine-engine-error@vcs0: - shard-mtlp: [PASS][67] -> [FAIL][68] ([i915#7069]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-4/igt@i915_hangman@engine-engine-error@vcs0.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@i915_hangman@engine-engine-error@vcs0.html * igt@i915_module_load@load: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#6227]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@i915_module_load@load.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#6412]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-3/igt@i915_module_load@resize-bar.html * igt@i915_pm_backlight@fade-with-suspend: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#5354] / [i915#7561]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@i915_pm_backlight@fade-with-suspend.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#1937]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: [PASS][73] -> [SKIP][74] ([i915#1397]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-2/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@gem-mmap-type@gtt-smem0: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#8431]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@i915_pm_rpm@gem-mmap-type@gtt-smem0.html * igt@i915_pm_rpm@modeset-lpsp: - shard-dg2: [PASS][76] -> [SKIP][77] ([i915#1397]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-12/igt@i915_pm_rpm@modeset-lpsp.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-9/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-glk: NOTRUN -> [SKIP][78] ([fdo#109271]) +11 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk2/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-dg2: NOTRUN -> [SKIP][79] ([fdo#109506]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_pm_rps@basic-api: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#6621]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@i915_pm_rps@basic-api.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][81] ([i915#8247]) +1 similar issue [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][82] ([i915#8247]) +3 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_async_flips@invalid-async-flip: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#6228]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#404]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][85] ([fdo#111614]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [PASS][86] -> [FAIL][87] ([i915#5138]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#5286]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][89] -> [DMESG-WARN][90] ([i915#1982]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][91] ([fdo#111614]) +2 similar issues [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-snb: [PASS][92] -> [SKIP][93] ([fdo#109271]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-snb5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-snb7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: [PASS][94] -> [FAIL][95] ([i915#3743]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][96] ([fdo#111614] / [i915#3638]) +1 similar issue [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][97] ([fdo#111615]) +7 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#4538] / [i915#5190]) +2 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html - shard-rkl: NOTRUN -> [SKIP][99] ([fdo#110723]) +1 similar issue [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][100] ([fdo#111615]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#3734] / [i915#5354] / [i915#6095]) +1 similar issue [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-2/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#5354]) +20 similar issues [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][103] ([fdo#109271] / [i915#3886]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk4/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#6095]) +17 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#3689] / [i915#3886] / [i915#5354]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#5354] / [i915#6095]) +4 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs: - shard-tglu: NOTRUN -> [SKIP][107] ([i915#5354] / [i915#6095]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-10/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#3886] / [i915#6095]) +3 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#3689] / [i915#5354]) +4 similar issues [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html - shard-rkl: NOTRUN -> [SKIP][110] ([i915#5354]) +5 similar issues [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#4087] / [i915#7213]) +3 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#4087]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#7828]) +2 similar issues [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-8/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-max: - shard-mtlp: NOTRUN -> [SKIP][114] ([fdo#111827]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#7828]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-9/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_color@deep-color: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#3555]) +2 similar issues [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][117] ([i915#7173]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#3299]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#7118]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#3555]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#8814]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#3359]) +1 similar issue [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][123] ([fdo#111767] / [i915#3546]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#3546]) +2 similar issues [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-dg2: NOTRUN -> [SKIP][125] ([fdo#109274] / [i915#5354]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [PASS][126] -> [FAIL][127] ([i915#2346]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html - shard-glk: [PASS][128] -> [FAIL][129] ([i915#2346]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#8827]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@kms_display_modes@extended-mode-basic.html * igt@kms_flip@2x-flip-vs-dpms: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#3637]) +2 similar issues [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][132] ([fdo#109274]) +1 similar issue [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@kms_flip@2x-modeset-vs-vblank-race.html - shard-rkl: NOTRUN -> [SKIP][133] ([fdo#111825]) +1 similar issue [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@flip-vs-expired-vblank@a-dp1: - shard-apl: [PASS][134] -> [FAIL][135] ([i915#79]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl7/igt@kms_flip@flip-vs-expired-vblank@a-dp1.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl2/igt@kms_flip@flip-vs-expired-vblank@a-dp1.html * igt@kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#8381]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-suspend@a-dp1: - shard-apl: [PASS][137] -> [ABORT][138] ([i915#180]) +1 similar issue [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl4/igt@kms_flip@flip-vs-suspend@a-dp1.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl1/igt@kms_flip@flip-vs-suspend@a-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#2672]) +1 similar issue [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#8810]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#2672]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg2: [PASS][142] -> [FAIL][143] ([i915#6880]) +1 similar issue [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][144] ([fdo#111825] / [i915#1825]) +6 similar issues [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#8708]) +5 similar issues [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][146] ([fdo#110189]) +5 similar issues [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#8708]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][148] ([fdo#109280]) +2 similar issues [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#1825]) +16 similar issues [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-snb: NOTRUN -> [SKIP][150] ([fdo#109271]) +70 similar issues [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-snb2/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#3023]) +5 similar issues [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#3458]) +3 similar issues [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html * igt@kms_hdr@static-toggle-suspend: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#8228]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_hdr@static-toggle-suspend.html * igt@kms_plane_lowres@tiling-x@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#3582]) +3 similar issues [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-2: - shard-dg2: NOTRUN -> [FAIL][155] ([i915#8292]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-2.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#5176]) +7 similar issues [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#5176]) +3 similar issues [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-c-edp-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#5176]) +5 similar issues [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#5235]) +3 similar issues [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#5235]) +1 similar issue [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#5235]) +11 similar issues [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][162] ([fdo#111068] / [i915#658]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-6/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#1072]) +1 similar issue [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-7/igt@kms_psr@psr2_sprite_mmap_gtt.html - shard-rkl: NOTRUN -> [SKIP][164] ([i915#1072]) +1 similar issue [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-2/igt@kms_psr@psr2_sprite_mmap_gtt.html * igt@kms_rotation_crc@bad-pixel-format: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#4235]) +1 similar issue [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#5289]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_sysfs_edid_timing: - shard-dg2: [PASS][167] -> [FAIL][168] ([IGT#2]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-12/igt@kms_sysfs_edid_timing.html [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-10/igt@kms_sysfs_edid_timing.html * igt@kms_tv_load_detect@load-detect: - shard-tglu: NOTRUN -> [SKIP][169] ([fdo#109309]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-2/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@pipe-d-accuracy-idle: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#4070] / [i915#533] / [i915#6768]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@kms_vblank@pipe-d-accuracy-idle.html * igt@kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#2437]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@kms_writeback@writeback-fb-id.html - shard-rkl: NOTRUN -> [SKIP][172] ([i915#2437]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_writeback@writeback-fb-id.html - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#2437]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-invalid-parameters: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#2437]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-4/igt@kms_writeback@writeback-invalid-parameters.html - shard-glk: NOTRUN -> [SKIP][175] ([fdo#109271] / [i915#2437]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk1/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@global-sseu-config-invalid: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#7387]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@perf@global-sseu-config-invalid.html * igt@prime_self_import@reimport-vs-gem_close-race: - shard-snb: [PASS][177] -> [FAIL][178] ([i915#7951]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-snb4/igt@prime_self_import@reimport-vs-gem_close-race.html [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-snb2/igt@prime_self_import@reimport-vs-gem_close-race.html - shard-mtlp: [PASS][179] -> [FAIL][180] ([i915#7951]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-3/igt@prime_self_import@reimport-vs-gem_close-race.html [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-8/igt@prime_self_import@reimport-vs-gem_close-race.html * igt@prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#3708] / [i915#4077]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#3708]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@prime_vgem@fence-read-hang.html * igt@sysfs_timeslice_duration@timeout@vecs0: - shard-mtlp: [PASS][183] -> [ABORT][184] ([i915#8521]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@sysfs_timeslice_duration@timeout@vecs0.html [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@sysfs_timeslice_duration@timeout@vecs0.html * igt@v3d/v3d_get_param@base-params: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#2575]) +3 similar issues [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@v3d/v3d_get_param@base-params.html - shard-rkl: NOTRUN -> [SKIP][186] ([fdo#109315]) +1 similar issue [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@v3d/v3d_get_param@base-params.html * igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync: - shard-tglu: NOTRUN -> [SKIP][187] ([fdo#109315] / [i915#2575]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-9/igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync.html * igt@v3d/v3d_submit_cl@single-out-sync: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#2575]) +7 similar issues [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@v3d/v3d_submit_cl@single-out-sync.html * igt@vc4/vc4_tiling@get-after-free: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#7711]) +3 similar issues [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@vc4/vc4_tiling@get-after-free.html * igt@vc4/vc4_tiling@get-bad-modifier: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#7711]) +1 similar issue [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@vc4/vc4_tiling@get-bad-modifier.html #### Possible fixes #### * igt@gem_ctx_persistence@engines-hang@vcs0: - shard-mtlp: [FAIL][191] ([i915#2410]) -> [PASS][192] [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@gem_ctx_persistence@engines-hang@vcs0.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@gem_ctx_persistence@engines-hang@vcs0.html * igt@gem_eio@reset-stress: - shard-dg2: [FAIL][193] ([i915#5784]) -> [PASS][194] [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-7/igt@gem_eio@reset-stress.html [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@full-pulse: - shard-dg2: [FAIL][195] ([i915#6032]) -> [PASS][196] [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-9/igt@gem_exec_balancer@full-pulse.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@gem_exec_balancer@full-pulse.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [FAIL][197] ([i915#2846]) -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-glk9/igt@gem_exec_fair@basic-deadline.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk9/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [FAIL][199] ([i915#2842]) -> [PASS][200] [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-rkl: [FAIL][201] ([i915#2842]) -> [PASS][202] +1 similar issue [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-4/igt@gem_exec_fair@basic-throttle@rcs0.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-3/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_schedule@preemptive-hang@vcs0: - shard-mtlp: [FAIL][203] ([i915#7327]) -> [PASS][204] [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-5/igt@gem_exec_schedule@preemptive-hang@vcs0.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@gem_exec_schedule@preemptive-hang@vcs0.html * igt@gem_exec_whisper@basic-forked: - shard-mtlp: [FAIL][205] ([i915#6363]) -> [PASS][206] [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-3/igt@gem_exec_whisper@basic-forked.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@gem_exec_whisper@basic-forked.html * igt@gem_lmem_swapping@smem-oom@lmem0: - {shard-dg1}: [TIMEOUT][207] ([i915#5493]) -> [PASS][208] [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [ABORT][209] ([i915#5566]) -> [PASS][210] [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-glk8/igt@gen9_exec_parse@allowed-single.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk8/igt@gen9_exec_parse@allowed-single.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [SKIP][211] ([fdo#109271]) -> [PASS][212] [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl2/igt@i915_pm_dc@dc9-dpms.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl4/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][213] ([i915#1397]) -> [PASS][214] [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-3/igt@i915_pm_rpm@dpms-lpsp.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [SKIP][215] ([i915#1397]) -> [PASS][216] +3 similar issues [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-10/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-3/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_selftest@live@sanitycheck: - shard-snb: [ABORT][217] ([i915#4528]) -> [PASS][218] [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-snb2/igt@i915_selftest@live@sanitycheck.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-snb2/igt@i915_selftest@live@sanitycheck.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1: - shard-mtlp: [FAIL][219] ([i915#2521]) -> [PASS][220] [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-glk: [FAIL][221] ([i915#72]) -> [PASS][222] [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-glk4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [FAIL][223] ([i915#2346]) -> [PASS][224] [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][225] ([i915#2122]) -> [PASS][226] [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: - shard-dg2: [FAIL][227] ([i915#6880]) -> [PASS][228] [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html * igt@kms_psr@psr2_primary_render: - shard-mtlp: [FAIL][229] ([i915#8726]) -> [PASS][230] [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-7/igt@kms_psr@psr2_primary_render.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_psr@psr2_primary_render.html * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend: - shard-dg2: [FAIL][231] ([fdo#103375] / [i915#6121]) -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-5/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][233] ([i915#7757]) -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-7/igt@perf@non-zero-reason@0-rcs0.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@semaphore-busy@ccs0: - shard-mtlp: [FAIL][235] ([i915#4349]) -> [PASS][236] [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-7/igt@perf_pmu@semaphore-busy@ccs0.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@perf_pmu@semaphore-busy@ccs0.html * igt@sysfs_heartbeat_interval@mixed@ccs0: - shard-mtlp: [ABORT][237] ([i915#8552]) -> [PASS][238] [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-6/igt@sysfs_heartbeat_interval@mixed@ccs0.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@sysfs_heartbeat_interval@mixed@ccs0.html * igt@sysfs_heartbeat_interval@mixed@vecs0: - shard-mtlp: [FAIL][239] ([i915#1731]) -> [PASS][240] [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-6/igt@sysfs_heartbeat_interval@mixed@vecs0.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@sysfs_heartbeat_interval@mixed@vecs0.html * igt@sysfs_heartbeat_interval@nopreempt@vcs0: - shard-mtlp: [FAIL][241] ([i915#6015]) -> [PASS][242] +5 similar issues [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-2/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html * igt@sysfs_heartbeat_interval@precise@vecs0: - shard-mtlp: [FAIL][243] ([i915#8332]) -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-1/igt@sysfs_heartbeat_interval@precise@vecs0.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@sysfs_heartbeat_interval@precise@vecs0.html #### Warnings #### * igt@gem_exec_whisper@basic-contexts-priority-all: - shard-mtlp: [FAIL][245] ([i915#6363]) -> [TIMEOUT][246] ([i915#7392]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-1/igt@gem_exec_whisper@basic-contexts-priority-all.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@gem_exec_whisper@basic-contexts-priority-all.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-mtlp: [SKIP][247] ([fdo#109289]) -> [SKIP][248] ([fdo#109289] / [i915#8403]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@kms_content_protection@mei_interface: - shard-dg2: [SKIP][249] ([i915#7118] / [i915#7162]) -> [SKIP][250] ([i915#7118]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-12/igt@kms_content_protection@mei_interface.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@kms_content_protection@mei_interface.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][251] ([i915#7118]) -> [SKIP][252] ([i915#7118] / [i915#7162]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-8/igt@kms_content_protection@type1.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@kms_content_protection@type1.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: [DMESG-FAIL][253] ([i915#1982] / [i915#2017] / [i915#5954]) -> [DMESG-FAIL][254] ([i915#2017] / [i915#5954]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][255] ([i915#4816]) -> [SKIP][256] ([i915#4070] / [i915#4816]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5892]: https://gitlab.freedesktop.org/drm/intel/issues/5892 [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 [i915#6015]: https://gitlab.freedesktop.org/drm/intel/issues/6015 [i915#6032]: https://gitlab.freedesktop.org/drm/intel/issues/6032 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6363]: https://gitlab.freedesktop.org/drm/intel/issues/6363 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7327]: https://gitlab.freedesktop.org/drm/intel/issues/7327 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7757]: https://gitlab.freedesktop.org/drm/intel/issues/7757 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7892]: https://gitlab.freedesktop.org/drm/intel/issues/7892 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7951]: https://gitlab.freedesktop.org/drm/intel/issues/7951 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8104]: https://gitlab.freedesktop.org/drm/intel/issues/8104 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8332]: https://gitlab.freedesktop.org/drm/intel/issues/8332 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8431]: https://gitlab.freedesktop.org/drm/intel/issues/8431 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521 [i915#8552]: https://gitlab.freedesktop.org/drm/intel/issues/8552 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8726]: https://gitlab.freedesktop.org/drm/intel/issues/8726 [i915#8758]: https://gitlab.freedesktop.org/drm/intel/issues/8758 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8827]: https://gitlab.freedesktop.org/drm/intel/issues/8827 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7377 -> IGTPW_9372 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13360: 033ea4a472c5dc3646d343799a2971b4817acfb5 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9372: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/index.html IGT_7377: d1574543ba4bb322597345530053475c07be0eb9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/index.html [-- Attachment #2: Type: text/html, Size: 78340 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Handle GT and tile seperation in IGT (rev8) 2023-07-10 4:43 [igt-dev] [PATCH i-g-t v9 0/4] Handle GT and tile seperation in IGT Himal Prasad Ghimiray ` (7 preceding siblings ...) 2023-07-11 6:55 ` Patchwork @ 2023-07-11 7:29 ` Patchwork 8 siblings, 0 replies; 16+ messages in thread From: Patchwork @ 2023-07-11 7:29 UTC (permalink / raw) To: Ghimiray, Himal Prasad; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 66768 bytes --] == Series Details == Series: Handle GT and tile seperation in IGT (rev8) URL : https://patchwork.freedesktop.org/series/119801/ State : success == Summary == CI Bug Log - changes from CI_DRM_13360_full -> IGTPW_9372_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/index.html Participating hosts (9 -> 10) ------------------------------ Additional (1): shard-rkl0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9372_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_lmem_swapping@heavy-random: - {shard-dg1}: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg1-14/igt@gem_lmem_swapping@heavy-random.html Known issues ------------ Here are the changes found in IGTPW_9372_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@drm_fdinfo@busy-idle-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][2] ([i915#8414]) +6 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@drm_fdinfo@busy-idle-check-all@ccs0.html * igt@drm_fdinfo@busy@ccs0: - shard-dg2: NOTRUN -> [SKIP][3] ([i915#8414]) +9 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@drm_fdinfo@busy@ccs0.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [PASS][4] -> [FAIL][5] ([i915#7742]) +1 similar issue [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-3/igt@drm_fdinfo@most-busy-check-all@rcs0.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-6/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#658]) +1 similar issue [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@feature_discovery@psr2.html - shard-rkl: NOTRUN -> [SKIP][7] ([i915#658]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-6/igt@feature_discovery@psr2.html * igt@gem_bad_reloc@negative-reloc-bltcopy: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#3281]) +2 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@gem_bad_reloc@negative-reloc-bltcopy.html * igt@gem_ccs@block-copy-compressed: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#5325]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@gem_ccs@block-copy-compressed.html * igt@gem_create@hog-create@smem0: - shard-dg2: [PASS][10] -> [FAIL][11] ([i915#5892] / [i915#8758]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-7/igt@gem_create@hog-create@smem0.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@gem_create@hog-create@smem0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][12] -> [FAIL][13] ([i915#6268]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-3/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-dg2: NOTRUN -> [FAIL][14] ([fdo#103375] / [i915#6121]) +4 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_ctx_param@set-priority-not-supported: - shard-mtlp: NOTRUN -> [SKIP][15] ([fdo#109314]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@heartbeat-close: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#8555]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8555]) +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@legacy-engines-hang@bsd1: - shard-mtlp: [PASS][18] -> [FAIL][19] ([i915#2410]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-3/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html * igt@gem_ctx_sseu@invalid-sseu: - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#280]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@kms: - shard-dg2: [PASS][21] -> [INCOMPLETE][22] ([i915#7892]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-5/igt@gem_eio@kms.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@gem_eio@kms.html * igt@gem_exec_balancer@hang: - shard-mtlp: [PASS][23] -> [ABORT][24] ([i915#8104]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@gem_exec_balancer@hang.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@gem_exec_balancer@hang.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][25] ([i915#4525]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-6/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#4812]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@gem_exec_balancer@sliced.html * igt@gem_exec_endless@dispatch@rcs0: - shard-apl: [PASS][27] -> [TIMEOUT][28] ([i915#3778]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl1/igt@gem_exec_endless@dispatch@rcs0.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl6/igt@gem_exec_endless@dispatch@rcs0.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [PASS][30] -> [FAIL][31] ([i915#2842]) +1 similar issue [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-6/igt@gem_exec_fair@basic-pace@vecs0.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-3/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fence@submit: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4812]) +1 similar issue [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@gem_exec_fence@submit.html * igt@gem_exec_gttfill@multigpu-basic: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#7697]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-8/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_params@secure-non-root: - shard-dg2: NOTRUN -> [SKIP][34] ([fdo#112283]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@gem_exec_params@secure-non-root.html - shard-rkl: NOTRUN -> [SKIP][35] ([fdo#112283]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-cpu-wc-active: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#3281]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@gem_exec_reloc@basic-cpu-wc-active.html - shard-rkl: NOTRUN -> [SKIP][37] ([i915#3281]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@gem_exec_reloc@basic-cpu-wc-active.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-tglu: [PASS][38] -> [ABORT][39] ([i915#7975] / [i915#8213]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-tglu-2/igt@gem_exec_suspend@basic-s4-devices@smem.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_exec_whisper@basic-normal: - shard-mtlp: [PASS][40] -> [FAIL][41] ([i915#6363]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-7/igt@gem_exec_whisper@basic-normal.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@gem_exec_whisper@basic-normal.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4860]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#4613] / [i915#7582]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@verify-random: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#4613]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@gem_lmem_swapping@verify-random.html - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4613]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap@short-mmap: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4083]) +1 similar issue [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@gem_mmap@short-mmap.html * igt@gem_mmap_gtt@basic-read-write-distinct: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4077]) +1 similar issue [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-7/igt@gem_mmap_gtt@basic-read-write-distinct.html * igt@gem_mmap_gtt@basic-short: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4077]) +8 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@gem_mmap_gtt@basic-short.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#3282]) +3 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pwrite@basic-random: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3282]) +5 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-3/igt@gem_pwrite@basic-random.html - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3282]) +3 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@gem_pwrite@basic-random.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4270]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-tglu: NOTRUN -> [SKIP][53] ([i915#4270]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-5/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#8428]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#5190]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4079]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-rkl: NOTRUN -> [SKIP][57] ([i915#8411]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4079]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#3297]) +1 similar issue [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@gem_userptr_blits@access-control.html * igt@gem_workarounds@suspend-resume-fd: - shard-dg2: [PASS][60] -> [FAIL][61] ([fdo#103375] / [i915#6121]) +1 similar issue [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-10/igt@gem_workarounds@suspend-resume-fd.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@gem_workarounds@suspend-resume-fd.html * igt@gen3_mixed_blits: - shard-dg2: NOTRUN -> [SKIP][62] ([fdo#109289]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-3/igt@gen3_mixed_blits.html - shard-rkl: NOTRUN -> [SKIP][63] ([fdo#109289]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@gen3_mixed_blits.html * igt@gen7_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][64] ([fdo#109289]) +1 similar issue [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@gen7_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@allowed-single: - shard-tglu: NOTRUN -> [SKIP][65] ([i915#2527] / [i915#2856]) +1 similar issue [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-9/igt@gen9_exec_parse@allowed-single.html * igt@i915_hangman@engine-engine-error@vcs0: - shard-mtlp: [PASS][66] -> [FAIL][67] ([i915#7069]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-4/igt@i915_hangman@engine-engine-error@vcs0.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@i915_hangman@engine-engine-error@vcs0.html * igt@i915_module_load@load: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#6227]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@i915_module_load@load.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#6412]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-3/igt@i915_module_load@resize-bar.html * igt@i915_pm_backlight@fade-with-suspend: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#5354] / [i915#7561]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@i915_pm_backlight@fade-with-suspend.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#1937]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: [PASS][72] -> [SKIP][73] ([i915#1397]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-2/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@gem-mmap-type@gtt-smem0: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#8431]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@i915_pm_rpm@gem-mmap-type@gtt-smem0.html * igt@i915_pm_rpm@modeset-lpsp: - shard-dg2: [PASS][75] -> [SKIP][76] ([i915#1397]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-12/igt@i915_pm_rpm@modeset-lpsp.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-9/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-glk: NOTRUN -> [SKIP][77] ([fdo#109271]) +11 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk2/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-dg2: NOTRUN -> [SKIP][78] ([fdo#109506]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_pm_rps@basic-api: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#6621]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@i915_pm_rps@basic-api.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][80] ([i915#8247]) +1 similar issue [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][81] ([i915#8247]) +3 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_async_flips@invalid-async-flip: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#6228]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#404]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][84] ([fdo#111614]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [PASS][85] -> [FAIL][86] ([i915#5138]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#5286]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][88] -> [DMESG-WARN][89] ([i915#1982]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][90] ([fdo#111614]) +2 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-snb: [PASS][91] -> [SKIP][92] ([fdo#109271]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-snb5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-snb7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: [PASS][93] -> [FAIL][94] ([i915#3743]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][95] ([fdo#111614] / [i915#3638]) +1 similar issue [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][96] ([fdo#111615]) +7 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#4538] / [i915#5190]) +2 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html - shard-rkl: NOTRUN -> [SKIP][98] ([fdo#110723]) +1 similar issue [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][99] ([fdo#111615]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#3734] / [i915#5354] / [i915#6095]) +1 similar issue [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-2/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#5354]) +20 similar issues [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#3886]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk4/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#6095]) +17 similar issues [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#3689] / [i915#3886] / [i915#5354]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#5354] / [i915#6095]) +4 similar issues [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs: - shard-tglu: NOTRUN -> [SKIP][106] ([i915#5354] / [i915#6095]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-10/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#3886] / [i915#6095]) +3 similar issues [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#3689] / [i915#5354]) +4 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html - shard-rkl: NOTRUN -> [SKIP][109] ([i915#5354]) +5 similar issues [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#4087] / [i915#7213]) +3 similar issues [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#4087]) +3 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#7828]) +2 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-8/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-max: - shard-mtlp: NOTRUN -> [SKIP][113] ([fdo#111827]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#7828]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-9/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_color@deep-color: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#3555]) +2 similar issues [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][116] ([i915#7173]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#3299]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#7118]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#3555]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#8814]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#3359]) +1 similar issue [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][122] ([fdo#111767] / [i915#3546]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#3546]) +2 similar issues [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-dg2: NOTRUN -> [SKIP][124] ([fdo#109274] / [i915#5354]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [PASS][125] -> [FAIL][126] ([i915#2346]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html - shard-glk: [PASS][127] -> [FAIL][128] ([i915#2346]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#8827]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@kms_display_modes@extended-mode-basic.html * igt@kms_flip@2x-flip-vs-dpms: - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#3637]) +2 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][131] ([fdo#109274]) +1 similar issue [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@kms_flip@2x-modeset-vs-vblank-race.html - shard-rkl: NOTRUN -> [SKIP][132] ([fdo#111825]) +1 similar issue [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@flip-vs-expired-vblank@a-dp1: - shard-apl: [PASS][133] -> [FAIL][134] ([i915#79]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl7/igt@kms_flip@flip-vs-expired-vblank@a-dp1.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl2/igt@kms_flip@flip-vs-expired-vblank@a-dp1.html * igt@kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#8381]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-suspend@a-dp1: - shard-apl: [PASS][136] -> [ABORT][137] ([i915#180]) +1 similar issue [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl4/igt@kms_flip@flip-vs-suspend@a-dp1.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl1/igt@kms_flip@flip-vs-suspend@a-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#2672]) +1 similar issue [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#8810]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#2672]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg2: [PASS][141] -> [FAIL][142] ([i915#6880]) +1 similar issue [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][143] ([fdo#111825] / [i915#1825]) +6 similar issues [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#8708]) +5 similar issues [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][145] ([fdo#110189]) +5 similar issues [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#8708]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][147] ([fdo#109280]) +2 similar issues [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#1825]) +16 similar issues [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-snb: NOTRUN -> [SKIP][149] ([fdo#109271]) +70 similar issues [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-snb2/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#3023]) +5 similar issues [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#3458]) +3 similar issues [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html * igt@kms_hdr@static-toggle-suspend: - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#8228]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_hdr@static-toggle-suspend.html * igt@kms_plane_lowres@tiling-x@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#3582]) +3 similar issues [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-2: - shard-dg2: NOTRUN -> [FAIL][154] ([i915#8292]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-2.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#5176]) +7 similar issues [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#5176]) +3 similar issues [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-c-edp-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#5176]) +5 similar issues [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#5235]) +3 similar issues [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#5235]) +1 similar issue [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#5235]) +11 similar issues [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][161] ([fdo#111068] / [i915#658]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-6/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#1072]) +1 similar issue [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-7/igt@kms_psr@psr2_sprite_mmap_gtt.html - shard-rkl: NOTRUN -> [SKIP][163] ([i915#1072]) +1 similar issue [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-2/igt@kms_psr@psr2_sprite_mmap_gtt.html * igt@kms_rotation_crc@bad-pixel-format: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#4235]) +1 similar issue [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#5289]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_sysfs_edid_timing: - shard-dg2: [PASS][166] -> [FAIL][167] ([IGT#2]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-12/igt@kms_sysfs_edid_timing.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-10/igt@kms_sysfs_edid_timing.html * igt@kms_tv_load_detect@load-detect: - shard-tglu: NOTRUN -> [SKIP][168] ([fdo#109309]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-2/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@pipe-d-accuracy-idle: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#4070] / [i915#533] / [i915#6768]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-1/igt@kms_vblank@pipe-d-accuracy-idle.html * igt@kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#2437]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@kms_writeback@writeback-fb-id.html - shard-rkl: NOTRUN -> [SKIP][171] ([i915#2437]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@kms_writeback@writeback-fb-id.html - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#2437]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-invalid-parameters: - shard-tglu: NOTRUN -> [SKIP][173] ([i915#2437]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-4/igt@kms_writeback@writeback-invalid-parameters.html - shard-glk: NOTRUN -> [SKIP][174] ([fdo#109271] / [i915#2437]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk1/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@global-sseu-config-invalid: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#7387]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@perf@global-sseu-config-invalid.html * igt@prime_self_import@reimport-vs-gem_close-race: - shard-snb: [PASS][176] -> [FAIL][177] ([i915#7951]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-snb4/igt@prime_self_import@reimport-vs-gem_close-race.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-snb2/igt@prime_self_import@reimport-vs-gem_close-race.html - shard-mtlp: [PASS][178] -> [FAIL][179] ([i915#7951]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-3/igt@prime_self_import@reimport-vs-gem_close-race.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-8/igt@prime_self_import@reimport-vs-gem_close-race.html * igt@prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#3708] / [i915#4077]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-12/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3708]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@prime_vgem@fence-read-hang.html * igt@sysfs_timeslice_duration@timeout@vecs0: - shard-mtlp: [PASS][182] -> [ABORT][183] ([i915#8521]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@sysfs_timeslice_duration@timeout@vecs0.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@sysfs_timeslice_duration@timeout@vecs0.html * igt@v3d/v3d_get_param@base-params: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#2575]) +3 similar issues [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@v3d/v3d_get_param@base-params.html - shard-rkl: NOTRUN -> [SKIP][185] ([fdo#109315]) +1 similar issue [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-4/igt@v3d/v3d_get_param@base-params.html * igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync: - shard-tglu: NOTRUN -> [SKIP][186] ([fdo#109315] / [i915#2575]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-9/igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync.html * igt@v3d/v3d_submit_cl@single-out-sync: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#2575]) +7 similar issues [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@v3d/v3d_submit_cl@single-out-sync.html * igt@vc4/vc4_tiling@get-after-free: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#7711]) +3 similar issues [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@vc4/vc4_tiling@get-after-free.html * igt@vc4/vc4_tiling@get-bad-modifier: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#7711]) +1 similar issue [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@vc4/vc4_tiling@get-bad-modifier.html #### Possible fixes #### * igt@gem_ctx_persistence@engines-hang@vcs0: - shard-mtlp: [FAIL][190] ([i915#2410]) -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@gem_ctx_persistence@engines-hang@vcs0.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@gem_ctx_persistence@engines-hang@vcs0.html * igt@gem_eio@reset-stress: - shard-dg2: [FAIL][192] ([i915#5784]) -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-7/igt@gem_eio@reset-stress.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-5/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@full-pulse: - shard-dg2: [FAIL][194] ([i915#6032]) -> [PASS][195] [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-9/igt@gem_exec_balancer@full-pulse.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@gem_exec_balancer@full-pulse.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [FAIL][196] ([i915#2846]) -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-glk9/igt@gem_exec_fair@basic-deadline.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk9/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [FAIL][198] ([i915#2842]) -> [PASS][199] [198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-rkl: [FAIL][200] ([i915#2842]) -> [PASS][201] +1 similar issue [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-4/igt@gem_exec_fair@basic-throttle@rcs0.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-3/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_schedule@preemptive-hang@vcs0: - shard-mtlp: [FAIL][202] ([i915#7327]) -> [PASS][203] [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-5/igt@gem_exec_schedule@preemptive-hang@vcs0.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@gem_exec_schedule@preemptive-hang@vcs0.html * igt@gem_exec_whisper@basic-forked: - shard-mtlp: [FAIL][204] ([i915#6363]) -> [PASS][205] [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-3/igt@gem_exec_whisper@basic-forked.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-6/igt@gem_exec_whisper@basic-forked.html * igt@gem_lmem_swapping@smem-oom@lmem0: - {shard-dg1}: [TIMEOUT][206] ([i915#5493]) -> [PASS][207] [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [ABORT][208] ([i915#5566]) -> [PASS][209] [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-glk8/igt@gen9_exec_parse@allowed-single.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk8/igt@gen9_exec_parse@allowed-single.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [SKIP][210] ([fdo#109271]) -> [PASS][211] [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl2/igt@i915_pm_dc@dc9-dpms.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl4/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][212] ([i915#1397]) -> [PASS][213] [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-3/igt@i915_pm_rpm@dpms-lpsp.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [SKIP][214] ([i915#1397]) -> [PASS][215] +3 similar issues [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-10/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-3/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_selftest@live@sanitycheck: - shard-snb: [ABORT][216] ([i915#4528]) -> [PASS][217] [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-snb2/igt@i915_selftest@live@sanitycheck.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-snb2/igt@i915_selftest@live@sanitycheck.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1: - shard-mtlp: [FAIL][218] ([i915#2521]) -> [PASS][219] [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-8/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-3/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-glk: [FAIL][220] ([i915#72]) -> [PASS][221] [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-glk4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [FAIL][222] ([i915#2346]) -> [PASS][223] [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][224] ([i915#2122]) -> [PASS][225] [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: - shard-dg2: [FAIL][226] ([i915#6880]) -> [PASS][227] [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html * igt@kms_psr@psr2_primary_render: - shard-mtlp: [FAIL][228] ([i915#8726]) -> [PASS][229] [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-7/igt@kms_psr@psr2_primary_render.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-4/igt@kms_psr@psr2_primary_render.html * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend: - shard-dg2: [FAIL][230] ([fdo#103375] / [i915#6121]) -> [PASS][231] [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-5/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-8/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][232] ([i915#7757]) -> [PASS][233] [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-7/igt@perf@non-zero-reason@0-rcs0.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@semaphore-busy@ccs0: - shard-mtlp: [FAIL][234] ([i915#4349]) -> [PASS][235] [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-7/igt@perf_pmu@semaphore-busy@ccs0.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@perf_pmu@semaphore-busy@ccs0.html * igt@sysfs_heartbeat_interval@mixed@ccs0: - shard-mtlp: [ABORT][236] ([i915#8552]) -> [PASS][237] [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-6/igt@sysfs_heartbeat_interval@mixed@ccs0.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@sysfs_heartbeat_interval@mixed@ccs0.html * igt@sysfs_heartbeat_interval@mixed@vecs0: - shard-mtlp: [FAIL][238] ([i915#1731]) -> [PASS][239] [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-6/igt@sysfs_heartbeat_interval@mixed@vecs0.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@sysfs_heartbeat_interval@mixed@vecs0.html * igt@sysfs_heartbeat_interval@nopreempt@vcs0: - shard-mtlp: [FAIL][240] ([i915#6015]) -> [PASS][241] +5 similar issues [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-2/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html * igt@sysfs_heartbeat_interval@precise@vecs0: - shard-mtlp: [FAIL][242] ([i915#8332]) -> [PASS][243] [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-1/igt@sysfs_heartbeat_interval@precise@vecs0.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-5/igt@sysfs_heartbeat_interval@precise@vecs0.html #### Warnings #### * igt@gem_exec_whisper@basic-contexts-priority-all: - shard-mtlp: [FAIL][244] ([i915#6363]) -> [TIMEOUT][245] ([i915#7392]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-1/igt@gem_exec_whisper@basic-contexts-priority-all.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-1/igt@gem_exec_whisper@basic-contexts-priority-all.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-mtlp: [SKIP][246] ([fdo#109289]) -> [SKIP][247] ([fdo#109289] / [i915#8403]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-2/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@kms_content_protection@mei_interface: - shard-dg2: [SKIP][248] ([i915#7118] / [i915#7162]) -> [SKIP][249] ([i915#7118]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-12/igt@kms_content_protection@mei_interface.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-6/igt@kms_content_protection@mei_interface.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][250] ([i915#7118]) -> [SKIP][251] ([i915#7118] / [i915#7162]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-dg2-8/igt@kms_content_protection@type1.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-dg2-11/igt@kms_content_protection@type1.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: [DMESG-FAIL][252] ([i915#1982] / [i915#2017] / [i915#5954]) -> [DMESG-FAIL][253] ([i915#2017] / [i915#5954]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-mtlp-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-mtlp-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][254] ([i915#4816]) -> [SKIP][255] ([i915#4070] / [i915#4816]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13360/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5892]: https://gitlab.freedesktop.org/drm/intel/issues/5892 [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 [i915#6015]: https://gitlab.freedesktop.org/drm/intel/issues/6015 [i915#6032]: https://gitlab.freedesktop.org/drm/intel/issues/6032 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6363]: https://gitlab.freedesktop.org/drm/intel/issues/6363 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7327]: https://gitlab.freedesktop.org/drm/intel/issues/7327 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7757]: https://gitlab.freedesktop.org/drm/intel/issues/7757 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7892]: https://gitlab.freedesktop.org/drm/intel/issues/7892 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7951]: https://gitlab.freedesktop.org/drm/intel/issues/7951 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8104]: https://gitlab.freedesktop.org/drm/intel/issues/8104 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8332]: https://gitlab.freedesktop.org/drm/intel/issues/8332 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8431]: https://gitlab.freedesktop.org/drm/intel/issues/8431 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521 [i915#8552]: https://gitlab.freedesktop.org/drm/intel/issues/8552 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8726]: https://gitlab.freedesktop.org/drm/intel/issues/8726 [i915#8758]: https://gitlab.freedesktop.org/drm/intel/issues/8758 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8827]: https://gitlab.freedesktop.org/drm/intel/issues/8827 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7377 -> IGTPW_9372 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13360: 033ea4a472c5dc3646d343799a2971b4817acfb5 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9372: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/index.html IGT_7377: d1574543ba4bb322597345530053475c07be0eb9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9372/index.html [-- Attachment #2: Type: text/html, Size: 77739 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2023-07-11 7:40 UTC | newest] Thread overview: 16+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-07-10 4:43 [igt-dev] [PATCH i-g-t v9 0/4] Handle GT and tile seperation in IGT Himal Prasad Ghimiray 2023-07-10 4:43 ` [igt-dev] [PATCH i-g-t v9 1/4] lib/igt_sysfs: Add support to query number of tiles Himal Prasad Ghimiray 2023-07-10 6:34 ` Dixit, Ashutosh 2023-07-10 4:43 ` [igt-dev] [PATCH i-g-t v9 2/4] lib/igt_sysfs: Handling gt related sysfs uapi changes Himal Prasad Ghimiray 2023-07-10 6:35 ` Dixit, Ashutosh 2023-07-10 4:43 ` [igt-dev] [PATCH i-g-t v9 3/4] tests/xe/xe_guc_pc: Change the sysfs paths Himal Prasad Ghimiray 2023-07-10 6:36 ` Dixit, Ashutosh 2023-07-10 4:43 ` [igt-dev] [PATCH i-g-t v9 4/4] tests/xe/xe_sysfs_tile: adds new test to verify per tile vram addr_range Himal Prasad Ghimiray 2023-07-10 6:38 ` Dixit, Ashutosh 2023-07-10 5:38 ` [igt-dev] ✓ Fi.CI.BAT: success for Handle GT and tile seperation in IGT (rev8) Patchwork 2023-07-10 5:45 ` [igt-dev] ○ CI.xeBAT: info " Patchwork 2023-07-10 6:52 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-07-10 13:36 ` Kamil Konieczny 2023-07-11 7:40 ` Yedireswarapu, SaiX Nandan 2023-07-11 6:55 ` Patchwork 2023-07-11 7:29 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox