* [igt-dev] [PATCH v4 0/4] Handle GT and tile seperation in IGT
@ 2023-06-27 18:08 Himal Prasad Ghimiray
2023-06-27 18:08 ` [igt-dev] [PATCH v4 1/4] lib/igt_sysfs: Add support to query number of tiles Himal Prasad Ghimiray
` (6 more replies)
0 siblings, 7 replies; 17+ messages in thread
From: Himal Prasad Ghimiray @ 2023-06-27 18:08 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: 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_prop: adds new test to verify per tile vram
addr_range
lib/igt_sysfs.c | 30 +++++
lib/igt_sysfs.h | 14 +++
tests/meson.build | 1 +
tests/xe/xe_guc_pc.c | 202 +++++++++++++++++-----------------
tests/xe/xe_sysfs_tile_prop.c | 63 +++++++++++
5 files changed, 210 insertions(+), 100 deletions(-)
create mode 100644 tests/xe/xe_sysfs_tile_prop.c
--
2.25.1
^ permalink raw reply [flat|nested] 17+ messages in thread* [igt-dev] [PATCH v4 1/4] lib/igt_sysfs: Add support to query number of tiles 2023-06-27 18:08 [igt-dev] [PATCH v4 0/4] Handle GT and tile seperation in IGT Himal Prasad Ghimiray @ 2023-06-27 18:08 ` Himal Prasad Ghimiray 2023-07-01 17:09 ` Dixit, Ashutosh 2023-06-27 18:08 ` [igt-dev] [PATCH v4 2/4] lib/igt_sysfs: Handling gt related sysfs uapi changes Himal Prasad Ghimiray ` (5 subsequent siblings) 6 siblings, 1 reply; 17+ messages in thread From: Himal Prasad Ghimiray @ 2023-06-27 18:08 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. Reviewed-by: Upadhyay <tejas.upadhyay@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 | 30 ++++++++++++++++++++++++++++++ lib/igt_sysfs.h | 8 ++++++++ 2 files changed, 38 insertions(+) diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c index 35a4faa9..495b0288 100644 --- a/lib/igt_sysfs.c +++ b/lib/igt_sysfs.c @@ -287,6 +287,36 @@ int igt_sysfs_get_num_gt(int device) return num_gts; } +/** + * igt_sysfs_get_num_tiles: + * @device: fd of the device + * + * Reads number of tiles sysfs entries. + * Asserts for at least one tile entry. + * + * Returns: Number of tiles. + */ +int igt_sysfs_get_num_tiles(int device) +{ + int num_tiles; + char sysfs[48]; + char tiledir[96]; + + num_tiles =0; + if (!igt_sysfs_path(device, sysfs, sizeof(sysfs))) + return -1; + + do { + igt_assert(snprintf(tiledir, sizeof(tiledir), "%s/device/tile%d", + sysfs, num_tiles) < sizeof(tiledir)); + num_tiles++; + } while (!access(tiledir, F_OK)); + + num_tiles--; + igt_assert_f(num_tiles > 0, "No tiles sysfs entry is found."); + return num_tiles; +} + /** * igt_sysfs_write: * @dir: directory for the device from igt_sysfs_open() diff --git a/lib/igt_sysfs.h b/lib/igt_sysfs.h index 978b6906..de2c9a86 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__, tile__, tile_cnt__) \ + for (tile__ = 0, tile_cnt__ = igt_sysfs_get_num_tiles(xe__); \ + tile__ < tile_cnt__; \ + ++tile__) + #define i915_for_each_gt for_each_sysfs_gt_dirfd #define igt_sysfs_rps_write(dir, id, data, len) \ @@ -73,6 +78,8 @@ #define igt_sysfs_rps_set_boolean(dir, id, value) \ igt_sysfs_set_boolean(dir, igt_sysfs_dir_id_to_name(dir, id), value) +#define xe_for_each_tile for_each_sysfs_tile_dirfd + enum i915_attr_id { RPS_ACT_FREQ_MHZ, RPS_CUR_FREQ_MHZ, @@ -97,6 +104,7 @@ int igt_sysfs_open(int device); char *igt_sysfs_gt_path(int device, int gt, char *path, int pathlen); int igt_sysfs_gt_open(int device, int gt); int igt_sysfs_get_num_gt(int device); +int igt_sysfs_get_num_tiles(int device); bool igt_sysfs_has_attr(int dir, const char *attr); const char *igt_sysfs_dir_id_to_name(int dir, enum i915_attr_id id); const char *igt_sysfs_path_id_to_name(const char *path, enum i915_attr_id id); -- 2.25.1 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* Re: [igt-dev] [PATCH v4 1/4] lib/igt_sysfs: Add support to query number of tiles 2023-06-27 18:08 ` [igt-dev] [PATCH v4 1/4] lib/igt_sysfs: Add support to query number of tiles Himal Prasad Ghimiray @ 2023-07-01 17:09 ` Dixit, Ashutosh 2023-07-04 4:41 ` Ghimiray, Himal Prasad 0 siblings, 1 reply; 17+ messages in thread From: Dixit, Ashutosh @ 2023-07-01 17:09 UTC (permalink / raw) To: Himal Prasad Ghimiray; +Cc: igt-dev, Upadhyay On Tue, 27 Jun 2023 11:08:02 -0700, Himal Prasad Ghimiray wrote: > Hi Himal, > diff --git a/lib/igt_sysfs.h b/lib/igt_sysfs.h > index 978b6906..de2c9a86 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__, tile__, tile_cnt__) \ > + for (tile__ = 0, tile_cnt__ = igt_sysfs_get_num_tiles(xe__); \ > + tile__ < tile_cnt__; \ > + ++tile__) > + You did not answer the question I asked previously about this: "Where is dirfd here which should be a fd to an open sysfs directory as in for_each_sysfs_gt_dirfd?" > #define i915_for_each_gt for_each_sysfs_gt_dirfd > > #define igt_sysfs_rps_write(dir, id, data, len) \ > @@ -73,6 +78,8 @@ > #define igt_sysfs_rps_set_boolean(dir, id, value) \ > igt_sysfs_set_boolean(dir, igt_sysfs_dir_id_to_name(dir, id), value) > > +#define xe_for_each_tile for_each_sysfs_tile_dirfd I think let's just do this and get rid of for_each_sysfs_tile_dirfd: #define xe_for_each_tile(xe__, tile__, tile_cnt__) \ for (tile__ = 0, tile_cnt__ = igt_sysfs_get_num_tiles(xe__); \ tile__ < tile_cnt__; \ ++tile__) > + > enum i915_attr_id { > RPS_ACT_FREQ_MHZ, > RPS_CUR_FREQ_MHZ, > @@ -97,6 +104,7 @@ int igt_sysfs_open(int device); > char *igt_sysfs_gt_path(int device, int gt, char *path, int pathlen); > int igt_sysfs_gt_open(int device, int gt); > int igt_sysfs_get_num_gt(int device); > +int igt_sysfs_get_num_tiles(int device); > bool igt_sysfs_has_attr(int dir, const char *attr); > const char *igt_sysfs_dir_id_to_name(int dir, enum i915_attr_id id); > const char *igt_sysfs_path_id_to_name(const char *path, enum i915_attr_id id); > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [igt-dev] [PATCH v4 1/4] lib/igt_sysfs: Add support to query number of tiles 2023-07-01 17:09 ` Dixit, Ashutosh @ 2023-07-04 4:41 ` Ghimiray, Himal Prasad 0 siblings, 0 replies; 17+ messages in thread From: Ghimiray, Himal Prasad @ 2023-07-04 4:41 UTC (permalink / raw) To: Dixit, Ashutosh; +Cc: igt-dev@lists.freedesktop.org, Upadhyay, Tejas > -----Original Message----- > From: Dixit, Ashutosh <ashutosh.dixit@intel.com> > Sent: 01 July 2023 22:39 > To: Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com> > Cc: igt-dev@lists.freedesktop.org; Upadhyay, Tejas > <tejas.upadhyay@intel.com>; Kamil Konieczny > <kamil.konieczny@linux.intel.com> > Subject: Re: [igt-dev] [PATCH v4 1/4] lib/igt_sysfs: Add support to query > number of tiles > > On Tue, 27 Jun 2023 11:08:02 -0700, Himal Prasad Ghimiray wrote: > > > > Hi Himal, > > > diff --git a/lib/igt_sysfs.h b/lib/igt_sysfs.h index > > 978b6906..de2c9a86 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__, tile__, tile_cnt__) \ > > + for (tile__ = 0, tile_cnt__ = igt_sysfs_get_num_tiles(xe__); \ > > + tile__ < tile_cnt__; \ > > + ++tile__) > > + > > You did not answer the question I asked previously about this: > > "Where is dirfd here which should be a fd to an open sysfs directory as in > for_each_sysfs_gt_dirfd?" > > > #define i915_for_each_gt for_each_sysfs_gt_dirfd > > > > > #define igt_sysfs_rps_write(dir, id, data, len) \ @@ -73,6 +78,8 @@ > > #define igt_sysfs_rps_set_boolean(dir, id, value) \ > > igt_sysfs_set_boolean(dir, igt_sysfs_dir_id_to_name(dir, id), value) > > > > +#define xe_for_each_tile for_each_sysfs_tile_dirfd > > I think let's just do this and get rid of for_each_sysfs_tile_dirfd: > > #define xe_for_each_tile(xe__, tile__, tile_cnt__) \ > for (tile__ = 0, tile_cnt__ = igt_sysfs_get_num_tiles(xe__); \ > tile__ < tile_cnt__; \ > ++tile__) > Agreed. Will address in next patch. > > + > > enum i915_attr_id { > > RPS_ACT_FREQ_MHZ, > > RPS_CUR_FREQ_MHZ, > > @@ -97,6 +104,7 @@ int igt_sysfs_open(int device); > > char *igt_sysfs_gt_path(int device, int gt, char *path, int pathlen); > > int igt_sysfs_gt_open(int device, int gt); > > int igt_sysfs_get_num_gt(int device); > > +int igt_sysfs_get_num_tiles(int device); > > bool igt_sysfs_has_attr(int dir, const char *attr); const char > > *igt_sysfs_dir_id_to_name(int dir, enum i915_attr_id id); const char > > *igt_sysfs_path_id_to_name(const char *path, enum i915_attr_id id); > > -- > > 2.25.1 > > ^ permalink raw reply [flat|nested] 17+ messages in thread
* [igt-dev] [PATCH v4 2/4] lib/igt_sysfs: Handling gt related sysfs uapi changes 2023-06-27 18:08 [igt-dev] [PATCH v4 0/4] Handle GT and tile seperation in IGT Himal Prasad Ghimiray 2023-06-27 18:08 ` [igt-dev] [PATCH v4 1/4] lib/igt_sysfs: Add support to query number of tiles Himal Prasad Ghimiray @ 2023-06-27 18:08 ` Himal Prasad Ghimiray 2023-06-27 18:08 ` [igt-dev] [PATCH v4 3/4] tests/xe/xe_guc_pc: Change the sysfs paths Himal Prasad Ghimiray ` (4 subsequent siblings) 6 siblings, 0 replies; 17+ messages in thread From: Himal Prasad Ghimiray @ 2023-06-27 18:08 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_for_each_gt_under_each_tile macro 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) Reviewed-by: Upadhyay <tejas.upadhyay@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.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/igt_sysfs.h b/lib/igt_sysfs.h index de2c9a86..e4a0451b 100644 --- a/lib/igt_sysfs.h +++ b/lib/igt_sysfs.h @@ -80,6 +80,12 @@ #define xe_for_each_tile for_each_sysfs_tile_dirfd +/* FIXME: Need to revisit if GT indexing under TILE changes from KMD */ +#define xe_for_each_gt_under_each_tile(xe__, tile__, gt__) \ + for (gt__ = 0, tile__ = 0; \ + gt__ < xe_number_gt(xe__); \ + (xe_number_gt(xe__) == igt_sysfs_get_num_tiles(xe__)) ? ++gt__, ++tile__ : ++gt__) + enum i915_attr_id { RPS_ACT_FREQ_MHZ, RPS_CUR_FREQ_MHZ, -- 2.25.1 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* [igt-dev] [PATCH v4 3/4] tests/xe/xe_guc_pc: Change the sysfs paths 2023-06-27 18:08 [igt-dev] [PATCH v4 0/4] Handle GT and tile seperation in IGT Himal Prasad Ghimiray 2023-06-27 18:08 ` [igt-dev] [PATCH v4 1/4] lib/igt_sysfs: Add support to query number of tiles Himal Prasad Ghimiray 2023-06-27 18:08 ` [igt-dev] [PATCH v4 2/4] lib/igt_sysfs: Handling gt related sysfs uapi changes Himal Prasad Ghimiray @ 2023-06-27 18:08 ` Himal Prasad Ghimiray 2023-06-30 17:33 ` Kamil Konieczny 2023-07-01 17:58 ` Dixit, Ashutosh 2023-06-27 18:08 ` [igt-dev] [PATCH v4 4/4] tests/xe/xe_sysfs_tile_prop: adds new test to verify per tile vram addr_range Himal Prasad Ghimiray ` (3 subsequent siblings) 6 siblings, 2 replies; 17+ messages in thread From: Himal Prasad Ghimiray @ 2023-06-27 18:08 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 Reviewed-by: Upadhyay <tejas.upadhyay@intel.com> 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 | 202 ++++++++++++++++++++++--------------------- 1 file changed, 102 insertions(+), 100 deletions(-) diff --git a/tests/xe/xe_guc_pc.c b/tests/xe/xe_guc_pc.c index 89d5ae9e..2900ff09 100644 --- a/tests/xe/xe_guc_pc.c +++ b/tests/xe/xe_guc_pc.c @@ -133,23 +133,25 @@ 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 sysfs, int tile_id, int gt_id, const char *freq_name, uint32_t freq) { int ret = -EAGAIN; char path[32]; - sprintf(path, "device/gt%d/freq_%s", gt_id, freq_name); + igt_assert(snprintf(path, sizeof(path), "device/tile%d/gt%d/freq_%s", + tile_id, gt_id, freq_name) < sizeof(path)); while (ret == -EAGAIN) ret = igt_sysfs_printf(sysfs, path, "%u", freq); return ret; } -static uint32_t get_freq(int sysfs, int gt_id, const char *freq_name) +static uint32_t get_freq(int sysfs, int tile_id, 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); + igt_assert(snprintf(path, sizeof(path), "device/tile%d/gt%d/freq_%s", + tile_id, gt_id, freq_name) < sizeof(path)); while (err == -EAGAIN) err = igt_sysfs_scanf(sysfs, path, "%u", &freq); return freq; @@ -162,37 +164,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 sysfs, int tile_id, 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(sysfs, tile_id, gt_id, "rpn"); + uint32_t rpe = get_freq(sysfs, tile_id, gt_id, "rpe"); + uint32_t rp0 = get_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "min", rpn - 1) < 0); + igt_assert(set_freq(sysfs, tile_id, gt_id, "min", rp0 + 1) < 0); + igt_assert(set_freq(sysfs, tile_id, gt_id, "max", rpn - 1) < 0); + igt_assert(set_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "min", rp0) > 0); + igt_assert(get_freq(sysfs, tile_id, gt_id, "min") == rp0); + igt_assert(set_freq(sysfs, tile_id, gt_id, "min", rpe) > 0); + igt_assert(get_freq(sysfs, tile_id, gt_id, "min") == rpe); + igt_assert(set_freq(sysfs, tile_id, gt_id, "min", rpn) > 0); + igt_assert(get_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "max", rpn) > 0); + igt_assert(get_freq(sysfs, tile_id, gt_id, "max") == rpn); + igt_assert(set_freq(sysfs, tile_id, gt_id, "max", rpe) > 0); + igt_assert(get_freq(sysfs, tile_id, gt_id, "max") == rpe); + igt_assert(set_freq(sysfs, tile_id, gt_id, "max", rp0) > 0); + igt_assert(get_freq(sysfs, tile_id, gt_id, "max") == rp0); } /** @@ -205,11 +207,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 sysfs, int tile_id, 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(sysfs, tile_id, gt_id, "rpn"); + uint32_t rpe = get_freq(sysfs, tile_id, gt_id, "rpe"); + uint32_t rp0 = get_freq(sysfs, tile_id, gt_id, "rp0"); igt_debug("Starting testing fixed request\n"); @@ -218,27 +220,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(sysfs, tile_id, gt_id, "min", rpn) > 0); + igt_assert(set_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "cur") == rpn); + igt_assert(get_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "min", rpe) > 0); + igt_assert(set_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "cur") == rpe); + igt_assert(get_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "min", rp0) > 0); + igt_assert(set_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "cur") == rp0); igt_debug("Finished testing fixed request\n"); } @@ -253,20 +255,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 sysfs, int tile_id, 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(sysfs, tile_id, gt_id, "rpn"); + uint32_t rpe = get_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "min", rpn) > 0); + igt_assert(set_freq(sysfs, tile_id, gt_id, "max", rpe) > 0); usleep(ACT_FREQ_LATENCY_US); - cur = get_freq(sysfs, gt_id, "cur"); + cur = get_freq(sysfs, tile_id, gt_id, "cur"); igt_assert(rpn <= cur && cur <= rpe); - act = get_freq(sysfs, gt_id, "act"); + act = get_freq(sysfs, tile_id, gt_id, "act"); igt_assert(rpn <= act && act <= rpe); igt_debug("Finished testing range request\n"); @@ -278,20 +280,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 sysfs, int tile_id, 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(sysfs, tile_id, gt_id, "rpn"); + uint32_t rpe = get_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "min", rpe) > 0); + igt_assert(set_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "cur") == rpe); + igt_assert(get_freq(sysfs, tile_id, gt_id, "act") == rpe); } /** @@ -300,20 +302,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 sysfs, int tile_id, int gt_id) { - uint32_t rpn = get_freq(sysfs, gt_id, "rpn"); + uint32_t rpn = get_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "min", rpn) > 0); + igt_assert(set_freq(sysfs, tile_id, gt_id, "max", rpn) > 0); usleep(ACT_FREQ_LATENCY_US); - igt_assert(get_freq(sysfs, gt_id, "cur") == rpn); + igt_assert(get_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "min") == rpn); + igt_assert(get_freq(sysfs, tile_id, gt_id, "max") == rpn); } /** @@ -326,24 +328,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 sysfs, int tile_id, int gt_id, int cycles) { - uint32_t rpn = get_freq(sysfs, gt_id, "rpn"); + uint32_t rpn = get_freq(sysfs, tile_id, 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(sysfs, tile_id, 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(sysfs, tile_id, 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(sysfs, tile_id, 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(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "max") == rpn, "Failed after %d good cycles\n", i); } } @@ -359,11 +361,11 @@ static void test_reset(int fd, int sysfs, int gt_id, int cycles) * Run type: BAT */ -static bool in_rc6(int sysfs, int gt_id) +static bool in_rc6(int sysfs, int tile_id, int gt_id) { - char path[32]; + char path[40]; char rc[8]; - sprintf(path, "device/gt%d/rc_status", gt_id); + sprintf(path, "device/tile%d/gt%d/rc_status", tile_id, gt_id); if (igt_sysfs_scanf(sysfs, path, "%s", rc) < 0) return false; return strcmp(rc, "rc6") == 0; @@ -373,7 +375,7 @@ igt_main { struct drm_xe_engine_class_instance *hwe; int fd; - int gt; + int gt, tile; static int sysfs = -1; int ncpus = sysconf(_SC_NPROCESSORS_ONLN); uint32_t stash_min; @@ -386,24 +388,24 @@ igt_main 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"); + /* The defaults are the same. Stashing the gt0 in tile0 is enough */ + stash_min = get_freq(sysfs, 0, 0, "min"); + stash_max = get_freq(sysfs, 0, 0, "max"); } igt_subtest("freq_basic_api") { - xe_for_each_gt(fd, gt) - test_freq_basic_api(sysfs, gt); + xe_for_each_gt_under_each_tile(fd, tile, gt) + test_freq_basic_api(sysfs, tile, gt); } igt_subtest("freq_fixed_idle") { - xe_for_each_gt(fd, gt) { - test_freq_fixed(sysfs, gt); + xe_for_each_gt_under_each_tile(fd, tile, gt) { + test_freq_fixed(sysfs, tile, gt); } } igt_subtest("freq_fixed_exec") { - xe_for_each_gt(fd, gt) { + xe_for_each_gt_under_each_tile(fd, tile, gt) { xe_for_each_hw_engine(fd, hwe) igt_fork(child, ncpus) { igt_debug("Execution Started\n"); @@ -411,19 +413,19 @@ 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(sysfs, tile, gt); igt_waitchildren(); } } igt_subtest("freq_range_idle") { - xe_for_each_gt(fd, gt) { - test_freq_range(sysfs, gt); + xe_for_each_gt_under_each_tile(fd, tile, gt) { + test_freq_range(sysfs, tile, gt); } } igt_subtest("freq_range_exec") { - xe_for_each_gt(fd, gt) { + xe_for_each_gt_under_each_tile(fd, tile, gt) { xe_for_each_hw_engine(fd, hwe) igt_fork(child, ncpus) { igt_debug("Execution Started\n"); @@ -431,46 +433,46 @@ 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(sysfs, tile, gt); igt_waitchildren(); } } igt_subtest("freq_low_max") { - xe_for_each_gt(fd, gt) { - test_freq_low_max(sysfs, gt); + xe_for_each_gt_under_each_tile(fd, tile, gt) { + test_freq_low_max(sysfs, tile, gt); } } igt_subtest("freq_suspend") { - xe_for_each_gt(fd, gt) { - test_suspend(sysfs, gt); + xe_for_each_gt_under_each_tile(fd, tile, gt) { + test_suspend(sysfs, tile, gt); } } igt_subtest("freq_reset") { - xe_for_each_gt(fd, gt) { - test_reset(fd, sysfs, gt, 1); + xe_for_each_gt_under_each_tile(fd, tile, gt) { + test_reset(fd, sysfs, tile, gt, 1); } } igt_subtest("freq_reset_multiple") { - xe_for_each_gt(fd, gt) { - test_reset(fd, sysfs, gt, 50); + xe_for_each_gt_under_each_tile(fd, tile, gt) { + test_reset(fd, sysfs, tile, gt, 50); } } igt_subtest("rc6_on_idle") { igt_require(!IS_PONTEVECCHIO(xe_dev_id(fd))); - xe_for_each_gt(fd, gt) { - assert(igt_wait(in_rc6(sysfs, gt), 1000, 1)); + xe_for_each_gt_under_each_tile(fd, tile, gt) { + assert(igt_wait(in_rc6(sysfs, tile, gt), 1000, 1)); } } igt_subtest("rc0_on_exec") { igt_require(!IS_PONTEVECCHIO(xe_dev_id(fd))); - xe_for_each_gt(fd, gt) { - assert(igt_wait(in_rc6(sysfs, gt), 1000, 1)); + xe_for_each_gt_under_each_tile(fd, tile, gt) { + assert(igt_wait(in_rc6(sysfs, tile, gt), 1000, 1)); xe_for_each_hw_engine(fd, hwe) igt_fork(child, ncpus) { igt_debug("Execution Started\n"); @@ -478,15 +480,15 @@ igt_main igt_debug("Execution Finished\n"); } /* While exec in threads above, let's check rc_status */ - assert(igt_wait(!in_rc6(sysfs, gt), 1000, 1)); + assert(igt_wait(!in_rc6(sysfs, tile, gt), 1000, 1)); igt_waitchildren(); } } igt_fixture { - xe_for_each_gt(fd, gt) { - set_freq(sysfs, gt, "min", stash_min); - set_freq(sysfs, gt, "max", stash_max); + xe_for_each_gt_under_each_tile(fd, tile, gt) { + set_freq(sysfs, tile, gt, "min", stash_min); + set_freq(sysfs, tile, gt, "max", stash_max); } close(sysfs); xe_device_put(fd); -- 2.25.1 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* Re: [igt-dev] [PATCH v4 3/4] tests/xe/xe_guc_pc: Change the sysfs paths 2023-06-27 18:08 ` [igt-dev] [PATCH v4 3/4] tests/xe/xe_guc_pc: Change the sysfs paths Himal Prasad Ghimiray @ 2023-06-30 17:33 ` Kamil Konieczny 2023-07-05 8:31 ` Ghimiray, Himal Prasad 2023-07-01 17:58 ` Dixit, Ashutosh 1 sibling, 1 reply; 17+ messages in thread From: Kamil Konieczny @ 2023-06-30 17:33 UTC (permalink / raw) To: igt-dev; +Cc: Upadhyay, Badal Nilawar Hi Himal, On 2023-06-27 at 23:38:04 +0530, 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 > > Reviewed-by: Upadhyay <tejas.upadhyay@intel.com> > 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 | 202 ++++++++++++++++++++++--------------------- > 1 file changed, 102 insertions(+), 100 deletions(-) > > diff --git a/tests/xe/xe_guc_pc.c b/tests/xe/xe_guc_pc.c > index 89d5ae9e..2900ff09 100644 > --- a/tests/xe/xe_guc_pc.c > +++ b/tests/xe/xe_guc_pc.c > @@ -133,23 +133,25 @@ 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 sysfs, int tile_id, int gt_id, const char *freq_name, uint32_t freq) > { > int ret = -EAGAIN; > char path[32]; > > - sprintf(path, "device/gt%d/freq_%s", gt_id, freq_name); > + igt_assert(snprintf(path, sizeof(path), "device/tile%d/gt%d/freq_%s", > + tile_id, gt_id, freq_name) < sizeof(path)); Could you make it work for bot old and new uAPI? > while (ret == -EAGAIN) > ret = igt_sysfs_printf(sysfs, path, "%u", freq); Maybe add here: if (ret == -ENOENT) { /* use old path */ } > return ret; > } > > -static uint32_t get_freq(int sysfs, int gt_id, const char *freq_name) > +static uint32_t get_freq(int sysfs, int tile_id, 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); > + igt_assert(snprintf(path, sizeof(path), "device/tile%d/gt%d/freq_%s", > + tile_id, gt_id, freq_name) < sizeof(path)); This is the same code as above, maybe create a function for it, check for ENOENT and use old path? Or check old one first and if failed with ENOENT use new. Regards, Kamil > while (err == -EAGAIN) > err = igt_sysfs_scanf(sysfs, path, "%u", &freq); > return freq; > @@ -162,37 +164,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 sysfs, int tile_id, 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(sysfs, tile_id, gt_id, "rpn"); > + uint32_t rpe = get_freq(sysfs, tile_id, gt_id, "rpe"); > + uint32_t rp0 = get_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "min", rpn - 1) < 0); > + igt_assert(set_freq(sysfs, tile_id, gt_id, "min", rp0 + 1) < 0); > + igt_assert(set_freq(sysfs, tile_id, gt_id, "max", rpn - 1) < 0); > + igt_assert(set_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "min", rp0) > 0); > + igt_assert(get_freq(sysfs, tile_id, gt_id, "min") == rp0); > + igt_assert(set_freq(sysfs, tile_id, gt_id, "min", rpe) > 0); > + igt_assert(get_freq(sysfs, tile_id, gt_id, "min") == rpe); > + igt_assert(set_freq(sysfs, tile_id, gt_id, "min", rpn) > 0); > + igt_assert(get_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "max", rpn) > 0); > + igt_assert(get_freq(sysfs, tile_id, gt_id, "max") == rpn); > + igt_assert(set_freq(sysfs, tile_id, gt_id, "max", rpe) > 0); > + igt_assert(get_freq(sysfs, tile_id, gt_id, "max") == rpe); > + igt_assert(set_freq(sysfs, tile_id, gt_id, "max", rp0) > 0); > + igt_assert(get_freq(sysfs, tile_id, gt_id, "max") == rp0); > } > > /** > @@ -205,11 +207,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 sysfs, int tile_id, 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(sysfs, tile_id, gt_id, "rpn"); > + uint32_t rpe = get_freq(sysfs, tile_id, gt_id, "rpe"); > + uint32_t rp0 = get_freq(sysfs, tile_id, gt_id, "rp0"); > > igt_debug("Starting testing fixed request\n"); > > @@ -218,27 +220,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(sysfs, tile_id, gt_id, "min", rpn) > 0); > + igt_assert(set_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "cur") == rpn); > + igt_assert(get_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "min", rpe) > 0); > + igt_assert(set_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "cur") == rpe); > + igt_assert(get_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "min", rp0) > 0); > + igt_assert(set_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "cur") == rp0); > > igt_debug("Finished testing fixed request\n"); > } > @@ -253,20 +255,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 sysfs, int tile_id, 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(sysfs, tile_id, gt_id, "rpn"); > + uint32_t rpe = get_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "min", rpn) > 0); > + igt_assert(set_freq(sysfs, tile_id, gt_id, "max", rpe) > 0); > usleep(ACT_FREQ_LATENCY_US); > - cur = get_freq(sysfs, gt_id, "cur"); > + cur = get_freq(sysfs, tile_id, gt_id, "cur"); > igt_assert(rpn <= cur && cur <= rpe); > - act = get_freq(sysfs, gt_id, "act"); > + act = get_freq(sysfs, tile_id, gt_id, "act"); > igt_assert(rpn <= act && act <= rpe); > > igt_debug("Finished testing range request\n"); > @@ -278,20 +280,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 sysfs, int tile_id, 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(sysfs, tile_id, gt_id, "rpn"); > + uint32_t rpe = get_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "min", rpe) > 0); > + igt_assert(set_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "cur") == rpe); > + igt_assert(get_freq(sysfs, tile_id, gt_id, "act") == rpe); > } > > /** > @@ -300,20 +302,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 sysfs, int tile_id, int gt_id) > { > - uint32_t rpn = get_freq(sysfs, gt_id, "rpn"); > + uint32_t rpn = get_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "min", rpn) > 0); > + igt_assert(set_freq(sysfs, tile_id, gt_id, "max", rpn) > 0); > usleep(ACT_FREQ_LATENCY_US); > - igt_assert(get_freq(sysfs, gt_id, "cur") == rpn); > + igt_assert(get_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "min") == rpn); > + igt_assert(get_freq(sysfs, tile_id, gt_id, "max") == rpn); > } > > /** > @@ -326,24 +328,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 sysfs, int tile_id, int gt_id, int cycles) > { > - uint32_t rpn = get_freq(sysfs, gt_id, "rpn"); > + uint32_t rpn = get_freq(sysfs, tile_id, 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(sysfs, tile_id, 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(sysfs, tile_id, 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(sysfs, tile_id, 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(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "max") == rpn, > "Failed after %d good cycles\n", i); > } > } > @@ -359,11 +361,11 @@ static void test_reset(int fd, int sysfs, int gt_id, int cycles) > * Run type: BAT > */ > > -static bool in_rc6(int sysfs, int gt_id) > +static bool in_rc6(int sysfs, int tile_id, int gt_id) > { > - char path[32]; > + char path[40]; > char rc[8]; > - sprintf(path, "device/gt%d/rc_status", gt_id); > + sprintf(path, "device/tile%d/gt%d/rc_status", tile_id, gt_id); > if (igt_sysfs_scanf(sysfs, path, "%s", rc) < 0) > return false; > return strcmp(rc, "rc6") == 0; > @@ -373,7 +375,7 @@ igt_main > { > struct drm_xe_engine_class_instance *hwe; > int fd; > - int gt; > + int gt, tile; > static int sysfs = -1; > int ncpus = sysconf(_SC_NPROCESSORS_ONLN); > uint32_t stash_min; > @@ -386,24 +388,24 @@ igt_main > 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"); > + /* The defaults are the same. Stashing the gt0 in tile0 is enough */ > + stash_min = get_freq(sysfs, 0, 0, "min"); > + stash_max = get_freq(sysfs, 0, 0, "max"); > } > > igt_subtest("freq_basic_api") { > - xe_for_each_gt(fd, gt) > - test_freq_basic_api(sysfs, gt); > + xe_for_each_gt_under_each_tile(fd, tile, gt) > + test_freq_basic_api(sysfs, tile, gt); > } > > igt_subtest("freq_fixed_idle") { > - xe_for_each_gt(fd, gt) { > - test_freq_fixed(sysfs, gt); > + xe_for_each_gt_under_each_tile(fd, tile, gt) { > + test_freq_fixed(sysfs, tile, gt); > } > } > > igt_subtest("freq_fixed_exec") { > - xe_for_each_gt(fd, gt) { > + xe_for_each_gt_under_each_tile(fd, tile, gt) { > xe_for_each_hw_engine(fd, hwe) > igt_fork(child, ncpus) { > igt_debug("Execution Started\n"); > @@ -411,19 +413,19 @@ 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(sysfs, tile, gt); > igt_waitchildren(); > } > } > > igt_subtest("freq_range_idle") { > - xe_for_each_gt(fd, gt) { > - test_freq_range(sysfs, gt); > + xe_for_each_gt_under_each_tile(fd, tile, gt) { > + test_freq_range(sysfs, tile, gt); > } > } > > igt_subtest("freq_range_exec") { > - xe_for_each_gt(fd, gt) { > + xe_for_each_gt_under_each_tile(fd, tile, gt) { > xe_for_each_hw_engine(fd, hwe) > igt_fork(child, ncpus) { > igt_debug("Execution Started\n"); > @@ -431,46 +433,46 @@ 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(sysfs, tile, gt); > igt_waitchildren(); > } > } > > igt_subtest("freq_low_max") { > - xe_for_each_gt(fd, gt) { > - test_freq_low_max(sysfs, gt); > + xe_for_each_gt_under_each_tile(fd, tile, gt) { > + test_freq_low_max(sysfs, tile, gt); > } > } > > igt_subtest("freq_suspend") { > - xe_for_each_gt(fd, gt) { > - test_suspend(sysfs, gt); > + xe_for_each_gt_under_each_tile(fd, tile, gt) { > + test_suspend(sysfs, tile, gt); > } > } > > igt_subtest("freq_reset") { > - xe_for_each_gt(fd, gt) { > - test_reset(fd, sysfs, gt, 1); > + xe_for_each_gt_under_each_tile(fd, tile, gt) { > + test_reset(fd, sysfs, tile, gt, 1); > } > } > > igt_subtest("freq_reset_multiple") { > - xe_for_each_gt(fd, gt) { > - test_reset(fd, sysfs, gt, 50); > + xe_for_each_gt_under_each_tile(fd, tile, gt) { > + test_reset(fd, sysfs, tile, gt, 50); > } > } > > igt_subtest("rc6_on_idle") { > igt_require(!IS_PONTEVECCHIO(xe_dev_id(fd))); > - xe_for_each_gt(fd, gt) { > - assert(igt_wait(in_rc6(sysfs, gt), 1000, 1)); > + xe_for_each_gt_under_each_tile(fd, tile, gt) { > + assert(igt_wait(in_rc6(sysfs, tile, gt), 1000, 1)); > } > } > > igt_subtest("rc0_on_exec") { > igt_require(!IS_PONTEVECCHIO(xe_dev_id(fd))); > - xe_for_each_gt(fd, gt) { > - assert(igt_wait(in_rc6(sysfs, gt), 1000, 1)); > + xe_for_each_gt_under_each_tile(fd, tile, gt) { > + assert(igt_wait(in_rc6(sysfs, tile, gt), 1000, 1)); > xe_for_each_hw_engine(fd, hwe) > igt_fork(child, ncpus) { > igt_debug("Execution Started\n"); > @@ -478,15 +480,15 @@ igt_main > igt_debug("Execution Finished\n"); > } > /* While exec in threads above, let's check rc_status */ > - assert(igt_wait(!in_rc6(sysfs, gt), 1000, 1)); > + assert(igt_wait(!in_rc6(sysfs, tile, gt), 1000, 1)); > igt_waitchildren(); > } > } > > igt_fixture { > - xe_for_each_gt(fd, gt) { > - set_freq(sysfs, gt, "min", stash_min); > - set_freq(sysfs, gt, "max", stash_max); > + xe_for_each_gt_under_each_tile(fd, tile, gt) { > + set_freq(sysfs, tile, gt, "min", stash_min); > + set_freq(sysfs, tile, gt, "max", stash_max); > } > close(sysfs); > xe_device_put(fd); > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [igt-dev] [PATCH v4 3/4] tests/xe/xe_guc_pc: Change the sysfs paths 2023-06-30 17:33 ` Kamil Konieczny @ 2023-07-05 8:31 ` Ghimiray, Himal Prasad 0 siblings, 0 replies; 17+ messages in thread From: Ghimiray, Himal Prasad @ 2023-07-05 8:31 UTC (permalink / raw) To: Kamil Konieczny, igt-dev@lists.freedesktop.org Cc: Upadhyay, Tejas, Nilawar, Badal > -----Original Message----- > From: Kamil Konieczny <kamil.konieczny@linux.intel.com> > Sent: 30 June 2023 23:04 > To: igt-dev@lists.freedesktop.org > Cc: Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com>; Upadhyay, > Tejas <tejas.upadhyay@intel.com>; Dixit, Ashutosh > <ashutosh.dixit@intel.com>; Iddamsetty, Aravind > <aravind.iddamsetty@intel.com>; Nilawar, Badal > <badal.nilawar@intel.com>; Tauro, Riana <riana.tauro@intel.com>; Gupta, > Anshuman <anshuman.gupta@intel.com> > Subject: Re: [PATCH v4 3/4] tests/xe/xe_guc_pc: Change the sysfs paths > > Hi Himal, > > On 2023-06-27 at 23:38:04 +0530, 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 > > > > Reviewed-by: Upadhyay <tejas.upadhyay@intel.com> > > 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 | 202 > > ++++++++++++++++++++++--------------------- > > 1 file changed, 102 insertions(+), 100 deletions(-) > > > > diff --git a/tests/xe/xe_guc_pc.c b/tests/xe/xe_guc_pc.c index > > 89d5ae9e..2900ff09 100644 > > --- a/tests/xe/xe_guc_pc.c > > +++ b/tests/xe/xe_guc_pc.c > > @@ -133,23 +133,25 @@ 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 sysfs, int tile_id, int gt_id, const char > > +*freq_name, uint32_t freq) > > { > > int ret = -EAGAIN; > > char path[32]; > > > > - sprintf(path, "device/gt%d/freq_%s", gt_id, freq_name); > > + igt_assert(snprintf(path, sizeof(path), > "device/tile%d/gt%d/freq_%s", > > + tile_id, gt_id, freq_name) < sizeof(path)); > > Could you make it work for bot old and new uAPI? Sure addressing in new patchset. > > > while (ret == -EAGAIN) > > ret = igt_sysfs_printf(sysfs, path, "%u", freq); > > Maybe add here: > if (ret == -ENOENT) { > /* use old path */ > > } > > > return ret; > > } > > > > -static uint32_t get_freq(int sysfs, int gt_id, const char *freq_name) > > +static uint32_t get_freq(int sysfs, int tile_id, 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); > > + igt_assert(snprintf(path, sizeof(path), > "device/tile%d/gt%d/freq_%s", > > + tile_id, gt_id, freq_name) < sizeof(path)); > > This is the same code as above, maybe create a function for it, check for > ENOENT and use old path? Or check old one first and if failed with ENOENT > use new. > > Regards, > Kamil > > > while (err == -EAGAIN) > > err = igt_sysfs_scanf(sysfs, path, "%u", &freq); > > return freq; > > @@ -162,37 +164,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 sysfs, int tile_id, 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(sysfs, tile_id, gt_id, "rpn"); > > + uint32_t rpe = get_freq(sysfs, tile_id, gt_id, "rpe"); > > + uint32_t rp0 = get_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "min", rpn - 1) < 0); > > + igt_assert(set_freq(sysfs, tile_id, gt_id, "min", rp0 + 1) < 0); > > + igt_assert(set_freq(sysfs, tile_id, gt_id, "max", rpn - 1) < 0); > > + igt_assert(set_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "min", rp0) > 0); > > + igt_assert(get_freq(sysfs, tile_id, gt_id, "min") == rp0); > > + igt_assert(set_freq(sysfs, tile_id, gt_id, "min", rpe) > 0); > > + igt_assert(get_freq(sysfs, tile_id, gt_id, "min") == rpe); > > + igt_assert(set_freq(sysfs, tile_id, gt_id, "min", rpn) > 0); > > + igt_assert(get_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "max", rpn) > 0); > > + igt_assert(get_freq(sysfs, tile_id, gt_id, "max") == rpn); > > + igt_assert(set_freq(sysfs, tile_id, gt_id, "max", rpe) > 0); > > + igt_assert(get_freq(sysfs, tile_id, gt_id, "max") == rpe); > > + igt_assert(set_freq(sysfs, tile_id, gt_id, "max", rp0) > 0); > > + igt_assert(get_freq(sysfs, tile_id, gt_id, "max") == rp0); > > } > > > > /** > > @@ -205,11 +207,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 sysfs, int tile_id, 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(sysfs, tile_id, gt_id, "rpn"); > > + uint32_t rpe = get_freq(sysfs, tile_id, gt_id, "rpe"); > > + uint32_t rp0 = get_freq(sysfs, tile_id, gt_id, "rp0"); > > > > igt_debug("Starting testing fixed request\n"); > > > > @@ -218,27 +220,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(sysfs, tile_id, gt_id, "min", rpn) > 0); > > + igt_assert(set_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "cur") == rpn); > > + igt_assert(get_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "min", rpe) > 0); > > + igt_assert(set_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "cur") == rpe); > > + igt_assert(get_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "min", rp0) > 0); > > + igt_assert(set_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "cur") == rp0); > > > > igt_debug("Finished testing fixed request\n"); } @@ -253,20 +255,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 sysfs, int tile_id, 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(sysfs, tile_id, gt_id, "rpn"); > > + uint32_t rpe = get_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "min", rpn) > 0); > > + igt_assert(set_freq(sysfs, tile_id, gt_id, "max", rpe) > 0); > > usleep(ACT_FREQ_LATENCY_US); > > - cur = get_freq(sysfs, gt_id, "cur"); > > + cur = get_freq(sysfs, tile_id, gt_id, "cur"); > > igt_assert(rpn <= cur && cur <= rpe); > > - act = get_freq(sysfs, gt_id, "act"); > > + act = get_freq(sysfs, tile_id, gt_id, "act"); > > igt_assert(rpn <= act && act <= rpe); > > > > igt_debug("Finished testing range request\n"); @@ -278,20 +280,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 sysfs, int tile_id, 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(sysfs, tile_id, gt_id, "rpn"); > > + uint32_t rpe = get_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "min", rpe) > 0); > > + igt_assert(set_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "cur") == rpe); > > + igt_assert(get_freq(sysfs, tile_id, gt_id, "act") == rpe); > > } > > > > /** > > @@ -300,20 +302,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 sysfs, int tile_id, int gt_id) > > { > > - uint32_t rpn = get_freq(sysfs, gt_id, "rpn"); > > + uint32_t rpn = get_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "min", rpn) > 0); > > + igt_assert(set_freq(sysfs, tile_id, gt_id, "max", rpn) > 0); > > usleep(ACT_FREQ_LATENCY_US); > > - igt_assert(get_freq(sysfs, gt_id, "cur") == rpn); > > + igt_assert(get_freq(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "min") == rpn); > > + igt_assert(get_freq(sysfs, tile_id, gt_id, "max") == rpn); > > } > > > > /** > > @@ -326,24 +328,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 sysfs, int tile_id, int gt_id, int > > +cycles) > > { > > - uint32_t rpn = get_freq(sysfs, gt_id, "rpn"); > > + uint32_t rpn = get_freq(sysfs, tile_id, 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(sysfs, tile_id, 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(sysfs, tile_id, 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(sysfs, tile_id, 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(sysfs, tile_id, 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(sysfs, tile_id, gt_id, "max") == rpn, > > "Failed after %d good cycles\n", i); > > } > > } > > @@ -359,11 +361,11 @@ static void test_reset(int fd, int sysfs, int gt_id, int > cycles) > > * Run type: BAT > > */ > > > > -static bool in_rc6(int sysfs, int gt_id) > > +static bool in_rc6(int sysfs, int tile_id, int gt_id) > > { > > - char path[32]; > > + char path[40]; > > char rc[8]; > > - sprintf(path, "device/gt%d/rc_status", gt_id); > > + sprintf(path, "device/tile%d/gt%d/rc_status", tile_id, gt_id); > > if (igt_sysfs_scanf(sysfs, path, "%s", rc) < 0) > > return false; > > return strcmp(rc, "rc6") == 0; > > @@ -373,7 +375,7 @@ igt_main > > { > > struct drm_xe_engine_class_instance *hwe; > > int fd; > > - int gt; > > + int gt, tile; > > static int sysfs = -1; > > int ncpus = sysconf(_SC_NPROCESSORS_ONLN); > > uint32_t stash_min; > > @@ -386,24 +388,24 @@ igt_main > > 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"); > > + /* The defaults are the same. Stashing the gt0 in tile0 is > enough */ > > + stash_min = get_freq(sysfs, 0, 0, "min"); > > + stash_max = get_freq(sysfs, 0, 0, "max"); > > } > > > > igt_subtest("freq_basic_api") { > > - xe_for_each_gt(fd, gt) > > - test_freq_basic_api(sysfs, gt); > > + xe_for_each_gt_under_each_tile(fd, tile, gt) > > + test_freq_basic_api(sysfs, tile, gt); > > } > > > > igt_subtest("freq_fixed_idle") { > > - xe_for_each_gt(fd, gt) { > > - test_freq_fixed(sysfs, gt); > > + xe_for_each_gt_under_each_tile(fd, tile, gt) { > > + test_freq_fixed(sysfs, tile, gt); > > } > > } > > > > igt_subtest("freq_fixed_exec") { > > - xe_for_each_gt(fd, gt) { > > + xe_for_each_gt_under_each_tile(fd, tile, gt) { > > xe_for_each_hw_engine(fd, hwe) > > igt_fork(child, ncpus) { > > igt_debug("Execution Started\n"); > @@ -411,19 +413,19 @@ 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(sysfs, tile, gt); > > igt_waitchildren(); > > } > > } > > > > igt_subtest("freq_range_idle") { > > - xe_for_each_gt(fd, gt) { > > - test_freq_range(sysfs, gt); > > + xe_for_each_gt_under_each_tile(fd, tile, gt) { > > + test_freq_range(sysfs, tile, gt); > > } > > } > > > > igt_subtest("freq_range_exec") { > > - xe_for_each_gt(fd, gt) { > > + xe_for_each_gt_under_each_tile(fd, tile, gt) { > > xe_for_each_hw_engine(fd, hwe) > > igt_fork(child, ncpus) { > > igt_debug("Execution Started\n"); > @@ -431,46 +433,46 @@ 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(sysfs, tile, gt); > > igt_waitchildren(); > > } > > } > > > > igt_subtest("freq_low_max") { > > - xe_for_each_gt(fd, gt) { > > - test_freq_low_max(sysfs, gt); > > + xe_for_each_gt_under_each_tile(fd, tile, gt) { > > + test_freq_low_max(sysfs, tile, gt); > > } > > } > > > > igt_subtest("freq_suspend") { > > - xe_for_each_gt(fd, gt) { > > - test_suspend(sysfs, gt); > > + xe_for_each_gt_under_each_tile(fd, tile, gt) { > > + test_suspend(sysfs, tile, gt); > > } > > } > > > > igt_subtest("freq_reset") { > > - xe_for_each_gt(fd, gt) { > > - test_reset(fd, sysfs, gt, 1); > > + xe_for_each_gt_under_each_tile(fd, tile, gt) { > > + test_reset(fd, sysfs, tile, gt, 1); > > } > > } > > > > igt_subtest("freq_reset_multiple") { > > - xe_for_each_gt(fd, gt) { > > - test_reset(fd, sysfs, gt, 50); > > + xe_for_each_gt_under_each_tile(fd, tile, gt) { > > + test_reset(fd, sysfs, tile, gt, 50); > > } > > } > > > > igt_subtest("rc6_on_idle") { > > igt_require(!IS_PONTEVECCHIO(xe_dev_id(fd))); > > - xe_for_each_gt(fd, gt) { > > - assert(igt_wait(in_rc6(sysfs, gt), 1000, 1)); > > + xe_for_each_gt_under_each_tile(fd, tile, gt) { > > + assert(igt_wait(in_rc6(sysfs, tile, gt), 1000, 1)); > > } > > } > > > > igt_subtest("rc0_on_exec") { > > igt_require(!IS_PONTEVECCHIO(xe_dev_id(fd))); > > - xe_for_each_gt(fd, gt) { > > - assert(igt_wait(in_rc6(sysfs, gt), 1000, 1)); > > + xe_for_each_gt_under_each_tile(fd, tile, gt) { > > + assert(igt_wait(in_rc6(sysfs, tile, gt), 1000, 1)); > > xe_for_each_hw_engine(fd, hwe) > > igt_fork(child, ncpus) { > > igt_debug("Execution Started\n"); > @@ -478,15 +480,15 @@ igt_main > > igt_debug("Execution Finished\n"); > > } > > /* While exec in threads above, let's check rc_status > */ > > - assert(igt_wait(!in_rc6(sysfs, gt), 1000, 1)); > > + assert(igt_wait(!in_rc6(sysfs, tile, gt), 1000, 1)); > > igt_waitchildren(); > > } > > } > > > > igt_fixture { > > - xe_for_each_gt(fd, gt) { > > - set_freq(sysfs, gt, "min", stash_min); > > - set_freq(sysfs, gt, "max", stash_max); > > + xe_for_each_gt_under_each_tile(fd, tile, gt) { > > + set_freq(sysfs, tile, gt, "min", stash_min); > > + set_freq(sysfs, tile, gt, "max", stash_max); > > } > > close(sysfs); > > xe_device_put(fd); > > -- > > 2.25.1 > > ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [igt-dev] [PATCH v4 3/4] tests/xe/xe_guc_pc: Change the sysfs paths 2023-06-27 18:08 ` [igt-dev] [PATCH v4 3/4] tests/xe/xe_guc_pc: Change the sysfs paths Himal Prasad Ghimiray 2023-06-30 17:33 ` Kamil Konieczny @ 2023-07-01 17:58 ` Dixit, Ashutosh 2023-07-03 8:00 ` Kamil Konieczny 2023-07-04 5:46 ` Ghimiray, Himal Prasad 1 sibling, 2 replies; 17+ messages in thread From: Dixit, Ashutosh @ 2023-07-01 17:58 UTC (permalink / raw) To: Himal Prasad Ghimiray; +Cc: Upadhyay, igt-dev, Badal Nilawar On Tue, 27 Jun 2023 11:08:04 -0700, Himal Prasad Ghimiray wrote: > Hi Himal, > diff --git a/tests/xe/xe_guc_pc.c b/tests/xe/xe_guc_pc.c > index 89d5ae9e..2900ff09 100644 > --- a/tests/xe/xe_guc_pc.c > +++ b/tests/xe/xe_guc_pc.c > @@ -133,23 +133,25 @@ 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 sysfs, int tile_id, int gt_id, const char *freq_name, uint32_t freq) > { > int ret = -EAGAIN; > char path[32]; > > - sprintf(path, "device/gt%d/freq_%s", gt_id, freq_name); > + igt_assert(snprintf(path, sizeof(path), "device/tile%d/gt%d/freq_%s", > + tile_id, gt_id, freq_name) < sizeof(path)); > while (ret == -EAGAIN) > ret = igt_sysfs_printf(sysfs, path, "%u", freq); > return ret; > } /snip/ > @@ -162,37 +164,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 sysfs, int tile_id, 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(sysfs, tile_id, gt_id, "rpn"); > + uint32_t rpe = get_freq(sysfs, tile_id, gt_id, "rpe"); > + uint32_t rp0 = get_freq(sysfs, tile_id, gt_id, "rp0"); /snip/ > @@ -373,7 +375,7 @@ igt_main > { > struct drm_xe_engine_class_instance *hwe; > int fd; > - int gt; > + int gt, tile; > static int sysfs = -1; > int ncpus = sysconf(_SC_NPROCESSORS_ONLN); > uint32_t stash_min; > @@ -386,24 +388,24 @@ igt_main > 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"); > + /* The defaults are the same. Stashing the gt0 in tile0 is enough */ > + stash_min = get_freq(sysfs, 0, 0, "min"); > + stash_max = get_freq(sysfs, 0, 0, "max"); > } > > igt_subtest("freq_basic_api") { > - xe_for_each_gt(fd, gt) > - test_freq_basic_api(sysfs, gt); > + xe_for_each_gt_under_each_tile(fd, tile, gt) > + test_freq_basic_api(sysfs, tile, gt); Basically I have decided I disagree with the entire approach here, so I disagree with Patches 2 and 3 in this series. Patch 2 is especially hacky but I think it's not needed. Let's do this differently. My points: * gt id's are unique (so e.g. on MTL we have tile0/gt0 and tile0/gt1, on PVC we have tile0/gt0 and tile1/gt1). * The code in xe_guc_pc.c touches quantities (freq's etc.) which are associated with gt's. It doesn't care about tiles and which gt is present on which tile etc. It just cares about gt's. So it wrong to change the whole code to start worrying about tiles now as this patch is doing (via xe_for_each_gt_under_each_tile()). * So instead what we need to do is very simple. Let's write a function which will return the sysfs path for a gt (this function will need to be tile aware so it will return things like "device/tile0/gt0", "device/tile0/gt1", "device/tile1/gt1" etc.). The function prototype is something like: char *xe_gt_sysfs_path(int gt_id); How it is implemented probably doesn't matter much. It could e.g. go through the sysfs directory tree to find the path of a gt or it could use info on how gts are situated on tiles for particular platforms (MTL vs PVC as shown above e.g.). Either approach is fine, the platform approach is simpler. So once we have this function implemented, in the above set_freq()/get_freq() functions we could just use the gt path returned by this function to read/write the sysfs. We don't need to make the entire file tile aware. We just need to modify set_freq()/get_freq(). If this doesn't work for some reason please let me know why. Please don't merge this series till we resolve this. Thanks. -- Ashutosh ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [igt-dev] [PATCH v4 3/4] tests/xe/xe_guc_pc: Change the sysfs paths 2023-07-01 17:58 ` Dixit, Ashutosh @ 2023-07-03 8:00 ` Kamil Konieczny 2023-07-04 5:46 ` Ghimiray, Himal Prasad 1 sibling, 0 replies; 17+ messages in thread From: Kamil Konieczny @ 2023-07-03 8:00 UTC (permalink / raw) To: igt-dev; +Cc: Upadhyay, Badal Nilawar Hi Ashutosh, On 2023-07-01 at 10:58:23 -0700, Dixit, Ashutosh wrote: > On Tue, 27 Jun 2023 11:08:04 -0700, Himal Prasad Ghimiray wrote: > > > > Hi Himal, > > > diff --git a/tests/xe/xe_guc_pc.c b/tests/xe/xe_guc_pc.c > > index 89d5ae9e..2900ff09 100644 > > --- a/tests/xe/xe_guc_pc.c > > +++ b/tests/xe/xe_guc_pc.c > > @@ -133,23 +133,25 @@ 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 sysfs, int tile_id, int gt_id, const char *freq_name, uint32_t freq) > > { > > int ret = -EAGAIN; > > char path[32]; > > > > - sprintf(path, "device/gt%d/freq_%s", gt_id, freq_name); > > + igt_assert(snprintf(path, sizeof(path), "device/tile%d/gt%d/freq_%s", > > + tile_id, gt_id, freq_name) < sizeof(path)); > > while (ret == -EAGAIN) > > ret = igt_sysfs_printf(sysfs, path, "%u", freq); > > return ret; > > } > > /snip/ > > > @@ -162,37 +164,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 sysfs, int tile_id, 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(sysfs, tile_id, gt_id, "rpn"); > > + uint32_t rpe = get_freq(sysfs, tile_id, gt_id, "rpe"); > > + uint32_t rp0 = get_freq(sysfs, tile_id, gt_id, "rp0"); > > /snip/ > > > @@ -373,7 +375,7 @@ igt_main > > { > > struct drm_xe_engine_class_instance *hwe; > > int fd; > > - int gt; > > + int gt, tile; > > static int sysfs = -1; > > int ncpus = sysconf(_SC_NPROCESSORS_ONLN); > > uint32_t stash_min; > > @@ -386,24 +388,24 @@ igt_main > > 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"); > > + /* The defaults are the same. Stashing the gt0 in tile0 is enough */ > > + stash_min = get_freq(sysfs, 0, 0, "min"); > > + stash_max = get_freq(sysfs, 0, 0, "max"); > > } > > > > igt_subtest("freq_basic_api") { > > - xe_for_each_gt(fd, gt) > > - test_freq_basic_api(sysfs, gt); > > + xe_for_each_gt_under_each_tile(fd, tile, gt) > > + test_freq_basic_api(sysfs, tile, gt); > > Basically I have decided I disagree with the entire approach here, so I > disagree with Patches 2 and 3 in this series. Patch 2 is especially hacky > but I think it's not needed. Let's do this differently. My points: > > * gt id's are unique (so e.g. on MTL we have tile0/gt0 and tile0/gt1, on > PVC we have tile0/gt0 and tile1/gt1). > > * The code in xe_guc_pc.c touches quantities (freq's etc.) which are > associated with gt's. It doesn't care about tiles and which gt is present > on which tile etc. It just cares about gt's. So it wrong to change the > whole code to start worrying about tiles now as this patch is doing (via > xe_for_each_gt_under_each_tile()). > > * So instead what we need to do is very simple. Let's write a function > which will return the sysfs path for a gt (this function will need to be > tile aware so it will return things like "device/tile0/gt0", > "device/tile0/gt1", "device/tile1/gt1" etc.). The function prototype is > something like: > > char *xe_gt_sysfs_path(int gt_id); > > How it is implemented probably doesn't matter much. It could e.g. go > through the sysfs directory tree to find the path of a gt or it could use > info on how gts are situated on tiles for particular platforms (MTL vs > PVC as shown above e.g.). Either approach is fine, the platform approach > is simpler. > > So once we have this function implemented, in the above > set_freq()/get_freq() functions we could just use the gt path returned by > this function to read/write the sysfs. We don't need to make the entire > file tile aware. We just need to modify set_freq()/get_freq(). > > If this doesn't work for some reason please let me know why. Please don't > merge this series till we resolve this. > > Thanks. > -- > Ashutosh +Cc Riana as she is also using gt* path. Regards, Kamil ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [igt-dev] [PATCH v4 3/4] tests/xe/xe_guc_pc: Change the sysfs paths 2023-07-01 17:58 ` Dixit, Ashutosh 2023-07-03 8:00 ` Kamil Konieczny @ 2023-07-04 5:46 ` Ghimiray, Himal Prasad 1 sibling, 0 replies; 17+ messages in thread From: Ghimiray, Himal Prasad @ 2023-07-04 5:46 UTC (permalink / raw) To: Dixit, Ashutosh Cc: Upadhyay, Tejas, igt-dev@lists.freedesktop.org, Nilawar, Badal Hi Ashutosh, > -----Original Message----- > From: Dixit, Ashutosh <ashutosh.dixit@intel.com> > Sent: 01 July 2023 23:28 > To: Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com> > Cc: igt-dev@lists.freedesktop.org; Upadhyay, Tejas > <tejas.upadhyay@intel.com>; Iddamsetty, Aravind > <aravind.iddamsetty@intel.com>; Kamil Konieczny > <kamil.konieczny@linux.intel.com>; Nilawar, Badal > <badal.nilawar@intel.com>; Tauro, Riana <riana.tauro@intel.com>; Gupta, > Anshuman <anshuman.gupta@intel.com> > Subject: Re: [PATCH v4 3/4] tests/xe/xe_guc_pc: Change the sysfs paths > > On Tue, 27 Jun 2023 11:08:04 -0700, Himal Prasad Ghimiray wrote: > > > > Hi Himal, > > > diff --git a/tests/xe/xe_guc_pc.c b/tests/xe/xe_guc_pc.c index > > 89d5ae9e..2900ff09 100644 > > --- a/tests/xe/xe_guc_pc.c > > +++ b/tests/xe/xe_guc_pc.c > > @@ -133,23 +133,25 @@ 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 sysfs, int tile_id, int gt_id, const char > > +*freq_name, uint32_t freq) > > { > > int ret = -EAGAIN; > > char path[32]; > > > > - sprintf(path, "device/gt%d/freq_%s", gt_id, freq_name); > > + igt_assert(snprintf(path, sizeof(path), > "device/tile%d/gt%d/freq_%s", > > + tile_id, gt_id, freq_name) < sizeof(path)); > > while (ret == -EAGAIN) > > ret = igt_sysfs_printf(sysfs, path, "%u", freq); > > return ret; > > } > > /snip/ > > > @@ -162,37 +164,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 sysfs, int tile_id, 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(sysfs, tile_id, gt_id, "rpn"); > > + uint32_t rpe = get_freq(sysfs, tile_id, gt_id, "rpe"); > > + uint32_t rp0 = get_freq(sysfs, tile_id, gt_id, "rp0"); > > /snip/ > > > @@ -373,7 +375,7 @@ igt_main > > { > > struct drm_xe_engine_class_instance *hwe; > > int fd; > > - int gt; > > + int gt, tile; > > static int sysfs = -1; > > int ncpus = sysconf(_SC_NPROCESSORS_ONLN); > > uint32_t stash_min; > > @@ -386,24 +388,24 @@ igt_main > > 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"); > > + /* The defaults are the same. Stashing the gt0 in tile0 is > enough */ > > + stash_min = get_freq(sysfs, 0, 0, "min"); > > + stash_max = get_freq(sysfs, 0, 0, "max"); > > } > > > > igt_subtest("freq_basic_api") { > > - xe_for_each_gt(fd, gt) > > - test_freq_basic_api(sysfs, gt); > > + xe_for_each_gt_under_each_tile(fd, tile, gt) > > + test_freq_basic_api(sysfs, tile, gt); > > Basically I have decided I disagree with the entire approach here, so I > disagree with Patches 2 and 3 in this series. Patch 2 is especially hacky but I > think it's not needed. Let's do this differently. My points: > > * gt id's are unique (so e.g. on MTL we have tile0/gt0 and tile0/gt1, on > PVC we have tile0/gt0 and tile1/gt1). > > * The code in xe_guc_pc.c touches quantities (freq's etc.) which are > associated with gt's. It doesn't care about tiles and which gt is present > on which tile etc. It just cares about gt's. So it wrong to change the > whole code to start worrying about tiles now as this patch is doing (via > xe_for_each_gt_under_each_tile()). > > * So instead what we need to do is very simple. Let's write a function > which will return the sysfs path for a gt (this function will need to be > tile aware so it will return things like "device/tile0/gt0", > "device/tile0/gt1", "device/tile1/gt1" etc.). The function prototype is > something like: > > char *xe_gt_sysfs_path(int gt_id); > > How it is implemented probably doesn't matter much. It could e.g. go > through the sysfs directory tree to find the path of a gt or it could use > info on how gts are situated on tiles for particular platforms (MTL vs > PVC as shown above e.g.). Either approach is fine, the platform approach > is simpler. > > So once we have this function implemented, in the above > set_freq()/get_freq() functions we could just use the gt path returned by > this function to read/write the sysfs. We don't need to make the entire > file tile aware. We just need to modify set_freq()/get_freq(). > My intention of introducing patch 2 was to ensure uniformity and applicability in case gt specific debugfs and other entries also move under tiles. If recommendation is to use something sysfs specific, will implement xe_gt_sysfs_path(int gt_id); And update this test accordingly in next patch. BR Himal > If this doesn't work for some reason please let me know why. Please don't > merge this series till we resolve this. > > Thanks. > -- > Ashutosh ^ permalink raw reply [flat|nested] 17+ messages in thread
* [igt-dev] [PATCH v4 4/4] tests/xe/xe_sysfs_tile_prop: adds new test to verify per tile vram addr_range 2023-06-27 18:08 [igt-dev] [PATCH v4 0/4] Handle GT and tile seperation in IGT Himal Prasad Ghimiray ` (2 preceding siblings ...) 2023-06-27 18:08 ` [igt-dev] [PATCH v4 3/4] tests/xe/xe_guc_pc: Change the sysfs paths Himal Prasad Ghimiray @ 2023-06-27 18:08 ` Himal Prasad Ghimiray 2023-06-27 19:07 ` [igt-dev] ✓ Fi.CI.BAT: success for Handle GT and tile seperation in IGT (rev3) Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 17+ messages in thread From: Himal Prasad Ghimiray @ 2023-06-27 18:08 UTC (permalink / raw) To: igt-dev; +Cc: Upadhyay [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #1: Type: text/plain; charset=y, Size: 2695 bytes --] 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. Reviewed-by: Upadhyay <tejas.upadhyay@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> --- tests/meson.build | 1 + tests/xe/xe_sysfs_tile_prop.c | 63 +++++++++++++++++++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 tests/xe/xe_sysfs_tile_prop.c diff --git a/tests/meson.build b/tests/meson.build index 85ea7e74..44d19dce 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -267,6 +267,7 @@ xe_progs = [ 'xe_pm', 'xe_prime_self_import', 'xe_query', + 'xe_sysfs_tile_prop', 'xe_vm', 'xe_waitfence', 'xe_spin_batch', diff --git a/tests/xe/xe_sysfs_tile_prop.c b/tests/xe/xe_sysfs_tile_prop.c new file mode 100644 index 00000000..db04a745 --- /dev/null +++ b/tests/xe/xe_sysfs_tile_prop.c @@ -0,0 +1,63 @@ +// 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 sysfs, int tile_num, u64 vram_size) +{ + u64 physical_vram_size_bytes; + char path[40]; + + igt_assert(snprintf(path, sizeof(path), "device/tile%d/physical_vram_size_bytes", + tile_num) < sizeof(path)); + igt_assert(igt_sysfs_scanf(sysfs, path, "%lx", &physical_vram_size_bytes) > 0); + igt_assert_lt(vram_size, physical_vram_size_bytes); +} + +igt_main +{ + int fd; + int tile, total_tiles; + static int sysfs = -1; + u64 vram_size; + + igt_fixture { + fd = drm_open_driver(DRIVER_XE); + xe_device_get(fd); + + sysfs = igt_sysfs_open(fd); + igt_assert(sysfs != -1); + } + + igt_subtest("physical_vram_size_bytes") { + igt_require(xe_has_vram(fd)); + xe_for_each_tile(fd, tile, total_tiles) { + vram_size = xe_vram_size(fd, tile); + test_vram_physical_vram_size_bytes(sysfs, tile, vram_size); + } + } + + igt_fixture { + close(sysfs); + xe_device_put(fd); + close(fd); + } +} -- 2.25.1 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Handle GT and tile seperation in IGT (rev3) 2023-06-27 18:08 [igt-dev] [PATCH v4 0/4] Handle GT and tile seperation in IGT Himal Prasad Ghimiray ` (3 preceding siblings ...) 2023-06-27 18:08 ` [igt-dev] [PATCH v4 4/4] tests/xe/xe_sysfs_tile_prop: adds new test to verify per tile vram addr_range Himal Prasad Ghimiray @ 2023-06-27 19:07 ` Patchwork 2023-06-28 10:52 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-06-30 7:34 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 6 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2023-06-27 19:07 UTC (permalink / raw) To: Himal Prasad Ghimiray; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 8038 bytes --] == Series Details == Series: Handle GT and tile seperation in IGT (rev3) URL : https://patchwork.freedesktop.org/series/119801/ State : success == Summary == CI Bug Log - changes from IGT_7352 -> IGTPW_9281 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/index.html Participating hosts (41 -> 41) ------------------------------ Additional (1): bat-adlp-11 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9281 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_auth@basic-auth: - bat-adlp-11: NOTRUN -> [ABORT][1] ([i915#8011]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/bat-adlp-11/igt@core_auth@basic-auth.html * igt@gem_exec_parallel@engines@userptr: - bat-mtlp-6: [PASS][2] -> [FAIL][3] ([i915#8672]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/bat-mtlp-6/igt@gem_exec_parallel@engines@userptr.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/bat-mtlp-6/igt@gem_exec_parallel@engines@userptr.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-mtlp-8: NOTRUN -> [SKIP][4] ([i915#4613]) +3 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/bat-mtlp-8/igt@gem_lmem_swapping@parallel-random-engines.html * igt@i915_module_load@load: - bat-adlp-11: NOTRUN -> [DMESG-WARN][5] ([i915#4423]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/bat-adlp-11/igt@i915_module_load@load.html * igt@i915_pm_rps@basic-api: - bat-mtlp-8: NOTRUN -> [SKIP][6] ([i915#6621]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/bat-mtlp-8/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@gt_mocs: - bat-mtlp-8: NOTRUN -> [DMESG-FAIL][7] ([i915#7059]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@requests: - bat-rpls-1: [PASS][8] -> [ABORT][9] ([i915#4983] / [i915#7911] / [i915#7920]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/bat-rpls-1/igt@i915_selftest@live@requests.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/bat-rpls-1/igt@i915_selftest@live@requests.html * igt@i915_suspend@basic-s3-without-i915: - bat-mtlp-8: NOTRUN -> [SKIP][10] ([i915#6645]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - bat-mtlp-8: NOTRUN -> [SKIP][11] ([i915#7828]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/bat-mtlp-8/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: NOTRUN -> [SKIP][12] ([i915#1845] / [i915#5354]) +3 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_psr@primary_mmap_gtt: - bat-rplp-1: NOTRUN -> [ABORT][13] ([i915#8442]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.html * igt@prime_vgem@basic-fence-read: - bat-mtlp-8: NOTRUN -> [SKIP][14] ([i915#3708]) +2 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - bat-mtlp-8: NOTRUN -> [SKIP][15] ([i915#3708] / [i915#4077]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/bat-mtlp-8/igt@prime_vgem@basic-gtt.html #### Possible fixes #### * igt@i915_pm_rpm@basic-pci-d3-state: - bat-mtlp-8: [ABORT][16] ([i915#7077] / [i915#7977]) -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_selftest@live@gt_engines: - bat-atsm-1: [FAIL][18] ([i915#6268]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/bat-atsm-1/igt@i915_selftest@live@gt_engines.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/bat-atsm-1/igt@i915_selftest@live@gt_engines.html * igt@i915_selftest@live@gt_heartbeat: - fi-glk-j4005: [DMESG-FAIL][20] ([i915#5334]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@requests: - bat-mtlp-6: [DMESG-FAIL][22] ([i915#8497]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/bat-mtlp-6/igt@i915_selftest@live@requests.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/bat-mtlp-6/igt@i915_selftest@live@requests.html #### Warnings #### * igt@kms_psr@sprite_plane_onoff: - bat-rplp-1: [ABORT][24] ([i915#8442] / [i915#8712]) -> [SKIP][25] ([i915#1072]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [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#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 [i915#7077]: https://gitlab.freedesktop.org/drm/intel/issues/7077 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#7920]: https://gitlab.freedesktop.org/drm/intel/issues/7920 [i915#7977]: https://gitlab.freedesktop.org/drm/intel/issues/7977 [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442 [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497 [i915#8672]: https://gitlab.freedesktop.org/drm/intel/issues/8672 [i915#8678]: https://gitlab.freedesktop.org/drm/intel/issues/8678 [i915#8679]: https://gitlab.freedesktop.org/drm/intel/issues/8679 [i915#8712]: https://gitlab.freedesktop.org/drm/intel/issues/8712 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7352 -> IGTPW_9281 CI-20190529: 20190529 CI_DRM_13328: 12cd6b2d321d9c034f3d4ba14788d68cb8da4eac @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9281: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/index.html IGT_7352: 471bfababd070e1dac0ebb87470ac4f2ae85e663 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@xe_sysfs_tile_prop@physical_vram_size_bytes == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/index.html [-- Attachment #2: Type: text/html, Size: 9009 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Handle GT and tile seperation in IGT (rev3) 2023-06-27 18:08 [igt-dev] [PATCH v4 0/4] Handle GT and tile seperation in IGT Himal Prasad Ghimiray ` (4 preceding siblings ...) 2023-06-27 19:07 ` [igt-dev] ✓ Fi.CI.BAT: success for Handle GT and tile seperation in IGT (rev3) Patchwork @ 2023-06-28 10:52 ` Patchwork 2023-06-29 17:47 ` Kamil Konieczny 2023-06-30 7:34 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 6 siblings, 1 reply; 17+ messages in thread From: Patchwork @ 2023-06-28 10:52 UTC (permalink / raw) To: Ghimiray, Himal Prasad; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 76079 bytes --] == Series Details == Series: Handle GT and tile seperation in IGT (rev3) URL : https://patchwork.freedesktop.org/series/119801/ State : failure == Summary == CI Bug Log - changes from IGT_7352_full -> IGTPW_9281_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9281_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9281_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_9281/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9281_full: ### IGT changes ### #### Possible regressions #### * igt@runner@aborted: - shard-apl: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-apl4/igt@runner@aborted.html New tests --------- New tests have been introduced between IGT_7352_full and IGTPW_9281_full: ### New IGT tests (3) ### * igt@kms_cursor_crc@cursor-alpha-transparent@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_crc@cursor-alpha-transparent@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9281_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][2] ([i915#8411]) +1 similar issue [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-tglu: NOTRUN -> [SKIP][3] ([i915#7701]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-10/igt@device_reset@cold-reset-bound.html - shard-rkl: NOTRUN -> [SKIP][4] ([i915#7701]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8414]) +4 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@drm_fdinfo@busy-idle@bcs0.html * igt@drm_fdinfo@busy-idle@ccs0: - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#4579] / [i915#8414]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@drm_fdinfo@busy-idle@ccs0.html * igt@feature_discovery@chamelium: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#4854]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-1/igt@feature_discovery@chamelium.html * igt@feature_discovery@display-3x: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#1839]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-1/igt@feature_discovery@display-3x.html * igt@gem_basic@multigpu-create-close: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#7697]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-1/igt@gem_basic@multigpu-create-close.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#4873]) +1 similar issue [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@gem_caching@writes.html * igt@gem_create@create-ext-cpu-access-big: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#6335]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-mtlp: [PASS][12] -> [FAIL][13] ([i915#6121] / [i915#7916]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@gem_ctx_exec@basic-nohangcheck.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_param@set-priority-not-supported: - shard-tglu: NOTRUN -> [SKIP][14] ([fdo#109314]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@gem_ctx_param@set-priority-not-supported.html - shard-rkl: NOTRUN -> [SKIP][15] ([fdo#109314]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][16] ([i915#7975] / [i915#8213]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#4771]) +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-1/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@full-pulse: - shard-dg2: [PASS][18] -> [FAIL][19] ([i915#6032]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-12/igt@gem_exec_balancer@full-pulse.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-11/igt@gem_exec_balancer@full-pulse.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#4525]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: NOTRUN -> [FAIL][21] ([i915#2842]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][22] -> [FAIL][23] ([i915#2842]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-tglu: [PASS][24] -> [FAIL][25] ([i915#2842]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-sync: - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#4473] / [i915#4771]) +1 similar issue [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-rkl: [PASS][27] -> [FAIL][28] ([i915#2842]) +3 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-4/igt@gem_exec_fair@basic-throttle@rcs0.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-1/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-rkl: NOTRUN -> [SKIP][29] ([fdo#109313]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html - shard-tglu: NOTRUN -> [SKIP][30] ([fdo#109313]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-6/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#3711]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_gttfill@multigpu-basic: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#7697]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-1/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#3281]) +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-12/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#3281]) +4 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-write-cpu-active: - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#3281]) +3 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@gem_exec_reloc@basic-write-cpu-active.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4812]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: [PASS][37] -> [ABORT][38] ([i915#7975] / [i915#8213] / [i915#8682]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-5/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_exec_whisper@basic-contexts-forked-all: - shard-mtlp: [PASS][39] -> [TIMEOUT][40] ([i915#8628]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@gem_exec_whisper@basic-contexts-forked-all.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-1/igt@gem_exec_whisper@basic-contexts-forked-all.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/IGT_7352/shard-mtlp-4/igt@gem_exec_whisper@basic-normal.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@gem_exec_whisper@basic-normal.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#2190]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@gem_huc_copy@huc-copy.html - shard-tglu: NOTRUN -> [SKIP][44] ([i915#2190]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-10/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4613]) +1 similar issue [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@smem-oom: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#4613]) +1 similar issue [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@gem_lmem_swapping@smem-oom.html * igt@gem_mmap_gtt@hang-user: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4077]) +8 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@gem_mmap_gtt@hang-user.html * igt@gem_mmap_wc@set-cache-level: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4083]) +4 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@gem_mmap_wc@set-cache-level.html * igt@gem_pwrite@basic-self: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3282]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-10/igt@gem_pwrite@basic-self.html * igt@gem_pxp@create-regular-buffer: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#4270]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-tglu: NOTRUN -> [SKIP][51] ([i915#4270]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_readwrite@new-obj: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#3282]) +2 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@gem_readwrite@new-obj.html * igt@gem_render_copy@y-tiled-to-vebox-linear: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#8428]) +3 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-5/igt@gem_render_copy@y-tiled-to-vebox-linear.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#8411]) +1 similar issue [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4079]) +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop: - shard-rkl: NOTRUN -> [SKIP][56] ([fdo#109312]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@gem_softpin@evict-snoop.html - shard-tglu: NOTRUN -> [SKIP][57] ([fdo#109312]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4077]) +2 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@gem_tiled_blits@basic.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#3297]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@coherency-sync: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#3297]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@nohangcheck: - shard-mtlp: [PASS][61] -> [FAIL][62] ([i915#7916]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@gem_userptr_blits@nohangcheck.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@gem_userptr_blits@nohangcheck.html * igt@gem_userptr_blits@readonly-unsync: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#3297]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@gem_userptr_blits@readonly-unsync.html * igt@gen7_exec_parse@basic-allocation: - shard-rkl: NOTRUN -> [SKIP][64] ([fdo#109289]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@gen7_exec_parse@basic-allocation.html * igt@gen9_exec_parse@allowed-all: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#2856]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@batch-zero-length: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#2856]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-1/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-start-far: - shard-tglu: NOTRUN -> [SKIP][67] ([i915#2527] / [i915#2856]) +1 similar issue [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-5/igt@gen9_exec_parse@bb-start-far.html * igt@i915_hangman@engine-engine-error@vcs0: - shard-mtlp: NOTRUN -> [FAIL][68] ([i915#7069]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@i915_hangman@engine-engine-error@vcs0.html * igt@i915_hangman@engine-engine-hang@vcs0: - shard-mtlp: [PASS][69] -> [FAIL][70] ([i915#7069]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@i915_hangman@engine-engine-hang@vcs0.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@i915_hangman@engine-engine-hang@vcs0.html * igt@i915_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#7561]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@i915_pm_backlight@fade-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][72] ([i915#7561]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-2/igt@i915_pm_backlight@fade-with-dpms.html * igt@i915_pm_dc@dc6-dpms: - shard-tglu: [PASS][73] -> [FAIL][74] ([i915#3989] / [i915#454]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-10/igt@i915_pm_dc@dc6-dpms.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-5/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_dc@dc6-psr: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#658]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [PASS][76] -> [SKIP][77] ([i915#1397]) +1 similar issue [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-12/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-1/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][78] -> [SKIP][79] ([i915#1397]) +1 similar issue [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-2/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4212]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-7/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1: - shard-glk: [PASS][81] -> [FAIL][82] ([i915#2521]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-glk3/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs-cc: - shard-tglu: NOTRUN -> [SKIP][83] ([i915#8502]) +7 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs-cc.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [FAIL][84] ([i915#8247]) +3 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-10/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#404]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][86] ([fdo#111615] / [i915#5286]) +2 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][87] -> [FAIL][88] ([i915#5138]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-mtlp: NOTRUN -> [FAIL][89] ([i915#3743]) +2 similar issues [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html - shard-rkl: NOTRUN -> [SKIP][90] ([i915#5286]) +1 similar issue [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][91] ([fdo#111614]) +1 similar issue [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][92] ([fdo#111614]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][93] ([fdo#111614] / [i915#3638]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#5190]) +2 similar issues [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [SKIP][95] ([fdo#111615]) +6 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][96] ([fdo#110723]) +1 similar issue [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html - shard-tglu: NOTRUN -> [SKIP][97] ([fdo#111615]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#4538] / [i915#5190]) +1 similar issue [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_joiner@2x-modeset: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#2705]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_big_joiner@2x-modeset.html * igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#3886] / [i915#5354] / [i915#6095]) +1 similar issue [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#3689] / [i915#5354]) +2 similar issues [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#3689] / [i915#3886] / [i915#5354]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#5354] / [i915#6095]) +2 similar issues [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][104] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +1 similar issue [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-3/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#6095]) +9 similar issues [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#5354]) +10 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_mtl_rc_ccs: - shard-tglu: NOTRUN -> [SKIP][107] ([i915#5354] / [i915#6095]) +5 similar issues [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-3/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#5354]) +10 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#3886] / [i915#6095]) +4 similar issues [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-6/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][110] ([i915#3689] / [i915#5354] / [i915#6095]) +3 similar issues [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][111] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-yf_tiled_ccs.html * igt@kms_cdclk@mode-transition: - shard-tglu: NOTRUN -> [SKIP][112] ([i915#3742]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-10/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#7213]) +2 similar issues [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@mode-transition@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#4087]) +2 similar issues [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@kms_cdclk@mode-transition@pipe-c-hdmi-a-3.html * igt@kms_cdclk@mode-transition@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#4579] / [i915#7213]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@kms_cdclk@mode-transition@pipe-d-edp-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#4087] / [i915#4579]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_chamelium_color@ctm-0-75: - shard-rkl: NOTRUN -> [SKIP][117] ([fdo#111827]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-1/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_color@ctm-negative: - shard-tglu: NOTRUN -> [SKIP][118] ([fdo#111827]) +1 similar issue [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@kms_chamelium_color@ctm-negative.html - shard-mtlp: NOTRUN -> [SKIP][119] ([fdo#111827]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#7828]) +2 similar issues [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-10/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#7828]) +2 similar issues [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-tglu: NOTRUN -> [SKIP][122] ([i915#7828]) +2 similar issues [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-7/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#7828]) +2 similar issues [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_content_protection@lic@pipe-a-dp-2: - shard-dg2: NOTRUN -> [TIMEOUT][124] ([i915#7173]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-12/igt@kms_content_protection@lic@pipe-a-dp-2.html * igt@kms_content_protection@mei_interface: - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#8063]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@kms_content_protection@mei_interface.html * igt@kms_content_protection@srm: - shard-tglu: NOTRUN -> [SKIP][126] ([i915#4579] / [i915#6944] / [i915#7116] / [i915#7118]) +1 similar issue [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][127] ([fdo#109279] / [i915#3359]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][128] ([fdo#109279] / [i915#3359]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#3555] / [i915#4579]) +1 similar issue [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#3359]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#3555] / [i915#4579]) +4 similar issues [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html - shard-tglu: NOTRUN -> [SKIP][132] ([i915#3555] / [i915#4579]) +2 similar issues [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#3359]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#4213]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size: - shard-mtlp: [PASS][135] -> [FAIL][136] ([i915#8248]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-3/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][137] ([fdo#109274] / [i915#5354]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-3/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-tglu: NOTRUN -> [SKIP][138] ([fdo#109274]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#3546]) +3 similar issues [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-5/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][140] -> [FAIL][141] ([i915#2346]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@extended-mode-basic: - shard-tglu: NOTRUN -> [SKIP][142] ([i915#4579]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-2/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#3804] / [i915#4579]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#4579]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-3/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#3840] / [i915#4579]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#4579]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2: [PASS][147] -> [INCOMPLETE][148] ([i915#4839]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-12/igt@kms_fbcon_fbt@fbc-suspend.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-7/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][149] ([fdo#109274] / [i915#3637]) +4 similar issues [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-2/igt@kms_flip@2x-blocking-absolute-wf_vblank.html - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#3637]) +5 similar issues [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-1/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][151] ([fdo#109274]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-rkl: NOTRUN -> [SKIP][152] ([fdo#111825]) +3 similar issues [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-snb: NOTRUN -> [SKIP][153] ([fdo#109271] / [fdo#111767]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-snb6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][154] ([i915#2587] / [i915#2672] / [i915#4579]) +1 similar issue [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#2672] / [i915#4579]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#2672] / [i915#4579]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#5274]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#8708]) +3 similar issues [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#3458]) +4 similar issues [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#8708]) +2 similar issues [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#1825]) +14 similar issues [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-rkl: NOTRUN -> [SKIP][162] ([fdo#111825] / [i915#1825]) +12 similar issues [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][163] ([fdo#110189]) +10 similar issues [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#3023]) +6 similar issues [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][165] ([fdo#109280]) +14 similar issues [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_invalid_mode@clock-too-high@edp-1-pipe-b: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#6403]) +2 similar issues [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-6/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-b.html * igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#4579] / [i915#6403]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-6/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#5176]) +2 similar issues [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#4579] / [i915#5176]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#5176]) +1 similar issue [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#4579] / [i915#5176]) +1 similar issue [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#5176]) +2 similar issues [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-4/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][173] ([i915#4579] / [i915#5176]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-4/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#4579] / [i915#5235]) +3 similar issues [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#4579] / [i915#5235]) +4 similar issues [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#5235]) +2 similar issues [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][177] ([i915#4579] / [i915#5235]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][178] ([i915#5235]) +4 similar issues [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [SKIP][179] ([fdo#109271]) +36 similar issues [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-snb1/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#5235]) +11 similar issues [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-10/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-b-hdmi-a-1: - shard-snb: NOTRUN -> [SKIP][181] ([fdo#109271] / [i915#4579]) +12 similar issues [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-snb1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#6524] / [i915#6805]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-1/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@cursor-plane-update-sf: - shard-rkl: NOTRUN -> [SKIP][183] ([fdo#111068] / [i915#658]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@kms_psr2_sf@cursor-plane-update-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][184] ([fdo#111068] / [i915#658]) +1 similar issue [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@kms_psr@cursor_mmap_gtt: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#1072]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_psr@cursor_mmap_gtt.html * igt@kms_psr@sprite_render: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#1072]) +1 similar issue [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@kms_psr@sprite_render.html * igt@kms_tv_load_detect@load-detect: - shard-rkl: NOTRUN -> [SKIP][187] ([fdo#109309]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend: - shard-dg2: [PASS][188] -> [FAIL][189] ([fdo#103375]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-3/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-5/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html * igt@kms_vblank@pipe-c-wait-busy: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#4070] / [i915#6768]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@kms_vblank@pipe-c-wait-busy.html * igt@kms_vblank@pipe-d-query-forked-busy: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#4070] / [i915#533] / [i915#6768]) +2 similar issues [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@kms_vblank@pipe-d-query-forked-busy.html * igt@kms_vrr@flipline: - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#4579]) +8 similar issues [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@kms_vrr@flipline.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#2437]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-tglu: NOTRUN -> [SKIP][194] ([i915#2437]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@kms_writeback@writeback-fb-id.html - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#2437]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@kms_writeback@writeback-fb-id.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [PASS][196] -> [FAIL][197] ([i915#7484]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html * igt@perf@stress-open-close@0-rcs0: - shard-glk: [PASS][198] -> [ABORT][199] ([i915#5213] / [i915#7941]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk2/igt@perf@stress-open-close@0-rcs0.html [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-glk9/igt@perf@stress-open-close@0-rcs0.html * igt@perf@unprivileged-single-ctx-counters: - shard-tglu: NOTRUN -> [SKIP][200] ([fdo#109289]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-5/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][201] ([i915#4349]) +4 similar issues [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@render-node-busy-idle@ccs0: - shard-mtlp: [PASS][202] -> [FAIL][203] ([i915#4349]) +4 similar issues [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@perf_pmu@render-node-busy-idle@ccs0.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-5/igt@perf_pmu@render-node-busy-idle@ccs0.html * igt@prime_vgem@basic-write: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#3708]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@prime_vgem@basic-write.html * igt@v3d/v3d_perfmon@get-values-invalid-perfmon: - shard-tglu: NOTRUN -> [SKIP][205] ([fdo#109315] / [i915#2575]) +4 similar issues [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-3/igt@v3d/v3d_perfmon@get-values-invalid-perfmon.html * igt@v3d/v3d_submit_cl@bad-bo: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#2575]) +3 similar issues [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-1/igt@v3d/v3d_submit_cl@bad-bo.html * igt@v3d/v3d_submit_cl@simple-flush-cache: - shard-rkl: NOTRUN -> [SKIP][207] ([fdo#109315]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@v3d/v3d_submit_cl@simple-flush-cache.html * igt@v3d/v3d_submit_csd@bad-perfmon: - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#2575]) +6 similar issues [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@v3d/v3d_submit_csd@bad-perfmon.html * igt@vc4/vc4_create_bo@create-bo-0: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#7711]) +3 similar issues [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@vc4/vc4_create_bo@create-bo-0.html * igt@vc4/vc4_perfmon@create-single-perfmon: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#7711]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-3/igt@vc4/vc4_perfmon@create-single-perfmon.html * igt@vc4/vc4_wait_bo@used-bo-0ns: - shard-tglu: NOTRUN -> [SKIP][211] ([i915#2575]) +3 similar issues [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-6/igt@vc4/vc4_wait_bo@used-bo-0ns.html - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#7711]) +3 similar issues [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@vc4/vc4_wait_bo@used-bo-0ns.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: [FAIL][213] ([i915#7742]) -> [PASS][214] [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@gem_barrier_race@remote-request@rcs0: - shard-rkl: [ABORT][215] ([i915#8178]) -> [PASS][216] [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-1/igt@gem_barrier_race@remote-request@rcs0.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_eio@context-create: - {shard-dg1}: [DMESG-WARN][217] ([i915#4423]) -> [PASS][218] [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg1-17/igt@gem_eio@context-create.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg1-17/igt@gem_eio@context-create.html * igt@gem_eio@in-flight-contexts-10ms: - shard-mtlp: [ABORT][219] ([i915#7941]) -> [PASS][220] [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@gem_eio@in-flight-contexts-10ms.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@gem_eio@in-flight-contexts-10ms.html * igt@gem_eio@in-flight-contexts-immediate: - shard-mtlp: [ABORT][221] ([i915#8503]) -> [PASS][222] [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@gem_eio@in-flight-contexts-immediate.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@gem_eio@in-flight-contexts-immediate.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [FAIL][223] ([i915#2846]) -> [PASS][224] [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk7/igt@gem_exec_fair@basic-deadline.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-glk3/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: [FAIL][225] ([i915#2842]) -> [PASS][226] +1 similar issue [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-2/igt@gem_exec_fair@basic-none@bcs0.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_schedule@deep@vecs0: - shard-mtlp: [FAIL][227] ([i915#8545]) -> [PASS][228] [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@gem_exec_schedule@deep@vecs0.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@gem_exec_schedule@deep@vecs0.html * igt@gem_exec_suspend@basic-s0@smem: - shard-tglu: [ABORT][229] ([i915#5122] / [i915#5251]) -> [PASS][230] [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-5/igt@gem_exec_suspend@basic-s0@smem.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-10/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_exec_whisper@basic-queues-all: - shard-mtlp: [FAIL][231] ([i915#6363]) -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@gem_exec_whisper@basic-queues-all.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-1/igt@gem_exec_whisper@basic-queues-all.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-snb: [ABORT][233] ([i915#5161]) -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-snb6/igt@gem_mmap_gtt@fault-concurrent-y.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-snb2/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@gem_workarounds@suspend-resume-context: - shard-dg2: [FAIL][235] ([fdo#103375]) -> [PASS][236] +4 similar issues [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-5/igt@gem_workarounds@suspend-resume-context.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-5/igt@gem_workarounds@suspend-resume-context.html * igt@i915_hangman@detector@vcs0: - shard-mtlp: [FAIL][237] ([i915#8456]) -> [PASS][238] +2 similar issues [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-3/igt@i915_hangman@detector@vcs0.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@i915_hangman@detector@vcs0.html * igt@i915_hangman@gt-engine-error@vcs0: - shard-mtlp: [FAIL][239] ([i915#7069]) -> [PASS][240] [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@i915_hangman@gt-engine-error@vcs0.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-5/igt@i915_hangman@gt-engine-error@vcs0.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-mtlp: [FAIL][241] ([i915#8691]) -> [PASS][242] [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-6/igt@i915_pipe_stress@stress-xrgb8888-untiled.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [SKIP][243] ([fdo#109271]) -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-apl7/igt@i915_pm_dc@dc9-dpms.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-apl1/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rc6_residency@rc6-idle@ccs0: - shard-dg2: [FAIL][245] ([i915#7747] / [i915#7894]) -> [PASS][246] [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-3/igt@i915_pm_rc6_residency@rc6-idle@ccs0.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@i915_pm_rc6_residency@rc6-idle@ccs0.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-dg2: [FAIL][247] ([i915#7747]) -> [PASS][248] +3 similar issues [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-3/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][249] ([i915#1397]) -> [PASS][250] +1 similar issue [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-4/igt@i915_pm_rpm@dpms-lpsp.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@modeset-lpsp: - shard-dg2: [SKIP][251] ([i915#1397]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-7/igt@i915_pm_rpm@modeset-lpsp.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-12/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress: - {shard-dg1}: [SKIP][253] ([i915#1397]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg1-15/igt@i915_pm_rpm@modeset-lpsp-stress.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_selftest@live@gt_mocs: - shard-mtlp: [DMESG-FAIL][255] ([i915#7059]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@i915_selftest@live@gt_mocs.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@slpc: - shard-mtlp: [DMESG-WARN][257] ([i915#6367]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@i915_selftest@live@slpc.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@i915_selftest@live@slpc.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [DMESG-FAIL][259] ([i915#6763]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@i915_selftest@live@workarounds.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@i915_selftest@live@workarounds.html * igt@i915_selftest@perf@request: - shard-mtlp: [DMESG-FAIL][261] ([i915#8573]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@i915_selftest@perf@request.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-5/igt@i915_selftest@perf@request.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [FAIL][263] ([i915#5138]) -> [PASS][264] +1 similar issue [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-mtlp: [FAIL][265] ([i915#3743]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_cursor_crc@cursor-random-256x85@pipe-d-edp-1: - shard-mtlp: [FAIL][267] -> [PASS][268] +1 similar issue [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@kms_cursor_crc@cursor-random-256x85@pipe-d-edp-1.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-256x85@pipe-d-edp-1.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [FAIL][269] ([i915#2346]) -> [PASS][270] +1 similar issue [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary: - shard-dg2: [FAIL][271] ([i915#6880]) -> [PASS][272] +2 similar issues [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html * igt@perf_pmu@busy-double-start@ccs0: - shard-mtlp: [FAIL][273] ([i915#4349]) -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@perf_pmu@busy-double-start@ccs0.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-6/igt@perf_pmu@busy-double-start@ccs0.html * igt@sysfs_heartbeat_interval@nopreempt@ccs0: - shard-mtlp: [FAIL][275] ([i915#6015]) -> [PASS][276] +2 similar issues [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@sysfs_heartbeat_interval@nopreempt@ccs0.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@sysfs_heartbeat_interval@nopreempt@ccs0.html #### Warnings #### * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [TIMEOUT][277] ([i915#5493]) -> [DMESG-WARN][278] ([i915#4936] / [i915#5493]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [WARN][279] ([i915#6596] / [i915#7356]) -> [DMESG-WARN][280] ([i915#7061]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-12/igt@i915_module_load@reload-with-fault-injection.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglu: [FAIL][281] ([i915#2681] / [i915#3591]) -> [WARN][282] ([i915#2681]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: [DMESG-FAIL][283] ([i915#2017] / [i915#5954]) -> [FAIL][284] ([i915#2346]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][285] ([fdo#109285]) -> [SKIP][286] ([fdo#109285] / [i915#4098]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@kms_force_connector_basic@force-load-detect.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#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#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3711]: https://gitlab.freedesktop.org/drm/intel/issues/3711 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4839]: https://gitlab.freedesktop.org/drm/intel/issues/4839 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5161]: https://gitlab.freedesktop.org/drm/intel/issues/5161 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5251]: https://gitlab.freedesktop.org/drm/intel/issues/5251 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 [i915#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#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6363]: https://gitlab.freedesktop.org/drm/intel/issues/6363 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6403]: https://gitlab.freedesktop.org/drm/intel/issues/6403 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6596]: https://gitlab.freedesktop.org/drm/intel/issues/6596 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7747]: https://gitlab.freedesktop.org/drm/intel/issues/7747 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7894]: https://gitlab.freedesktop.org/drm/intel/issues/7894 [i915#7916]: https://gitlab.freedesktop.org/drm/intel/issues/7916 [i915#7941]: https://gitlab.freedesktop.org/drm/intel/issues/7941 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063 [i915#8178]: https://gitlab.freedesktop.org/drm/intel/issues/8178 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8248]: https://gitlab.freedesktop.org/drm/intel/issues/8248 [i915#8304]: https://gitlab.freedesktop.org/drm/intel/issues/8304 [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#8456]: https://gitlab.freedesktop.org/drm/intel/issues/8456 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8503]: https://gitlab.freedesktop.org/drm/intel/issues/8503 [i915#8545]: https://gitlab.freedesktop.org/drm/intel/issues/8545 [i915#8573]: https://gitlab.freedesktop.org/drm/intel/issues/8573 [i915#8628]: https://gitlab.freedesktop.org/drm/intel/issues/8628 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8682]: https://gitlab.freedesktop.org/drm/intel/issues/8682 [i915#8691]: https://gitlab.freedesktop.org/drm/intel/issues/8691 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7352 -> IGTPW_9281 CI-20190529: 20190529 CI_DRM_13328: 12cd6b2d321d9c034f3d4ba14788d68cb8da4eac @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9281: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/index.html IGT_7352: 471bfababd070e1dac0ebb87470ac4f2ae85e663 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/index.html [-- Attachment #2: Type: text/html, Size: 91399 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Handle GT and tile seperation in IGT (rev3) 2023-06-28 10:52 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-06-29 17:47 ` Kamil Konieczny 2023-06-30 7:35 ` Yedireswarapu, SaiX Nandan 0 siblings, 1 reply; 17+ messages in thread From: Kamil Konieczny @ 2023-06-29 17:47 UTC (permalink / raw) To: igt-dev; +Cc: SaiX Nandan Yedireswarapu, SanjuX Marikkar, RavitejaX Veesam Hi Sai, On 2023-06-28 at 10:52:30 -0000, Patchwork wrote: > == Series Details == > > Series: Handle GT and tile seperation in IGT (rev3) > URL : https://patchwork.freedesktop.org/series/119801/ > State : failure > > == Summary == > > CI Bug Log - changes from IGT_7352_full -> IGTPW_9281_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_9281_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_9281_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_9281/index.html > > Participating hosts (9 -> 9) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_9281_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@runner@aborted: > - shard-apl: NOTRUN -> [FAIL][1] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-apl4/igt@runner@aborted.html > This is unrelated, icould you supress and respin tests? Regards, Kamil > > New tests > --------- > > New tests have been introduced between IGT_7352_full and IGTPW_9281_full: > > ### New IGT tests (3) ### > > * igt@kms_cursor_crc@cursor-alpha-transparent@pipe-a-hdmi-a-3: > - Statuses : 1 pass(s) > - Exec time: [0.0] s > > * igt@kms_cursor_crc@cursor-alpha-transparent@pipe-d-hdmi-a-3: > - Statuses : 1 pass(s) > - Exec time: [0.0] s > > * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-1: > - Statuses : 1 pass(s) > - Exec time: [0.0] s > > > > Known issues > ------------ > > Here are the changes found in IGTPW_9281_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@api_intel_bb@object-reloc-purge-cache: > - shard-mtlp: NOTRUN -> [SKIP][2] ([i915#8411]) +1 similar issue > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@api_intel_bb@object-reloc-purge-cache.html > > * igt@device_reset@cold-reset-bound: > - shard-tglu: NOTRUN -> [SKIP][3] ([i915#7701]) > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-10/igt@device_reset@cold-reset-bound.html > - shard-rkl: NOTRUN -> [SKIP][4] ([i915#7701]) > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@device_reset@cold-reset-bound.html > > * igt@drm_fdinfo@busy-idle@bcs0: > - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8414]) +4 similar issues > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@drm_fdinfo@busy-idle@bcs0.html > > * igt@drm_fdinfo@busy-idle@ccs0: > - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#4579] / [i915#8414]) > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@drm_fdinfo@busy-idle@ccs0.html > > * igt@feature_discovery@chamelium: > - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#4854]) > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-1/igt@feature_discovery@chamelium.html > > * igt@feature_discovery@display-3x: > - shard-rkl: NOTRUN -> [SKIP][8] ([i915#1839]) > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-1/igt@feature_discovery@display-3x.html > > * igt@gem_basic@multigpu-create-close: > - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#7697]) > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-1/igt@gem_basic@multigpu-create-close.html > > * igt@gem_caching@writes: > - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#4873]) +1 similar issue > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@gem_caching@writes.html > > * igt@gem_create@create-ext-cpu-access-big: > - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#6335]) > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@gem_create@create-ext-cpu-access-big.html > > * igt@gem_ctx_exec@basic-nohangcheck: > - shard-mtlp: [PASS][12] -> [FAIL][13] ([i915#6121] / [i915#7916]) > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@gem_ctx_exec@basic-nohangcheck.html > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@gem_ctx_exec@basic-nohangcheck.html > > * igt@gem_ctx_param@set-priority-not-supported: > - shard-tglu: NOTRUN -> [SKIP][14] ([fdo#109314]) > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@gem_ctx_param@set-priority-not-supported.html > - shard-rkl: NOTRUN -> [SKIP][15] ([fdo#109314]) > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@gem_ctx_param@set-priority-not-supported.html > > * igt@gem_eio@hibernate: > - shard-dg2: NOTRUN -> [ABORT][16] ([i915#7975] / [i915#8213]) > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@gem_eio@hibernate.html > > * igt@gem_exec_balancer@bonded-dual: > - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#4771]) +1 similar issue > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-1/igt@gem_exec_balancer@bonded-dual.html > > * igt@gem_exec_balancer@full-pulse: > - shard-dg2: [PASS][18] -> [FAIL][19] ([i915#6032]) > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-12/igt@gem_exec_balancer@full-pulse.html > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-11/igt@gem_exec_balancer@full-pulse.html > > * igt@gem_exec_balancer@parallel-bb-first: > - shard-rkl: NOTRUN -> [SKIP][20] ([i915#4525]) > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@gem_exec_balancer@parallel-bb-first.html > > * igt@gem_exec_fair@basic-none-share@rcs0: > - shard-tglu: NOTRUN -> [FAIL][21] ([i915#2842]) > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@gem_exec_fair@basic-none-share@rcs0.html > > * igt@gem_exec_fair@basic-pace-share@rcs0: > - shard-glk: [PASS][22] -> [FAIL][23] ([i915#2842]) > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html > - shard-tglu: [PASS][24] -> [FAIL][25] ([i915#2842]) > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html > > * igt@gem_exec_fair@basic-sync: > - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#4473] / [i915#4771]) +1 similar issue > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@gem_exec_fair@basic-sync.html > > * igt@gem_exec_fair@basic-throttle@rcs0: > - shard-rkl: [PASS][27] -> [FAIL][28] ([i915#2842]) +3 similar issues > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-4/igt@gem_exec_fair@basic-throttle@rcs0.html > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-1/igt@gem_exec_fair@basic-throttle@rcs0.html > > * igt@gem_exec_flush@basic-batch-kernel-default-cmd: > - shard-rkl: NOTRUN -> [SKIP][29] ([fdo#109313]) > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html > - shard-tglu: NOTRUN -> [SKIP][30] ([fdo#109313]) > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-6/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html > - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#3711]) > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html > > * igt@gem_exec_gttfill@multigpu-basic: > - shard-rkl: NOTRUN -> [SKIP][32] ([i915#7697]) > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-1/igt@gem_exec_gttfill@multigpu-basic.html > > * igt@gem_exec_reloc@basic-gtt-read: > - shard-dg2: NOTRUN -> [SKIP][33] ([i915#3281]) +1 similar issue > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-12/igt@gem_exec_reloc@basic-gtt-read.html > > * igt@gem_exec_reloc@basic-gtt-wc-noreloc: > - shard-rkl: NOTRUN -> [SKIP][34] ([i915#3281]) +4 similar issues > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html > > * igt@gem_exec_reloc@basic-write-cpu-active: > - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#3281]) +3 similar issues > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@gem_exec_reloc@basic-write-cpu-active.html > > * igt@gem_exec_schedule@preempt-queue-chain: > - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4812]) > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@gem_exec_schedule@preempt-queue-chain.html > > * igt@gem_exec_suspend@basic-s4-devices@lmem0: > - shard-dg2: [PASS][37] -> [ABORT][38] ([i915#7975] / [i915#8213] / [i915#8682]) > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-5/igt@gem_exec_suspend@basic-s4-devices@lmem0.html > > * igt@gem_exec_whisper@basic-contexts-forked-all: > - shard-mtlp: [PASS][39] -> [TIMEOUT][40] ([i915#8628]) > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@gem_exec_whisper@basic-contexts-forked-all.html > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-1/igt@gem_exec_whisper@basic-contexts-forked-all.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/IGT_7352/shard-mtlp-4/igt@gem_exec_whisper@basic-normal.html > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@gem_exec_whisper@basic-normal.html > > * igt@gem_huc_copy@huc-copy: > - shard-rkl: NOTRUN -> [SKIP][43] ([i915#2190]) > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@gem_huc_copy@huc-copy.html > - shard-tglu: NOTRUN -> [SKIP][44] ([i915#2190]) > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-10/igt@gem_huc_copy@huc-copy.html > > * igt@gem_lmem_swapping@parallel-random-verify: > - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4613]) +1 similar issue > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@gem_lmem_swapping@parallel-random-verify.html > > * igt@gem_lmem_swapping@smem-oom: > - shard-rkl: NOTRUN -> [SKIP][46] ([i915#4613]) +1 similar issue > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@gem_lmem_swapping@smem-oom.html > > * igt@gem_mmap_gtt@hang-user: > - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4077]) +8 similar issues > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@gem_mmap_gtt@hang-user.html > > * igt@gem_mmap_wc@set-cache-level: > - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4083]) +4 similar issues > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@gem_mmap_wc@set-cache-level.html > > * igt@gem_pwrite@basic-self: > - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3282]) > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-10/igt@gem_pwrite@basic-self.html > > * igt@gem_pxp@create-regular-buffer: > - shard-rkl: NOTRUN -> [SKIP][50] ([i915#4270]) > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@gem_pxp@create-regular-buffer.html > > * igt@gem_pxp@regular-baseline-src-copy-readible: > - shard-tglu: NOTRUN -> [SKIP][51] ([i915#4270]) > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@gem_pxp@regular-baseline-src-copy-readible.html > > * igt@gem_readwrite@new-obj: > - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#3282]) +2 similar issues > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@gem_readwrite@new-obj.html > > * igt@gem_render_copy@y-tiled-to-vebox-linear: > - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#8428]) +3 similar issues > [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-5/igt@gem_render_copy@y-tiled-to-vebox-linear.html > > * igt@gem_set_tiling_vs_blt@tiled-to-untiled: > - shard-rkl: NOTRUN -> [SKIP][54] ([i915#8411]) +1 similar issue > [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html > - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4079]) +1 similar issue > [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html > > * igt@gem_softpin@evict-snoop: > - shard-rkl: NOTRUN -> [SKIP][56] ([fdo#109312]) > [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@gem_softpin@evict-snoop.html > - shard-tglu: NOTRUN -> [SKIP][57] ([fdo#109312]) > [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@gem_softpin@evict-snoop.html > > * igt@gem_tiled_blits@basic: > - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4077]) +2 similar issues > [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@gem_tiled_blits@basic.html > > * igt@gem_userptr_blits@access-control: > - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#3297]) > [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@gem_userptr_blits@access-control.html > > * igt@gem_userptr_blits@coherency-sync: > - shard-dg2: NOTRUN -> [SKIP][60] ([i915#3297]) > [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@gem_userptr_blits@coherency-sync.html > > * igt@gem_userptr_blits@nohangcheck: > - shard-mtlp: [PASS][61] -> [FAIL][62] ([i915#7916]) > [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@gem_userptr_blits@nohangcheck.html > [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@gem_userptr_blits@nohangcheck.html > > * igt@gem_userptr_blits@readonly-unsync: > - shard-rkl: NOTRUN -> [SKIP][63] ([i915#3297]) > [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@gem_userptr_blits@readonly-unsync.html > > * igt@gen7_exec_parse@basic-allocation: > - shard-rkl: NOTRUN -> [SKIP][64] ([fdo#109289]) > [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@gen7_exec_parse@basic-allocation.html > > * igt@gen9_exec_parse@allowed-all: > - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#2856]) > [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@gen9_exec_parse@allowed-all.html > > * igt@gen9_exec_parse@batch-zero-length: > - shard-dg2: NOTRUN -> [SKIP][66] ([i915#2856]) > [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-1/igt@gen9_exec_parse@batch-zero-length.html > > * igt@gen9_exec_parse@bb-start-far: > - shard-tglu: NOTRUN -> [SKIP][67] ([i915#2527] / [i915#2856]) +1 similar issue > [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-5/igt@gen9_exec_parse@bb-start-far.html > > * igt@i915_hangman@engine-engine-error@vcs0: > - shard-mtlp: NOTRUN -> [FAIL][68] ([i915#7069]) > [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@i915_hangman@engine-engine-error@vcs0.html > > * igt@i915_hangman@engine-engine-hang@vcs0: > - shard-mtlp: [PASS][69] -> [FAIL][70] ([i915#7069]) > [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@i915_hangman@engine-engine-hang@vcs0.html > [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@i915_hangman@engine-engine-hang@vcs0.html > > * igt@i915_pm_backlight@fade-with-dpms: > - shard-rkl: NOTRUN -> [SKIP][71] ([i915#7561]) > [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@i915_pm_backlight@fade-with-dpms.html > - shard-tglu: NOTRUN -> [SKIP][72] ([i915#7561]) > [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-2/igt@i915_pm_backlight@fade-with-dpms.html > > * igt@i915_pm_dc@dc6-dpms: > - shard-tglu: [PASS][73] -> [FAIL][74] ([i915#3989] / [i915#454]) > [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-10/igt@i915_pm_dc@dc6-dpms.html > [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-5/igt@i915_pm_dc@dc6-dpms.html > > * igt@i915_pm_dc@dc6-psr: > - shard-rkl: NOTRUN -> [SKIP][75] ([i915#658]) > [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@i915_pm_dc@dc6-psr.html > > * igt@i915_pm_rpm@dpms-mode-unset-lpsp: > - shard-dg2: [PASS][76] -> [SKIP][77] ([i915#1397]) +1 similar issue > [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-12/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html > [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-1/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html > > * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: > - shard-rkl: [PASS][78] -> [SKIP][79] ([i915#1397]) +1 similar issue > [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-2/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html > [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html > > * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: > - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4212]) > [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-7/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html > > * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1: > - shard-glk: [PASS][81] -> [FAIL][82] ([i915#2521]) > [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html > [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-glk3/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html > > * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs-cc: > - shard-tglu: NOTRUN -> [SKIP][83] ([i915#8502]) +7 similar issues > [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs-cc.html > > * igt@kms_async_flips@crc@pipe-b-hdmi-a-1: > - shard-dg2: NOTRUN -> [FAIL][84] ([i915#8247]) +3 similar issues > [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-10/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html > > * igt@kms_atomic@plane-primary-overlay-mutable-zpos: > - shard-rkl: NOTRUN -> [SKIP][85] ([i915#404]) > [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html > > * igt@kms_big_fb@4-tiled-32bpp-rotate-270: > - shard-tglu: NOTRUN -> [SKIP][86] ([fdo#111615] / [i915#5286]) +2 similar issues > [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html > > * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: > - shard-mtlp: [PASS][87] -> [FAIL][88] ([i915#5138]) > [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html > [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html > > * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: > - shard-mtlp: NOTRUN -> [FAIL][89] ([i915#3743]) +2 similar issues > [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html > - shard-rkl: NOTRUN -> [SKIP][90] ([i915#5286]) +1 similar issue > [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html > > * igt@kms_big_fb@linear-16bpp-rotate-90: > - shard-dg2: NOTRUN -> [SKIP][91] ([fdo#111614]) +1 similar issue > [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@kms_big_fb@linear-16bpp-rotate-90.html > > * igt@kms_big_fb@x-tiled-32bpp-rotate-270: > - shard-mtlp: NOTRUN -> [SKIP][92] ([fdo#111614]) > [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html > > * igt@kms_big_fb@x-tiled-8bpp-rotate-90: > - shard-rkl: NOTRUN -> [SKIP][93] ([fdo#111614] / [i915#3638]) > [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html > > * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: > - shard-dg2: NOTRUN -> [SKIP][94] ([i915#5190]) +2 similar issues > [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html > > * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: > - shard-mtlp: NOTRUN -> [SKIP][95] ([fdo#111615]) +6 similar issues > [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html > > * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: > - shard-rkl: NOTRUN -> [SKIP][96] ([fdo#110723]) +1 similar issue > [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html > - shard-tglu: NOTRUN -> [SKIP][97] ([fdo#111615]) > [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html > > * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip: > - shard-dg2: NOTRUN -> [SKIP][98] ([i915#4538] / [i915#5190]) +1 similar issue > [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html > > * igt@kms_big_joiner@2x-modeset: > - shard-rkl: NOTRUN -> [SKIP][99] ([i915#2705]) > [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_big_joiner@2x-modeset.html > > * igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs: > - shard-rkl: NOTRUN -> [SKIP][100] ([i915#3886] / [i915#5354] / [i915#6095]) +1 similar issue > [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs.html > > * igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs: > - shard-dg2: NOTRUN -> [SKIP][101] ([i915#3689] / [i915#5354]) +2 similar issues > [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs.html > > * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: > - shard-dg2: NOTRUN -> [SKIP][102] ([i915#3689] / [i915#3886] / [i915#5354]) > [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html > > * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs: > - shard-rkl: NOTRUN -> [SKIP][103] ([i915#5354] / [i915#6095]) +2 similar issues > [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs.html > > * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs: > - shard-tglu: NOTRUN -> [SKIP][104] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +1 similar issue > [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-3/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html > > * igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs: > - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#6095]) +9 similar issues > [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs.html > > * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs: > - shard-dg2: NOTRUN -> [SKIP][106] ([i915#5354]) +10 similar issues > [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html > > * igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_mtl_rc_ccs: > - shard-tglu: NOTRUN -> [SKIP][107] ([i915#5354] / [i915#6095]) +5 similar issues > [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-3/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_mtl_rc_ccs.html > > * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs: > - shard-rkl: NOTRUN -> [SKIP][108] ([i915#5354]) +10 similar issues > [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs.html > > * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs: > - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#3886] / [i915#6095]) +4 similar issues > [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-6/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html > > * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs: > - shard-tglu: NOTRUN -> [SKIP][110] ([i915#3689] / [i915#5354] / [i915#6095]) +3 similar issues > [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html > > * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-yf_tiled_ccs: > - shard-tglu: NOTRUN -> [SKIP][111] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) > [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-yf_tiled_ccs.html > > * igt@kms_cdclk@mode-transition: > - shard-tglu: NOTRUN -> [SKIP][112] ([i915#3742]) > [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-10/igt@kms_cdclk@mode-transition.html > > * igt@kms_cdclk@mode-transition@pipe-b-edp-1: > - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#7213]) +2 similar issues > [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html > > * igt@kms_cdclk@mode-transition@pipe-c-hdmi-a-3: > - shard-dg2: NOTRUN -> [SKIP][114] ([i915#4087]) +2 similar issues > [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@kms_cdclk@mode-transition@pipe-c-hdmi-a-3.html > > * igt@kms_cdclk@mode-transition@pipe-d-edp-1: > - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#4579] / [i915#7213]) > [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@kms_cdclk@mode-transition@pipe-d-edp-1.html > > * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: > - shard-dg2: NOTRUN -> [SKIP][116] ([i915#4087] / [i915#4579]) > [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html > > * igt@kms_chamelium_color@ctm-0-75: > - shard-rkl: NOTRUN -> [SKIP][117] ([fdo#111827]) > [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-1/igt@kms_chamelium_color@ctm-0-75.html > > * igt@kms_chamelium_color@ctm-negative: > - shard-tglu: NOTRUN -> [SKIP][118] ([fdo#111827]) +1 similar issue > [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@kms_chamelium_color@ctm-negative.html > - shard-mtlp: NOTRUN -> [SKIP][119] ([fdo#111827]) > [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@kms_chamelium_color@ctm-negative.html > > * igt@kms_chamelium_frames@dp-frame-dump: > - shard-dg2: NOTRUN -> [SKIP][120] ([i915#7828]) +2 similar issues > [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-10/igt@kms_chamelium_frames@dp-frame-dump.html > > * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: > - shard-rkl: NOTRUN -> [SKIP][121] ([i915#7828]) +2 similar issues > [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html > > * igt@kms_chamelium_hpd@dp-hpd-storm-disable: > - shard-tglu: NOTRUN -> [SKIP][122] ([i915#7828]) +2 similar issues > [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-7/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html > - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#7828]) +2 similar issues > [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html > > * igt@kms_content_protection@lic@pipe-a-dp-2: > - shard-dg2: NOTRUN -> [TIMEOUT][124] ([i915#7173]) > [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-12/igt@kms_content_protection@lic@pipe-a-dp-2.html > > * igt@kms_content_protection@mei_interface: > - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#8063]) > [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@kms_content_protection@mei_interface.html > > * igt@kms_content_protection@srm: > - shard-tglu: NOTRUN -> [SKIP][126] ([i915#4579] / [i915#6944] / [i915#7116] / [i915#7118]) +1 similar issue > [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@kms_content_protection@srm.html > > * igt@kms_cursor_crc@cursor-offscreen-512x170: > - shard-tglu: NOTRUN -> [SKIP][127] ([fdo#109279] / [i915#3359]) > [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@kms_cursor_crc@cursor-offscreen-512x170.html > - shard-rkl: NOTRUN -> [SKIP][128] ([fdo#109279] / [i915#3359]) > [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html > > * igt@kms_cursor_crc@cursor-random-32x32: > - shard-dg2: NOTRUN -> [SKIP][129] ([i915#3555] / [i915#4579]) +1 similar issue > [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@kms_cursor_crc@cursor-random-32x32.html > > * igt@kms_cursor_crc@cursor-random-512x512: > - shard-dg2: NOTRUN -> [SKIP][130] ([i915#3359]) > [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x512.html > > * igt@kms_cursor_crc@cursor-rapid-movement-32x10: > - shard-rkl: NOTRUN -> [SKIP][131] ([i915#3555] / [i915#4579]) +4 similar issues > [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html > - shard-tglu: NOTRUN -> [SKIP][132] ([i915#3555] / [i915#4579]) +2 similar issues > [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html > > * igt@kms_cursor_crc@cursor-sliding-512x170: > - shard-rkl: NOTRUN -> [SKIP][133] ([i915#3359]) > [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x170.html > > * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: > - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#4213]) > [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html > > * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size: > - shard-mtlp: [PASS][135] -> [FAIL][136] ([i915#8248]) > [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-3/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html > [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html > > * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: > - shard-dg2: NOTRUN -> [SKIP][137] ([fdo#109274] / [i915#5354]) > [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-3/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html > > * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: > - shard-tglu: NOTRUN -> [SKIP][138] ([fdo#109274]) > [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html > - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#3546]) +3 similar issues > [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-5/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > - shard-glk: [PASS][140] -> [FAIL][141] ([i915#2346]) > [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > > * igt@kms_display_modes@extended-mode-basic: > - shard-tglu: NOTRUN -> [SKIP][142] ([i915#4579]) > [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-2/igt@kms_display_modes@extended-mode-basic.html > > * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: > - shard-rkl: NOTRUN -> [SKIP][143] ([i915#3804] / [i915#4579]) > [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html > > * igt@kms_draw_crc@draw-method-mmap-gtt: > - shard-dg2: NOTRUN -> [SKIP][144] ([i915#4579]) > [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-3/igt@kms_draw_crc@draw-method-mmap-gtt.html > > * igt@kms_dsc@dsc-with-bpc-formats: > - shard-tglu: NOTRUN -> [SKIP][145] ([i915#3840] / [i915#4579]) > [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@kms_dsc@dsc-with-bpc-formats.html > > * igt@kms_dsc@dsc-with-output-formats: > - shard-rkl: NOTRUN -> [SKIP][146] ([i915#4579]) > [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html > > * igt@kms_fbcon_fbt@fbc-suspend: > - shard-dg2: [PASS][147] -> [INCOMPLETE][148] ([i915#4839]) > [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-12/igt@kms_fbcon_fbt@fbc-suspend.html > [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-7/igt@kms_fbcon_fbt@fbc-suspend.html > > * igt@kms_flip@2x-blocking-absolute-wf_vblank: > - shard-tglu: NOTRUN -> [SKIP][149] ([fdo#109274] / [i915#3637]) +4 similar issues > [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-2/igt@kms_flip@2x-blocking-absolute-wf_vblank.html > - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#3637]) +5 similar issues > [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-1/igt@kms_flip@2x-blocking-absolute-wf_vblank.html > > * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: > - shard-dg2: NOTRUN -> [SKIP][151] ([fdo#109274]) > [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html > > * igt@kms_flip@2x-flip-vs-panning-vs-hang: > - shard-rkl: NOTRUN -> [SKIP][152] ([fdo#111825]) +3 similar issues > [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html > > * igt@kms_flip@2x-flip-vs-rmfb-interruptible: > - shard-snb: NOTRUN -> [SKIP][153] ([fdo#109271] / [fdo#111767]) > [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-snb6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html > > * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: > - shard-tglu: NOTRUN -> [SKIP][154] ([i915#2587] / [i915#2672] / [i915#4579]) +1 similar issue > [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html > > * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: > - shard-dg2: NOTRUN -> [SKIP][155] ([i915#2672] / [i915#4579]) > [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html > > * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: > - shard-rkl: NOTRUN -> [SKIP][156] ([i915#2672] / [i915#4579]) > [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html > > * igt@kms_force_connector_basic@prune-stale-modes: > - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#5274]) > [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html > > * igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt: > - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#8708]) +3 similar issues > [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt.html > > * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render: > - shard-dg2: NOTRUN -> [SKIP][159] ([i915#3458]) +4 similar issues > [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render.html > > * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt: > - shard-dg2: NOTRUN -> [SKIP][160] ([i915#8708]) +2 similar issues > [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html > > * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: > - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#1825]) +14 similar issues > [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html > > * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: > - shard-rkl: NOTRUN -> [SKIP][162] ([fdo#111825] / [i915#1825]) +12 similar issues > [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html > > * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: > - shard-tglu: NOTRUN -> [SKIP][163] ([fdo#110189]) +10 similar issues > [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html > > * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: > - shard-rkl: NOTRUN -> [SKIP][164] ([i915#3023]) +6 similar issues > [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html > > * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: > - shard-tglu: NOTRUN -> [SKIP][165] ([fdo#109280]) +14 similar issues > [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html > > * igt@kms_invalid_mode@clock-too-high@edp-1-pipe-b: > - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#6403]) +2 similar issues > [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-6/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-b.html > > * igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d: > - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#4579] / [i915#6403]) > [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-6/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d.html > > * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1: > - shard-dg2: NOTRUN -> [SKIP][168] ([i915#5176]) +2 similar issues > [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html > > * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-1: > - shard-dg2: NOTRUN -> [SKIP][169] ([i915#4579] / [i915#5176]) > [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-1.html > > * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-a-hdmi-a-1: > - shard-rkl: NOTRUN -> [SKIP][170] ([i915#5176]) +1 similar issue > [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-a-hdmi-a-1.html > > * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1: > - shard-rkl: NOTRUN -> [SKIP][171] ([i915#4579] / [i915#5176]) +1 similar issue > [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1.html > > * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-1: > - shard-tglu: NOTRUN -> [SKIP][172] ([i915#5176]) +2 similar issues > [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-4/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-1.html > > * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-d-hdmi-a-1: > - shard-tglu: NOTRUN -> [SKIP][173] ([i915#4579] / [i915#5176]) > [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-4/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-d-hdmi-a-1.html > > * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-3: > - shard-dg2: NOTRUN -> [SKIP][174] ([i915#4579] / [i915#5235]) +3 similar issues > [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-3.html > > * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: > - shard-rkl: NOTRUN -> [SKIP][175] ([i915#4579] / [i915#5235]) +4 similar issues > [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html > > * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1: > - shard-tglu: NOTRUN -> [SKIP][176] ([i915#5235]) +2 similar issues > [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html > > * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1: > - shard-tglu: NOTRUN -> [SKIP][177] ([i915#4579] / [i915#5235]) > [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1.html > > * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-2: > - shard-rkl: NOTRUN -> [SKIP][178] ([i915#5235]) +4 similar issues > [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-2.html > > * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-hdmi-a-1: > - shard-snb: NOTRUN -> [SKIP][179] ([fdo#109271]) +36 similar issues > [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-snb1/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-hdmi-a-1.html > > * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1: > - shard-dg2: NOTRUN -> [SKIP][180] ([i915#5235]) +11 similar issues > [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-10/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-b-hdmi-a-1: > - shard-snb: NOTRUN -> [SKIP][181] ([fdo#109271] / [i915#4579]) +12 similar issues > [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-snb1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-1.html > > * igt@kms_prime@basic-modeset-hybrid: > - shard-dg2: NOTRUN -> [SKIP][182] ([i915#6524] / [i915#6805]) > [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-1/igt@kms_prime@basic-modeset-hybrid.html > > * igt@kms_psr2_sf@cursor-plane-update-sf: > - shard-rkl: NOTRUN -> [SKIP][183] ([fdo#111068] / [i915#658]) > [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@kms_psr2_sf@cursor-plane-update-sf.html > > * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: > - shard-tglu: NOTRUN -> [SKIP][184] ([fdo#111068] / [i915#658]) +1 similar issue > [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html > > * igt@kms_psr@cursor_mmap_gtt: > - shard-rkl: NOTRUN -> [SKIP][185] ([i915#1072]) > [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_psr@cursor_mmap_gtt.html > > * igt@kms_psr@sprite_render: > - shard-dg2: NOTRUN -> [SKIP][186] ([i915#1072]) +1 similar issue > [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@kms_psr@sprite_render.html > > * igt@kms_tv_load_detect@load-detect: > - shard-rkl: NOTRUN -> [SKIP][187] ([fdo#109309]) > [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@kms_tv_load_detect@load-detect.html > > * igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend: > - shard-dg2: [PASS][188] -> [FAIL][189] ([fdo#103375]) > [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-3/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html > [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-5/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html > > * igt@kms_vblank@pipe-c-wait-busy: > - shard-rkl: NOTRUN -> [SKIP][190] ([i915#4070] / [i915#6768]) > [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@kms_vblank@pipe-c-wait-busy.html > > * igt@kms_vblank@pipe-d-query-forked-busy: > - shard-rkl: NOTRUN -> [SKIP][191] ([i915#4070] / [i915#533] / [i915#6768]) +2 similar issues > [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@kms_vblank@pipe-d-query-forked-busy.html > > * igt@kms_vrr@flipline: > - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#4579]) +8 similar issues > [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@kms_vrr@flipline.html > > * igt@kms_writeback@writeback-check-output: > - shard-rkl: NOTRUN -> [SKIP][193] ([i915#2437]) > [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@kms_writeback@writeback-check-output.html > > * igt@kms_writeback@writeback-fb-id: > - shard-tglu: NOTRUN -> [SKIP][194] ([i915#2437]) > [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@kms_writeback@writeback-fb-id.html > - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#2437]) > [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@kms_writeback@writeback-fb-id.html > > * igt@perf@non-zero-reason@0-rcs0: > - shard-dg2: [PASS][196] -> [FAIL][197] ([i915#7484]) > [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html > [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html > > * igt@perf@stress-open-close@0-rcs0: > - shard-glk: [PASS][198] -> [ABORT][199] ([i915#5213] / [i915#7941]) > [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk2/igt@perf@stress-open-close@0-rcs0.html > [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-glk9/igt@perf@stress-open-close@0-rcs0.html > > * igt@perf@unprivileged-single-ctx-counters: > - shard-tglu: NOTRUN -> [SKIP][200] ([fdo#109289]) > [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-5/igt@perf@unprivileged-single-ctx-counters.html > > * igt@perf_pmu@busy-double-start@vecs1: > - shard-dg2: NOTRUN -> [FAIL][201] ([i915#4349]) +4 similar issues > [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html > > * igt@perf_pmu@render-node-busy-idle@ccs0: > - shard-mtlp: [PASS][202] -> [FAIL][203] ([i915#4349]) +4 similar issues > [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@perf_pmu@render-node-busy-idle@ccs0.html > [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-5/igt@perf_pmu@render-node-busy-idle@ccs0.html > > * igt@prime_vgem@basic-write: > - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#3708]) > [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@prime_vgem@basic-write.html > > * igt@v3d/v3d_perfmon@get-values-invalid-perfmon: > - shard-tglu: NOTRUN -> [SKIP][205] ([fdo#109315] / [i915#2575]) +4 similar issues > [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-3/igt@v3d/v3d_perfmon@get-values-invalid-perfmon.html > > * igt@v3d/v3d_submit_cl@bad-bo: > - shard-dg2: NOTRUN -> [SKIP][206] ([i915#2575]) +3 similar issues > [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-1/igt@v3d/v3d_submit_cl@bad-bo.html > > * igt@v3d/v3d_submit_cl@simple-flush-cache: > - shard-rkl: NOTRUN -> [SKIP][207] ([fdo#109315]) > [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@v3d/v3d_submit_cl@simple-flush-cache.html > > * igt@v3d/v3d_submit_csd@bad-perfmon: > - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#2575]) +6 similar issues > [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@v3d/v3d_submit_csd@bad-perfmon.html > > * igt@vc4/vc4_create_bo@create-bo-0: > - shard-rkl: NOTRUN -> [SKIP][209] ([i915#7711]) +3 similar issues > [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@vc4/vc4_create_bo@create-bo-0.html > > * igt@vc4/vc4_perfmon@create-single-perfmon: > - shard-dg2: NOTRUN -> [SKIP][210] ([i915#7711]) > [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-3/igt@vc4/vc4_perfmon@create-single-perfmon.html > > * igt@vc4/vc4_wait_bo@used-bo-0ns: > - shard-tglu: NOTRUN -> [SKIP][211] ([i915#2575]) +3 similar issues > [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-6/igt@vc4/vc4_wait_bo@used-bo-0ns.html > - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#7711]) +3 similar issues > [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@vc4/vc4_wait_bo@used-bo-0ns.html > > > #### Possible fixes #### > > * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: > - shard-rkl: [FAIL][213] ([i915#7742]) -> [PASS][214] > [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html > [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html > > * igt@gem_barrier_race@remote-request@rcs0: > - shard-rkl: [ABORT][215] ([i915#8178]) -> [PASS][216] > [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-1/igt@gem_barrier_race@remote-request@rcs0.html > [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@gem_barrier_race@remote-request@rcs0.html > > * igt@gem_eio@context-create: > - {shard-dg1}: [DMESG-WARN][217] ([i915#4423]) -> [PASS][218] > [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg1-17/igt@gem_eio@context-create.html > [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg1-17/igt@gem_eio@context-create.html > > * igt@gem_eio@in-flight-contexts-10ms: > - shard-mtlp: [ABORT][219] ([i915#7941]) -> [PASS][220] > [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@gem_eio@in-flight-contexts-10ms.html > [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@gem_eio@in-flight-contexts-10ms.html > > * igt@gem_eio@in-flight-contexts-immediate: > - shard-mtlp: [ABORT][221] ([i915#8503]) -> [PASS][222] > [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@gem_eio@in-flight-contexts-immediate.html > [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@gem_eio@in-flight-contexts-immediate.html > > * igt@gem_exec_fair@basic-deadline: > - shard-glk: [FAIL][223] ([i915#2846]) -> [PASS][224] > [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk7/igt@gem_exec_fair@basic-deadline.html > [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-glk3/igt@gem_exec_fair@basic-deadline.html > > * igt@gem_exec_fair@basic-none@bcs0: > - shard-rkl: [FAIL][225] ([i915#2842]) -> [PASS][226] +1 similar issue > [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-2/igt@gem_exec_fair@basic-none@bcs0.html > [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html > > * igt@gem_exec_schedule@deep@vecs0: > - shard-mtlp: [FAIL][227] ([i915#8545]) -> [PASS][228] > [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@gem_exec_schedule@deep@vecs0.html > [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@gem_exec_schedule@deep@vecs0.html > > * igt@gem_exec_suspend@basic-s0@smem: > - shard-tglu: [ABORT][229] ([i915#5122] / [i915#5251]) -> [PASS][230] > [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-5/igt@gem_exec_suspend@basic-s0@smem.html > [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-10/igt@gem_exec_suspend@basic-s0@smem.html > > * igt@gem_exec_whisper@basic-queues-all: > - shard-mtlp: [FAIL][231] ([i915#6363]) -> [PASS][232] > [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@gem_exec_whisper@basic-queues-all.html > [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-1/igt@gem_exec_whisper@basic-queues-all.html > > * igt@gem_mmap_gtt@fault-concurrent-y: > - shard-snb: [ABORT][233] ([i915#5161]) -> [PASS][234] > [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-snb6/igt@gem_mmap_gtt@fault-concurrent-y.html > [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-snb2/igt@gem_mmap_gtt@fault-concurrent-y.html > > * igt@gem_workarounds@suspend-resume-context: > - shard-dg2: [FAIL][235] ([fdo#103375]) -> [PASS][236] +4 similar issues > [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-5/igt@gem_workarounds@suspend-resume-context.html > [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-5/igt@gem_workarounds@suspend-resume-context.html > > * igt@i915_hangman@detector@vcs0: > - shard-mtlp: [FAIL][237] ([i915#8456]) -> [PASS][238] +2 similar issues > [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-3/igt@i915_hangman@detector@vcs0.html > [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@i915_hangman@detector@vcs0.html > > * igt@i915_hangman@gt-engine-error@vcs0: > - shard-mtlp: [FAIL][239] ([i915#7069]) -> [PASS][240] > [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@i915_hangman@gt-engine-error@vcs0.html > [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-5/igt@i915_hangman@gt-engine-error@vcs0.html > > * igt@i915_pipe_stress@stress-xrgb8888-untiled: > - shard-mtlp: [FAIL][241] ([i915#8691]) -> [PASS][242] > [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-6/igt@i915_pipe_stress@stress-xrgb8888-untiled.html > [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@i915_pipe_stress@stress-xrgb8888-untiled.html > > * igt@i915_pm_dc@dc9-dpms: > - shard-apl: [SKIP][243] ([fdo#109271]) -> [PASS][244] > [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-apl7/igt@i915_pm_dc@dc9-dpms.html > [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-apl1/igt@i915_pm_dc@dc9-dpms.html > > * igt@i915_pm_rc6_residency@rc6-idle@ccs0: > - shard-dg2: [FAIL][245] ([i915#7747] / [i915#7894]) -> [PASS][246] > [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-3/igt@i915_pm_rc6_residency@rc6-idle@ccs0.html > [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@i915_pm_rc6_residency@rc6-idle@ccs0.html > > * igt@i915_pm_rc6_residency@rc6-idle@rcs0: > - shard-dg2: [FAIL][247] ([i915#7747]) -> [PASS][248] +3 similar issues > [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-3/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html > [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html > > * igt@i915_pm_rpm@dpms-lpsp: > - shard-rkl: [SKIP][249] ([i915#1397]) -> [PASS][250] +1 similar issue > [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-4/igt@i915_pm_rpm@dpms-lpsp.html > [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html > > * igt@i915_pm_rpm@modeset-lpsp: > - shard-dg2: [SKIP][251] ([i915#1397]) -> [PASS][252] > [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-7/igt@i915_pm_rpm@modeset-lpsp.html > [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-12/igt@i915_pm_rpm@modeset-lpsp.html > > * igt@i915_pm_rpm@modeset-lpsp-stress: > - {shard-dg1}: [SKIP][253] ([i915#1397]) -> [PASS][254] > [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg1-15/igt@i915_pm_rpm@modeset-lpsp-stress.html > [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress.html > > * igt@i915_selftest@live@gt_mocs: > - shard-mtlp: [DMESG-FAIL][255] ([i915#7059]) -> [PASS][256] > [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@i915_selftest@live@gt_mocs.html > [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@i915_selftest@live@gt_mocs.html > > * igt@i915_selftest@live@slpc: > - shard-mtlp: [DMESG-WARN][257] ([i915#6367]) -> [PASS][258] > [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@i915_selftest@live@slpc.html > [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@i915_selftest@live@slpc.html > > * igt@i915_selftest@live@workarounds: > - shard-mtlp: [DMESG-FAIL][259] ([i915#6763]) -> [PASS][260] > [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@i915_selftest@live@workarounds.html > [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@i915_selftest@live@workarounds.html > > * igt@i915_selftest@perf@request: > - shard-mtlp: [DMESG-FAIL][261] ([i915#8573]) -> [PASS][262] > [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@i915_selftest@perf@request.html > [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-5/igt@i915_selftest@perf@request.html > > * igt@kms_big_fb@4-tiled-64bpp-rotate-180: > - shard-mtlp: [FAIL][263] ([i915#5138]) -> [PASS][264] +1 similar issue > [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html > [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html > > * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: > - shard-mtlp: [FAIL][265] ([i915#3743]) -> [PASS][266] > [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html > [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html > > * igt@kms_cursor_crc@cursor-random-256x85@pipe-d-edp-1: > - shard-mtlp: [FAIL][267] -> [PASS][268] +1 similar issue > [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@kms_cursor_crc@cursor-random-256x85@pipe-d-edp-1.html > [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-256x85@pipe-d-edp-1.html > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > - shard-apl: [FAIL][269] ([i915#2346]) -> [PASS][270] +1 similar issue > [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > > * igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary: > - shard-dg2: [FAIL][271] ([i915#6880]) -> [PASS][272] +2 similar issues > [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html > [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html > > * igt@perf_pmu@busy-double-start@ccs0: > - shard-mtlp: [FAIL][273] ([i915#4349]) -> [PASS][274] > [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@perf_pmu@busy-double-start@ccs0.html > [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-6/igt@perf_pmu@busy-double-start@ccs0.html > > * igt@sysfs_heartbeat_interval@nopreempt@ccs0: > - shard-mtlp: [FAIL][275] ([i915#6015]) -> [PASS][276] +2 similar issues > [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@sysfs_heartbeat_interval@nopreempt@ccs0.html > [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@sysfs_heartbeat_interval@nopreempt@ccs0.html > > > #### Warnings #### > > * igt@gem_lmem_swapping@smem-oom@lmem0: > - shard-dg2: [TIMEOUT][277] ([i915#5493]) -> [DMESG-WARN][278] ([i915#4936] / [i915#5493]) > [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html > [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html > > * igt@i915_module_load@reload-with-fault-injection: > - shard-dg2: [WARN][279] ([i915#6596] / [i915#7356]) -> [DMESG-WARN][280] ([i915#7061]) > [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-12/igt@i915_module_load@reload-with-fault-injection.html > [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html > > * igt@i915_pm_rc6_residency@rc6-idle@rcs0: > - shard-tglu: [FAIL][281] ([i915#2681] / [i915#3591]) -> [WARN][282] ([i915#2681]) > [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html > [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > - shard-mtlp: [DMESG-FAIL][283] ([i915#2017] / [i915#5954]) -> [FAIL][284] ([i915#2346]) > [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > > * igt@kms_force_connector_basic@force-load-detect: > - shard-rkl: [SKIP][285] ([fdo#109285]) -> [SKIP][286] ([fdo#109285] / [i915#4098]) > [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html > [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@kms_force_connector_basic@force-load-detect.html > > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 > [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 > [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 > [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 > [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 > [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 > [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 > [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 > [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 > [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 > [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 > [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 > [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 > [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 > [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 > [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 > [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 > [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 > [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 > [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 > [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 > [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 > [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 > [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 > [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 > [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 > [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 > [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 > [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 > [i915#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#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 > [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 > [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 > [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 > [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 > [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 > [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 > [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 > [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 > [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 > [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 > [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 > [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 > [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 > [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 > [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 > [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 > [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 > [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 > [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 > [i915#3711]: https://gitlab.freedesktop.org/drm/intel/issues/3711 > [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 > [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 > [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 > [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 > [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 > [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 > [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 > [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 > [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 > [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 > [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 > [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 > [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 > [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 > [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 > [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 > [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 > [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 > [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 > [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 > [i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475 > [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 > [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 > [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 > [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 > [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 > [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 > [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 > [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 > [i915#4839]: https://gitlab.freedesktop.org/drm/intel/issues/4839 > [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 > [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 > [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 > [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 > [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 > [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 > [i915#5161]: https://gitlab.freedesktop.org/drm/intel/issues/5161 > [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 > [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 > [i915#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213 > [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 > [i915#5251]: https://gitlab.freedesktop.org/drm/intel/issues/5251 > [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 > [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 > [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 > [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 > [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 > [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 > [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 > [i915#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#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 > [i915#6363]: https://gitlab.freedesktop.org/drm/intel/issues/6363 > [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 > [i915#6403]: https://gitlab.freedesktop.org/drm/intel/issues/6403 > [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 > [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 > [i915#6596]: https://gitlab.freedesktop.org/drm/intel/issues/6596 > [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 > [i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763 > [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 > [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 > [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 > [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 > [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 > [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 > [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 > [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 > [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 > [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 > [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 > [i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356 > [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 > [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 > [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 > [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 > [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 > [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 > [i915#7747]: https://gitlab.freedesktop.org/drm/intel/issues/7747 > [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 > [i915#7894]: https://gitlab.freedesktop.org/drm/intel/issues/7894 > [i915#7916]: https://gitlab.freedesktop.org/drm/intel/issues/7916 > [i915#7941]: https://gitlab.freedesktop.org/drm/intel/issues/7941 > [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 > [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063 > [i915#8178]: https://gitlab.freedesktop.org/drm/intel/issues/8178 > [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 > [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 > [i915#8248]: https://gitlab.freedesktop.org/drm/intel/issues/8248 > [i915#8304]: https://gitlab.freedesktop.org/drm/intel/issues/8304 > [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#8456]: https://gitlab.freedesktop.org/drm/intel/issues/8456 > [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 > [i915#8503]: https://gitlab.freedesktop.org/drm/intel/issues/8503 > [i915#8545]: https://gitlab.freedesktop.org/drm/intel/issues/8545 > [i915#8573]: https://gitlab.freedesktop.org/drm/intel/issues/8573 > [i915#8628]: https://gitlab.freedesktop.org/drm/intel/issues/8628 > [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 > [i915#8682]: https://gitlab.freedesktop.org/drm/intel/issues/8682 > [i915#8691]: https://gitlab.freedesktop.org/drm/intel/issues/8691 > [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 > [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_7352 -> IGTPW_9281 > > CI-20190529: 20190529 > CI_DRM_13328: 12cd6b2d321d9c034f3d4ba14788d68cb8da4eac @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_9281: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/index.html > IGT_7352: 471bfababd070e1dac0ebb87470ac4f2ae85e663 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/index.html ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Handle GT and tile seperation in IGT (rev3) 2023-06-29 17:47 ` Kamil Konieczny @ 2023-06-30 7:35 ` Yedireswarapu, SaiX Nandan 0 siblings, 0 replies; 17+ messages in thread From: Yedireswarapu, SaiX Nandan @ 2023-06-30 7:35 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: Thursday, June 29, 2023 11:18 PM To: igt-dev@lists.freedesktop.org Cc: Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com>; Yedireswarapu, SaiX Nandan <saix.nandan.yedireswarapu@intel.com>; Veesam, RavitejaX <ravitejax.veesam@intel.com>; Marikkar, SanjuX <sanjux.marikkar@intel.com> Subject: Re: [igt-dev] ✗ Fi.CI.IGT: failure for Handle GT and tile seperation in IGT (rev3) Hi Sai, On 2023-06-28 at 10:52:30 -0000, Patchwork wrote: > == Series Details == > > Series: Handle GT and tile seperation in IGT (rev3) > URL : https://patchwork.freedesktop.org/series/119801/ > State : failure > > == Summary == > > CI Bug Log - changes from IGT_7352_full -> IGTPW_9281_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_9281_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_9281_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_9281/index.html > > Participating hosts (9 -> 9) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_9281_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@runner@aborted: > - shard-apl: NOTRUN -> [FAIL][1] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-apl4/igt@runner@aborted.html > This is unrelated, icould you supress and respin tests? Regards, Kamil > > New tests > --------- > > New tests have been introduced between IGT_7352_full and IGTPW_9281_full: > > ### New IGT tests (3) ### > > * igt@kms_cursor_crc@cursor-alpha-transparent@pipe-a-hdmi-a-3: > - Statuses : 1 pass(s) > - Exec time: [0.0] s > > * igt@kms_cursor_crc@cursor-alpha-transparent@pipe-d-hdmi-a-3: > - Statuses : 1 pass(s) > - Exec time: [0.0] s > > * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-1: > - Statuses : 1 pass(s) > - Exec time: [0.0] s > > > > Known issues > ------------ > > Here are the changes found in IGTPW_9281_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@api_intel_bb@object-reloc-purge-cache: > - shard-mtlp: NOTRUN -> [SKIP][2] ([i915#8411]) +1 similar issue > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@api_intel_bb@object-reloc-purge-cache.html > > * igt@device_reset@cold-reset-bound: > - shard-tglu: NOTRUN -> [SKIP][3] ([i915#7701]) > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-10/igt@device_reset@cold-reset-bound.html > - shard-rkl: NOTRUN -> [SKIP][4] ([i915#7701]) > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@device_reset@cold-reset-bound.html > > * igt@drm_fdinfo@busy-idle@bcs0: > - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8414]) +4 similar issues > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@drm_fdinfo@busy-idle@bcs0.html > > * igt@drm_fdinfo@busy-idle@ccs0: > - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#4579] / [i915#8414]) > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@drm_fdinfo@busy-idle@ccs0.html > > * igt@feature_discovery@chamelium: > - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#4854]) > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-1/igt@feature_discovery@chamelium.html > > * igt@feature_discovery@display-3x: > - shard-rkl: NOTRUN -> [SKIP][8] ([i915#1839]) > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-1/igt@feature_discovery@display-3x.html > > * igt@gem_basic@multigpu-create-close: > - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#7697]) > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-1/igt@gem_basic@multigpu-create-close.html > > * igt@gem_caching@writes: > - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#4873]) +1 similar issue > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@gem_caching@writes.html > > * igt@gem_create@create-ext-cpu-access-big: > - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#6335]) > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@gem_create@create-ext-cpu-access-big.html > > * igt@gem_ctx_exec@basic-nohangcheck: > - shard-mtlp: [PASS][12] -> [FAIL][13] ([i915#6121] / [i915#7916]) > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@gem_ctx_exec@basic-nohangcheck.html > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@gem_ctx_exec@basic-nohangcheck.html > > * igt@gem_ctx_param@set-priority-not-supported: > - shard-tglu: NOTRUN -> [SKIP][14] ([fdo#109314]) > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@gem_ctx_param@set-priority-not-supported.html > - shard-rkl: NOTRUN -> [SKIP][15] ([fdo#109314]) > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@gem_ctx_param@set-priority-not-supported.html > > * igt@gem_eio@hibernate: > - shard-dg2: NOTRUN -> [ABORT][16] ([i915#7975] / [i915#8213]) > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@gem_eio@hibernate.html > > * igt@gem_exec_balancer@bonded-dual: > - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#4771]) +1 similar issue > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-1/igt@gem_exec_balancer@bonded-dual.html > > * igt@gem_exec_balancer@full-pulse: > - shard-dg2: [PASS][18] -> [FAIL][19] ([i915#6032]) > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-12/igt@gem_exec_balancer@full-pulse.html > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-11/igt@gem_exec_balancer@full-pulse.html > > * igt@gem_exec_balancer@parallel-bb-first: > - shard-rkl: NOTRUN -> [SKIP][20] ([i915#4525]) > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@gem_exec_balancer@parallel-bb-first.html > > * igt@gem_exec_fair@basic-none-share@rcs0: > - shard-tglu: NOTRUN -> [FAIL][21] ([i915#2842]) > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@gem_exec_fair@basic-none-share@rcs0.html > > * igt@gem_exec_fair@basic-pace-share@rcs0: > - shard-glk: [PASS][22] -> [FAIL][23] ([i915#2842]) > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html > - shard-tglu: [PASS][24] -> [FAIL][25] ([i915#2842]) > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html > > * igt@gem_exec_fair@basic-sync: > - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#4473] / [i915#4771]) +1 similar issue > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@gem_exec_fair@basic-sync.html > > * igt@gem_exec_fair@basic-throttle@rcs0: > - shard-rkl: [PASS][27] -> [FAIL][28] ([i915#2842]) +3 similar issues > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-4/igt@gem_exec_fair@basic-throttle@rcs0.html > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-1/igt@gem_exec_fair@basic-throttle@rcs0.html > > * igt@gem_exec_flush@basic-batch-kernel-default-cmd: > - shard-rkl: NOTRUN -> [SKIP][29] ([fdo#109313]) > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html > - shard-tglu: NOTRUN -> [SKIP][30] ([fdo#109313]) > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-6/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html > - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#3711]) > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html > > * igt@gem_exec_gttfill@multigpu-basic: > - shard-rkl: NOTRUN -> [SKIP][32] ([i915#7697]) > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-1/igt@gem_exec_gttfill@multigpu-basic.html > > * igt@gem_exec_reloc@basic-gtt-read: > - shard-dg2: NOTRUN -> [SKIP][33] ([i915#3281]) +1 similar issue > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-12/igt@gem_exec_reloc@basic-gtt-read.html > > * igt@gem_exec_reloc@basic-gtt-wc-noreloc: > - shard-rkl: NOTRUN -> [SKIP][34] ([i915#3281]) +4 similar issues > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html > > * igt@gem_exec_reloc@basic-write-cpu-active: > - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#3281]) +3 similar issues > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@gem_exec_reloc@basic-write-cpu-active.html > > * igt@gem_exec_schedule@preempt-queue-chain: > - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4812]) > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@gem_exec_schedule@preempt-queue-chain.html > > * igt@gem_exec_suspend@basic-s4-devices@lmem0: > - shard-dg2: [PASS][37] -> [ABORT][38] ([i915#7975] / [i915#8213] / [i915#8682]) > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-5/igt@gem_exec_suspend@basic-s4-devices@lmem0.html > > * igt@gem_exec_whisper@basic-contexts-forked-all: > - shard-mtlp: [PASS][39] -> [TIMEOUT][40] ([i915#8628]) > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@gem_exec_whisper@basic-contexts-forked-all.html > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-1/igt@gem_exec_whisper@basic-contexts-forked-all.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/IGT_7352/shard-mtlp-4/igt@gem_exec_whisper@basic-normal.html > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@gem_exec_whisper@basic-normal.html > > * igt@gem_huc_copy@huc-copy: > - shard-rkl: NOTRUN -> [SKIP][43] ([i915#2190]) > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@gem_huc_copy@huc-copy.html > - shard-tglu: NOTRUN -> [SKIP][44] ([i915#2190]) > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-10/igt@gem_huc_copy@huc-copy.html > > * igt@gem_lmem_swapping@parallel-random-verify: > - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4613]) +1 similar issue > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@gem_lmem_swapping@parallel-random-verify.html > > * igt@gem_lmem_swapping@smem-oom: > - shard-rkl: NOTRUN -> [SKIP][46] ([i915#4613]) +1 similar issue > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@gem_lmem_swapping@smem-oom.html > > * igt@gem_mmap_gtt@hang-user: > - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4077]) +8 similar issues > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@gem_mmap_gtt@hang-user.html > > * igt@gem_mmap_wc@set-cache-level: > - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4083]) +4 similar issues > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@gem_mmap_wc@set-cache-level.html > > * igt@gem_pwrite@basic-self: > - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3282]) > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-10/igt@gem_pwrite@basic-self.html > > * igt@gem_pxp@create-regular-buffer: > - shard-rkl: NOTRUN -> [SKIP][50] ([i915#4270]) > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@gem_pxp@create-regular-buffer.html > > * igt@gem_pxp@regular-baseline-src-copy-readible: > - shard-tglu: NOTRUN -> [SKIP][51] ([i915#4270]) > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@gem_pxp@regular-baseline-src-copy-readible.html > > * igt@gem_readwrite@new-obj: > - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#3282]) +2 similar issues > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@gem_readwrite@new-obj.html > > * igt@gem_render_copy@y-tiled-to-vebox-linear: > - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#8428]) +3 similar issues > [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-5/igt@gem_render_copy@y-tiled-to-vebox-linear.html > > * igt@gem_set_tiling_vs_blt@tiled-to-untiled: > - shard-rkl: NOTRUN -> [SKIP][54] ([i915#8411]) +1 similar issue > [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html > - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4079]) +1 similar issue > [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html > > * igt@gem_softpin@evict-snoop: > - shard-rkl: NOTRUN -> [SKIP][56] ([fdo#109312]) > [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@gem_softpin@evict-snoop.html > - shard-tglu: NOTRUN -> [SKIP][57] ([fdo#109312]) > [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@gem_softpin@evict-snoop.html > > * igt@gem_tiled_blits@basic: > - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4077]) +2 similar issues > [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@gem_tiled_blits@basic.html > > * igt@gem_userptr_blits@access-control: > - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#3297]) > [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@gem_userptr_blits@access-control.html > > * igt@gem_userptr_blits@coherency-sync: > - shard-dg2: NOTRUN -> [SKIP][60] ([i915#3297]) > [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@gem_userptr_blits@coherency-sync.html > > * igt@gem_userptr_blits@nohangcheck: > - shard-mtlp: [PASS][61] -> [FAIL][62] ([i915#7916]) > [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@gem_userptr_blits@nohangcheck.html > [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@gem_userptr_blits@nohangcheck.html > > * igt@gem_userptr_blits@readonly-unsync: > - shard-rkl: NOTRUN -> [SKIP][63] ([i915#3297]) > [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@gem_userptr_blits@readonly-unsync.html > > * igt@gen7_exec_parse@basic-allocation: > - shard-rkl: NOTRUN -> [SKIP][64] ([fdo#109289]) > [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@gen7_exec_parse@basic-allocation.html > > * igt@gen9_exec_parse@allowed-all: > - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#2856]) > [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@gen9_exec_parse@allowed-all.html > > * igt@gen9_exec_parse@batch-zero-length: > - shard-dg2: NOTRUN -> [SKIP][66] ([i915#2856]) > [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-1/igt@gen9_exec_parse@batch-zero-length.html > > * igt@gen9_exec_parse@bb-start-far: > - shard-tglu: NOTRUN -> [SKIP][67] ([i915#2527] / [i915#2856]) +1 similar issue > [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-5/igt@gen9_exec_parse@bb-start-far.html > > * igt@i915_hangman@engine-engine-error@vcs0: > - shard-mtlp: NOTRUN -> [FAIL][68] ([i915#7069]) > [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@i915_hangman@engine-engine-error@vcs0.html > > * igt@i915_hangman@engine-engine-hang@vcs0: > - shard-mtlp: [PASS][69] -> [FAIL][70] ([i915#7069]) > [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@i915_hangman@engine-engine-hang@vcs0.html > [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@i915_hangman@engine-engine-hang@vcs0.html > > * igt@i915_pm_backlight@fade-with-dpms: > - shard-rkl: NOTRUN -> [SKIP][71] ([i915#7561]) > [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@i915_pm_backlight@fade-with-dpms.html > - shard-tglu: NOTRUN -> [SKIP][72] ([i915#7561]) > [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-2/igt@i915_pm_backlight@fade-with-dpms.html > > * igt@i915_pm_dc@dc6-dpms: > - shard-tglu: [PASS][73] -> [FAIL][74] ([i915#3989] / [i915#454]) > [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-10/igt@i915_pm_dc@dc6-dpms.html > [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-5/igt@i915_pm_dc@dc6-dpms.html > > * igt@i915_pm_dc@dc6-psr: > - shard-rkl: NOTRUN -> [SKIP][75] ([i915#658]) > [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@i915_pm_dc@dc6-psr.html > > * igt@i915_pm_rpm@dpms-mode-unset-lpsp: > - shard-dg2: [PASS][76] -> [SKIP][77] ([i915#1397]) +1 similar issue > [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-12/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html > [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-1/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html > > * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: > - shard-rkl: [PASS][78] -> [SKIP][79] ([i915#1397]) +1 similar issue > [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-2/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html > [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html > > * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: > - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4212]) > [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-7/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html > > * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1: > - shard-glk: [PASS][81] -> [FAIL][82] ([i915#2521]) > [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html > [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-glk3/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html > > * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs-cc: > - shard-tglu: NOTRUN -> [SKIP][83] ([i915#8502]) +7 similar issues > [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs-cc.html > > * igt@kms_async_flips@crc@pipe-b-hdmi-a-1: > - shard-dg2: NOTRUN -> [FAIL][84] ([i915#8247]) +3 similar issues > [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-10/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html > > * igt@kms_atomic@plane-primary-overlay-mutable-zpos: > - shard-rkl: NOTRUN -> [SKIP][85] ([i915#404]) > [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html > > * igt@kms_big_fb@4-tiled-32bpp-rotate-270: > - shard-tglu: NOTRUN -> [SKIP][86] ([fdo#111615] / [i915#5286]) +2 similar issues > [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html > > * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: > - shard-mtlp: [PASS][87] -> [FAIL][88] ([i915#5138]) > [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html > [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html > > * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: > - shard-mtlp: NOTRUN -> [FAIL][89] ([i915#3743]) +2 similar issues > [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html > - shard-rkl: NOTRUN -> [SKIP][90] ([i915#5286]) +1 similar issue > [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html > > * igt@kms_big_fb@linear-16bpp-rotate-90: > - shard-dg2: NOTRUN -> [SKIP][91] ([fdo#111614]) +1 similar issue > [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@kms_big_fb@linear-16bpp-rotate-90.html > > * igt@kms_big_fb@x-tiled-32bpp-rotate-270: > - shard-mtlp: NOTRUN -> [SKIP][92] ([fdo#111614]) > [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html > > * igt@kms_big_fb@x-tiled-8bpp-rotate-90: > - shard-rkl: NOTRUN -> [SKIP][93] ([fdo#111614] / [i915#3638]) > [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html > > * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: > - shard-dg2: NOTRUN -> [SKIP][94] ([i915#5190]) +2 similar issues > [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html > > * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: > - shard-mtlp: NOTRUN -> [SKIP][95] ([fdo#111615]) +6 similar issues > [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html > > * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: > - shard-rkl: NOTRUN -> [SKIP][96] ([fdo#110723]) +1 similar issue > [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html > - shard-tglu: NOTRUN -> [SKIP][97] ([fdo#111615]) > [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html > > * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip: > - shard-dg2: NOTRUN -> [SKIP][98] ([i915#4538] / [i915#5190]) +1 similar issue > [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html > > * igt@kms_big_joiner@2x-modeset: > - shard-rkl: NOTRUN -> [SKIP][99] ([i915#2705]) > [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_big_joiner@2x-modeset.html > > * igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs: > - shard-rkl: NOTRUN -> [SKIP][100] ([i915#3886] / [i915#5354] / [i915#6095]) +1 similar issue > [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs.html > > * igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs: > - shard-dg2: NOTRUN -> [SKIP][101] ([i915#3689] / [i915#5354]) +2 similar issues > [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs.html > > * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: > - shard-dg2: NOTRUN -> [SKIP][102] ([i915#3689] / [i915#3886] / [i915#5354]) > [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html > > * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs: > - shard-rkl: NOTRUN -> [SKIP][103] ([i915#5354] / [i915#6095]) +2 similar issues > [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs.html > > * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs: > - shard-tglu: NOTRUN -> [SKIP][104] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +1 similar issue > [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-3/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html > > * igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs: > - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#6095]) +9 similar issues > [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs.html > > * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs: > - shard-dg2: NOTRUN -> [SKIP][106] ([i915#5354]) +10 similar issues > [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html > > * igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_mtl_rc_ccs: > - shard-tglu: NOTRUN -> [SKIP][107] ([i915#5354] / [i915#6095]) +5 similar issues > [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-3/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_mtl_rc_ccs.html > > * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs: > - shard-rkl: NOTRUN -> [SKIP][108] ([i915#5354]) +10 similar issues > [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs.html > > * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs: > - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#3886] / [i915#6095]) +4 similar issues > [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-6/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html > > * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs: > - shard-tglu: NOTRUN -> [SKIP][110] ([i915#3689] / [i915#5354] / [i915#6095]) +3 similar issues > [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html > > * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-yf_tiled_ccs: > - shard-tglu: NOTRUN -> [SKIP][111] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) > [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-yf_tiled_ccs.html > > * igt@kms_cdclk@mode-transition: > - shard-tglu: NOTRUN -> [SKIP][112] ([i915#3742]) > [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-10/igt@kms_cdclk@mode-transition.html > > * igt@kms_cdclk@mode-transition@pipe-b-edp-1: > - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#7213]) +2 similar issues > [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html > > * igt@kms_cdclk@mode-transition@pipe-c-hdmi-a-3: > - shard-dg2: NOTRUN -> [SKIP][114] ([i915#4087]) +2 similar issues > [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@kms_cdclk@mode-transition@pipe-c-hdmi-a-3.html > > * igt@kms_cdclk@mode-transition@pipe-d-edp-1: > - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#4579] / [i915#7213]) > [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@kms_cdclk@mode-transition@pipe-d-edp-1.html > > * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: > - shard-dg2: NOTRUN -> [SKIP][116] ([i915#4087] / [i915#4579]) > [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html > > * igt@kms_chamelium_color@ctm-0-75: > - shard-rkl: NOTRUN -> [SKIP][117] ([fdo#111827]) > [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-1/igt@kms_chamelium_color@ctm-0-75.html > > * igt@kms_chamelium_color@ctm-negative: > - shard-tglu: NOTRUN -> [SKIP][118] ([fdo#111827]) +1 similar issue > [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@kms_chamelium_color@ctm-negative.html > - shard-mtlp: NOTRUN -> [SKIP][119] ([fdo#111827]) > [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@kms_chamelium_color@ctm-negative.html > > * igt@kms_chamelium_frames@dp-frame-dump: > - shard-dg2: NOTRUN -> [SKIP][120] ([i915#7828]) +2 similar issues > [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-10/igt@kms_chamelium_frames@dp-frame-dump.html > > * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: > - shard-rkl: NOTRUN -> [SKIP][121] ([i915#7828]) +2 similar issues > [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html > > * igt@kms_chamelium_hpd@dp-hpd-storm-disable: > - shard-tglu: NOTRUN -> [SKIP][122] ([i915#7828]) +2 similar issues > [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-7/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html > - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#7828]) +2 similar issues > [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html > > * igt@kms_content_protection@lic@pipe-a-dp-2: > - shard-dg2: NOTRUN -> [TIMEOUT][124] ([i915#7173]) > [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-12/igt@kms_content_protection@lic@pipe-a-dp-2.html > > * igt@kms_content_protection@mei_interface: > - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#8063]) > [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@kms_content_protection@mei_interface.html > > * igt@kms_content_protection@srm: > - shard-tglu: NOTRUN -> [SKIP][126] ([i915#4579] / [i915#6944] / [i915#7116] / [i915#7118]) +1 similar issue > [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@kms_content_protection@srm.html > > * igt@kms_cursor_crc@cursor-offscreen-512x170: > - shard-tglu: NOTRUN -> [SKIP][127] ([fdo#109279] / [i915#3359]) > [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@kms_cursor_crc@cursor-offscreen-512x170.html > - shard-rkl: NOTRUN -> [SKIP][128] ([fdo#109279] / [i915#3359]) > [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html > > * igt@kms_cursor_crc@cursor-random-32x32: > - shard-dg2: NOTRUN -> [SKIP][129] ([i915#3555] / [i915#4579]) +1 similar issue > [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@kms_cursor_crc@cursor-random-32x32.html > > * igt@kms_cursor_crc@cursor-random-512x512: > - shard-dg2: NOTRUN -> [SKIP][130] ([i915#3359]) > [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x512.html > > * igt@kms_cursor_crc@cursor-rapid-movement-32x10: > - shard-rkl: NOTRUN -> [SKIP][131] ([i915#3555] / [i915#4579]) +4 similar issues > [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html > - shard-tglu: NOTRUN -> [SKIP][132] ([i915#3555] / [i915#4579]) +2 similar issues > [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html > > * igt@kms_cursor_crc@cursor-sliding-512x170: > - shard-rkl: NOTRUN -> [SKIP][133] ([i915#3359]) > [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x170.html > > * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: > - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#4213]) > [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html > > * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size: > - shard-mtlp: [PASS][135] -> [FAIL][136] ([i915#8248]) > [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-3/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html > [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html > > * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: > - shard-dg2: NOTRUN -> [SKIP][137] ([fdo#109274] / [i915#5354]) > [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-3/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html > > * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: > - shard-tglu: NOTRUN -> [SKIP][138] ([fdo#109274]) > [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html > - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#3546]) +3 similar issues > [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-5/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > - shard-glk: [PASS][140] -> [FAIL][141] ([i915#2346]) > [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > > * igt@kms_display_modes@extended-mode-basic: > - shard-tglu: NOTRUN -> [SKIP][142] ([i915#4579]) > [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-2/igt@kms_display_modes@extended-mode-basic.html > > * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: > - shard-rkl: NOTRUN -> [SKIP][143] ([i915#3804] / [i915#4579]) > [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html > > * igt@kms_draw_crc@draw-method-mmap-gtt: > - shard-dg2: NOTRUN -> [SKIP][144] ([i915#4579]) > [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-3/igt@kms_draw_crc@draw-method-mmap-gtt.html > > * igt@kms_dsc@dsc-with-bpc-formats: > - shard-tglu: NOTRUN -> [SKIP][145] ([i915#3840] / [i915#4579]) > [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@kms_dsc@dsc-with-bpc-formats.html > > * igt@kms_dsc@dsc-with-output-formats: > - shard-rkl: NOTRUN -> [SKIP][146] ([i915#4579]) > [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html > > * igt@kms_fbcon_fbt@fbc-suspend: > - shard-dg2: [PASS][147] -> [INCOMPLETE][148] ([i915#4839]) > [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-12/igt@kms_fbcon_fbt@fbc-suspend.html > [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-7/igt@kms_fbcon_fbt@fbc-suspend.html > > * igt@kms_flip@2x-blocking-absolute-wf_vblank: > - shard-tglu: NOTRUN -> [SKIP][149] ([fdo#109274] / [i915#3637]) +4 similar issues > [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-2/igt@kms_flip@2x-blocking-absolute-wf_vblank.html > - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#3637]) +5 similar issues > [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-1/igt@kms_flip@2x-blocking-absolute-wf_vblank.html > > * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: > - shard-dg2: NOTRUN -> [SKIP][151] ([fdo#109274]) > [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html > > * igt@kms_flip@2x-flip-vs-panning-vs-hang: > - shard-rkl: NOTRUN -> [SKIP][152] ([fdo#111825]) +3 similar issues > [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html > > * igt@kms_flip@2x-flip-vs-rmfb-interruptible: > - shard-snb: NOTRUN -> [SKIP][153] ([fdo#109271] / [fdo#111767]) > [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-snb6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html > > * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: > - shard-tglu: NOTRUN -> [SKIP][154] ([i915#2587] / [i915#2672] / [i915#4579]) +1 similar issue > [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html > > * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: > - shard-dg2: NOTRUN -> [SKIP][155] ([i915#2672] / [i915#4579]) > [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html > > * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: > - shard-rkl: NOTRUN -> [SKIP][156] ([i915#2672] / [i915#4579]) > [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html > > * igt@kms_force_connector_basic@prune-stale-modes: > - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#5274]) > [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html > > * igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt: > - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#8708]) +3 similar issues > [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt.html > > * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render: > - shard-dg2: NOTRUN -> [SKIP][159] ([i915#3458]) +4 similar issues > [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render.html > > * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt: > - shard-dg2: NOTRUN -> [SKIP][160] ([i915#8708]) +2 similar issues > [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html > > * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: > - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#1825]) +14 similar issues > [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html > > * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: > - shard-rkl: NOTRUN -> [SKIP][162] ([fdo#111825] / [i915#1825]) +12 similar issues > [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html > > * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: > - shard-tglu: NOTRUN -> [SKIP][163] ([fdo#110189]) +10 similar issues > [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html > > * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: > - shard-rkl: NOTRUN -> [SKIP][164] ([i915#3023]) +6 similar issues > [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html > > * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: > - shard-tglu: NOTRUN -> [SKIP][165] ([fdo#109280]) +14 similar issues > [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html > > * igt@kms_invalid_mode@clock-too-high@edp-1-pipe-b: > - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#6403]) +2 similar issues > [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-6/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-b.html > > * igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d: > - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#4579] / [i915#6403]) > [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-6/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d.html > > * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1: > - shard-dg2: NOTRUN -> [SKIP][168] ([i915#5176]) +2 similar issues > [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html > > * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-1: > - shard-dg2: NOTRUN -> [SKIP][169] ([i915#4579] / [i915#5176]) > [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-1.html > > * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-a-hdmi-a-1: > - shard-rkl: NOTRUN -> [SKIP][170] ([i915#5176]) +1 similar issue > [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-a-hdmi-a-1.html > > * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1: > - shard-rkl: NOTRUN -> [SKIP][171] ([i915#4579] / [i915#5176]) +1 similar issue > [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1.html > > * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-1: > - shard-tglu: NOTRUN -> [SKIP][172] ([i915#5176]) +2 similar issues > [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-4/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-1.html > > * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-d-hdmi-a-1: > - shard-tglu: NOTRUN -> [SKIP][173] ([i915#4579] / [i915#5176]) > [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-4/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-d-hdmi-a-1.html > > * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-3: > - shard-dg2: NOTRUN -> [SKIP][174] ([i915#4579] / [i915#5235]) +3 similar issues > [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-3.html > > * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: > - shard-rkl: NOTRUN -> [SKIP][175] ([i915#4579] / [i915#5235]) +4 similar issues > [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html > > * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1: > - shard-tglu: NOTRUN -> [SKIP][176] ([i915#5235]) +2 similar issues > [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html > > * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1: > - shard-tglu: NOTRUN -> [SKIP][177] ([i915#4579] / [i915#5235]) > [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1.html > > * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-2: > - shard-rkl: NOTRUN -> [SKIP][178] ([i915#5235]) +4 similar issues > [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-2.html > > * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-hdmi-a-1: > - shard-snb: NOTRUN -> [SKIP][179] ([fdo#109271]) +36 similar issues > [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-snb1/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-hdmi-a-1.html > > * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1: > - shard-dg2: NOTRUN -> [SKIP][180] ([i915#5235]) +11 similar issues > [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-10/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-b-hdmi-a-1: > - shard-snb: NOTRUN -> [SKIP][181] ([fdo#109271] / [i915#4579]) +12 similar issues > [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-snb1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-1.html > > * igt@kms_prime@basic-modeset-hybrid: > - shard-dg2: NOTRUN -> [SKIP][182] ([i915#6524] / [i915#6805]) > [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-1/igt@kms_prime@basic-modeset-hybrid.html > > * igt@kms_psr2_sf@cursor-plane-update-sf: > - shard-rkl: NOTRUN -> [SKIP][183] ([fdo#111068] / [i915#658]) > [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@kms_psr2_sf@cursor-plane-update-sf.html > > * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: > - shard-tglu: NOTRUN -> [SKIP][184] ([fdo#111068] / [i915#658]) +1 similar issue > [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html > > * igt@kms_psr@cursor_mmap_gtt: > - shard-rkl: NOTRUN -> [SKIP][185] ([i915#1072]) > [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_psr@cursor_mmap_gtt.html > > * igt@kms_psr@sprite_render: > - shard-dg2: NOTRUN -> [SKIP][186] ([i915#1072]) +1 similar issue > [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@kms_psr@sprite_render.html > > * igt@kms_tv_load_detect@load-detect: > - shard-rkl: NOTRUN -> [SKIP][187] ([fdo#109309]) > [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@kms_tv_load_detect@load-detect.html > > * igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend: > - shard-dg2: [PASS][188] -> [FAIL][189] ([fdo#103375]) > [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-3/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html > [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-5/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html > > * igt@kms_vblank@pipe-c-wait-busy: > - shard-rkl: NOTRUN -> [SKIP][190] ([i915#4070] / [i915#6768]) > [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@kms_vblank@pipe-c-wait-busy.html > > * igt@kms_vblank@pipe-d-query-forked-busy: > - shard-rkl: NOTRUN -> [SKIP][191] ([i915#4070] / [i915#533] / [i915#6768]) +2 similar issues > [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@kms_vblank@pipe-d-query-forked-busy.html > > * igt@kms_vrr@flipline: > - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#4579]) +8 similar issues > [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@kms_vrr@flipline.html > > * igt@kms_writeback@writeback-check-output: > - shard-rkl: NOTRUN -> [SKIP][193] ([i915#2437]) > [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@kms_writeback@writeback-check-output.html > > * igt@kms_writeback@writeback-fb-id: > - shard-tglu: NOTRUN -> [SKIP][194] ([i915#2437]) > [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@kms_writeback@writeback-fb-id.html > - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#2437]) > [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@kms_writeback@writeback-fb-id.html > > * igt@perf@non-zero-reason@0-rcs0: > - shard-dg2: [PASS][196] -> [FAIL][197] ([i915#7484]) > [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html > [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html > > * igt@perf@stress-open-close@0-rcs0: > - shard-glk: [PASS][198] -> [ABORT][199] ([i915#5213] / [i915#7941]) > [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk2/igt@perf@stress-open-close@0-rcs0.html > [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-glk9/igt@perf@stress-open-close@0-rcs0.html > > * igt@perf@unprivileged-single-ctx-counters: > - shard-tglu: NOTRUN -> [SKIP][200] ([fdo#109289]) > [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-5/igt@perf@unprivileged-single-ctx-counters.html > > * igt@perf_pmu@busy-double-start@vecs1: > - shard-dg2: NOTRUN -> [FAIL][201] ([i915#4349]) +4 similar issues > [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html > > * igt@perf_pmu@render-node-busy-idle@ccs0: > - shard-mtlp: [PASS][202] -> [FAIL][203] ([i915#4349]) +4 similar issues > [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@perf_pmu@render-node-busy-idle@ccs0.html > [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-5/igt@perf_pmu@render-node-busy-idle@ccs0.html > > * igt@prime_vgem@basic-write: > - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#3708]) > [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@prime_vgem@basic-write.html > > * igt@v3d/v3d_perfmon@get-values-invalid-perfmon: > - shard-tglu: NOTRUN -> [SKIP][205] ([fdo#109315] / [i915#2575]) +4 similar issues > [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-3/igt@v3d/v3d_perfmon@get-values-invalid-perfmon.html > > * igt@v3d/v3d_submit_cl@bad-bo: > - shard-dg2: NOTRUN -> [SKIP][206] ([i915#2575]) +3 similar issues > [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-1/igt@v3d/v3d_submit_cl@bad-bo.html > > * igt@v3d/v3d_submit_cl@simple-flush-cache: > - shard-rkl: NOTRUN -> [SKIP][207] ([fdo#109315]) > [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@v3d/v3d_submit_cl@simple-flush-cache.html > > * igt@v3d/v3d_submit_csd@bad-perfmon: > - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#2575]) +6 similar issues > [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@v3d/v3d_submit_csd@bad-perfmon.html > > * igt@vc4/vc4_create_bo@create-bo-0: > - shard-rkl: NOTRUN -> [SKIP][209] ([i915#7711]) +3 similar issues > [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@vc4/vc4_create_bo@create-bo-0.html > > * igt@vc4/vc4_perfmon@create-single-perfmon: > - shard-dg2: NOTRUN -> [SKIP][210] ([i915#7711]) > [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-3/igt@vc4/vc4_perfmon@create-single-perfmon.html > > * igt@vc4/vc4_wait_bo@used-bo-0ns: > - shard-tglu: NOTRUN -> [SKIP][211] ([i915#2575]) +3 similar issues > [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-6/igt@vc4/vc4_wait_bo@used-bo-0ns.html > - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#7711]) +3 similar issues > [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@vc4/vc4_wait_bo@used-bo-0ns.html > > > #### Possible fixes #### > > * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: > - shard-rkl: [FAIL][213] ([i915#7742]) -> [PASS][214] > [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html > [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html > > * igt@gem_barrier_race@remote-request@rcs0: > - shard-rkl: [ABORT][215] ([i915#8178]) -> [PASS][216] > [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-1/igt@gem_barrier_race@remote-request@rcs0.html > [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@gem_barrier_race@remote-request@rcs0.html > > * igt@gem_eio@context-create: > - {shard-dg1}: [DMESG-WARN][217] ([i915#4423]) -> [PASS][218] > [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg1-17/igt@gem_eio@context-create.html > [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg1-17/igt@gem_eio@context-create.html > > * igt@gem_eio@in-flight-contexts-10ms: > - shard-mtlp: [ABORT][219] ([i915#7941]) -> [PASS][220] > [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@gem_eio@in-flight-contexts-10ms.html > [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@gem_eio@in-flight-contexts-10ms.html > > * igt@gem_eio@in-flight-contexts-immediate: > - shard-mtlp: [ABORT][221] ([i915#8503]) -> [PASS][222] > [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@gem_eio@in-flight-contexts-immediate.html > [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@gem_eio@in-flight-contexts-immediate.html > > * igt@gem_exec_fair@basic-deadline: > - shard-glk: [FAIL][223] ([i915#2846]) -> [PASS][224] > [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk7/igt@gem_exec_fair@basic-deadline.html > [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-glk3/igt@gem_exec_fair@basic-deadline.html > > * igt@gem_exec_fair@basic-none@bcs0: > - shard-rkl: [FAIL][225] ([i915#2842]) -> [PASS][226] +1 similar issue > [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-2/igt@gem_exec_fair@basic-none@bcs0.html > [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html > > * igt@gem_exec_schedule@deep@vecs0: > - shard-mtlp: [FAIL][227] ([i915#8545]) -> [PASS][228] > [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@gem_exec_schedule@deep@vecs0.html > [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@gem_exec_schedule@deep@vecs0.html > > * igt@gem_exec_suspend@basic-s0@smem: > - shard-tglu: [ABORT][229] ([i915#5122] / [i915#5251]) -> [PASS][230] > [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-5/igt@gem_exec_suspend@basic-s0@smem.html > [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-10/igt@gem_exec_suspend@basic-s0@smem.html > > * igt@gem_exec_whisper@basic-queues-all: > - shard-mtlp: [FAIL][231] ([i915#6363]) -> [PASS][232] > [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@gem_exec_whisper@basic-queues-all.html > [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-1/igt@gem_exec_whisper@basic-queues-all.html > > * igt@gem_mmap_gtt@fault-concurrent-y: > - shard-snb: [ABORT][233] ([i915#5161]) -> [PASS][234] > [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-snb6/igt@gem_mmap_gtt@fault-concurrent-y.html > [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-snb2/igt@gem_mmap_gtt@fault-concurrent-y.html > > * igt@gem_workarounds@suspend-resume-context: > - shard-dg2: [FAIL][235] ([fdo#103375]) -> [PASS][236] +4 similar issues > [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-5/igt@gem_workarounds@suspend-resume-context.html > [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-5/igt@gem_workarounds@suspend-resume-context.html > > * igt@i915_hangman@detector@vcs0: > - shard-mtlp: [FAIL][237] ([i915#8456]) -> [PASS][238] +2 similar issues > [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-3/igt@i915_hangman@detector@vcs0.html > [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@i915_hangman@detector@vcs0.html > > * igt@i915_hangman@gt-engine-error@vcs0: > - shard-mtlp: [FAIL][239] ([i915#7069]) -> [PASS][240] > [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@i915_hangman@gt-engine-error@vcs0.html > [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-5/igt@i915_hangman@gt-engine-error@vcs0.html > > * igt@i915_pipe_stress@stress-xrgb8888-untiled: > - shard-mtlp: [FAIL][241] ([i915#8691]) -> [PASS][242] > [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-6/igt@i915_pipe_stress@stress-xrgb8888-untiled.html > [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@i915_pipe_stress@stress-xrgb8888-untiled.html > > * igt@i915_pm_dc@dc9-dpms: > - shard-apl: [SKIP][243] ([fdo#109271]) -> [PASS][244] > [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-apl7/igt@i915_pm_dc@dc9-dpms.html > [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-apl1/igt@i915_pm_dc@dc9-dpms.html > > * igt@i915_pm_rc6_residency@rc6-idle@ccs0: > - shard-dg2: [FAIL][245] ([i915#7747] / [i915#7894]) -> [PASS][246] > [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-3/igt@i915_pm_rc6_residency@rc6-idle@ccs0.html > [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@i915_pm_rc6_residency@rc6-idle@ccs0.html > > * igt@i915_pm_rc6_residency@rc6-idle@rcs0: > - shard-dg2: [FAIL][247] ([i915#7747]) -> [PASS][248] +3 similar issues > [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-3/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html > [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html > > * igt@i915_pm_rpm@dpms-lpsp: > - shard-rkl: [SKIP][249] ([i915#1397]) -> [PASS][250] +1 similar issue > [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-4/igt@i915_pm_rpm@dpms-lpsp.html > [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html > > * igt@i915_pm_rpm@modeset-lpsp: > - shard-dg2: [SKIP][251] ([i915#1397]) -> [PASS][252] > [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-7/igt@i915_pm_rpm@modeset-lpsp.html > [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-12/igt@i915_pm_rpm@modeset-lpsp.html > > * igt@i915_pm_rpm@modeset-lpsp-stress: > - {shard-dg1}: [SKIP][253] ([i915#1397]) -> [PASS][254] > [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg1-15/igt@i915_pm_rpm@modeset-lpsp-stress.html > [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress.html > > * igt@i915_selftest@live@gt_mocs: > - shard-mtlp: [DMESG-FAIL][255] ([i915#7059]) -> [PASS][256] > [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@i915_selftest@live@gt_mocs.html > [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@i915_selftest@live@gt_mocs.html > > * igt@i915_selftest@live@slpc: > - shard-mtlp: [DMESG-WARN][257] ([i915#6367]) -> [PASS][258] > [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@i915_selftest@live@slpc.html > [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@i915_selftest@live@slpc.html > > * igt@i915_selftest@live@workarounds: > - shard-mtlp: [DMESG-FAIL][259] ([i915#6763]) -> [PASS][260] > [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@i915_selftest@live@workarounds.html > [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@i915_selftest@live@workarounds.html > > * igt@i915_selftest@perf@request: > - shard-mtlp: [DMESG-FAIL][261] ([i915#8573]) -> [PASS][262] > [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@i915_selftest@perf@request.html > [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-5/igt@i915_selftest@perf@request.html > > * igt@kms_big_fb@4-tiled-64bpp-rotate-180: > - shard-mtlp: [FAIL][263] ([i915#5138]) -> [PASS][264] +1 similar issue > [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html > [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html > > * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: > - shard-mtlp: [FAIL][265] ([i915#3743]) -> [PASS][266] > [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html > [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html > > * igt@kms_cursor_crc@cursor-random-256x85@pipe-d-edp-1: > - shard-mtlp: [FAIL][267] -> [PASS][268] +1 similar issue > [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@kms_cursor_crc@cursor-random-256x85@pipe-d-edp-1.html > [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-256x85@pipe-d-edp-1.html > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > - shard-apl: [FAIL][269] ([i915#2346]) -> [PASS][270] +1 similar issue > [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > > * igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary: > - shard-dg2: [FAIL][271] ([i915#6880]) -> [PASS][272] +2 similar issues > [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html > [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html > > * igt@perf_pmu@busy-double-start@ccs0: > - shard-mtlp: [FAIL][273] ([i915#4349]) -> [PASS][274] > [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@perf_pmu@busy-double-start@ccs0.html > [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-6/igt@perf_pmu@busy-double-start@ccs0.html > > * igt@sysfs_heartbeat_interval@nopreempt@ccs0: > - shard-mtlp: [FAIL][275] ([i915#6015]) -> [PASS][276] +2 similar issues > [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@sysfs_heartbeat_interval@nopreempt@ccs0.html > [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@sysfs_heartbeat_interval@nopreempt@ccs0.html > > > #### Warnings #### > > * igt@gem_lmem_swapping@smem-oom@lmem0: > - shard-dg2: [TIMEOUT][277] ([i915#5493]) -> [DMESG-WARN][278] ([i915#4936] / [i915#5493]) > [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html > [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html > > * igt@i915_module_load@reload-with-fault-injection: > - shard-dg2: [WARN][279] ([i915#6596] / [i915#7356]) -> [DMESG-WARN][280] ([i915#7061]) > [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-12/igt@i915_module_load@reload-with-fault-injection.html > [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html > > * igt@i915_pm_rc6_residency@rc6-idle@rcs0: > - shard-tglu: [FAIL][281] ([i915#2681] / [i915#3591]) -> [WARN][282] ([i915#2681]) > [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html > [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > - shard-mtlp: [DMESG-FAIL][283] ([i915#2017] / [i915#5954]) -> [FAIL][284] ([i915#2346]) > [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > > * igt@kms_force_connector_basic@force-load-detect: > - shard-rkl: [SKIP][285] ([fdo#109285]) -> [SKIP][286] ([fdo#109285] / [i915#4098]) > [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html > [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@kms_force_connector_basic@force-load-detect.html > > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 > [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 > [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 > [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 > [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 > [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 > [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 > [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 > [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 > [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 > [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 > [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 > [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 > [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 > [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 > [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 > [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 > [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 > [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 > [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 > [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 > [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 > [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 > [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 > [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 > [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 > [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 > [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 > [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 > [i915#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#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 > [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 > [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 > [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 > [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 > [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 > [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 > [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 > [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 > [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 > [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 > [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 > [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 > [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 > [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 > [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 > [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 > [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 > [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 > [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 > [i915#3711]: https://gitlab.freedesktop.org/drm/intel/issues/3711 > [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 > [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 > [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 > [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 > [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 > [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 > [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 > [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 > [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 > [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 > [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 > [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 > [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 > [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 > [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 > [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 > [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 > [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 > [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 > [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 > [i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475 > [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 > [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 > [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 > [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 > [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 > [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 > [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 > [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 > [i915#4839]: https://gitlab.freedesktop.org/drm/intel/issues/4839 > [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 > [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 > [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 > [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 > [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 > [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 > [i915#5161]: https://gitlab.freedesktop.org/drm/intel/issues/5161 > [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 > [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 > [i915#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213 > [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 > [i915#5251]: https://gitlab.freedesktop.org/drm/intel/issues/5251 > [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 > [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 > [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 > [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 > [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 > [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 > [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 > [i915#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#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 > [i915#6363]: https://gitlab.freedesktop.org/drm/intel/issues/6363 > [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 > [i915#6403]: https://gitlab.freedesktop.org/drm/intel/issues/6403 > [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 > [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 > [i915#6596]: https://gitlab.freedesktop.org/drm/intel/issues/6596 > [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 > [i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763 > [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 > [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 > [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 > [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 > [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 > [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 > [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 > [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 > [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 > [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 > [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 > [i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356 > [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 > [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 > [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 > [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 > [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 > [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 > [i915#7747]: https://gitlab.freedesktop.org/drm/intel/issues/7747 > [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 > [i915#7894]: https://gitlab.freedesktop.org/drm/intel/issues/7894 > [i915#7916]: https://gitlab.freedesktop.org/drm/intel/issues/7916 > [i915#7941]: https://gitlab.freedesktop.org/drm/intel/issues/7941 > [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 > [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063 > [i915#8178]: https://gitlab.freedesktop.org/drm/intel/issues/8178 > [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 > [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 > [i915#8248]: https://gitlab.freedesktop.org/drm/intel/issues/8248 > [i915#8304]: https://gitlab.freedesktop.org/drm/intel/issues/8304 > [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#8456]: https://gitlab.freedesktop.org/drm/intel/issues/8456 > [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 > [i915#8503]: https://gitlab.freedesktop.org/drm/intel/issues/8503 > [i915#8545]: https://gitlab.freedesktop.org/drm/intel/issues/8545 > [i915#8573]: https://gitlab.freedesktop.org/drm/intel/issues/8573 > [i915#8628]: https://gitlab.freedesktop.org/drm/intel/issues/8628 > [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 > [i915#8682]: https://gitlab.freedesktop.org/drm/intel/issues/8682 > [i915#8691]: https://gitlab.freedesktop.org/drm/intel/issues/8691 > [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 > [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_7352 -> IGTPW_9281 > > CI-20190529: 20190529 > CI_DRM_13328: 12cd6b2d321d9c034f3d4ba14788d68cb8da4eac @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_9281: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/index.html > IGT_7352: 471bfababd070e1dac0ebb87470ac4f2ae85e663 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/index.html ^ permalink raw reply [flat|nested] 17+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Handle GT and tile seperation in IGT (rev3) 2023-06-27 18:08 [igt-dev] [PATCH v4 0/4] Handle GT and tile seperation in IGT Himal Prasad Ghimiray ` (5 preceding siblings ...) 2023-06-28 10:52 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-06-30 7:34 ` Patchwork 6 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2023-06-30 7:34 UTC (permalink / raw) To: Ghimiray, Himal Prasad; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 75202 bytes --] == Series Details == Series: Handle GT and tile seperation in IGT (rev3) URL : https://patchwork.freedesktop.org/series/119801/ State : success == Summary == CI Bug Log - changes from IGT_7352_full -> IGTPW_9281_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in IGTPW_9281_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][1] ([i915#8411]) +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-tglu: NOTRUN -> [SKIP][2] ([i915#7701]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-10/igt@device_reset@cold-reset-bound.html - shard-rkl: NOTRUN -> [SKIP][3] ([i915#7701]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8414]) +4 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@drm_fdinfo@busy-idle@bcs0.html * igt@drm_fdinfo@busy-idle@ccs0: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#4579] / [i915#8414]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@drm_fdinfo@busy-idle@ccs0.html * igt@feature_discovery@chamelium: - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#4854]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-1/igt@feature_discovery@chamelium.html * igt@feature_discovery@display-3x: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#1839]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-1/igt@feature_discovery@display-3x.html * igt@gem_basic@multigpu-create-close: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#7697]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-1/igt@gem_basic@multigpu-create-close.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#4873]) +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@gem_caching@writes.html * igt@gem_create@create-ext-cpu-access-big: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#6335]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-mtlp: [PASS][11] -> [FAIL][12] ([i915#6121] / [i915#7916]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@gem_ctx_exec@basic-nohangcheck.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_param@set-priority-not-supported: - shard-tglu: NOTRUN -> [SKIP][13] ([fdo#109314]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@gem_ctx_param@set-priority-not-supported.html - shard-rkl: NOTRUN -> [SKIP][14] ([fdo#109314]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][15] ([i915#7975] / [i915#8213]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#4771]) +1 similar issue [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-1/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@full-pulse: - shard-dg2: [PASS][17] -> [FAIL][18] ([i915#6032]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-12/igt@gem_exec_balancer@full-pulse.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-11/igt@gem_exec_balancer@full-pulse.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#4525]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: NOTRUN -> [FAIL][20] ([i915#2842]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][21] -> [FAIL][22] ([i915#2842]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-tglu: [PASS][23] -> [FAIL][24] ([i915#2842]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-sync: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#4473] / [i915#4771]) +1 similar issue [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-rkl: [PASS][26] -> [FAIL][27] ([i915#2842]) +3 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-4/igt@gem_exec_fair@basic-throttle@rcs0.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-1/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-rkl: NOTRUN -> [SKIP][28] ([fdo#109313]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html - shard-tglu: NOTRUN -> [SKIP][29] ([fdo#109313]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-6/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#3711]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_gttfill@multigpu-basic: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#7697]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-1/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3281]) +1 similar issue [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-12/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#3281]) +4 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-write-cpu-active: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#3281]) +3 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@gem_exec_reloc@basic-write-cpu-active.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4812]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: [PASS][36] -> [ABORT][37] ([i915#7975] / [i915#8213] / [i915#8682]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-5/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_exec_whisper@basic-contexts-forked-all: - shard-mtlp: [PASS][38] -> [TIMEOUT][39] ([i915#8628]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@gem_exec_whisper@basic-contexts-forked-all.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-1/igt@gem_exec_whisper@basic-contexts-forked-all.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/IGT_7352/shard-mtlp-4/igt@gem_exec_whisper@basic-normal.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@gem_exec_whisper@basic-normal.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#2190]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@gem_huc_copy@huc-copy.html - shard-tglu: NOTRUN -> [SKIP][43] ([i915#2190]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-10/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4613]) +1 similar issue [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@smem-oom: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#4613]) +1 similar issue [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@gem_lmem_swapping@smem-oom.html * igt@gem_mmap_gtt@hang-user: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4077]) +8 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@gem_mmap_gtt@hang-user.html * igt@gem_mmap_wc@set-cache-level: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4083]) +4 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@gem_mmap_wc@set-cache-level.html * igt@gem_pwrite@basic-self: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3282]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-10/igt@gem_pwrite@basic-self.html * igt@gem_pxp@create-regular-buffer: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#4270]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-tglu: NOTRUN -> [SKIP][50] ([i915#4270]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_readwrite@new-obj: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3282]) +2 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@gem_readwrite@new-obj.html * igt@gem_render_copy@y-tiled-to-vebox-linear: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#8428]) +3 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-5/igt@gem_render_copy@y-tiled-to-vebox-linear.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#8411]) +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4079]) +1 similar issue [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop: - shard-rkl: NOTRUN -> [SKIP][55] ([fdo#109312]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@gem_softpin@evict-snoop.html - shard-tglu: NOTRUN -> [SKIP][56] ([fdo#109312]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4077]) +2 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@gem_tiled_blits@basic.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#3297]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@coherency-sync: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#3297]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@nohangcheck: - shard-mtlp: [PASS][60] -> [FAIL][61] ([i915#7916]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@gem_userptr_blits@nohangcheck.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@gem_userptr_blits@nohangcheck.html * igt@gem_userptr_blits@readonly-unsync: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#3297]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@gem_userptr_blits@readonly-unsync.html * igt@gen7_exec_parse@basic-allocation: - shard-rkl: NOTRUN -> [SKIP][63] ([fdo#109289]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@gen7_exec_parse@basic-allocation.html * igt@gen9_exec_parse@allowed-all: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#2856]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@batch-zero-length: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#2856]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-1/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-start-far: - shard-tglu: NOTRUN -> [SKIP][66] ([i915#2527] / [i915#2856]) +1 similar issue [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-5/igt@gen9_exec_parse@bb-start-far.html * igt@i915_hangman@engine-engine-error@vcs0: - shard-mtlp: NOTRUN -> [FAIL][67] ([i915#7069]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@i915_hangman@engine-engine-error@vcs0.html * igt@i915_hangman@engine-engine-hang@vcs0: - shard-mtlp: [PASS][68] -> [FAIL][69] ([i915#7069]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@i915_hangman@engine-engine-hang@vcs0.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@i915_hangman@engine-engine-hang@vcs0.html * igt@i915_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#7561]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@i915_pm_backlight@fade-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][71] ([i915#7561]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-2/igt@i915_pm_backlight@fade-with-dpms.html * igt@i915_pm_dc@dc6-dpms: - shard-tglu: [PASS][72] -> [FAIL][73] ([i915#3989] / [i915#454]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-10/igt@i915_pm_dc@dc6-dpms.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-5/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_dc@dc6-psr: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#658]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [PASS][75] -> [SKIP][76] ([i915#1397]) +1 similar issue [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-12/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-1/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][77] -> [SKIP][78] ([i915#1397]) +1 similar issue [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-2/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4212]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-7/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1: - shard-glk: [PASS][80] -> [FAIL][81] ([i915#2521]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-glk3/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs-cc: - shard-tglu: NOTRUN -> [SKIP][82] ([i915#8502]) +7 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs-cc.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [FAIL][83] ([i915#8247]) +3 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-10/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#404]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][85] ([fdo#111615] / [i915#5286]) +2 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][86] -> [FAIL][87] ([i915#5138]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-mtlp: NOTRUN -> [FAIL][88] ([i915#3743]) +2 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html - shard-rkl: NOTRUN -> [SKIP][89] ([i915#5286]) +1 similar issue [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][90] ([fdo#111614]) +1 similar issue [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][91] ([fdo#111614]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][92] ([fdo#111614] / [i915#3638]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#5190]) +2 similar issues [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [SKIP][94] ([fdo#111615]) +6 similar issues [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][95] ([fdo#110723]) +1 similar issue [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html - shard-tglu: NOTRUN -> [SKIP][96] ([fdo#111615]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#4538] / [i915#5190]) +1 similar issue [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_joiner@2x-modeset: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#2705]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_big_joiner@2x-modeset.html * igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#3886] / [i915#5354] / [i915#6095]) +1 similar issue [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#3689] / [i915#5354]) +2 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#3689] / [i915#3886] / [i915#5354]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#5354] / [i915#6095]) +2 similar issues [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][103] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +1 similar issue [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-3/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#6095]) +9 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#5354]) +10 similar issues [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_mtl_rc_ccs: - shard-tglu: NOTRUN -> [SKIP][106] ([i915#5354] / [i915#6095]) +5 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-3/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#5354]) +10 similar issues [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#3886] / [i915#6095]) +4 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-6/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][109] ([i915#3689] / [i915#5354] / [i915#6095]) +3 similar issues [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][110] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-yf_tiled_ccs.html * igt@kms_cdclk@mode-transition: - shard-tglu: NOTRUN -> [SKIP][111] ([i915#3742]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-10/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#7213]) +2 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@mode-transition@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#4087]) +2 similar issues [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@kms_cdclk@mode-transition@pipe-c-hdmi-a-3.html * igt@kms_cdclk@mode-transition@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#4579] / [i915#7213]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@kms_cdclk@mode-transition@pipe-d-edp-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#4087] / [i915#4579]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_chamelium_color@ctm-0-75: - shard-rkl: NOTRUN -> [SKIP][116] ([fdo#111827]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-1/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_color@ctm-negative: - shard-tglu: NOTRUN -> [SKIP][117] ([fdo#111827]) +1 similar issue [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@kms_chamelium_color@ctm-negative.html - shard-mtlp: NOTRUN -> [SKIP][118] ([fdo#111827]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#7828]) +2 similar issues [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-10/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#7828]) +2 similar issues [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-tglu: NOTRUN -> [SKIP][121] ([i915#7828]) +2 similar issues [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-7/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#7828]) +2 similar issues [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_content_protection@lic@pipe-a-dp-2: - shard-dg2: NOTRUN -> [TIMEOUT][123] ([i915#7173]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-12/igt@kms_content_protection@lic@pipe-a-dp-2.html * igt@kms_content_protection@mei_interface: - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#8063]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@kms_content_protection@mei_interface.html * igt@kms_content_protection@srm: - shard-tglu: NOTRUN -> [SKIP][125] ([i915#4579] / [i915#6944] / [i915#7116] / [i915#7118]) +1 similar issue [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][126] ([fdo#109279] / [i915#3359]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][127] ([fdo#109279] / [i915#3359]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#3555] / [i915#4579]) +1 similar issue [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#3359]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#3555] / [i915#4579]) +4 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html - shard-tglu: NOTRUN -> [SKIP][131] ([i915#3555] / [i915#4579]) +2 similar issues [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#3359]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#4213]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size: - shard-mtlp: [PASS][134] -> [FAIL][135] ([i915#8248]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-3/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][136] ([fdo#109274] / [i915#5354]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-3/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-tglu: NOTRUN -> [SKIP][137] ([fdo#109274]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#3546]) +3 similar issues [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-5/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][139] -> [FAIL][140] ([i915#2346]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@extended-mode-basic: - shard-tglu: NOTRUN -> [SKIP][141] ([i915#4579]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-2/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#3804] / [i915#4579]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#4579]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-3/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#3840] / [i915#4579]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#4579]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2: [PASS][146] -> [INCOMPLETE][147] ([i915#4839]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-12/igt@kms_fbcon_fbt@fbc-suspend.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-7/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][148] ([fdo#109274] / [i915#3637]) +4 similar issues [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-2/igt@kms_flip@2x-blocking-absolute-wf_vblank.html - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#3637]) +5 similar issues [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-1/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][150] ([fdo#109274]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-rkl: NOTRUN -> [SKIP][151] ([fdo#111825]) +3 similar issues [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-snb: NOTRUN -> [SKIP][152] ([fdo#109271] / [fdo#111767]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-snb6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#2587] / [i915#2672] / [i915#4579]) +1 similar issue [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#2672] / [i915#4579]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#2672] / [i915#4579]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#5274]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#8708]) +3 similar issues [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#3458]) +4 similar issues [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#8708]) +2 similar issues [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#1825]) +14 similar issues [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-rkl: NOTRUN -> [SKIP][161] ([fdo#111825] / [i915#1825]) +12 similar issues [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][162] ([fdo#110189]) +10 similar issues [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#3023]) +6 similar issues [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][164] ([fdo#109280]) +14 similar issues [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_invalid_mode@clock-too-high@edp-1-pipe-b: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#6403]) +2 similar issues [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-6/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-b.html * igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#4579] / [i915#6403]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-6/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#5176]) +2 similar issues [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#4579] / [i915#5176]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#5176]) +1 similar issue [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#4579] / [i915#5176]) +1 similar issue [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][171] ([i915#5176]) +2 similar issues [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-4/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#4579] / [i915#5176]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-4/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#4579] / [i915#5235]) +3 similar issues [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#4579] / [i915#5235]) +4 similar issues [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#5235]) +2 similar issues [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#4579] / [i915#5235]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#5235]) +4 similar issues [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [SKIP][178] ([fdo#109271]) +36 similar issues [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-snb1/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#5235]) +11 similar issues [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-10/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-b-hdmi-a-1: - shard-snb: NOTRUN -> [SKIP][180] ([fdo#109271] / [i915#4579]) +12 similar issues [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-snb1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#6524] / [i915#6805]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-1/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@cursor-plane-update-sf: - shard-rkl: NOTRUN -> [SKIP][182] ([fdo#111068] / [i915#658]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@kms_psr2_sf@cursor-plane-update-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][183] ([fdo#111068] / [i915#658]) +1 similar issue [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@kms_psr@cursor_mmap_gtt: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#1072]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@kms_psr@cursor_mmap_gtt.html * igt@kms_psr@sprite_render: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#1072]) +1 similar issue [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@kms_psr@sprite_render.html * igt@kms_tv_load_detect@load-detect: - shard-rkl: NOTRUN -> [SKIP][186] ([fdo#109309]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend: - shard-dg2: [PASS][187] -> [FAIL][188] ([fdo#103375]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-3/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-5/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html * igt@kms_vblank@pipe-c-wait-busy: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#4070] / [i915#6768]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@kms_vblank@pipe-c-wait-busy.html * igt@kms_vblank@pipe-d-query-forked-busy: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#4070] / [i915#533] / [i915#6768]) +2 similar issues [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@kms_vblank@pipe-d-query-forked-busy.html * igt@kms_vrr@flipline: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#4579]) +8 similar issues [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@kms_vrr@flipline.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#2437]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-tglu: NOTRUN -> [SKIP][193] ([i915#2437]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-9/igt@kms_writeback@writeback-fb-id.html - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#2437]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@kms_writeback@writeback-fb-id.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [PASS][195] -> [FAIL][196] ([i915#7484]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html * igt@perf@stress-open-close@0-rcs0: - shard-glk: [PASS][197] -> [ABORT][198] ([i915#5213] / [i915#7941]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk2/igt@perf@stress-open-close@0-rcs0.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-glk9/igt@perf@stress-open-close@0-rcs0.html * igt@perf@unprivileged-single-ctx-counters: - shard-tglu: NOTRUN -> [SKIP][199] ([fdo#109289]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-5/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][200] ([i915#4349]) +4 similar issues [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@render-node-busy-idle@ccs0: - shard-mtlp: [PASS][201] -> [FAIL][202] ([i915#4349]) +4 similar issues [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@perf_pmu@render-node-busy-idle@ccs0.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-5/igt@perf_pmu@render-node-busy-idle@ccs0.html * igt@prime_vgem@basic-write: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#3708]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@prime_vgem@basic-write.html * igt@runner@aborted: - shard-apl: NOTRUN -> [FAIL][204] ([i915#8759]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-apl4/igt@runner@aborted.html * igt@v3d/v3d_perfmon@get-values-invalid-perfmon: - shard-tglu: NOTRUN -> [SKIP][205] ([fdo#109315] / [i915#2575]) +4 similar issues [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-3/igt@v3d/v3d_perfmon@get-values-invalid-perfmon.html * igt@v3d/v3d_submit_cl@bad-bo: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#2575]) +3 similar issues [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-1/igt@v3d/v3d_submit_cl@bad-bo.html * igt@v3d/v3d_submit_cl@simple-flush-cache: - shard-rkl: NOTRUN -> [SKIP][207] ([fdo#109315]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@v3d/v3d_submit_cl@simple-flush-cache.html * igt@v3d/v3d_submit_csd@bad-perfmon: - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#2575]) +6 similar issues [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@v3d/v3d_submit_csd@bad-perfmon.html * igt@vc4/vc4_create_bo@create-bo-0: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#7711]) +3 similar issues [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-6/igt@vc4/vc4_create_bo@create-bo-0.html * igt@vc4/vc4_perfmon@create-single-perfmon: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#7711]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-3/igt@vc4/vc4_perfmon@create-single-perfmon.html * igt@vc4/vc4_wait_bo@used-bo-0ns: - shard-tglu: NOTRUN -> [SKIP][211] ([i915#2575]) +3 similar issues [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-6/igt@vc4/vc4_wait_bo@used-bo-0ns.html - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#7711]) +3 similar issues [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@vc4/vc4_wait_bo@used-bo-0ns.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: [FAIL][213] ([i915#7742]) -> [PASS][214] [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-2/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@gem_barrier_race@remote-request@rcs0: - shard-rkl: [ABORT][215] ([i915#8178]) -> [PASS][216] [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-1/igt@gem_barrier_race@remote-request@rcs0.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_eio@context-create: - {shard-dg1}: [DMESG-WARN][217] ([i915#4423]) -> [PASS][218] [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg1-17/igt@gem_eio@context-create.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg1-17/igt@gem_eio@context-create.html * igt@gem_eio@in-flight-contexts-10ms: - shard-mtlp: [ABORT][219] ([i915#7941]) -> [PASS][220] [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@gem_eio@in-flight-contexts-10ms.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@gem_eio@in-flight-contexts-10ms.html * igt@gem_eio@in-flight-contexts-immediate: - shard-mtlp: [ABORT][221] ([i915#8503]) -> [PASS][222] [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@gem_eio@in-flight-contexts-immediate.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@gem_eio@in-flight-contexts-immediate.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [FAIL][223] ([i915#2846]) -> [PASS][224] [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk7/igt@gem_exec_fair@basic-deadline.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-glk3/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: [FAIL][225] ([i915#2842]) -> [PASS][226] +1 similar issue [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-2/igt@gem_exec_fair@basic-none@bcs0.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_schedule@deep@vecs0: - shard-mtlp: [FAIL][227] ([i915#8545]) -> [PASS][228] [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@gem_exec_schedule@deep@vecs0.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@gem_exec_schedule@deep@vecs0.html * igt@gem_exec_suspend@basic-s0@smem: - shard-tglu: [ABORT][229] ([i915#5122] / [i915#5251]) -> [PASS][230] [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-5/igt@gem_exec_suspend@basic-s0@smem.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-10/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_exec_whisper@basic-queues-all: - shard-mtlp: [FAIL][231] ([i915#6363]) -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@gem_exec_whisper@basic-queues-all.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-1/igt@gem_exec_whisper@basic-queues-all.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-snb: [ABORT][233] ([i915#5161]) -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-snb6/igt@gem_mmap_gtt@fault-concurrent-y.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-snb2/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@gem_workarounds@suspend-resume-context: - shard-dg2: [FAIL][235] ([fdo#103375]) -> [PASS][236] +4 similar issues [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-5/igt@gem_workarounds@suspend-resume-context.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-5/igt@gem_workarounds@suspend-resume-context.html * igt@i915_hangman@detector@vcs0: - shard-mtlp: [FAIL][237] ([i915#8456]) -> [PASS][238] +2 similar issues [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-3/igt@i915_hangman@detector@vcs0.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@i915_hangman@detector@vcs0.html * igt@i915_hangman@gt-engine-error@vcs0: - shard-mtlp: [FAIL][239] ([i915#7069]) -> [PASS][240] [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@i915_hangman@gt-engine-error@vcs0.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-5/igt@i915_hangman@gt-engine-error@vcs0.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-mtlp: [FAIL][241] ([i915#8691]) -> [PASS][242] [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-6/igt@i915_pipe_stress@stress-xrgb8888-untiled.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [SKIP][243] ([fdo#109271]) -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-apl7/igt@i915_pm_dc@dc9-dpms.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-apl1/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rc6_residency@rc6-idle@ccs0: - shard-dg2: [FAIL][245] ([i915#7747] / [i915#7894]) -> [PASS][246] [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-3/igt@i915_pm_rc6_residency@rc6-idle@ccs0.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@i915_pm_rc6_residency@rc6-idle@ccs0.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-dg2: [FAIL][247] ([i915#7747]) -> [PASS][248] +3 similar issues [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-3/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-6/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][249] ([i915#1397]) -> [PASS][250] +1 similar issue [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-4/igt@i915_pm_rpm@dpms-lpsp.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@modeset-lpsp: - shard-dg2: [SKIP][251] ([i915#1397]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-7/igt@i915_pm_rpm@modeset-lpsp.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-12/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress: - {shard-dg1}: [SKIP][253] ([i915#1397]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg1-15/igt@i915_pm_rpm@modeset-lpsp-stress.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_selftest@live@gt_mocs: - shard-mtlp: [DMESG-FAIL][255] ([i915#7059]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@i915_selftest@live@gt_mocs.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@slpc: - shard-mtlp: [DMESG-WARN][257] ([i915#6367]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@i915_selftest@live@slpc.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@i915_selftest@live@slpc.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [DMESG-FAIL][259] ([i915#6763]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@i915_selftest@live@workarounds.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-7/igt@i915_selftest@live@workarounds.html * igt@i915_selftest@perf@request: - shard-mtlp: [DMESG-FAIL][261] ([i915#8573]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@i915_selftest@perf@request.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-5/igt@i915_selftest@perf@request.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [FAIL][263] ([i915#5138]) -> [PASS][264] +1 similar issue [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-mtlp: [FAIL][265] ([i915#3743]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_cursor_crc@cursor-random-256x85@pipe-d-edp-1: - shard-mtlp: [FAIL][267] -> [PASS][268] +1 similar issue [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@kms_cursor_crc@cursor-random-256x85@pipe-d-edp-1.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-256x85@pipe-d-edp-1.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [FAIL][269] ([i915#2346]) -> [PASS][270] +1 similar issue [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary: - shard-dg2: [FAIL][271] ([i915#6880]) -> [PASS][272] +2 similar issues [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html * igt@perf_pmu@busy-double-start@ccs0: - shard-mtlp: [FAIL][273] ([i915#4349]) -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@perf_pmu@busy-double-start@ccs0.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-6/igt@perf_pmu@busy-double-start@ccs0.html * igt@sysfs_heartbeat_interval@nopreempt@ccs0: - shard-mtlp: [FAIL][275] ([i915#6015]) -> [PASS][276] +2 similar issues [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@sysfs_heartbeat_interval@nopreempt@ccs0.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-8/igt@sysfs_heartbeat_interval@nopreempt@ccs0.html #### Warnings #### * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [TIMEOUT][277] ([i915#5493]) -> [DMESG-WARN][278] ([i915#4936] / [i915#5493]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [WARN][279] ([i915#6596] / [i915#7356]) -> [DMESG-WARN][280] ([i915#7061]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-12/igt@i915_module_load@reload-with-fault-injection.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglu: [FAIL][281] ([i915#2681] / [i915#3591]) -> [WARN][282] ([i915#2681]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: [DMESG-FAIL][283] ([i915#2017] / [i915#5954]) -> [FAIL][284] ([i915#2346]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-mtlp-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][285] ([fdo#109285]) -> [SKIP][286] ([fdo#109285] / [i915#4098]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/shard-rkl-4/igt@kms_force_connector_basic@force-load-detect.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#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#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3711]: https://gitlab.freedesktop.org/drm/intel/issues/3711 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4839]: https://gitlab.freedesktop.org/drm/intel/issues/4839 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5161]: https://gitlab.freedesktop.org/drm/intel/issues/5161 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5251]: https://gitlab.freedesktop.org/drm/intel/issues/5251 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 [i915#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#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6363]: https://gitlab.freedesktop.org/drm/intel/issues/6363 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6403]: https://gitlab.freedesktop.org/drm/intel/issues/6403 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6596]: https://gitlab.freedesktop.org/drm/intel/issues/6596 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7747]: https://gitlab.freedesktop.org/drm/intel/issues/7747 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7894]: https://gitlab.freedesktop.org/drm/intel/issues/7894 [i915#7916]: https://gitlab.freedesktop.org/drm/intel/issues/7916 [i915#7941]: https://gitlab.freedesktop.org/drm/intel/issues/7941 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063 [i915#8178]: https://gitlab.freedesktop.org/drm/intel/issues/8178 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8248]: https://gitlab.freedesktop.org/drm/intel/issues/8248 [i915#8304]: https://gitlab.freedesktop.org/drm/intel/issues/8304 [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#8456]: https://gitlab.freedesktop.org/drm/intel/issues/8456 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8503]: https://gitlab.freedesktop.org/drm/intel/issues/8503 [i915#8545]: https://gitlab.freedesktop.org/drm/intel/issues/8545 [i915#8573]: https://gitlab.freedesktop.org/drm/intel/issues/8573 [i915#8628]: https://gitlab.freedesktop.org/drm/intel/issues/8628 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8682]: https://gitlab.freedesktop.org/drm/intel/issues/8682 [i915#8691]: https://gitlab.freedesktop.org/drm/intel/issues/8691 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8759]: https://gitlab.freedesktop.org/drm/intel/issues/8759 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7352 -> IGTPW_9281 CI-20190529: 20190529 CI_DRM_13328: 12cd6b2d321d9c034f3d4ba14788d68cb8da4eac @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9281: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/index.html IGT_7352: 471bfababd070e1dac0ebb87470ac4f2ae85e663 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9281/index.html [-- Attachment #2: Type: text/html, Size: 90411 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
end of thread, other threads:[~2023-07-05 8:31 UTC | newest] Thread overview: 17+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-06-27 18:08 [igt-dev] [PATCH v4 0/4] Handle GT and tile seperation in IGT Himal Prasad Ghimiray 2023-06-27 18:08 ` [igt-dev] [PATCH v4 1/4] lib/igt_sysfs: Add support to query number of tiles Himal Prasad Ghimiray 2023-07-01 17:09 ` Dixit, Ashutosh 2023-07-04 4:41 ` Ghimiray, Himal Prasad 2023-06-27 18:08 ` [igt-dev] [PATCH v4 2/4] lib/igt_sysfs: Handling gt related sysfs uapi changes Himal Prasad Ghimiray 2023-06-27 18:08 ` [igt-dev] [PATCH v4 3/4] tests/xe/xe_guc_pc: Change the sysfs paths Himal Prasad Ghimiray 2023-06-30 17:33 ` Kamil Konieczny 2023-07-05 8:31 ` Ghimiray, Himal Prasad 2023-07-01 17:58 ` Dixit, Ashutosh 2023-07-03 8:00 ` Kamil Konieczny 2023-07-04 5:46 ` Ghimiray, Himal Prasad 2023-06-27 18:08 ` [igt-dev] [PATCH v4 4/4] tests/xe/xe_sysfs_tile_prop: adds new test to verify per tile vram addr_range Himal Prasad Ghimiray 2023-06-27 19:07 ` [igt-dev] ✓ Fi.CI.BAT: success for Handle GT and tile seperation in IGT (rev3) Patchwork 2023-06-28 10:52 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-06-29 17:47 ` Kamil Konieczny 2023-06-30 7:35 ` Yedireswarapu, SaiX Nandan 2023-06-30 7:34 ` [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