* [igt-dev] [PATCH i-g-t 1/2] intel_gpu_top: Display large pids nicely in interactive mode
@ 2023-03-16 10:06 Tvrtko Ursulin
2023-03-16 10:06 ` [igt-dev] [PATCH i-g-t 2/2] intel_gpu_top: Use full console width for global metrics Tvrtko Ursulin
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Tvrtko Ursulin @ 2023-03-16 10:06 UTC (permalink / raw)
To: igt-dev, Intel-gfx; +Cc: Tvrtko Ursulin
From: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
So far the width of the PID column was hardcoded to six characters which
is not enough on systems with high uptime, where PID numbers can grow
large, and results in broken line formatting.
Fix it by tracking the largest width for both the pid and name fields and
use them dynamically.
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
---
tools/intel_gpu_top.c | 66 +++++++++++++++++++++++++++++++++++++------
1 file changed, 58 insertions(+), 8 deletions(-)
diff --git a/tools/intel_gpu_top.c b/tools/intel_gpu_top.c
index a4302aa389b4..39be916297e4 100644
--- a/tools/intel_gpu_top.c
+++ b/tools/intel_gpu_top.c
@@ -1,5 +1,5 @@
/*
- * Copyright © 2007-2021 Intel Corporation
+ * Copyright © 2007-2023 Intel Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@@ -693,6 +693,7 @@ struct client {
enum client_status status;
unsigned int id;
unsigned int pid;
+ char pid_str[10];
char name[24];
char print_name[24];
unsigned int samples;
@@ -709,6 +710,9 @@ struct clients {
unsigned int num_classes;
struct engine_class *class;
+ int max_pid_len;
+ int max_name_len;
+
char pci_slot[64];
struct client *client;
@@ -758,9 +762,14 @@ update_client(struct client *c, unsigned int pid, char *name,
const struct drm_client_fdinfo *info)
{
unsigned int i;
+ int len;
- if (c->pid != pid)
+ if (c->pid != pid) {
c->pid = pid;
+ len = snprintf(c->pid_str, sizeof(c->pid_str) - 1, "%u", pid);
+ if (len > c->clients->max_pid_len)
+ c->clients->max_pid_len = len;
+ }
if (strcmp(c->name, name)) {
char *p;
@@ -774,6 +783,10 @@ update_client(struct client *c, unsigned int pid, char *name,
*p = '*';
p++;
}
+
+ len = strlen(c->print_name);
+ if (len > c->clients->max_name_len)
+ c->clients->max_name_len = len;
}
c->last_runtime = 0;
@@ -990,6 +1003,7 @@ static struct clients *display_clients(struct clients *clients)
ac->id = -c->pid;
ac->pid = c->pid;
strcpy(ac->name, c->name);
+ strcpy(ac->pid_str, c->pid_str);
strcpy(ac->print_name, c->print_name);
ac->val = calloc(clients->num_classes,
sizeof(ac->val[0]));
@@ -1013,6 +1027,9 @@ static struct clients *display_clients(struct clients *clients)
aggregated->num_clients = num;
aggregated->active_clients = num;
+ aggregated->max_pid_len = clients->max_pid_len;
+ aggregated->max_name_len = clients->max_name_len;
+
clients = aggregated;
out:
@@ -1104,9 +1121,34 @@ static size_t readat2buf(int at, const char *name, char *buf, const size_t sz)
}
}
+static void clients_update_max_lengths(struct clients *clients)
+{
+ struct client *c;
+ int tmp;
+
+ clients->max_name_len = 0;
+ clients->max_pid_len = 0;
+
+ for_each_client(clients, c, tmp) {
+ int len;
+
+ if (c->status != ALIVE)
+ continue; /* Array not yet sorted by the caller. */
+
+ len = strlen(c->print_name);
+ if (len > clients->max_name_len)
+ clients->max_name_len = len;
+
+ len = strlen(c->pid_str);
+ if (len > clients->max_pid_len)
+ clients->max_pid_len = len;
+ }
+}
+
static struct clients *scan_clients(struct clients *clients, bool display)
{
struct dirent *proc_dent;
+ bool freed = false;
struct client *c;
DIR *proc_dir;
int tmp;
@@ -1208,12 +1250,17 @@ next:
closedir(proc_dir);
for_each_client(clients, c, tmp) {
- if (c->status == PROBE)
+ if (c->status == PROBE) {
free_client(c);
- else if (c->status == FREE)
+ freed = true;
+ } else if (c->status == FREE) {
break;
+ }
}
+ if (freed)
+ clients_update_max_lengths(clients);
+
return display ? display_clients(clients) : clients;
}
@@ -2172,15 +2219,16 @@ print_clients_header(struct clients *clients, int lines,
int con_w, int con_h, int *class_w)
{
if (output_mode == INTERACTIVE) {
- const char *pidname = " PID NAME ";
unsigned int num_active = 0;
- int len = strlen(pidname);
+ int len;
if (lines++ >= con_h)
return lines;
printf("\033[7m");
- printf("%s", pidname);
+ len = printf("%*s %*s ",
+ clients->max_pid_len, "PID",
+ clients->max_name_len, "NAME");
if (lines++ >= con_h || len >= con_w)
return lines;
@@ -2241,7 +2289,9 @@ print_client(struct client *c, struct engines *engines, double t, int lines,
lines++;
- printf("%6u %17s ", c->pid, c->print_name);
+ printf("%*s %*s ",
+ clients->max_pid_len, c->pid_str,
+ clients->max_name_len, c->print_name);
for (i = 0; c->samples > 1 && i < clients->num_classes; i++) {
double pct;
--
2.37.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] intel_gpu_top: Use full console width for global metrics
2023-03-16 10:06 [igt-dev] [PATCH i-g-t 1/2] intel_gpu_top: Display large pids nicely in interactive mode Tvrtko Ursulin
@ 2023-03-16 10:06 ` Tvrtko Ursulin
2023-03-16 11:43 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] intel_gpu_top: Display large pids nicely in interactive mode Patchwork
2023-03-16 14:43 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Tvrtko Ursulin @ 2023-03-16 10:06 UTC (permalink / raw)
To: igt-dev, Intel-gfx; +Cc: Tvrtko Ursulin
From: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
It appears we had an off by one of a kind where we were not using the full
width of the terminal window for the global metrics section.
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
---
tools/intel_gpu_top.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/tools/intel_gpu_top.c b/tools/intel_gpu_top.c
index 39be916297e4..36da016c3df0 100644
--- a/tools/intel_gpu_top.c
+++ b/tools/intel_gpu_top.c
@@ -1960,8 +1960,7 @@ print_engines_header(struct engines *engines, double t,
a = " ENGINE BUSY ";
printf("\033[7m%s%*s%s\033[0m\n",
- a, (int)(con_w - 1 - strlen(a) - strlen(b)),
- " ", b);
+ a, (int)(con_w - strlen(a) - strlen(b)), " ", b);
lines++;
}
@@ -2000,7 +1999,6 @@ print_engine(struct engines *engines, unsigned int i, double t,
print_groups(groups);
if (output_mode == INTERACTIVE) {
- unsigned int max_w = con_w - 1;
unsigned int len;
char buf[128];
double val;
@@ -2012,7 +2010,7 @@ print_engine(struct engines *engines, unsigned int i, double t,
engine->display_name, engine_items[0].buf);
val = pmu_calc(&engine->busy.val, 1e9, t, 100);
- print_percentage_bar(val, max_w > len ? max_w - len : 0, false);
+ print_percentage_bar(val, con_w > len ? con_w - len : 0, false);
printf("%s\n", buf);
--
2.37.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] intel_gpu_top: Display large pids nicely in interactive mode
2023-03-16 10:06 [igt-dev] [PATCH i-g-t 1/2] intel_gpu_top: Display large pids nicely in interactive mode Tvrtko Ursulin
2023-03-16 10:06 ` [igt-dev] [PATCH i-g-t 2/2] intel_gpu_top: Use full console width for global metrics Tvrtko Ursulin
@ 2023-03-16 11:43 ` Patchwork
2023-03-16 14:43 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2023-03-16 11:43 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4381 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/2] intel_gpu_top: Display large pids nicely in interactive mode
URL : https://patchwork.freedesktop.org/series/115253/
State : success
== Summary ==
CI Bug Log - changes from IGT_7198 -> IGTPW_8622
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/index.html
Participating hosts (38 -> 36)
------------------------------
Missing (2): fi-snb-2520m fi-pnv-d510
Known issues
------------
Here are the changes found in IGTPW_8622 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_lmem_swapping@basic:
- bat-adln-1: NOTRUN -> [SKIP][1] ([i915#4613]) +3 similar issues
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/bat-adln-1/igt@gem_lmem_swapping@basic.html
* igt@i915_pm_rps@basic-api:
- bat-adln-1: NOTRUN -> [SKIP][2] ([i915#6621])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/bat-adln-1/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@reset:
- bat-rpls-1: [PASS][3] -> [ABORT][4] ([i915#4983])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/bat-rpls-1/igt@i915_selftest@live@reset.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/bat-rpls-1/igt@i915_selftest@live@reset.html
* igt@i915_selftest@live@slpc:
- bat-adln-1: NOTRUN -> [DMESG-FAIL][5] ([i915#6997])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/bat-adln-1/igt@i915_selftest@live@slpc.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- bat-adln-1: NOTRUN -> [SKIP][6] ([i915#7828])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/bat-adln-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
- fi-bsw-n3050: NOTRUN -> [SKIP][7] ([fdo#109271])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/fi-bsw-n3050/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@prime_vgem@basic-userptr:
- bat-adln-1: NOTRUN -> [SKIP][8] ([fdo#109295] / [i915#3301])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/bat-adln-1/igt@prime_vgem@basic-userptr.html
* igt@prime_vgem@basic-write:
- bat-adln-1: NOTRUN -> [SKIP][9] ([fdo#109295] / [i915#3291]) +2 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/bat-adln-1/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_pm_rpm@basic-rte:
- bat-adln-1: [ABORT][10] ([i915#7977]) -> [PASS][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/bat-adln-1/igt@i915_pm_rpm@basic-rte.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/bat-adln-1/igt@i915_pm_rpm@basic-rte.html
* igt@i915_selftest@live@execlists:
- fi-bsw-n3050: [ABORT][12] -> [PASS][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/fi-bsw-n3050/igt@i915_selftest@live@execlists.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/fi-bsw-n3050/igt@i915_selftest@live@execlists.html
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7977]: https://gitlab.freedesktop.org/drm/intel/issues/7977
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7198 -> IGTPW_8622
CI-20190529: 20190529
CI_DRM_12867: 67d4276f8342780b8eaa6e9f5c15d979254a5675 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8622: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/index.html
IGT_7198: 17eeb3995c74f32ce6338b9e7dcd118c1104aebb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
-igt@xe_noexec_ping_pong
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/index.html
[-- Attachment #2: Type: text/html, Size: 5280 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,1/2] intel_gpu_top: Display large pids nicely in interactive mode
2023-03-16 10:06 [igt-dev] [PATCH i-g-t 1/2] intel_gpu_top: Display large pids nicely in interactive mode Tvrtko Ursulin
2023-03-16 10:06 ` [igt-dev] [PATCH i-g-t 2/2] intel_gpu_top: Use full console width for global metrics Tvrtko Ursulin
2023-03-16 11:43 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] intel_gpu_top: Display large pids nicely in interactive mode Patchwork
@ 2023-03-16 14:43 ` Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2023-03-16 14:43 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 26116 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/2] intel_gpu_top: Display large pids nicely in interactive mode
URL : https://patchwork.freedesktop.org/series/115253/
State : success
== Summary ==
CI Bug Log - changes from IGT_7198_full -> IGTPW_8622_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/index.html
Participating hosts (7 -> 7)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in IGTPW_8622_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [PASS][1] -> [FAIL][2] ([i915#2842])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_lmem_swapping@parallel-random:
- shard-apl: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#4613]) +1 similar issue
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-apl4/igt@gem_lmem_swapping@parallel-random.html
* igt@gen9_exec_parse@allowed-single:
- shard-apl: [PASS][4] -> [ABORT][5] ([i915#5566])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-apl2/igt@gen9_exec_parse@allowed-single.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-apl4/igt@gen9_exec_parse@allowed-single.html
- shard-glk: [PASS][6] -> [ABORT][7] ([i915#5566])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-glk7/igt@gen9_exec_parse@allowed-single.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-glk3/igt@gen9_exec_parse@allowed-single.html
* igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs_cc:
- shard-apl: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#3886]) +3 similar issues
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-apl6/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_ccs:
- shard-apl: NOTRUN -> [SKIP][9] ([fdo#109271]) +43 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-apl7/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_ccs.html
* igt@kms_content_protection@legacy@pipe-a-dp-1:
- shard-apl: NOTRUN -> [TIMEOUT][10] ([i915#7173])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-apl7/igt@kms_content_protection@legacy@pipe-a-dp-1.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
- shard-apl: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#658])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-apl1/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
* igt@kms_vblank@pipe-b-ts-continuation-suspend:
- shard-apl: [PASS][12] -> [ABORT][13] ([i915#180]) +2 similar issues
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-apl4/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-apl4/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- {shard-dg1}: [DMESG-WARN][14] -> [PASS][15]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-dg1-14/igt@core_hotunplug@unbind-rebind.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-dg1-17/igt@core_hotunplug@unbind-rebind.html
* igt@drm_fdinfo@virtual-idle:
- {shard-rkl}: [FAIL][16] ([i915#7742]) -> [PASS][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-rkl-6/igt@drm_fdinfo@virtual-idle.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-rkl-6/igt@drm_fdinfo@virtual-idle.html
* igt@fbdev@info:
- {shard-rkl}: [SKIP][18] ([i915#2582]) -> [PASS][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-rkl-5/igt@fbdev@info.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-rkl-6/igt@fbdev@info.html
* igt@gem_ctx_persistence@legacy-engines-hang@blt:
- {shard-rkl}: [SKIP][20] ([i915#6252]) -> [PASS][21]
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-rkl-5/igt@gem_ctx_persistence@legacy-engines-hang@blt.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-rkl-3/igt@gem_ctx_persistence@legacy-engines-hang@blt.html
* igt@gem_exec_capture@pi@vecs0:
- {shard-tglu}: [ABORT][22] ([i915#3371]) -> [PASS][23]
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-tglu-9/igt@gem_exec_capture@pi@vecs0.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-tglu-8/igt@gem_exec_capture@pi@vecs0.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-glk: [FAIL][24] ([i915#2842]) -> [PASS][25] +3 similar issues
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-glk6/igt@gem_exec_fair@basic-none-rrul@rcs0.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-glk5/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- {shard-rkl}: [FAIL][26] ([i915#2842]) -> [PASS][27] +3 similar issues
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-rkl-3/igt@gem_exec_fair@basic-pace@rcs0.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_reloc@basic-wc-read-noreloc:
- {shard-rkl}: [SKIP][28] ([i915#3281]) -> [PASS][29] +12 similar issues
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-rkl-1/igt@gem_exec_reloc@basic-wc-read-noreloc.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-rkl-5/igt@gem_exec_reloc@basic-wc-read-noreloc.html
* igt@gem_exec_schedule@semaphore-power:
- {shard-rkl}: [SKIP][30] ([i915#7276]) -> [PASS][31]
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-rkl-3/igt@gem_exec_schedule@semaphore-power.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_pwrite@basic-self:
- {shard-rkl}: [SKIP][32] ([i915#3282]) -> [PASS][33] +4 similar issues
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-rkl-1/igt@gem_pwrite@basic-self.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-rkl-5/igt@gem_pwrite@basic-self.html
* igt@gen9_exec_parse@allowed-all:
- {shard-rkl}: [ABORT][34] ([i915#5566]) -> [PASS][35]
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-rkl-5/igt@gen9_exec_parse@allowed-all.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-rkl-5/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@batch-invalid-length:
- {shard-rkl}: [SKIP][36] ([i915#2527]) -> [PASS][37] +1 similar issue
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-rkl-1/igt@gen9_exec_parse@batch-invalid-length.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-rkl-5/igt@gen9_exec_parse@batch-invalid-length.html
* igt@i915_pm_dc@dc9-dpms:
- {shard-rkl}: [SKIP][38] ([i915#3361]) -> [PASS][39]
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-rkl-5/igt@i915_pm_dc@dc9-dpms.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-rkl-3/igt@i915_pm_dc@dc9-dpms.html
- shard-apl: [SKIP][40] ([fdo#109271]) -> [PASS][41]
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-apl3/igt@i915_pm_dc@dc9-dpms.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-apl3/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_rpm@cursor-dpms:
- {shard-tglu}: [SKIP][42] ([i915#1849]) -> [PASS][43] +14 similar issues
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-tglu-10/igt@i915_pm_rpm@cursor-dpms.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-tglu-8/igt@i915_pm_rpm@cursor-dpms.html
- {shard-rkl}: [SKIP][44] ([i915#1849]) -> [PASS][45]
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-rkl-1/igt@i915_pm_rpm@cursor-dpms.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-rkl-6/igt@i915_pm_rpm@cursor-dpms.html
* igt@i915_pm_rpm@i2c:
- {shard-rkl}: [SKIP][46] ([fdo#109308]) -> [PASS][47]
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-rkl-3/igt@i915_pm_rpm@i2c.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-rkl-6/igt@i915_pm_rpm@i2c.html
* igt@kms_addfb_basic@bad-pitch-999:
- shard-apl: [DMESG-WARN][48] ([i915#62]) -> [PASS][49] +18 similar issues
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-apl6/igt@kms_addfb_basic@bad-pitch-999.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-apl4/igt@kms_addfb_basic@bad-pitch-999.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180:
- shard-apl: [DMESG-WARN][50] ([i915#1982] / [i915#62]) -> [PASS][51]
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-apl6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-apl2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_rc_ccs:
- {shard-tglu}: [SKIP][52] ([i915#1845] / [i915#7651]) -> [PASS][53] +5 similar issues
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-tglu-9/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_rc_ccs.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-tglu-2/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_rc_ccs.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
- {shard-rkl}: [SKIP][54] ([i915#1849] / [i915#4098]) -> [PASS][55] +17 similar issues
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_plane@pixel-format-source-clamping@pipe-b-planes:
- {shard-tglu}: [SKIP][56] ([i915#1849] / [i915#3558]) -> [PASS][57] +1 similar issue
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-tglu-10/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-tglu-2/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes:
- shard-apl: [ABORT][58] ([i915#180]) -> [PASS][59] +1 similar issue
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-apl3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-apl3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html
* igt@kms_psr@cursor_plane_move:
- {shard-rkl}: [SKIP][60] ([i915#1072]) -> [PASS][61]
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-rkl-5/igt@kms_psr@cursor_plane_move.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-rkl-6/igt@kms_psr@cursor_plane_move.html
* igt@kms_pwrite_crc:
- {shard-tglu}: [SKIP][62] ([fdo#109274] / [i915#1845]) -> [PASS][63]
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-tglu-10/igt@kms_pwrite_crc.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-tglu-8/igt@kms_pwrite_crc.html
* igt@kms_rotation_crc@exhaust-fences:
- {shard-rkl}: [SKIP][64] ([i915#1845] / [i915#4098]) -> [PASS][65] +30 similar issues
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-rkl-2/igt@kms_rotation_crc@exhaust-fences.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-rkl-6/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-d:
- {shard-tglu}: [SKIP][66] ([fdo#109274]) -> [PASS][67]
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html
* igt@kms_vblank@pipe-d-wait-forked-busy:
- {shard-tglu}: [SKIP][68] ([i915#1845]) -> [PASS][69] +39 similar issues
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-tglu-10/igt@kms_vblank@pipe-d-wait-forked-busy.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-tglu-2/igt@kms_vblank@pipe-d-wait-forked-busy.html
* igt@perf_pmu@rc6-suspend:
- shard-snb: [DMESG-WARN][70] ([i915#5090]) -> [PASS][71]
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-snb7/igt@perf_pmu@rc6-suspend.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-snb5/igt@perf_pmu@rc6-suspend.html
* igt@prime_vgem@basic-fence-read:
- {shard-rkl}: [SKIP][72] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][73] +1 similar issue
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-rkl-1/igt@prime_vgem@basic-fence-read.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-rkl-5/igt@prime_vgem@basic-fence-read.html
* igt@sysfs_heartbeat_interval@precise@bcs0:
- {shard-dg1}: [FAIL][74] ([i915#1755]) -> [PASS][75]
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-dg1-14/igt@sysfs_heartbeat_interval@precise@bcs0.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-dg1-17/igt@sysfs_heartbeat_interval@precise@bcs0.html
* igt@testdisplay:
- {shard-rkl}: [SKIP][76] ([i915#4098]) -> [PASS][77]
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7198/shard-rkl-1/igt@testdisplay.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/shard-rkl-6/igt@testdisplay.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
[fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
[fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
[i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
[i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[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#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
[i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
[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#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[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#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3371]: https://gitlab.freedesktop.org/drm/intel/issues/3371
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536
[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#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938
[i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4275]: https://gitlab.freedesktop.org/drm/intel/issues/4275
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
[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#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818
[i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#5090]: https://gitlab.freedesktop.org/drm/intel/issues/5090
[i915#5115]: https://gitlab.freedesktop.org/drm/intel/issues/5115
[i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5251]: https://gitlab.freedesktop.org/drm/intel/issues/5251
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62
[i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247
[i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
[i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6403]: https://gitlab.freedesktop.org/drm/intel/issues/6403
[i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
[i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493
[i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037
[i915#7052]: https://gitlab.freedesktop.org/drm/intel/issues/7052
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7128]: https://gitlab.freedesktop.org/drm/intel/issues/7128
[i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7949]: https://gitlab.freedesktop.org/drm/intel/issues/7949
[i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957
[i915#8018]: https://gitlab.freedesktop.org/drm/intel/issues/8018
[i915#8150]: https://gitlab.freedesktop.org/drm/intel/issues/8150
[i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152
[i915#8154]: https://gitlab.freedesktop.org/drm/intel/issues/8154
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8282]: https://gitlab.freedesktop.org/drm/intel/issues/8282
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7198 -> IGTPW_8622
CI-20190529: 20190529
CI_DRM_12867: 67d4276f8342780b8eaa6e9f5c15d979254a5675 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8622: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/index.html
IGT_7198: 17eeb3995c74f32ce6338b9e7dcd118c1104aebb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8622/index.html
[-- Attachment #2: Type: text/html, Size: 20019 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-03-16 14:43 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-16 10:06 [igt-dev] [PATCH i-g-t 1/2] intel_gpu_top: Display large pids nicely in interactive mode Tvrtko Ursulin
2023-03-16 10:06 ` [igt-dev] [PATCH i-g-t 2/2] intel_gpu_top: Use full console width for global metrics Tvrtko Ursulin
2023-03-16 11:43 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] intel_gpu_top: Display large pids nicely in interactive mode Patchwork
2023-03-16 14:43 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox