* [igt-dev] [PATCH i-g-t v5 0/4] Handle GT and tile seperation in IGT
@ 2023-07-05 8:52 Himal Prasad Ghimiray
2023-07-05 8:52 ` [igt-dev] [PATCH i-g-t v5 1/4] lib/igt_sysfs: Add support to query number of tiles Himal Prasad Ghimiray
` (6 more replies)
0 siblings, 7 replies; 14+ messages in thread
From: Himal Prasad Ghimiray @ 2023-07-05 8:52 UTC (permalink / raw)
To: igt-dev; +Cc: Upadhyay
With seperation of GT and tiles in KMD, we will have sysfs entries
for properties associated with tile and gtX sysfs parent will be moving
under tileX. This series provides helper functions for accessing tile
associated sysfs entries and gt specific sysfs under respective tile.
series addresses gt related sysfs path change for xe_guc_pc.c test case
and introduces new test to verify addr_range for each vram.
Cc: Priyanka Dandamudi <priyanka.dandamudi@intel.com>
Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
Cc: Francois Dugast <francois.dugast@intel.com>
Cc: Aravind Iddamsetty <aravind.iddamsetty@intel.com>
Cc: Upadhyay <tejas.upadhyay@intel.com>
Signed-off-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
Himal Prasad Ghimiray (4):
lib/igt_sysfs: Add support to query number of tiles
lib/igt_sysfs: Handling gt related sysfs uapi changes
tests/xe/xe_guc_pc: Change the sysfs paths
tests/xe/xe_sysfs_tile_prop: adds new test to verify per tile vram
addr_range
lib/igt_sysfs.c | 71 +++++++++++++++++++++++++++++++++++
lib/igt_sysfs.h | 8 ++++
tests/meson.build | 1 +
tests/xe/xe_guc_pc.c | 14 ++++++-
tests/xe/xe_sysfs_tile_prop.c | 63 +++++++++++++++++++++++++++++++
5 files changed, 155 insertions(+), 2 deletions(-)
create mode 100644 tests/xe/xe_sysfs_tile_prop.c
--
2.25.1
^ permalink raw reply [flat|nested] 14+ messages in thread* [igt-dev] [PATCH i-g-t v5 1/4] lib/igt_sysfs: Add support to query number of tiles 2023-07-05 8:52 [igt-dev] [PATCH i-g-t v5 0/4] Handle GT and tile seperation in IGT Himal Prasad Ghimiray @ 2023-07-05 8:52 ` Himal Prasad Ghimiray 2023-07-05 8:52 ` [igt-dev] [PATCH i-g-t v5 2/4] lib/igt_sysfs: Handling gt related sysfs uapi changes Himal Prasad Ghimiray ` (5 subsequent siblings) 6 siblings, 0 replies; 14+ messages in thread From: Himal Prasad Ghimiray @ 2023-07-05 8:52 UTC (permalink / raw) To: igt-dev; +Cc: Upadhyay With tile and GT seperation in KMD, we need to know number of tiles supported by platform. We will need to access tile associated properties from IGT. Hence adding iterator for all supported tiles. v2: - Calculate number of tiles once within iterator. (Rahul) - Use snprintf instead of sprintf. v3: - Remove unrequired for_each_sysfs_tile_dirfd (Ashutosh) 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: 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 | 7 +++++++ 2 files changed, 37 insertions(+) diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c index 0876f4c6b..2ea9eb1b9 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 5635fc690..c31765542 100644 --- a/lib/igt_sysfs.h +++ b/lib/igt_sysfs.h @@ -73,6 +73,12 @@ #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(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 +103,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] 14+ messages in thread
* [igt-dev] [PATCH i-g-t v5 2/4] lib/igt_sysfs: Handling gt related sysfs uapi changes 2023-07-05 8:52 [igt-dev] [PATCH i-g-t v5 0/4] Handle GT and tile seperation in IGT Himal Prasad Ghimiray 2023-07-05 8:52 ` [igt-dev] [PATCH i-g-t v5 1/4] lib/igt_sysfs: Add support to query number of tiles Himal Prasad Ghimiray @ 2023-07-05 8:52 ` Himal Prasad Ghimiray 2023-07-05 8:52 ` [igt-dev] [PATCH i-g-t v5 3/4] tests/xe/xe_guc_pc: Change the sysfs paths Himal Prasad Ghimiray ` (4 subsequent siblings) 6 siblings, 0 replies; 14+ messages in thread From: Himal Prasad Ghimiray @ 2023-07-05 8:52 UTC (permalink / raw) To: igt-dev; +Cc: Upadhyay Patch https://patchwork.freedesktop.org/series/118927/ is moving gt sysfs parent under tile folder. With the above patch path for sysfs changes: from: /sys/class/drm/cardX/device/gtN/ to : /sys/class/drm/cardX/device/tileN/gtN Adding xe_gt_sysfs_path function to access new path. v2: - Calculate number of tiles once within iterator. (Rahul) v3: - Drop usage of local variable for tilecount. - Change order of tile and gt. (Ashutosh) v4: - Drop xe_for_each_gt_under_each_tile macro add xe_gt_sysfs_path to return path. (Ashutosh) - Support older dir path along with new. (kamil) Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> Cc: Aravind Iddamsetty <aravind.iddamsetty@intel.com> Cc: Upadhyay <tejas.upadhyay@intel.com> Cc: Janga Rahul Kumar <janga.rahul.kumar@intel.com> Cc: Francois Dugast <francois.dugast@intel.com> Cc: Ashutosh Dixit <ashutosh.dixit@intel.com> Cc: Matt Roper <matthew.d.roper@intel.com> Signed-off-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com> --- lib/igt_sysfs.c | 41 +++++++++++++++++++++++++++++++++++++++++ lib/igt_sysfs.h | 1 + 2 files changed, 42 insertions(+) diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c index 2ea9eb1b9..ae8ac45a6 100644 --- a/lib/igt_sysfs.c +++ b/lib/igt_sysfs.c @@ -46,6 +46,7 @@ #include "igt_device.h" #include "igt_io.h" +#define XE_MAX_GT_SYSFS_PATH 3 /** * SECTION:igt_sysfs * @short_description: Support code for sysfs features @@ -933,3 +934,43 @@ void igt_sysfs_engines(int xe, int engines, const char **property, close(engine_fd); } } + +/** + * xe_gt_sysfs_path:: + * @sysfs: fd of sysfs + * @gt_id: gt id + * + * This function returns the path for gtX directory + */ +char *xe_gt_sysfs_path(int sysfs, int gt_id) +{ + char path[XE_MAX_GT_SYSFS_PATH][32]; + struct stat gtpathstat; + char *gt_path; + int i; + + /* Path for multitile platforms with single gt on each tile + * Tile id will be same as gt id. + */ + snprintf(path[0], sizeof(path[0]), "device/tile%d/gt%d/", gt_id, gt_id); + + /* Path for single tile platforms with multiple gt's + * all gt's will be under tile0 eg: MTL. + */ + snprintf(path[1], sizeof(path[1]), "device/tile0/gt%d/", gt_id); + + /* Path not under tile. + * To support older dir structure. + */ + snprintf(path[2], sizeof(path[2]), "device/gt%d/", gt_id); + + while (i < XE_MAX_GT_SYSFS_PATH) { + if (!fstatat(sysfs, path[i], >pathstat, 0) && S_ISDIR(gtpathstat.st_mode)) { + gt_path = malloc(sizeof(path[i])); + strcpy(gt_path, path[i]); + return gt_path; + } + i++; + } + igt_assert_f(false, "No gt%d dir found in sysfs", gt_id); +} diff --git a/lib/igt_sysfs.h b/lib/igt_sysfs.h index c31765542..a937ee7b5 100644 --- a/lib/igt_sysfs.h +++ b/lib/igt_sysfs.h @@ -153,6 +153,7 @@ typedef struct igt_sysfs_rw_attr { } igt_sysfs_rw_attr_t; void igt_sysfs_rw_attr_verify(igt_sysfs_rw_attr_t *rw); +char *xe_gt_sysfs_path(int sysfs, int gt_id); void igt_sysfs_engines(int xe, int engines, const char **property, void (*test)(int, int, const char **)); -- 2.25.1 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* [igt-dev] [PATCH i-g-t v5 3/4] tests/xe/xe_guc_pc: Change the sysfs paths 2023-07-05 8:52 [igt-dev] [PATCH i-g-t v5 0/4] Handle GT and tile seperation in IGT Himal Prasad Ghimiray 2023-07-05 8:52 ` [igt-dev] [PATCH i-g-t v5 1/4] lib/igt_sysfs: Add support to query number of tiles Himal Prasad Ghimiray 2023-07-05 8:52 ` [igt-dev] [PATCH i-g-t v5 2/4] lib/igt_sysfs: Handling gt related sysfs uapi changes Himal Prasad Ghimiray @ 2023-07-05 8:52 ` Himal Prasad Ghimiray 2023-07-06 0:12 ` Dixit, Ashutosh 2023-07-05 8:52 ` [igt-dev] [PATCH i-g-t v5 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, 1 reply; 14+ messages in thread From: Himal Prasad Ghimiray @ 2023-07-05 8:52 UTC (permalink / raw) To: igt-dev; +Cc: Upadhyay, Badal Nilawar Changes to access sysfs entries under tile directory. Access freq sysfs from /sys/class/drm/cardX/device/tileN/gtN path. v2: - Use snprintf instead of sprintf and check error. - Describe what changes are done. (Kamil) v3: - change order of gt and tile and drop passing tilecount.(Ashutosh) v4: - Rebase v5: - Drop usage of xe_for_each_gt_under_each_tile and use a function to return gt path. (Ashutosh) 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 | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/tests/xe/xe_guc_pc.c b/tests/xe/xe_guc_pc.c index 827693eb4..046791d51 100644 --- a/tests/xe/xe_guc_pc.c +++ b/tests/xe/xe_guc_pc.c @@ -137,8 +137,13 @@ static int set_freq(int sysfs, int gt_id, const char *freq_name, uint32_t freq) { int ret = -EAGAIN; char path[32]; + char *gt_path; + + gt_path = xe_gt_sysfs_path(sysfs, gt_id); + igt_assert(snprintf(path, sizeof(path), "%s/freq_%s", + xe_gt_sysfs_path(sysfs, gt_id), freq_name) < sizeof(path)); + free(gt_path); - sprintf(path, "device/gt%d/freq_%s", gt_id, freq_name); while (ret == -EAGAIN) ret = igt_sysfs_printf(sysfs, path, "%u", freq); return ret; @@ -149,7 +154,12 @@ static uint32_t get_freq(int sysfs, int gt_id, const char *freq_name) uint32_t freq; int err = -EAGAIN; char path[32]; - sprintf(path, "device/gt%d/freq_%s", gt_id, freq_name); + char *gt_path; + + gt_path = xe_gt_sysfs_path(sysfs, gt_id); + igt_assert(snprintf(path, sizeof(path), "%s/freq_%s", + gt_path, freq_name) < sizeof(path)); + free(gt_path); while (err == -EAGAIN) err = igt_sysfs_scanf(sysfs, path, "%u", &freq); return freq; -- 2.25.1 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v5 3/4] tests/xe/xe_guc_pc: Change the sysfs paths 2023-07-05 8:52 ` [igt-dev] [PATCH i-g-t v5 3/4] tests/xe/xe_guc_pc: Change the sysfs paths Himal Prasad Ghimiray @ 2023-07-06 0:12 ` Dixit, Ashutosh 2023-07-06 3:20 ` Ghimiray, Himal Prasad 0 siblings, 1 reply; 14+ messages in thread From: Dixit, Ashutosh @ 2023-07-06 0:12 UTC (permalink / raw) To: Himal Prasad Ghimiray; +Cc: Upadhyay, igt-dev, Badal Nilawar On Wed, 05 Jul 2023 01:52:58 -0700, Himal Prasad Ghimiray wrote: > > diff --git a/tests/xe/xe_guc_pc.c b/tests/xe/xe_guc_pc.c > index 827693eb4..046791d51 100644 > --- a/tests/xe/xe_guc_pc.c > +++ b/tests/xe/xe_guc_pc.c > @@ -137,8 +137,13 @@ static int set_freq(int sysfs, int gt_id, const char *freq_name, uint32_t freq) > { > int ret = -EAGAIN; > char path[32]; > + char *gt_path; > + > + gt_path = xe_gt_sysfs_path(sysfs, gt_id); > + igt_assert(snprintf(path, sizeof(path), "%s/freq_%s", > + xe_gt_sysfs_path(sysfs, gt_id), freq_name) < sizeof(path)); No need to do this, delete path[], gt_path can directly be passed igt_sysfs_printf/scanf? > + free(gt_path); > > - sprintf(path, "device/gt%d/freq_%s", gt_id, freq_name); > while (ret == -EAGAIN) > ret = igt_sysfs_printf(sysfs, path, "%u", freq); > return ret; > @@ -149,7 +154,12 @@ static uint32_t get_freq(int sysfs, int gt_id, const char *freq_name) > uint32_t freq; > int err = -EAGAIN; > char path[32]; > - sprintf(path, "device/gt%d/freq_%s", gt_id, freq_name); > + char *gt_path; > + > + gt_path = xe_gt_sysfs_path(sysfs, gt_id); > + igt_assert(snprintf(path, sizeof(path), "%s/freq_%s", > + gt_path, freq_name) < sizeof(path)); > + free(gt_path); > while (err == -EAGAIN) > err = igt_sysfs_scanf(sysfs, path, "%u", &freq); > return freq; > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v5 3/4] tests/xe/xe_guc_pc: Change the sysfs paths 2023-07-06 0:12 ` Dixit, Ashutosh @ 2023-07-06 3:20 ` Ghimiray, Himal Prasad 2023-07-06 3:52 ` Dixit, Ashutosh 0 siblings, 1 reply; 14+ messages in thread From: Ghimiray, Himal Prasad @ 2023-07-06 3:20 UTC (permalink / raw) To: Dixit, Ashutosh Cc: Upadhyay, Tejas, igt-dev@lists.freedesktop.org, Nilawar, Badal > -----Original Message----- > From: Dixit, Ashutosh <ashutosh.dixit@intel.com> > Sent: 06 July 2023 05:42 > 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 i-g-t v5 3/4] tests/xe/xe_guc_pc: Change the sysfs paths > > On Wed, 05 Jul 2023 01:52:58 -0700, Himal Prasad Ghimiray wrote: > > > > diff --git a/tests/xe/xe_guc_pc.c b/tests/xe/xe_guc_pc.c index > > 827693eb4..046791d51 100644 > > --- a/tests/xe/xe_guc_pc.c > > +++ b/tests/xe/xe_guc_pc.c > > @@ -137,8 +137,13 @@ static int set_freq(int sysfs, int gt_id, const > >char *freq_name, uint32_t freq) > > { > > int ret = -EAGAIN; > > char path[32]; > > + char *gt_path; > > + > > + gt_path = xe_gt_sysfs_path(sysfs, gt_id); > > + igt_assert(snprintf(path, sizeof(path), "%s/freq_%s", > > + xe_gt_sysfs_path(sysfs, gt_id), freq_name) < > sizeof(path)); > > No need to do this, delete path[], gt_path can directly be passed > igt_sysfs_printf/scanf? Here we are appending the sysfs entry name to the gt_path. Why it is not needed ? > > > + free(gt_path); > > > > - sprintf(path, "device/gt%d/freq_%s", gt_id, freq_name); > > while (ret == -EAGAIN) > > ret = igt_sysfs_printf(sysfs, path, "%u", freq); > > return ret; > > @@ -149,7 +154,12 @@ static uint32_t get_freq(int sysfs, int gt_id, const > char *freq_name) > > uint32_t freq; > > int err = -EAGAIN; > > char path[32]; > > - sprintf(path, "device/gt%d/freq_%s", gt_id, freq_name); > > + char *gt_path; > > + > > + gt_path = xe_gt_sysfs_path(sysfs, gt_id); > > + igt_assert(snprintf(path, sizeof(path), "%s/freq_%s", > > + gt_path, freq_name) < sizeof(path)); > > + free(gt_path); > > while (err == -EAGAIN) > > err = igt_sysfs_scanf(sysfs, path, "%u", &freq); > > return freq; > > -- > > 2.25.1 > > ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v5 3/4] tests/xe/xe_guc_pc: Change the sysfs paths 2023-07-06 3:20 ` Ghimiray, Himal Prasad @ 2023-07-06 3:52 ` Dixit, Ashutosh 2023-07-06 4:10 ` Ghimiray, Himal Prasad 0 siblings, 1 reply; 14+ messages in thread From: Dixit, Ashutosh @ 2023-07-06 3:52 UTC (permalink / raw) To: Ghimiray, Himal Prasad Cc: Upadhyay, Tejas, igt-dev@lists.freedesktop.org, Nilawar, Badal On Wed, 05 Jul 2023 20:20:37 -0700, Ghimiray, Himal Prasad wrote: > > > -----Original Message----- > > From: Dixit, Ashutosh <ashutosh.dixit@intel.com> > > Sent: 06 July 2023 05:42 > > 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 i-g-t v5 3/4] tests/xe/xe_guc_pc: Change the sysfs paths > > > > On Wed, 05 Jul 2023 01:52:58 -0700, Himal Prasad Ghimiray wrote: > > > > > > diff --git a/tests/xe/xe_guc_pc.c b/tests/xe/xe_guc_pc.c index > > > 827693eb4..046791d51 100644 > > > --- a/tests/xe/xe_guc_pc.c > > > +++ b/tests/xe/xe_guc_pc.c > > > @@ -137,8 +137,13 @@ static int set_freq(int sysfs, int gt_id, const > > >char *freq_name, uint32_t freq) > > > { > > > int ret = -EAGAIN; > > > char path[32]; > > > + char *gt_path; > > > + > > > + gt_path = xe_gt_sysfs_path(sysfs, gt_id); > > > + igt_assert(snprintf(path, sizeof(path), "%s/freq_%s", > > > + xe_gt_sysfs_path(sysfs, gt_id), freq_name) < > > sizeof(path)); > > > > No need to do this, delete path[], gt_path can directly be passed > > igt_sysfs_printf/scanf? > > Here we are appending the sysfs entry name to the gt_path. Why it is not needed ? Sorry, I misspoke. But gt_path is not needed, you are not using it, you are calling xe_gt_sysfs_path twice. Delete gt_path. Or do what you are doing below. Do the same thing in both places. > > > > > > + free(gt_path); > > > > > > - sprintf(path, "device/gt%d/freq_%s", gt_id, freq_name); > > > while (ret == -EAGAIN) > > > ret = igt_sysfs_printf(sysfs, path, "%u", freq); > > > return ret; > > > @@ -149,7 +154,12 @@ static uint32_t get_freq(int sysfs, int gt_id, const > > char *freq_name) > > > uint32_t freq; > > > int err = -EAGAIN; > > > char path[32]; > > > - sprintf(path, "device/gt%d/freq_%s", gt_id, freq_name); > > > + char *gt_path; > > > + > > > + gt_path = xe_gt_sysfs_path(sysfs, gt_id); > > > + igt_assert(snprintf(path, sizeof(path), "%s/freq_%s", > > > + gt_path, freq_name) < sizeof(path)); > > > + free(gt_path); > > > while (err == -EAGAIN) > > > err = igt_sysfs_scanf(sysfs, path, "%u", &freq); > > > return freq; > > > -- > > > 2.25.1 > > > ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v5 3/4] tests/xe/xe_guc_pc: Change the sysfs paths 2023-07-06 3:52 ` Dixit, Ashutosh @ 2023-07-06 4:10 ` Ghimiray, Himal Prasad 0 siblings, 0 replies; 14+ messages in thread From: Ghimiray, Himal Prasad @ 2023-07-06 4:10 UTC (permalink / raw) To: Dixit, Ashutosh Cc: Upadhyay, Tejas, igt-dev@lists.freedesktop.org, Nilawar, Badal > -----Original Message----- > From: Dixit, Ashutosh <ashutosh.dixit@intel.com> > Sent: 06 July 2023 09:22 > 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 i-g-t v5 3/4] tests/xe/xe_guc_pc: Change the sysfs paths > > On Wed, 05 Jul 2023 20:20:37 -0700, Ghimiray, Himal Prasad wrote: > > > > > -----Original Message----- > > > From: Dixit, Ashutosh <ashutosh.dixit@intel.com> > > > Sent: 06 July 2023 05:42 > > > 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 i-g-t v5 3/4] tests/xe/xe_guc_pc: Change the > > > sysfs paths > > > > > > On Wed, 05 Jul 2023 01:52:58 -0700, Himal Prasad Ghimiray wrote: > > > > > > > > diff --git a/tests/xe/xe_guc_pc.c b/tests/xe/xe_guc_pc.c index > > > > 827693eb4..046791d51 100644 > > > > --- a/tests/xe/xe_guc_pc.c > > > > +++ b/tests/xe/xe_guc_pc.c > > > > @@ -137,8 +137,13 @@ static int set_freq(int sysfs, int gt_id, > > > >const char *freq_name, uint32_t freq) > > > > { > > > > int ret = -EAGAIN; > > > > char path[32]; > > > > + char *gt_path; > > > > + > > > > + gt_path = xe_gt_sysfs_path(sysfs, gt_id); > > > > + igt_assert(snprintf(path, sizeof(path), "%s/freq_%s", > > > > + xe_gt_sysfs_path(sysfs, gt_id), freq_name) < > > > sizeof(path)); > > > > > > No need to do this, delete path[], gt_path can directly be passed > > > igt_sysfs_printf/scanf? > > > > Here we are appending the sysfs entry name to the gt_path. Why it is not > needed ? > > Sorry, I misspoke. But gt_path is not needed, you are not using it, you are > calling xe_gt_sysfs_path twice. Delete gt_path. Or do what you are doing > below. Do the same thing in both places. Thanks for the clarification. Will address it next patch. > > > > > > > > > > + free(gt_path); > > > > > > > > - sprintf(path, "device/gt%d/freq_%s", gt_id, freq_name); > > > > while (ret == -EAGAIN) > > > > ret = igt_sysfs_printf(sysfs, path, "%u", freq); > > > > return ret; > > > > @@ -149,7 +154,12 @@ static uint32_t get_freq(int sysfs, int > > > >gt_id, const > > > char *freq_name) > > > > uint32_t freq; > > > > int err = -EAGAIN; > > > > char path[32]; > > > > - sprintf(path, "device/gt%d/freq_%s", gt_id, freq_name); > > > > + char *gt_path; > > > > + > > > > + gt_path = xe_gt_sysfs_path(sysfs, gt_id); > > > > + igt_assert(snprintf(path, sizeof(path), "%s/freq_%s", > > > > + gt_path, freq_name) < sizeof(path)); > > > > + free(gt_path); > > > > while (err == -EAGAIN) > > > > err = igt_sysfs_scanf(sysfs, path, "%u", &freq); > > > > return freq; > > > > -- > > > > 2.25.1 > > > > ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] [PATCH i-g-t v5 4/4] tests/xe/xe_sysfs_tile_prop: adds new test to verify per tile vram addr_range 2023-07-05 8:52 [igt-dev] [PATCH i-g-t v5 0/4] Handle GT and tile seperation in IGT Himal Prasad Ghimiray ` (2 preceding siblings ...) 2023-07-05 8:52 ` [igt-dev] [PATCH i-g-t v5 3/4] tests/xe/xe_guc_pc: Change the sysfs paths Himal Prasad Ghimiray @ 2023-07-05 8:52 ` Himal Prasad Ghimiray 2023-07-05 9:14 ` [igt-dev] [PATCH i-g-t v5 0/4] Handle GT and tile seperation in IGT Kumar, Janga Rahul ` (2 subsequent siblings) 6 siblings, 0 replies; 14+ messages in thread From: Himal Prasad Ghimiray @ 2023-07-05 8:52 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: 2776 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. v4: - use igt_assert_lt_u64 instead of igt_assert_lt for comparing u64. 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 ee066b849..fac9123b5 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -268,6 +268,7 @@ xe_progs = [ 'xe_pm', 'xe_prime_self_import', 'xe_query', + 'xe_sysfs_tile_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 000000000..293506c46 --- /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_u64(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] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v5 0/4] Handle GT and tile seperation in IGT 2023-07-05 8:52 [igt-dev] [PATCH i-g-t v5 0/4] Handle GT and tile seperation in IGT Himal Prasad Ghimiray ` (3 preceding siblings ...) 2023-07-05 8:52 ` [igt-dev] [PATCH i-g-t v5 4/4] tests/xe/xe_sysfs_tile_prop: adds new test to verify per tile vram addr_range Himal Prasad Ghimiray @ 2023-07-05 9:14 ` Kumar, Janga Rahul 2023-07-05 9:18 ` Ghimiray, Himal Prasad 2023-07-05 10:18 ` [igt-dev] ✓ Fi.CI.BAT: success for Handle GT and tile seperation in IGT (rev4) Patchwork 2023-07-05 12:05 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 6 siblings, 1 reply; 14+ messages in thread From: Kumar, Janga Rahul @ 2023-07-05 9:14 UTC (permalink / raw) To: Ghimiray, Himal Prasad, igt-dev@lists.freedesktop.org; +Cc: Upadhyay, Tejas Hi @Himal Prasad Ghimiray, The change in GT sysfs path may regress the tests using "xe_force_gt_reset()" IGT lib function. pls address this in this patch itself. Thanks, Rahul > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Himal > Prasad Ghimiray > Sent: 05 July 2023 14:23 > To: igt-dev@lists.freedesktop.org > Cc: Upadhyay, Tejas <tejas.upadhyay@intel.com> > Subject: [igt-dev] [PATCH i-g-t v5 0/4] Handle GT and tile seperation in IGT > > With seperation of GT and tiles in KMD, we will have sysfs entries for properties > associated with tile and gtX sysfs parent will be moving under tileX. This series > provides helper functions for accessing tile associated sysfs entries and gt > specific sysfs under respective tile. > > series addresses gt related sysfs path change for xe_guc_pc.c test case and > introduces new test to verify addr_range for each vram. > > Cc: Priyanka Dandamudi <priyanka.dandamudi@intel.com> > Cc: Ashutosh Dixit <ashutosh.dixit@intel.com> > Cc: Francois Dugast <francois.dugast@intel.com> > Cc: Aravind Iddamsetty <aravind.iddamsetty@intel.com> > Cc: Upadhyay <tejas.upadhyay@intel.com> > Signed-off-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com> > > Himal Prasad Ghimiray (4): > lib/igt_sysfs: Add support to query number of tiles > lib/igt_sysfs: Handling gt related sysfs uapi changes > tests/xe/xe_guc_pc: Change the sysfs paths > tests/xe/xe_sysfs_tile_prop: adds new test to verify per tile vram > addr_range > > lib/igt_sysfs.c | 71 +++++++++++++++++++++++++++++++++++ > lib/igt_sysfs.h | 8 ++++ > tests/meson.build | 1 + > tests/xe/xe_guc_pc.c | 14 ++++++- > tests/xe/xe_sysfs_tile_prop.c | 63 +++++++++++++++++++++++++++++++ > 5 files changed, 155 insertions(+), 2 deletions(-) create mode 100644 > tests/xe/xe_sysfs_tile_prop.c > > -- > 2.25.1 ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v5 0/4] Handle GT and tile seperation in IGT 2023-07-05 9:14 ` [igt-dev] [PATCH i-g-t v5 0/4] Handle GT and tile seperation in IGT Kumar, Janga Rahul @ 2023-07-05 9:18 ` Ghimiray, Himal Prasad 2023-07-06 16:26 ` Kumar, Janga Rahul 0 siblings, 1 reply; 14+ messages in thread From: Ghimiray, Himal Prasad @ 2023-07-05 9:18 UTC (permalink / raw) To: Kumar, Janga Rahul, igt-dev@lists.freedesktop.org; +Cc: Upadhyay, Tejas Hi Rahul, > -----Original Message----- > From: Kumar, Janga Rahul <janga.rahul.kumar@intel.com> > Sent: 05 July 2023 14:44 > To: Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com>; igt- > dev@lists.freedesktop.org > Cc: Upadhyay, Tejas <tejas.upadhyay@intel.com> > Subject: RE: [igt-dev] [PATCH i-g-t v5 0/4] Handle GT and tile seperation in IGT > > Hi @Himal Prasad Ghimiray, > > The change in GT sysfs path may regress the tests using "xe_force_gt_reset()" > IGT lib function. Xe_force_gt_reset uses debugfs force_reset. As of now debugfs entries are not moved under tiles. BR Himal > pls address this in this patch itself. > > Thanks, > Rahul > > > -----Original Message----- > > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of > > Himal Prasad Ghimiray > > Sent: 05 July 2023 14:23 > > To: igt-dev@lists.freedesktop.org > > Cc: Upadhyay, Tejas <tejas.upadhyay@intel.com> > > Subject: [igt-dev] [PATCH i-g-t v5 0/4] Handle GT and tile seperation > > in IGT > > > > With seperation of GT and tiles in KMD, we will have sysfs entries for > > properties associated with tile and gtX sysfs parent will be moving > > under tileX. This series provides helper functions for accessing tile > > associated sysfs entries and gt specific sysfs under respective tile. > > > > series addresses gt related sysfs path change for xe_guc_pc.c test > > case and introduces new test to verify addr_range for each vram. > > > > Cc: Priyanka Dandamudi <priyanka.dandamudi@intel.com> > > Cc: Ashutosh Dixit <ashutosh.dixit@intel.com> > > Cc: Francois Dugast <francois.dugast@intel.com> > > Cc: Aravind Iddamsetty <aravind.iddamsetty@intel.com> > > Cc: Upadhyay <tejas.upadhyay@intel.com> > > Signed-off-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com> > > > > Himal Prasad Ghimiray (4): > > lib/igt_sysfs: Add support to query number of tiles > > lib/igt_sysfs: Handling gt related sysfs uapi changes > > tests/xe/xe_guc_pc: Change the sysfs paths > > tests/xe/xe_sysfs_tile_prop: adds new test to verify per tile vram > > addr_range > > > > lib/igt_sysfs.c | 71 +++++++++++++++++++++++++++++++++++ > > lib/igt_sysfs.h | 8 ++++ > > tests/meson.build | 1 + > > tests/xe/xe_guc_pc.c | 14 ++++++- > > tests/xe/xe_sysfs_tile_prop.c | 63 +++++++++++++++++++++++++++++++ > > 5 files changed, 155 insertions(+), 2 deletions(-) create mode > > 100644 tests/xe/xe_sysfs_tile_prop.c > > > > -- > > 2.25.1 ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v5 0/4] Handle GT and tile seperation in IGT 2023-07-05 9:18 ` Ghimiray, Himal Prasad @ 2023-07-06 16:26 ` Kumar, Janga Rahul 0 siblings, 0 replies; 14+ messages in thread From: Kumar, Janga Rahul @ 2023-07-06 16:26 UTC (permalink / raw) To: Ghimiray, Himal Prasad, igt-dev@lists.freedesktop.org; +Cc: Upadhyay, Tejas > -----Original Message----- > From: Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com> > Sent: 05 July 2023 14:48 > To: Kumar, Janga Rahul <janga.rahul.kumar@intel.com>; igt- > dev@lists.freedesktop.org > Cc: Upadhyay, Tejas <tejas.upadhyay@intel.com> > Subject: RE: [igt-dev] [PATCH i-g-t v5 0/4] Handle GT and tile seperation in IGT > > Hi Rahul, > > > -----Original Message----- > > From: Kumar, Janga Rahul <janga.rahul.kumar@intel.com> > > Sent: 05 July 2023 14:44 > > To: Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com>; igt- > > dev@lists.freedesktop.org > > Cc: Upadhyay, Tejas <tejas.upadhyay@intel.com> > > Subject: RE: [igt-dev] [PATCH i-g-t v5 0/4] Handle GT and tile > > seperation in IGT > > > > Hi @Himal Prasad Ghimiray, > > > > The change in GT sysfs path may regress the tests using "xe_force_gt_reset()" > > IGT lib function. > > Xe_force_gt_reset uses debugfs force_reset. As of now debugfs entries are not > moved under tiles. Thanks for the clarification. -Rahul > > BR > Himal > > pls address this in this patch itself. > > > > Thanks, > > Rahul > > > > > -----Original Message----- > > > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of > > > Himal Prasad Ghimiray > > > Sent: 05 July 2023 14:23 > > > To: igt-dev@lists.freedesktop.org > > > Cc: Upadhyay, Tejas <tejas.upadhyay@intel.com> > > > Subject: [igt-dev] [PATCH i-g-t v5 0/4] Handle GT and tile > > > seperation in IGT > > > > > > With seperation of GT and tiles in KMD, we will have sysfs entries > > > for properties associated with tile and gtX sysfs parent will be > > > moving under tileX. This series provides helper functions for > > > accessing tile associated sysfs entries and gt specific sysfs under respective > tile. > > > > > > series addresses gt related sysfs path change for xe_guc_pc.c test > > > case and introduces new test to verify addr_range for each vram. > > > > > > Cc: Priyanka Dandamudi <priyanka.dandamudi@intel.com> > > > Cc: Ashutosh Dixit <ashutosh.dixit@intel.com> > > > Cc: Francois Dugast <francois.dugast@intel.com> > > > Cc: Aravind Iddamsetty <aravind.iddamsetty@intel.com> > > > Cc: Upadhyay <tejas.upadhyay@intel.com> > > > Signed-off-by: Himal Prasad Ghimiray > > > <himal.prasad.ghimiray@intel.com> > > > > > > Himal Prasad Ghimiray (4): > > > lib/igt_sysfs: Add support to query number of tiles > > > lib/igt_sysfs: Handling gt related sysfs uapi changes > > > tests/xe/xe_guc_pc: Change the sysfs paths > > > tests/xe/xe_sysfs_tile_prop: adds new test to verify per tile vram > > > addr_range > > > > > > lib/igt_sysfs.c | 71 +++++++++++++++++++++++++++++++++++ > > > lib/igt_sysfs.h | 8 ++++ > > > tests/meson.build | 1 + > > > tests/xe/xe_guc_pc.c | 14 ++++++- > > > tests/xe/xe_sysfs_tile_prop.c | 63 +++++++++++++++++++++++++++++++ > > > 5 files changed, 155 insertions(+), 2 deletions(-) create mode > > > 100644 tests/xe/xe_sysfs_tile_prop.c > > > > > > -- > > > 2.25.1 ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Handle GT and tile seperation in IGT (rev4) 2023-07-05 8:52 [igt-dev] [PATCH i-g-t v5 0/4] Handle GT and tile seperation in IGT Himal Prasad Ghimiray ` (4 preceding siblings ...) 2023-07-05 9:14 ` [igt-dev] [PATCH i-g-t v5 0/4] Handle GT and tile seperation in IGT Kumar, Janga Rahul @ 2023-07-05 10:18 ` Patchwork 2023-07-05 12:05 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 6 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2023-07-05 10:18 UTC (permalink / raw) To: Himal Prasad Ghimiray; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2794 bytes --] == Series Details == Series: Handle GT and tile seperation in IGT (rev4) URL : https://patchwork.freedesktop.org/series/119801/ State : success == Summary == CI Bug Log - changes from IGT_7370 -> IGTPW_9336 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/index.html Participating hosts (41 -> 24) ------------------------------ Missing (17): bat-adlp-9 fi-bsw-n3050 bat-dg2-8 bat-dg2-9 fi-cfl-8700k fi-snb-2520m bat-dg1-8 fi-hsw-4770 bat-adln-1 fi-kbl-x1275 fi-kbl-8809g bat-atsm-1 fi-ivb-3770 fi-cfl-8109u bat-rplp-1 bat-rpls-1 fi-bsw-nick Known issues ------------ Here are the changes found in IGTPW_9336 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_rpm@basic-pci-d3-state: - bat-mtlp-8: [PASS][1] -> [ABORT][2] ([i915#7077] / [i915#7977] / [i915#8668]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_selftest@live@slpc: - bat-mtlp-6: [PASS][3] -> [DMESG-WARN][4] ([i915#6367]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/bat-mtlp-6/igt@i915_selftest@live@slpc.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/bat-mtlp-6/igt@i915_selftest@live@slpc.html * igt@kms_psr@primary_page_flip: - fi-pnv-d510: NOTRUN -> [SKIP][5] ([fdo#109271]) +38 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/fi-pnv-d510/igt@kms_psr@primary_page_flip.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#7077]: https://gitlab.freedesktop.org/drm/intel/issues/7077 [i915#7977]: https://gitlab.freedesktop.org/drm/intel/issues/7977 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7370 -> IGTPW_9336 CI-20190529: 20190529 CI_DRM_13345: 52c775d5fac7e50737584ba6cf643c1166d95855 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9336: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/index.html IGT_7370: f63ab5e7c3ddef724bebde558e36647ca65d98bc @ 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_9336/index.html [-- Attachment #2: Type: text/html, Size: 3445 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Handle GT and tile seperation in IGT (rev4) 2023-07-05 8:52 [igt-dev] [PATCH i-g-t v5 0/4] Handle GT and tile seperation in IGT Himal Prasad Ghimiray ` (5 preceding siblings ...) 2023-07-05 10:18 ` [igt-dev] ✓ Fi.CI.BAT: success for Handle GT and tile seperation in IGT (rev4) Patchwork @ 2023-07-05 12:05 ` Patchwork 6 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2023-07-05 12:05 UTC (permalink / raw) To: Himal Prasad Ghimiray; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 73873 bytes --] == Series Details == Series: Handle GT and tile seperation in IGT (rev4) URL : https://patchwork.freedesktop.org/series/119801/ State : failure == Summary == CI Bug Log - changes from IGT_7370_full -> IGTPW_9336_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9336_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9336_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_9336/index.html Participating hosts (8 -> 9) ------------------------------ Additional (1): shard-mtlp Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9336_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_whisper@basic-fds-all: - shard-dg2: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg2-3/igt@gem_exec_whisper@basic-fds-all.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-5/igt@gem_exec_whisper@basic-fds-all.html * igt@kms_content_protection@lic: - shard-mtlp: NOTRUN -> [SKIP][3] +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-1/igt@kms_content_protection@lic.html New tests --------- New tests have been introduced between IGT_7370_full and IGTPW_9336_full: ### New IGT tests (3) ### * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-upscaling@pipe-a-default-mode: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode: - Statuses : 1 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9336_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8411]) +3 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-3/igt@api_intel_bb@object-reloc-purge-cache.html * igt@debugfs_test@basic-hwmon: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#7456]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-3/igt@debugfs_test@basic-hwmon.html * igt@device_reset@cold-reset-bound: - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#7701]) +1 similar issue [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-2/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-hang@rcs0: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8414]) +54 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-7/igt@drm_fdinfo@busy-hang@rcs0.html * igt@drm_fdinfo@busy-idle-check-all@vcs0: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8414]) +9 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-1/igt@drm_fdinfo@busy-idle-check-all@vcs0.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [PASS][9] -> [FAIL][10] ([i915#7742]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-rkl-6/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@feature_discovery@chamelium: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#4854]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@feature_discovery@chamelium.html * igt@feature_discovery@display-3x: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#1839]) +2 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-2/igt@feature_discovery@display-3x.html - shard-rkl: NOTRUN -> [SKIP][13] ([i915#1839]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-rkl-7/igt@feature_discovery@display-3x.html * igt@gem_busy@semaphore: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#3936]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-6/igt@gem_busy@semaphore.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#4873]) +2 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@gem_caching@writes.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#6335]) +1 similar issue [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-2/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_param@set-priority-not-supported: - shard-mtlp: NOTRUN -> [SKIP][17] ([fdo#109314]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-3/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@hang: - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#8555]) +5 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@legacy-engines-hostile@vebox: - shard-mtlp: NOTRUN -> [FAIL][19] ([i915#2410]) +3 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-6/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1: - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#5882]) +5 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-7/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#280]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-rkl-4/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#280]) +3 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-1/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@hibernate: - shard-dg2: [PASS][23] -> [ABORT][24] ([i915#7975] / [i915#8213]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg2-11/igt@gem_eio@hibernate.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-8/igt@gem_eio@hibernate.html * igt@gem_eio@in-flight-contexts-10ms: - shard-apl: [PASS][25] -> [TIMEOUT][26] ([i915#3063]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-apl7/igt@gem_eio@in-flight-contexts-10ms.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-apl3/igt@gem_eio@in-flight-contexts-10ms.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#4771]) +2 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-2/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@full-pulse: - shard-dg2: [PASS][28] -> [FAIL][29] ([i915#6032]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg2-3/igt@gem_exec_balancer@full-pulse.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-1/igt@gem_exec_balancer@full-pulse.html * igt@gem_exec_balancer@invalid-bonds: - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4036]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#4525]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-rkl-4/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#6334]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-7/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_endless@dispatch@rcs0: - shard-dg2: [PASS][33] -> [TIMEOUT][34] ([i915#3778] / [i915#7016] / [i915#7921]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg2-12/igt@gem_exec_endless@dispatch@rcs0.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-12/igt@gem_exec_endless@dispatch@rcs0.html * igt@gem_exec_fair@basic-flow: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-11/igt@gem_exec_fair@basic-flow.html * igt@gem_exec_fair@basic-none-solo: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4473]) +1 similar issue [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-8/igt@gem_exec_fair@basic-none-solo.html * igt@gem_exec_fair@basic-none-vip: - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4473] / [i915#4771]) +9 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@gem_exec_fair@basic-none-vip.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-rkl: [PASS][38] -> [FAIL][39] ([i915#2842]) +2 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-rkl-6/igt@gem_exec_fair@basic-pace@bcs0.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-rkl-6/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#3711]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-8/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_gttfill@multigpu-basic: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#7697]) +3 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-1/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#5107]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-6/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_params@secure-non-master: - shard-mtlp: NOTRUN -> [SKIP][43] ([fdo#112283]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-2/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#3281]) +53 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-2/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-8/igt@gem_exec_reloc@basic-gtt-wc-active.html - shard-rkl: NOTRUN -> [SKIP][46] ([i915#3281]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4812]) +12 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_whisper@basic-contexts-forked-all: - shard-mtlp: NOTRUN -> [ABORT][48] ([i915#8131]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-forked-all.html * igt@gem_exec_whisper@basic-normal-all: - shard-mtlp: NOTRUN -> [FAIL][49] ([i915#6363]) +2 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-3/igt@gem_exec_whisper@basic-normal-all.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4860]) +9 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-3/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_gpgpu_fill@basic@smem: - shard-mtlp: NOTRUN -> [FAIL][51] ([i915#5464]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-6/igt@gem_gpgpu_fill@basic@smem.html * igt@gem_lmem_swapping@heavy-multi: - shard-tglu: NOTRUN -> [SKIP][52] ([i915#4613]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-tglu-10/igt@gem_lmem_swapping@heavy-multi.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4613]) +21 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-5/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [PASS][54] -> [TIMEOUT][55] ([i915#5493]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify: - shard-apl: NOTRUN -> [SKIP][56] ([fdo#109271] / [i915#4613]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-apl6/igt@gem_lmem_swapping@verify.html * igt@gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#8289]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-6/igt@gem_media_fill@media-fill.html * igt@gem_media_vme: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#284]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@gem_media_vme.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4083]) +26 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-1/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4077]) +63 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-7/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html * igt@gem_pwrite_snooped: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#3282]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-rkl-7/igt@gem_pwrite_snooped.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4270]) +17 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_readwrite@read-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#3282]) +27 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-6/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#8428]) +29 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-7/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4079]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-tglu: NOTRUN -> [SKIP][66] ([fdo#109312]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-tglu-4/igt@gem_softpin@evict-snoop-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4885]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-7/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4079]) +6 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-2/igt@gem_tiled_pread_basic.html * igt@gem_tiled_swapping@non-threaded: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4077]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-8/igt@gem_tiled_swapping@non-threaded.html * igt@gem_unfence_active_buffers: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4879]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@mmap-offset-banned@gtt: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#3297]) +17 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@gem_userptr_blits@mmap-offset-banned@gtt.html * igt@gem_userptr_blits@vma-merge: - shard-mtlp: NOTRUN -> [FAIL][72] ([i915#3318]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-6/igt@gem_userptr_blits@vma-merge.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [PASS][73] -> [ABORT][74] ([i915#5566]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-apl1/igt@gen9_exec_parse@allowed-single.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-apl1/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@unaligned-jump: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#2856]) +19 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-8/igt@gen9_exec_parse@unaligned-jump.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#2856]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-8/igt@gen9_exec_parse@valid-registers.html * igt@i915_fb_tiling: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4881]) +1 similar issue [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-7/igt@i915_fb_tiling.html * igt@i915_hangman@detector@vcs0: - shard-mtlp: NOTRUN -> [FAIL][78] ([i915#8456]) +2 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-1/igt@i915_hangman@detector@vcs0.html * igt@i915_hwmon@hwmon-read: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#7707]) +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@i915_hwmon@hwmon-read.html * igt@i915_module_load@load: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#6227]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-2/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [PASS][81] -> [WARN][82] ([i915#6596] / [i915#7356]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-12/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: NOTRUN -> [ABORT][83] ([i915#8489] / [i915#8668]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#6412]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-8/igt@i915_module_load@resize-bar.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-mtlp: NOTRUN -> [FAIL][85] ([i915#8691]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#8436]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-2/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#6295]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-5/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@i915_pm_dc@dc5-dpms-negative: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#8018]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-6/igt@i915_pm_dc@dc5-dpms-negative.html * igt@i915_pm_dc@dc6-dpms: - shard-tglu: [PASS][89] -> [FAIL][90] ([i915#3989] / [i915#454]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-tglu-2/igt@i915_pm_dc@dc6-dpms.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-tglu-6/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_dc@dc9-dpms: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#3361]) +1 similar issue [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-2/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#6590]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-2/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_lpsp@screens-disabled: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#8430]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-7/igt@i915_pm_lpsp@screens-disabled.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-rkl: NOTRUN -> [SKIP][94] ([fdo#109289]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-rkl-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-rkl: [PASS][95] -> [SKIP][96] ([i915#1397]) +1 similar issue [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-rkl-4/igt@i915_pm_rpm@dpms-non-lpsp.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#1397]) +4 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@gem-mmap-type@gtt-smem0: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#8431]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-3/igt@i915_pm_rpm@gem-mmap-type@gtt-smem0.html * igt@i915_pm_rpm@pc8-residency: - shard-mtlp: NOTRUN -> [SKIP][99] ([fdo#109293]) +2 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-2/igt@i915_pm_rpm@pc8-residency.html * igt@i915_pm_rps@basic-api: - shard-mtlp: NOTRUN -> [SKIP][100] ([i915#6621]) +2 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][101] ([i915#8346]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-5/igt@i915_pm_rps@reset.html * igt@i915_pm_sseu@full-enable: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#8437]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#6188]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@query-topology-known-pci-ids: - shard-mtlp: NOTRUN -> [SKIP][104] ([fdo#109303]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_query@query-topology-unsupported: - shard-mtlp: NOTRUN -> [SKIP][105] ([fdo#109302]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@i915_query@query-topology-unsupported.html * igt@i915_selftest@live@gt_mocs: - shard-mtlp: NOTRUN -> [DMESG-FAIL][106] ([i915#7059]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-1/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@workarounds: - shard-mtlp: NOTRUN -> [DMESG-FAIL][107] ([i915#6763]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-1/igt@i915_selftest@live@workarounds.html * igt@i915_suspend@basic-s3-without-i915: - shard-dg2: [PASS][108] -> [FAIL][109] ([fdo#103375] / [i915#6121]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg2-11/igt@i915_suspend@basic-s3-without-i915.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-5/igt@i915_suspend@basic-s3-without-i915.html - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#6645]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-5/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#4212]) +8 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#5190]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#3826]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@crc@pipe-c-dp-1: - shard-apl: NOTRUN -> [FAIL][114] ([i915#8247]) +2 similar issues [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-apl1/igt@kms_async_flips@crc@pipe-c-dp-1.html * igt@kms_async_flips@crc@pipe-d-dp-4: - shard-dg2: NOTRUN -> [FAIL][115] ([i915#8247]) +3 similar issues [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-11/igt@kms_async_flips@crc@pipe-d-dp-4.html * igt@kms_async_flips@crc@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [FAIL][116] ([i915#8247]) +3 similar issues [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-3/igt@kms_async_flips@crc@pipe-d-edp-1.html * igt@kms_async_flips@invalid-async-flip: - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#6228]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@kms_async_flips@invalid-async-flip.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#6229]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-3/igt@kms_async_flips@test-cursor.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#404]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu: NOTRUN -> [SKIP][120] ([fdo#111615] / [i915#5286]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-mtlp: NOTRUN -> [FAIL][121] ([i915#3743]) +3 similar issues [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [FAIL][122] ([i915#5138]) +3 similar issues [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][123] ([fdo#111614]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-5/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][124] ([fdo#111614]) +21 similar issues [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-3/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][125] ([fdo#110723]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-rkl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#6187]) +4 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#4538] / [i915#5190]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][128] ([fdo#111615]) +56 similar issues [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_joiner@invalid-modeset: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#2705]) +1 similar issue [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-a-bad-aux-stride-4_tiled_mtl_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#5354] / [i915#6095]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-rkl-6/igt@kms_ccs@pipe-a-bad-aux-stride-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#3886] / [i915#6095]) +48 similar issues [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-7/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#3886] / [i915#5354] / [i915#6095]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-rkl-2/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#5354] / [i915#6095]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#6095]) +178 similar issues [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-1/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][135] ([fdo#109271] / [i915#3886]) +2 similar issues [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-apl6/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-bad-aux-stride-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#3689] / [i915#5354]) +2 similar issues [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-6/igt@kms_ccs@pipe-c-bad-aux-stride-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#5354]) +4 similar issues [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-rkl-4/igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][138] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-tglu-7/igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#7213]) +4 similar issues [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-5/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@plane-scaling@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#4087]) +3 similar issues [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-7/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-mtlp: NOTRUN -> [SKIP][141] ([fdo#111827]) +9 similar issues [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-5/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-rkl: NOTRUN -> [SKIP][142] ([fdo#111827]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-rkl-6/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#7828]) +45 similar issues [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-3/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#7118]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-3/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#3299]) +3 similar issues [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-8/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#3116]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-rkl-2/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic@pipe-a-dp-2: - shard-dg2: NOTRUN -> [TIMEOUT][147] ([i915#7173]) +1 similar issue [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-12/igt@kms_content_protection@lic@pipe-a-dp-2.html * igt@kms_content_protection@mei_interface: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#8063]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-8/igt@kms_content_protection@mei_interface.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#3555] / [i915#7118]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-8/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#3555]) +58 similar issues [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#3359]) +9 similar issues [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#4213]) +5 similar issues [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#3546]) +24 similar issues [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][154] ([fdo#111767] / [i915#3546]) +1 similar issue [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [FAIL][155] ([i915#2346]) +1 similar issue [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#8588]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-5/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#3555]) +3 similar issues [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][158] ([fdo#111767] / [i915#3637]) +1 similar issue [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-suspend: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#3637]) +35 similar issues [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1: - shard-glk: [PASS][160] -> [FAIL][161] ([i915#79]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-glk3/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-glk8/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html * igt@kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#8381]) +3 similar issues [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-6/igt@kms_flip@flip-vs-fences.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#2672]) +17 similar issues [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#2672]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#2672] / [i915#3555]) +8 similar issues [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-mtlp: NOTRUN -> [SKIP][166] ([fdo#109285]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#5274]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#8708]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: [PASS][169] -> [FAIL][170] ([i915#6880]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#1825]) +171 similar issues [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#5460]) +1 similar issue [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#3023]) +4 similar issues [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#5354]) +2 similar issues [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][175] ([fdo#111825] / [i915#1825]) +1 similar issue [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][176] ([fdo#110189]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#8708]) +53 similar issues [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#3458]) +2 similar issues [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][179] ([fdo#109280]) +1 similar issue [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#8228]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-6/igt@kms_hdr@invalid-metadata-sizes.html - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#8228]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-8/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#6403]) +3 similar issues [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#4816]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#3582]) +7 similar issues [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-1/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][185] ([i915#8292]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#5176]) +7 similar issues [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#5176]) +21 similar issues [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-b-hdmi-a-1: - shard-snb: NOTRUN -> [SKIP][188] ([fdo#109271]) +29 similar issues [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-snb1/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#5235]) +3 similar issues [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#5235]) +51 similar issues [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#5235]) +7 similar issues [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-dp-1: - shard-apl: NOTRUN -> [SKIP][192] ([fdo#109271]) +52 similar issues [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-apl1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-dp-1.html * igt@kms_prime@basic-crc-hybrid: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#6524]) +2 similar issues [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-6/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#4348]) +3 similar issues [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-7/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_rotation_crc@bad-pixel-format: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#4235]) +9 similar issues [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-8/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#5289]) +3 similar issues [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d: - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#5030]) +3 similar issues [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-8/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d.html * igt@kms_tiled_display@basic-test-pattern: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#8623]) +1 similar issue [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_writeback@writeback-invalid-parameters: - shard-tglu: NOTRUN -> [SKIP][199] ([i915#2437]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-tglu-2/igt@kms_writeback@writeback-invalid-parameters.html - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#2437]) +2 similar issues [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-6/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-mtlp: NOTRUN -> [SKIP][201] ([fdo#109289]) +21 similar issues [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-1/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#7387]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-11/igt@perf@global-sseu-config.html * igt@perf@global-sseu-config-invalid: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#7387]) +1 similar issue [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-2/igt@perf@global-sseu-config-invalid.html * igt@perf@mi-rpc: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#2434]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-6/igt@perf@mi-rpc.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [PASS][205] -> [FAIL][206] ([i915#7484]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg2-12/igt@perf@non-zero-reason@0-rcs0.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@busy-double-start@rcs0: - shard-mtlp: NOTRUN -> [FAIL][207] ([i915#4349]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-1/igt@perf_pmu@busy-double-start@rcs0.html * igt@perf_pmu@faulting-read@gtt: - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#8440]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@perf_pmu@faulting-read@gtt.html * igt@prime_udl: - shard-mtlp: NOTRUN -> [SKIP][209] ([fdo#109291]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@prime_udl.html * igt@prime_vgem@basic-fence-blt: - shard-mtlp: NOTRUN -> [FAIL][210] ([i915#8445]) +1 similar issue [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-1/igt@prime_vgem@basic-fence-blt.html * igt@prime_vgem@basic-gtt: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#3708] / [i915#4077]) +1 similar issue [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-4/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@fence-write-hang: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3708]) +4 similar issues [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-6/igt@prime_vgem@fence-write-hang.html * igt@sysfs_heartbeat_interval@nopreempt@vcs0: - shard-mtlp: NOTRUN -> [FAIL][213] ([i915#6015]) +5 similar issues [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-5/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html * igt@tools_test@sysfs_l3_parity: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#4818]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-8/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_mmap@mmap-bo: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#2575]) +61 similar issues [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-3/igt@v3d/v3d_mmap@mmap-bo.html * igt@v3d/v3d_perfmon@create-perfmon-exceed: - shard-rkl: NOTRUN -> [SKIP][216] ([fdo#109315]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-rkl-7/igt@v3d/v3d_perfmon@create-perfmon-exceed.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#7711]) +42 similar issues [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-mtlp-2/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html * igt@vc4/vc4_tiling@set-bad-handle: - shard-rkl: NOTRUN -> [SKIP][218] ([i915#7711]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-rkl-7/igt@vc4/vc4_tiling@set-bad-handle.html #### Possible fixes #### * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [FAIL][219] ([i915#6268]) -> [PASS][220] [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_eio@in-flight-contexts-10ms: - shard-snb: [FAIL][221] ([i915#7942]) -> [PASS][222] [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-snb5/igt@gem_eio@in-flight-contexts-10ms.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-snb5/igt@gem_eio@in-flight-contexts-10ms.html * igt@gem_eio@kms: - {shard-dg1}: [FAIL][223] ([i915#5784]) -> [PASS][224] [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg1-18/igt@gem_eio@kms.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg1-17/igt@gem_eio@kms.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [FAIL][225] ([i915#2846]) -> [PASS][226] [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-glk8/igt@gem_exec_fair@basic-deadline.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-glk9/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-apl: [FAIL][227] ([i915#2842]) -> [PASS][228] [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-apl7/igt@gem_exec_fair@basic-pace-solo@rcs0.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [FAIL][229] ([i915#2842]) -> [PASS][230] +1 similar issue [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-rkl-6/igt@gem_exec_fair@basic-pace@vecs0.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-rkl-6/igt@gem_exec_fair@basic-pace@vecs0.html - shard-glk: [FAIL][231] ([i915#2842]) -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-glk3/igt@gem_exec_fair@basic-pace@vecs0.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-glk8/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - {shard-dg1}: [TIMEOUT][233] ([i915#5493]) -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [SKIP][235] ([i915#1397]) -> [PASS][236] +2 similar issues [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg2-7/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-12/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][237] ([i915#1397]) -> [PASS][238] [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-rkl-4/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [FAIL][239] ([i915#2346]) -> [PASS][240] [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1: - shard-glk: [FAIL][241] ([i915#79]) -> [PASS][242] [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-glk9/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-glk8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a3: - shard-dg2: [FAIL][243] ([fdo#103375] / [i915#6121]) -> [PASS][244] +3 similar issues [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg2-5/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-8/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html * igt@kms_flip@flip-vs-suspend@c-dp1: - shard-apl: [ABORT][245] ([i915#180]) -> [PASS][246] +1 similar issue [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-apl1/igt@kms_flip@flip-vs-suspend@c-dp1.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-apl1/igt@kms_flip@flip-vs-suspend@c-dp1.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-rkl: [FAIL][247] ([fdo#103375]) -> [PASS][248] +1 similar issue [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-suspend.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_sysfs_edid_timing: - shard-dg2: [FAIL][249] ([IGT#2]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg2-6/igt@kms_sysfs_edid_timing.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-11/igt@kms_sysfs_edid_timing.html * igt@perf@enable-disable@0-rcs0: - shard-dg2: [FAIL][251] ([i915#8724]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-6/igt@perf@enable-disable@0-rcs0.html * igt@perf_pmu@busy-double-start@rcs0: - shard-dg2: [FAIL][253] ([i915#4349]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg2-11/igt@perf_pmu@busy-double-start@rcs0.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-3/igt@perf_pmu@busy-double-start@rcs0.html #### Warnings #### * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][255] ([fdo#110189] / [i915#3955]) -> [SKIP][256] ([i915#3955]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-rkl-1/igt@kms_fbcon_fbt@psr.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-rkl-4/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][257] ([i915#3955]) -> [SKIP][258] ([fdo#110189] / [i915#3955]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][259] ([fdo#109285] / [i915#4098]) -> [SKIP][260] ([fdo#109285]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-rkl-1/igt@kms_force_connector_basic@force-load-detect.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][261] ([i915#7331]) -> [INCOMPLETE][262] ([i915#5493]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/shard-dg2-7/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#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#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [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#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [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#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#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#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [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#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#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#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5464]: https://gitlab.freedesktop.org/drm/intel/issues/5464 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882 [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#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6295]: https://gitlab.freedesktop.org/drm/intel/issues/6295 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6363]: https://gitlab.freedesktop.org/drm/intel/issues/6363 [i915#6403]: https://gitlab.freedesktop.org/drm/intel/issues/6403 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6596]: https://gitlab.freedesktop.org/drm/intel/issues/6596 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#7016]: https://gitlab.freedesktop.org/drm/intel/issues/7016 [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 [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#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331 [i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7921]: https://gitlab.freedesktop.org/drm/intel/issues/7921 [i915#7942]: https://gitlab.freedesktop.org/drm/intel/issues/7942 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8018]: https://gitlab.freedesktop.org/drm/intel/issues/8018 [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063 [i915#8131]: https://gitlab.freedesktop.org/drm/intel/issues/8131 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [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#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430 [i915#8431]: https://gitlab.freedesktop.org/drm/intel/issues/8431 [i915#8436]: https://gitlab.freedesktop.org/drm/intel/issues/8436 [i915#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437 [i915#8440]: https://gitlab.freedesktop.org/drm/intel/issues/8440 [i915#8445]: https://gitlab.freedesktop.org/drm/intel/issues/8445 [i915#8456]: https://gitlab.freedesktop.org/drm/intel/issues/8456 [i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8691]: https://gitlab.freedesktop.org/drm/intel/issues/8691 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7370 -> IGTPW_9336 CI-20190529: 20190529 CI_DRM_13345: 52c775d5fac7e50737584ba6cf643c1166d95855 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9336: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/index.html IGT_7370: f63ab5e7c3ddef724bebde558e36647ca65d98bc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9336/index.html [-- Attachment #2: Type: text/html, Size: 84695 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2023-07-06 16:29 UTC | newest] Thread overview: 14+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-07-05 8:52 [igt-dev] [PATCH i-g-t v5 0/4] Handle GT and tile seperation in IGT Himal Prasad Ghimiray 2023-07-05 8:52 ` [igt-dev] [PATCH i-g-t v5 1/4] lib/igt_sysfs: Add support to query number of tiles Himal Prasad Ghimiray 2023-07-05 8:52 ` [igt-dev] [PATCH i-g-t v5 2/4] lib/igt_sysfs: Handling gt related sysfs uapi changes Himal Prasad Ghimiray 2023-07-05 8:52 ` [igt-dev] [PATCH i-g-t v5 3/4] tests/xe/xe_guc_pc: Change the sysfs paths Himal Prasad Ghimiray 2023-07-06 0:12 ` Dixit, Ashutosh 2023-07-06 3:20 ` Ghimiray, Himal Prasad 2023-07-06 3:52 ` Dixit, Ashutosh 2023-07-06 4:10 ` Ghimiray, Himal Prasad 2023-07-05 8:52 ` [igt-dev] [PATCH i-g-t v5 4/4] tests/xe/xe_sysfs_tile_prop: adds new test to verify per tile vram addr_range Himal Prasad Ghimiray 2023-07-05 9:14 ` [igt-dev] [PATCH i-g-t v5 0/4] Handle GT and tile seperation in IGT Kumar, Janga Rahul 2023-07-05 9:18 ` Ghimiray, Himal Prasad 2023-07-06 16:26 ` Kumar, Janga Rahul 2023-07-05 10:18 ` [igt-dev] ✓ Fi.CI.BAT: success for Handle GT and tile seperation in IGT (rev4) Patchwork 2023-07-05 12:05 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox