* [igt-dev] [PATCH i-g-t 1/2] lib/igt_device_scan: Remember vendor/device for pci devices
@ 2020-11-17 9:48 Zbigniew Kempczyński
2020-11-17 9:48 ` [igt-dev] [PATCH i-g-t 2/2] tools/intel_gpu_top: Add generation info in header Zbigniew Kempczyński
` (3 more replies)
0 siblings, 4 replies; 7+ messages in thread
From: Zbigniew Kempczyński @ 2020-11-17 9:48 UTC (permalink / raw)
To: igt-dev; +Cc: Petri Latvala, Tvrtko Ursulin
If we want to use pci device id for not opened device we need to
keep it in card structure.
To avoid compiler warnings after adding vendor/device fields
increase pci_slot_name length.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Cc: Petri Latvala <petri.latvala@intel.com>
---
lib/igt_device_scan.c | 8 ++++++++
lib/igt_device_scan.h | 3 ++-
2 files changed, 10 insertions(+), 1 deletion(-)
diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c
index e97f7163..5793ef84 100644
--- a/lib/igt_device_scan.c
+++ b/lib/igt_device_scan.c
@@ -463,6 +463,14 @@ __copy_dev_to_card(struct igt_device *dev, struct igt_device_card *card)
if (dev->pci_slot_name != NULL)
strncpy(card->pci_slot_name, dev->pci_slot_name,
PCI_SLOT_NAME_SIZE + 1);
+
+ if (dev->vendor != NULL && strlen(dev->vendor) == 4)
+ if (sscanf(dev->vendor, "%hx", &card->pci_vendor) != 1)
+ card->pci_vendor = 0;
+
+ if (dev->device != NULL && strlen(dev->device) == 4)
+ if (sscanf(dev->device, "%hx", &card->pci_device) != 1)
+ card->pci_device = 0;
}
/*
diff --git a/lib/igt_device_scan.h b/lib/igt_device_scan.h
index bb4be723..e96d8a25 100644
--- a/lib/igt_device_scan.h
+++ b/lib/igt_device_scan.h
@@ -57,7 +57,8 @@ struct igt_device_card {
char subsystem[NAME_MAX];
char card[NAME_MAX];
char render[NAME_MAX];
- char pci_slot_name[PCI_SLOT_NAME_SIZE+1];
+ char pci_slot_name[PCI_SLOT_NAME_SIZE+2];
+ uint16_t pci_vendor, pci_device;
};
void igt_devices_scan(bool force);
--
2.26.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] tools/intel_gpu_top: Add generation info in header
2020-11-17 9:48 [igt-dev] [PATCH i-g-t 1/2] lib/igt_device_scan: Remember vendor/device for pci devices Zbigniew Kempczyński
@ 2020-11-17 9:48 ` Zbigniew Kempczyński
2020-11-17 10:15 ` Tvrtko Ursulin
2020-11-17 10:16 ` [igt-dev] [PATCH i-g-t 1/2] lib/igt_device_scan: Remember vendor/device for pci devices Tvrtko Ursulin
` (2 subsequent siblings)
3 siblings, 1 reply; 7+ messages in thread
From: Zbigniew Kempczyński @ 2020-11-17 9:48 UTC (permalink / raw)
To: igt-dev; +Cc: Petri Latvala, Tvrtko Ursulin
In multi device world we may want to see generation of device we're
tracking counters. Add generation number/codename to be more verbose.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Cc: Petri Latvala <petri.latvala@intel.com>
---
lib/Makefile.am | 4 +++-
lib/meson.build | 1 +
tools/intel_gpu_top.c | 12 ++++++++++--
3 files changed, 14 insertions(+), 3 deletions(-)
diff --git a/lib/Makefile.am b/lib/Makefile.am
index fecf34cd..c476eeab 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -118,7 +118,9 @@ libigt_device_scan_la_SOURCES = \
igt_list.c \
igt_tools_stub.c \
igt_device_scan.c \
- igt_device_scan.h
+ igt_device_scan.h \
+ intel_device_info.c \
+ intel_chipset.h
libigt_perf_la_SOURCES = \
igt_perf.c \
diff --git a/lib/meson.build b/lib/meson.build
index 090a10cd..540facb2 100644
--- a/lib/meson.build
+++ b/lib/meson.build
@@ -182,6 +182,7 @@ lib_igt_device_scan_build = static_library('igt_device_scan',
['igt_device_scan.c',
'igt_list.c',
'igt_tools_stub.c',
+ 'intel_device_info.c',
],
dependencies : scan_dep,
include_directories : inc)
diff --git a/tools/intel_gpu_top.c b/tools/intel_gpu_top.c
index 86de09aa..39529be9 100644
--- a/tools/intel_gpu_top.c
+++ b/tools/intel_gpu_top.c
@@ -22,6 +22,7 @@
*/
#include "igt_device_scan.h"
+#include "intel_chipset.h"
#include <stdio.h>
#include <sys/types.h>
@@ -1028,9 +1029,12 @@ static bool print_groups(struct cnt_group **groups)
static int
print_header(const struct igt_device_card *card,
+ const struct intel_device_info *info,
struct engines *engines, double t,
int lines, int con_w, int con_h, bool *consumed)
{
+ const char *codename = info && info->codename ? info->codename : "unknown";
+ unsigned int gen = info ? ffs(info->gen) : 0;
struct pmu_counter fake_pmu = {
.present = true,
.val.cur = 1,
@@ -1107,7 +1111,8 @@ print_header(const struct igt_device_card *card,
printf("\033[H\033[J");
if (lines++ < con_h) {
- printf("intel-gpu-top: %s - ", card->card);
+ printf("intel-gpu-top: %s [gen%u: %s] - ", card->card,
+ gen, codename);
if (!engines->discrete)
printf("%s/%s MHz; %s%% RC6; %s %s; %s irqs/s\n",
freq_items[1].buf, freq_items[0].buf,
@@ -1317,6 +1322,7 @@ int main(int argc, char **argv)
bool list_device = false;
char *pmu_device, *opt_device = NULL;
struct igt_device_card card;
+ const struct intel_device_info *info = NULL;
/* Parse options */
while ((ch = getopt(argc, argv, "o:s:d:JLlh")) != -1) {
@@ -1441,6 +1447,8 @@ int main(int argc, char **argv)
ret = EXIT_SUCCESS;
pmu_sample(engines);
+ if (card.pci_device)
+ info = intel_get_device_info(card.pci_device);
while (!stop_top) {
bool consumed = false;
@@ -1463,7 +1471,7 @@ int main(int argc, char **argv)
break;
while (!consumed) {
- lines = print_header(&card, engines,
+ lines = print_header(&card, info, engines,
t, lines, con_w, con_h,
&consumed);
--
2.26.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/2] tools/intel_gpu_top: Add generation info in header
2020-11-17 9:48 ` [igt-dev] [PATCH i-g-t 2/2] tools/intel_gpu_top: Add generation info in header Zbigniew Kempczyński
@ 2020-11-17 10:15 ` Tvrtko Ursulin
0 siblings, 0 replies; 7+ messages in thread
From: Tvrtko Ursulin @ 2020-11-17 10:15 UTC (permalink / raw)
To: Zbigniew Kempczyński, igt-dev; +Cc: Petri Latvala, Tvrtko Ursulin
On 17/11/2020 09:48, Zbigniew Kempczyński wrote:
> In multi device world we may want to see generation of device we're
> tracking counters. Add generation number/codename to be more verbose.
So the result is:
intel-gpu-top: /dev/dri/card0 [gen9: skylake] - 0/ 0 MHz; 100% RC6; 0.00 Watts; 0 irqs/s
Alternative idea?:
intel-gpu-top: Skylake (Gen9) @ /dev/dri/card0 - 0/ 0 MHz; 100% RC6; 0.00 Watts; 0 irqs/s
Should we go further?:
$ lsgpu --sysfs
card0 Intel Skylake(tm) (Gen9) sys:/sys/devices/pci0000:00/0000:00:02.0/drm/card0
└─renderD128 sys:/sys/devices/pci0000:00/0000:00:02.0/drm/renderD128
? :)
>
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
> Cc: Petri Latvala <petri.latvala@intel.com>
> ---
> lib/Makefile.am | 4 +++-
> lib/meson.build | 1 +
> tools/intel_gpu_top.c | 12 ++++++++++--
> 3 files changed, 14 insertions(+), 3 deletions(-)
>
> diff --git a/lib/Makefile.am b/lib/Makefile.am
> index fecf34cd..c476eeab 100644
> --- a/lib/Makefile.am
> +++ b/lib/Makefile.am
> @@ -118,7 +118,9 @@ libigt_device_scan_la_SOURCES = \
> igt_list.c \
> igt_tools_stub.c \
> igt_device_scan.c \
> - igt_device_scan.h
> + igt_device_scan.h \
> + intel_device_info.c \
> + intel_chipset.h
>
> libigt_perf_la_SOURCES = \
> igt_perf.c \
> diff --git a/lib/meson.build b/lib/meson.build
> index 090a10cd..540facb2 100644
> --- a/lib/meson.build
> +++ b/lib/meson.build
> @@ -182,6 +182,7 @@ lib_igt_device_scan_build = static_library('igt_device_scan',
> ['igt_device_scan.c',
> 'igt_list.c',
> 'igt_tools_stub.c',
> + 'intel_device_info.c',
> ],
> dependencies : scan_dep,
> include_directories : inc)
> diff --git a/tools/intel_gpu_top.c b/tools/intel_gpu_top.c
> index 86de09aa..39529be9 100644
> --- a/tools/intel_gpu_top.c
> +++ b/tools/intel_gpu_top.c
> @@ -22,6 +22,7 @@
> */
>
> #include "igt_device_scan.h"
> +#include "intel_chipset.h"
>
> #include <stdio.h>
> #include <sys/types.h>
> @@ -1028,9 +1029,12 @@ static bool print_groups(struct cnt_group **groups)
>
> static int
> print_header(const struct igt_device_card *card,
> + const struct intel_device_info *info,
> struct engines *engines, double t,
> int lines, int con_w, int con_h, bool *consumed)
> {
> + const char *codename = info && info->codename ? info->codename : "unknown";
> + unsigned int gen = info ? ffs(info->gen) : 0;
How about we wrap card and info into a struct (one function arg less), plus, we make the caller populate code name and gen (well maybe the whole string then) so print_headers is not doing it every time? It's not a really problem like it is, just polish maybe.
Regards,
Tvrtko
> struct pmu_counter fake_pmu = {
> .present = true,
> .val.cur = 1,
> @@ -1107,7 +1111,8 @@ print_header(const struct igt_device_card *card,
> printf("\033[H\033[J");
>
> if (lines++ < con_h) {
> - printf("intel-gpu-top: %s - ", card->card);
> + printf("intel-gpu-top: %s [gen%u: %s] - ", card->card,
> + gen, codename);
> if (!engines->discrete)
> printf("%s/%s MHz; %s%% RC6; %s %s; %s irqs/s\n",
> freq_items[1].buf, freq_items[0].buf,
> @@ -1317,6 +1322,7 @@ int main(int argc, char **argv)
> bool list_device = false;
> char *pmu_device, *opt_device = NULL;
> struct igt_device_card card;
> + const struct intel_device_info *info = NULL;
>
> /* Parse options */
> while ((ch = getopt(argc, argv, "o:s:d:JLlh")) != -1) {
> @@ -1441,6 +1447,8 @@ int main(int argc, char **argv)
> ret = EXIT_SUCCESS;
>
> pmu_sample(engines);
> + if (card.pci_device)
> + info = intel_get_device_info(card.pci_device);
>
> while (!stop_top) {
> bool consumed = false;
> @@ -1463,7 +1471,7 @@ int main(int argc, char **argv)
> break;
>
> while (!consumed) {
> - lines = print_header(&card, engines,
> + lines = print_header(&card, info, engines,
> t, lines, con_w, con_h,
> &consumed);
>
>
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] lib/igt_device_scan: Remember vendor/device for pci devices
2020-11-17 9:48 [igt-dev] [PATCH i-g-t 1/2] lib/igt_device_scan: Remember vendor/device for pci devices Zbigniew Kempczyński
2020-11-17 9:48 ` [igt-dev] [PATCH i-g-t 2/2] tools/intel_gpu_top: Add generation info in header Zbigniew Kempczyński
@ 2020-11-17 10:16 ` Tvrtko Ursulin
2020-11-17 10:38 ` Zbigniew Kempczyński
2020-11-17 11:44 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] " Patchwork
2020-11-17 13:18 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
3 siblings, 1 reply; 7+ messages in thread
From: Tvrtko Ursulin @ 2020-11-17 10:16 UTC (permalink / raw)
To: Zbigniew Kempczyński, igt-dev; +Cc: Petri Latvala, Tvrtko Ursulin
On 17/11/2020 09:48, Zbigniew Kempczyński wrote:
> If we want to use pci device id for not opened device we need to
> keep it in card structure.
>
> To avoid compiler warnings after adding vendor/device fields
> increase pci_slot_name length.
What was the warning? (I did not get it after a minute or two of staring.)
Regards,
Tvrtko
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
> Cc: Petri Latvala <petri.latvala@intel.com>
> ---
> lib/igt_device_scan.c | 8 ++++++++
> lib/igt_device_scan.h | 3 ++-
> 2 files changed, 10 insertions(+), 1 deletion(-)
>
> diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c
> index e97f7163..5793ef84 100644
> --- a/lib/igt_device_scan.c
> +++ b/lib/igt_device_scan.c
> @@ -463,6 +463,14 @@ __copy_dev_to_card(struct igt_device *dev, struct igt_device_card *card)
> if (dev->pci_slot_name != NULL)
> strncpy(card->pci_slot_name, dev->pci_slot_name,
> PCI_SLOT_NAME_SIZE + 1);
> +
> + if (dev->vendor != NULL && strlen(dev->vendor) == 4)
> + if (sscanf(dev->vendor, "%hx", &card->pci_vendor) != 1)
> + card->pci_vendor = 0;
> +
> + if (dev->device != NULL && strlen(dev->device) == 4)
> + if (sscanf(dev->device, "%hx", &card->pci_device) != 1)
> + card->pci_device = 0;
> }
>
> /*
> diff --git a/lib/igt_device_scan.h b/lib/igt_device_scan.h
> index bb4be723..e96d8a25 100644
> --- a/lib/igt_device_scan.h
> +++ b/lib/igt_device_scan.h
> @@ -57,7 +57,8 @@ struct igt_device_card {
> char subsystem[NAME_MAX];
> char card[NAME_MAX];
> char render[NAME_MAX];
> - char pci_slot_name[PCI_SLOT_NAME_SIZE+1];
> + char pci_slot_name[PCI_SLOT_NAME_SIZE+2];
> + uint16_t pci_vendor, pci_device;
> };
>
> void igt_devices_scan(bool force);
>
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] lib/igt_device_scan: Remember vendor/device for pci devices
2020-11-17 10:16 ` [igt-dev] [PATCH i-g-t 1/2] lib/igt_device_scan: Remember vendor/device for pci devices Tvrtko Ursulin
@ 2020-11-17 10:38 ` Zbigniew Kempczyński
0 siblings, 0 replies; 7+ messages in thread
From: Zbigniew Kempczyński @ 2020-11-17 10:38 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: igt-dev, Petri Latvala, Tvrtko Ursulin
On Tue, Nov 17, 2020 at 10:16:44AM +0000, Tvrtko Ursulin wrote:
>
> On 17/11/2020 09:48, Zbigniew Kempczyński wrote:
> > If we want to use pci device id for not opened device we need to
> > keep it in card structure.
> >
> > To avoid compiler warnings after adding vendor/device fields
> > increase pci_slot_name length.
>
> What was the warning? (I did not get it after a minute or two of staring.)
/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 13 equals destination size [-Wstringop-truncation]
106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest));
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
--
Zbigniew
>
> Regards,
>
> Tvrtko
>
> > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> > Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
> > Cc: Petri Latvala <petri.latvala@intel.com>
> > ---
> > lib/igt_device_scan.c | 8 ++++++++
> > lib/igt_device_scan.h | 3 ++-
> > 2 files changed, 10 insertions(+), 1 deletion(-)
> >
> > diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c
> > index e97f7163..5793ef84 100644
> > --- a/lib/igt_device_scan.c
> > +++ b/lib/igt_device_scan.c
> > @@ -463,6 +463,14 @@ __copy_dev_to_card(struct igt_device *dev, struct igt_device_card *card)
> > if (dev->pci_slot_name != NULL)
> > strncpy(card->pci_slot_name, dev->pci_slot_name,
> > PCI_SLOT_NAME_SIZE + 1);
> > +
> > + if (dev->vendor != NULL && strlen(dev->vendor) == 4)
> > + if (sscanf(dev->vendor, "%hx", &card->pci_vendor) != 1)
> > + card->pci_vendor = 0;
> > +
> > + if (dev->device != NULL && strlen(dev->device) == 4)
> > + if (sscanf(dev->device, "%hx", &card->pci_device) != 1)
> > + card->pci_device = 0;
> > }
> > /*
> > diff --git a/lib/igt_device_scan.h b/lib/igt_device_scan.h
> > index bb4be723..e96d8a25 100644
> > --- a/lib/igt_device_scan.h
> > +++ b/lib/igt_device_scan.h
> > @@ -57,7 +57,8 @@ struct igt_device_card {
> > char subsystem[NAME_MAX];
> > char card[NAME_MAX];
> > char render[NAME_MAX];
> > - char pci_slot_name[PCI_SLOT_NAME_SIZE+1];
> > + char pci_slot_name[PCI_SLOT_NAME_SIZE+2];
> > + uint16_t pci_vendor, pci_device;
> > };
> > void igt_devices_scan(bool force);
> >
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] lib/igt_device_scan: Remember vendor/device for pci devices
2020-11-17 9:48 [igt-dev] [PATCH i-g-t 1/2] lib/igt_device_scan: Remember vendor/device for pci devices Zbigniew Kempczyński
2020-11-17 9:48 ` [igt-dev] [PATCH i-g-t 2/2] tools/intel_gpu_top: Add generation info in header Zbigniew Kempczyński
2020-11-17 10:16 ` [igt-dev] [PATCH i-g-t 1/2] lib/igt_device_scan: Remember vendor/device for pci devices Tvrtko Ursulin
@ 2020-11-17 11:44 ` Patchwork
2020-11-17 13:18 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
3 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2020-11-17 11:44 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1.1: Type: text/plain, Size: 6597 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/2] lib/igt_device_scan: Remember vendor/device for pci devices
URL : https://patchwork.freedesktop.org/series/83948/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_9343 -> IGTPW_5174
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/index.html
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_5174:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@i915_selftest@live@gt_pm:
- {fi-tgl-dsi}: [DMESG-FAIL][1] ([i915#1759]) -> [DMESG-FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/fi-tgl-dsi/igt@i915_selftest@live@gt_pm.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/fi-tgl-dsi/igt@i915_selftest@live@gt_pm.html
Known issues
------------
Here are the changes found in IGTPW_5174 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unbind-rebind:
- fi-icl-u2: [PASS][3] -> [DMESG-WARN][4] ([i915#1982])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/fi-icl-u2/igt@core_hotunplug@unbind-rebind.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/fi-icl-u2/igt@core_hotunplug@unbind-rebind.html
* igt@gem_sync@basic-all:
- fi-tgl-y: [PASS][5] -> [DMESG-WARN][6] ([i915#402]) +1 similar issue
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/fi-tgl-y/igt@gem_sync@basic-all.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/fi-tgl-y/igt@gem_sync@basic-all.html
* igt@i915_module_load@reload:
- fi-tgl-u2: [PASS][7] -> [DMESG-WARN][8] ([i915#1982] / [k.org#205379])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/fi-tgl-u2/igt@i915_module_load@reload.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/fi-tgl-u2/igt@i915_module_load@reload.html
* igt@i915_selftest@live@execlists:
- fi-kbl-soraka: [PASS][9] -> [INCOMPLETE][10] ([i915#1037] / [i915#794])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/fi-kbl-soraka/igt@i915_selftest@live@execlists.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/fi-kbl-soraka/igt@i915_selftest@live@execlists.html
* igt@kms_busy@basic@flip:
- fi-tgl-y: [PASS][11] -> [DMESG-WARN][12] ([i915#1982])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/fi-tgl-y/igt@kms_busy@basic@flip.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/fi-tgl-y/igt@kms_busy@basic@flip.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- fi-bsw-kefka: [PASS][13] -> [DMESG-WARN][14] ([i915#1982])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
#### Possible fixes ####
* igt@debugfs_test@read_all_entries:
- fi-tgl-y: [DMESG-WARN][15] ([i915#402]) -> [PASS][16] +1 similar issue
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/fi-tgl-y/igt@debugfs_test@read_all_entries.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/fi-tgl-y/igt@debugfs_test@read_all_entries.html
* igt@i915_module_load@reload:
- fi-kbl-soraka: [DMESG-WARN][17] ([i915#1982]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/fi-kbl-soraka/igt@i915_module_load@reload.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/fi-kbl-soraka/igt@i915_module_load@reload.html
* igt@i915_pm_rpm@basic-pci-d3-state:
- fi-bsw-kefka: [DMESG-WARN][19] ([i915#1982]) -> [PASS][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/fi-bsw-kefka/igt@i915_pm_rpm@basic-pci-d3-state.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/fi-bsw-kefka/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@kms_busy@basic@flip:
- {fi-tgl-dsi}: [DMESG-WARN][21] ([i915#1982]) -> [PASS][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/fi-tgl-dsi/igt@kms_busy@basic@flip.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/fi-tgl-dsi/igt@kms_busy@basic@flip.html
* igt@kms_psr@sprite_plane_onoff:
- fi-tgl-y: [DMESG-WARN][23] ([i915#1982]) -> [PASS][24] +1 similar issue
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/fi-tgl-y/igt@kms_psr@sprite_plane_onoff.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/fi-tgl-y/igt@kms_psr@sprite_plane_onoff.html
#### Warnings ####
* igt@i915_pm_rpm@basic-pci-d3-state:
- fi-tgl-y: [DMESG-WARN][25] ([i915#2411]) -> [DMESG-WARN][26] ([i915#1982] / [i915#2411])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/fi-tgl-y/igt@i915_pm_rpm@basic-pci-d3-state.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/fi-tgl-y/igt@i915_pm_rpm@basic-pci-d3-state.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#1037]: https://gitlab.freedesktop.org/drm/intel/issues/1037
[i915#1759]: https://gitlab.freedesktop.org/drm/intel/issues/1759
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
[i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
[i915#794]: https://gitlab.freedesktop.org/drm/intel/issues/794
[k.org#205379]: https://bugzilla.kernel.org/show_bug.cgi?id=205379
Participating hosts (45 -> 41)
------------------------------
Additional (1): fi-blb-e6850
Missing (5): fi-ilk-m540 fi-hsw-4200u fi-bsw-cyan fi-ctg-p8600 fi-bdw-samus
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5855 -> IGTPW_5174
CI-20190529: 20190529
CI_DRM_9343: e1757932e1d12120875a6f468de2583f1842eb2e @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_5174: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/index.html
IGT_5855: d9b3c7058efe41e5224dd1e43fac05dc6d049380 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/index.html
[-- Attachment #1.2: Type: text/html, Size: 8188 bytes --]
[-- Attachment #2: Type: text/plain, Size: 154 bytes --]
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] lib/igt_device_scan: Remember vendor/device for pci devices
2020-11-17 9:48 [igt-dev] [PATCH i-g-t 1/2] lib/igt_device_scan: Remember vendor/device for pci devices Zbigniew Kempczyński
` (2 preceding siblings ...)
2020-11-17 11:44 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] " Patchwork
@ 2020-11-17 13:18 ` Patchwork
3 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2020-11-17 13:18 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1.1: Type: text/plain, Size: 26819 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/2] lib/igt_device_scan: Remember vendor/device for pci devices
URL : https://patchwork.freedesktop.org/series/83948/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_9343_full -> IGTPW_5174_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_5174_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_5174_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_5174/index.html
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_5174_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_schedule@pi-distinct-iova@rcs0:
- shard-glk: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-glk5/igt@gem_exec_schedule@pi-distinct-iova@rcs0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-glk9/igt@gem_exec_schedule@pi-distinct-iova@rcs0.html
* igt@gem_partial_pwrite_pread@write-snoop:
- shard-snb: [PASS][3] -> [INCOMPLETE][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-snb7/igt@gem_partial_pwrite_pread@write-snoop.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-snb4/igt@gem_partial_pwrite_pread@write-snoop.html
Known issues
------------
Here are the changes found in IGTPW_5174_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotrebind-lateclose:
- shard-snb: [PASS][5] -> [INCOMPLETE][6] ([i915#1037])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-snb4/igt@core_hotunplug@hotrebind-lateclose.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-snb5/igt@core_hotunplug@hotrebind-lateclose.html
* igt@debugfs_test@read_all_entries_display_on:
- shard-apl: [PASS][7] -> [DMESG-WARN][8] ([i915#1635] / [i915#1982]) +5 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-apl8/igt@debugfs_test@read_all_entries_display_on.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-apl4/igt@debugfs_test@read_all_entries_display_on.html
* igt@gem_exec_whisper@basic-contexts-priority-all:
- shard-glk: [PASS][9] -> [DMESG-WARN][10] ([i915#118] / [i915#95])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-glk8/igt@gem_exec_whisper@basic-contexts-priority-all.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-glk3/igt@gem_exec_whisper@basic-contexts-priority-all.html
* igt@i915_pm_rpm@dpms-lpsp:
- shard-iclb: [PASS][11] -> [SKIP][12] ([i915#579])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-iclb4/igt@i915_pm_rpm@dpms-lpsp.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-iclb3/igt@i915_pm_rpm@dpms-lpsp.html
* igt@i915_pm_rpm@system-suspend-modeset:
- shard-hsw: [PASS][13] -> [SKIP][14] ([fdo#109271]) +2 similar issues
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-hsw2/igt@i915_pm_rpm@system-suspend-modeset.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-hsw7/igt@i915_pm_rpm@system-suspend-modeset.html
* igt@i915_selftest@live@active:
- shard-iclb: [PASS][15] -> [DMESG-FAIL][16] ([i915#765])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-iclb1/igt@i915_selftest@live@active.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-iclb3/igt@i915_selftest@live@active.html
* igt@kms_big_fb@linear-64bpp-rotate-180:
- shard-snb: [PASS][17] -> [SKIP][18] ([fdo#109271])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-snb7/igt@kms_big_fb@linear-64bpp-rotate-180.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-snb2/igt@kms_big_fb@linear-64bpp-rotate-180.html
* igt@kms_color@pipe-c-degamma:
- shard-apl: [PASS][19] -> [FAIL][20] ([i915#1635] / [i915#71])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-apl4/igt@kms_color@pipe-c-degamma.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-apl8/igt@kms_color@pipe-c-degamma.html
- shard-glk: [PASS][21] -> [FAIL][22] ([i915#71])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-glk9/igt@kms_color@pipe-c-degamma.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-glk4/igt@kms_color@pipe-c-degamma.html
- shard-kbl: [PASS][23] -> [FAIL][24] ([i915#71])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-kbl2/igt@kms_color@pipe-c-degamma.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-kbl1/igt@kms_color@pipe-c-degamma.html
* igt@kms_cursor_crc@pipe-a-cursor-256x256-random:
- shard-kbl: [PASS][25] -> [FAIL][26] ([i915#54])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-256x256-random.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-256x256-random.html
- shard-glk: [PASS][27] -> [FAIL][28] ([i915#54])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-glk7/igt@kms_cursor_crc@pipe-a-cursor-256x256-random.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-glk2/igt@kms_cursor_crc@pipe-a-cursor-256x256-random.html
* igt@kms_cursor_crc@pipe-c-cursor-256x256-random:
- shard-apl: [PASS][29] -> [FAIL][30] ([i915#1635] / [i915#54]) +1 similar issue
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-apl8/igt@kms_cursor_crc@pipe-c-cursor-256x256-random.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-apl6/igt@kms_cursor_crc@pipe-c-cursor-256x256-random.html
* igt@kms_draw_crc@draw-method-xrgb2101010-mmap-wc-untiled:
- shard-glk: [PASS][31] -> [DMESG-WARN][32] ([i915#1982]) +12 similar issues
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-glk6/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-wc-untiled.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-glk9/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-wc-untiled.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-iclb: [PASS][33] -> [INCOMPLETE][34] ([i915#1185])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-iclb1/igt@kms_fbcon_fbt@fbc-suspend.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-iclb8/igt@kms_fbcon_fbt@fbc-suspend.html
- shard-apl: [PASS][35] -> [INCOMPLETE][36] ([i915#1635] / [i915#2635])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-apl2/igt@kms_fbcon_fbt@fbc-suspend.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-apl6/igt@kms_fbcon_fbt@fbc-suspend.html
- shard-glk: [PASS][37] -> [INCOMPLETE][38] ([i915#2635])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-glk1/igt@kms_fbcon_fbt@fbc-suspend.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-glk1/igt@kms_fbcon_fbt@fbc-suspend.html
- shard-kbl: [PASS][39] -> [INCOMPLETE][40] ([i915#155])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-kbl2/igt@kms_fbcon_fbt@fbc-suspend.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-kbl1/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_psr@psr2_suspend:
- shard-iclb: [PASS][41] -> [SKIP][42] ([fdo#109441]) +1 similar issue
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-iclb2/igt@kms_psr@psr2_suspend.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-iclb5/igt@kms_psr@psr2_suspend.html
* igt@kms_universal_plane@universal-plane-gen9-features-pipe-a:
- shard-kbl: [PASS][43] -> [DMESG-WARN][44] ([i915#1982]) +2 similar issues
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-kbl4/igt@kms_universal_plane@universal-plane-gen9-features-pipe-a.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-kbl4/igt@kms_universal_plane@universal-plane-gen9-features-pipe-a.html
- shard-iclb: [PASS][45] -> [DMESG-WARN][46] ([i915#1982]) +1 similar issue
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-iclb1/igt@kms_universal_plane@universal-plane-gen9-features-pipe-a.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-iclb3/igt@kms_universal_plane@universal-plane-gen9-features-pipe-a.html
* igt@kms_universal_plane@universal-plane-gen9-features-pipe-b:
- shard-tglb: [PASS][47] -> [DMESG-WARN][48] ([i915#1982]) +4 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-tglb3/igt@kms_universal_plane@universal-plane-gen9-features-pipe-b.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-tglb1/igt@kms_universal_plane@universal-plane-gen9-features-pipe-b.html
* igt@perf@disabled-read-error:
- shard-apl: [PASS][49] -> [SKIP][50] ([fdo#109271] / [i915#1354] / [i915#1635])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-apl7/igt@perf@disabled-read-error.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-apl3/igt@perf@disabled-read-error.html
- shard-kbl: [PASS][51] -> [SKIP][52] ([fdo#109271] / [i915#1354])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-kbl3/igt@perf@disabled-read-error.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-kbl2/igt@perf@disabled-read-error.html
- shard-tglb: [PASS][53] -> [SKIP][54] ([i915#1354])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-tglb6/igt@perf@disabled-read-error.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-tglb5/igt@perf@disabled-read-error.html
- shard-iclb: [PASS][55] -> [SKIP][56] ([i915#1354])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-iclb4/igt@perf@disabled-read-error.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-iclb3/igt@perf@disabled-read-error.html
#### Possible fixes ####
* igt@core_hotunplug@hotrebind-lateclose:
- shard-iclb: [DMESG-WARN][57] ([i915#1982]) -> [PASS][58] +1 similar issue
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-iclb5/igt@core_hotunplug@hotrebind-lateclose.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-iclb5/igt@core_hotunplug@hotrebind-lateclose.html
* igt@gem_caching@read-writes:
- shard-hsw: [FAIL][59] -> [PASS][60]
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-hsw1/igt@gem_caching@read-writes.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-hsw7/igt@gem_caching@read-writes.html
* igt@gem_exec_reloc@basic-softpin:
- shard-hsw: [DMESG-WARN][61] ([i915#1982]) -> [PASS][62]
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-hsw8/igt@gem_exec_reloc@basic-softpin.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-hsw4/igt@gem_exec_reloc@basic-softpin.html
* igt@gem_exec_whisper@basic-queues-forked-all:
- shard-iclb: [INCOMPLETE][63] -> [PASS][64]
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-iclb5/igt@gem_exec_whisper@basic-queues-forked-all.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-iclb4/igt@gem_exec_whisper@basic-queues-forked-all.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-hsw: [FAIL][65] ([i915#1888]) -> [PASS][66] +1 similar issue
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-hsw1/igt@gem_partial_pwrite_pread@write-display.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-hsw1/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_softpin@noreloc-s3:
- shard-iclb: [INCOMPLETE][67] ([i915#1373] / [i915#2405]) -> [PASS][68]
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-iclb6/igt@gem_softpin@noreloc-s3.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-iclb2/igt@gem_softpin@noreloc-s3.html
- shard-apl: [INCOMPLETE][69] ([i915#1635] / [i915#2405] / [i915#2635]) -> [PASS][70]
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-apl6/igt@gem_softpin@noreloc-s3.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-apl2/igt@gem_softpin@noreloc-s3.html
- shard-glk: [INCOMPLETE][71] ([i915#2199] / [i915#2405] / [i915#2635]) -> [PASS][72]
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-glk4/igt@gem_softpin@noreloc-s3.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-glk7/igt@gem_softpin@noreloc-s3.html
- shard-hsw: [INCOMPLETE][73] ([i915#2405] / [i915#2637]) -> [PASS][74]
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-hsw8/igt@gem_softpin@noreloc-s3.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-hsw7/igt@gem_softpin@noreloc-s3.html
- shard-kbl: [INCOMPLETE][75] ([i915#2405]) -> [PASS][76]
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-kbl3/igt@gem_softpin@noreloc-s3.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-kbl4/igt@gem_softpin@noreloc-s3.html
* {igt@kms_async_flips@async-flip-with-page-flip-events}:
- shard-kbl: [FAIL][77] ([i915#2521]) -> [PASS][78]
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-kbl1/igt@kms_async_flips@async-flip-with-page-flip-events.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-kbl3/igt@kms_async_flips@async-flip-with-page-flip-events.html
- shard-glk: [FAIL][79] ([i915#2521]) -> [PASS][80]
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-glk8/igt@kms_async_flips@async-flip-with-page-flip-events.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-glk3/igt@kms_async_flips@async-flip-with-page-flip-events.html
* {igt@kms_async_flips@test-time-stamp}:
- shard-tglb: [FAIL][81] ([i915#2597]) -> [PASS][82]
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-tglb1/igt@kms_async_flips@test-time-stamp.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-tglb5/igt@kms_async_flips@test-time-stamp.html
* igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-untiled:
- shard-glk: [DMESG-WARN][83] ([i915#1982]) -> [PASS][84] +5 similar issues
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-glk3/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-untiled.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-glk4/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-untiled.html
* igt@kms_flip@flip-vs-suspend@c-hdmi-a1:
- shard-hsw: [INCOMPLETE][85] ([i915#2055]) -> [PASS][86]
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-hsw7/igt@kms_flip@flip-vs-suspend@c-hdmi-a1.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-hsw4/igt@kms_flip@flip-vs-suspend@c-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-badstride:
- shard-kbl: [DMESG-WARN][87] ([i915#1982]) -> [PASS][88] +1 similar issue
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-badstride.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-kbl6/igt@kms_frontbuffer_tracking@fbc-badstride.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt:
- shard-tglb: [DMESG-WARN][89] ([i915#1982]) -> [PASS][90] +4 similar issues
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-tglb3/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-tglb1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html
* igt@kms_hdmi_inject@inject-audio:
- shard-tglb: [SKIP][91] ([i915#433]) -> [PASS][92]
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-tglb2/igt@kms_hdmi_inject@inject-audio.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-tglb1/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_plane@plane-position-hole-dpms-pipe-b-planes:
- shard-kbl: [FAIL][93] ([i915#2472]) -> [PASS][94]
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-kbl4/igt@kms_plane@plane-position-hole-dpms-pipe-b-planes.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-kbl3/igt@kms_plane@plane-position-hole-dpms-pipe-b-planes.html
- shard-apl: [FAIL][95] ([i915#1635] / [i915#2472]) -> [PASS][96]
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-apl4/igt@kms_plane@plane-position-hole-dpms-pipe-b-planes.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-apl7/igt@kms_plane@plane-position-hole-dpms-pipe-b-planes.html
* igt@kms_plane_cursor@pipe-a-overlay-size-64:
- shard-apl: [DMESG-WARN][97] ([i915#1635] / [i915#1982]) -> [PASS][98] +3 similar issues
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-apl1/igt@kms_plane_cursor@pipe-a-overlay-size-64.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-apl6/igt@kms_plane_cursor@pipe-a-overlay-size-64.html
* igt@kms_psr2_su@frontbuffer:
- shard-iclb: [SKIP][99] ([fdo#109642] / [fdo#111068]) -> [PASS][100]
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-iclb3/igt@kms_psr2_su@frontbuffer.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-iclb2/igt@kms_psr2_su@frontbuffer.html
* igt@kms_psr@psr2_sprite_render:
- shard-iclb: [SKIP][101] ([fdo#109441]) -> [PASS][102] +1 similar issue
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-iclb7/igt@kms_psr@psr2_sprite_render.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-iclb2/igt@kms_psr@psr2_sprite_render.html
* igt@perf@oa-exponents:
- shard-tglb: [SKIP][103] ([i915#1354]) -> [PASS][104]
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-tglb3/igt@perf@oa-exponents.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-tglb5/igt@perf@oa-exponents.html
- shard-glk: [SKIP][105] ([fdo#109271] / [i915#1354]) -> [PASS][106]
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-glk7/igt@perf@oa-exponents.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-glk9/igt@perf@oa-exponents.html
- shard-apl: [SKIP][107] ([fdo#109271] / [i915#1354] / [i915#1635]) -> [PASS][108]
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-apl6/igt@perf@oa-exponents.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-apl3/igt@perf@oa-exponents.html
- shard-kbl: [SKIP][109] ([fdo#109271] / [i915#1354]) -> [PASS][110]
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-kbl3/igt@perf@oa-exponents.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-kbl2/igt@perf@oa-exponents.html
- shard-iclb: [SKIP][111] ([i915#1354]) -> [PASS][112]
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-iclb5/igt@perf@oa-exponents.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-iclb3/igt@perf@oa-exponents.html
* igt@perf_pmu@module-unload:
- shard-tglb: [DMESG-WARN][113] ([i915#1982] / [i915#262]) -> [PASS][114]
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-tglb7/igt@perf_pmu@module-unload.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-tglb6/igt@perf_pmu@module-unload.html
#### Warnings ####
* igt@gem_softpin@noreloc-s3:
- shard-tglb: [INCOMPLETE][115] ([i915#1373] / [i915#1436] / [i915#456]) -> [DMESG-WARN][116] ([i915#2411])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-tglb6/igt@gem_softpin@noreloc-s3.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-tglb3/igt@gem_softpin@noreloc-s3.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-tglb: [DMESG-WARN][117] ([i915#2411]) -> [INCOMPLETE][118] ([i915#1436] / [i915#456])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-tglb1/igt@kms_fbcon_fbt@fbc-suspend.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-tglb5/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
- shard-apl: [DMESG-FAIL][119] ([fdo#108145] / [i915#1635] / [i915#1982]) -> [FAIL][120] ([fdo#108145] / [i915#1635] / [i915#265])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-apl4/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-apl8/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html
* igt@runner@aborted:
- shard-kbl: [FAIL][121] ([i915#1611] / [i915#2295] / [i915#2439] / [i915#483]) -> ([FAIL][122], [FAIL][123]) ([i915#1611] / [i915#2295] / [i915#2439] / [i915#483] / [i915#92])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-kbl1/igt@runner@aborted.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-kbl1/igt@runner@aborted.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-kbl2/igt@runner@aborted.html
- shard-glk: ([FAIL][124], [FAIL][125]) ([i915#1611] / [i915#2295] / [i915#2439] / [i915#86] / [k.org#202321]) -> ([FAIL][126], [FAIL][127]) ([i915#1611] / [i915#2295] / [i915#2439] / [k.org#202321])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-glk4/igt@runner@aborted.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-glk8/igt@runner@aborted.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-glk6/igt@runner@aborted.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-glk1/igt@runner@aborted.html
- shard-tglb: ([FAIL][128], [FAIL][129]) ([i915#2295] / [i915#2439]) -> ([FAIL][130], [FAIL][131]) ([i915#1602] / [i915#2295] / [i915#2439])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-tglb6/igt@runner@aborted.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-tglb3/igt@runner@aborted.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-tglb2/igt@runner@aborted.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/shard-tglb5/igt@runner@aborted.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[i915#1037]: https://gitlab.freedesktop.org/drm/intel/issues/1037
[i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
[i915#1185]: https://gitlab.freedesktop.org/drm/intel/issues/1185
[i915#1354]: https://gitlab.freedesktop.org/drm/intel/issues/1354
[i915#1373]: https://gitlab.freedesktop.org/drm/intel/issues/1373
[i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
[i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
[i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602
[i915#1611]: https://gitlab.freedesktop.org/drm/intel/issues/1611
[i915#1635]: https://gitlab.freedesktop.org/drm/intel/issues/1635
[i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2055]: https://gitlab.freedesktop.org/drm/intel/issues/2055
[i915#2199]: https://gitlab.freedesktop.org/drm/intel/issues/2199
[i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295
[i915#2405]: https://gitlab.freedesktop.org/drm/intel/issues/2405
[i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
[i915#2439]: https://gitlab.freedesktop.org/drm/intel/issues/2439
[i915#2472]: https://gitlab.freedesktop.org/drm/intel/issues/2472
[i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
[i915#2597]: https://gitlab.freedesktop.org/drm/intel/issues/2597
[i915#262]: https://gitlab.freedesktop.org/drm/intel/issues/262
[i915#2635]: https://gitlab.freedesktop.org/drm/intel/issues/2635
[i915#2637]: https://gitlab.freedesktop.org/drm/intel/issues/2637
[i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
[i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
[i915#456]: https://gitlab.freedesktop.org/drm/intel/issues/456
[i915#483]: https://gitlab.freedesktop.org/drm/intel/issues/483
[i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
[i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579
[i915#71]: https://gitlab.freedesktop.org/drm/intel/issues/71
[i915#765]: https://gitlab.freedesktop.org/drm/intel/issues/765
[i915#86]: https://gitlab.freedesktop.org/drm/intel/issues/86
[i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92
[i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95
[k.org#202321]: https://bugzilla.kernel.org/show_bug.cgi?id=202321
Participating hosts (10 -> 8)
------------------------------
Missing (2): pig-skl-6260u pig-glk-j5005
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5855 -> IGTPW_5174
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_9343: e1757932e1d12120875a6f468de2583f1842eb2e @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_5174: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/index.html
IGT_5855: d9b3c7058efe41e5224dd1e43fac05dc6d049380 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5174/index.html
[-- Attachment #1.2: Type: text/html, Size: 33729 bytes --]
[-- Attachment #2: Type: text/plain, Size: 154 bytes --]
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2020-11-17 13:18 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-17 9:48 [igt-dev] [PATCH i-g-t 1/2] lib/igt_device_scan: Remember vendor/device for pci devices Zbigniew Kempczyński
2020-11-17 9:48 ` [igt-dev] [PATCH i-g-t 2/2] tools/intel_gpu_top: Add generation info in header Zbigniew Kempczyński
2020-11-17 10:15 ` Tvrtko Ursulin
2020-11-17 10:16 ` [igt-dev] [PATCH i-g-t 1/2] lib/igt_device_scan: Remember vendor/device for pci devices Tvrtko Ursulin
2020-11-17 10:38 ` Zbigniew Kempczyński
2020-11-17 11:44 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] " Patchwork
2020-11-17 13:18 ` [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