* [igt-dev] [PATCH i-g-t] gem_wsim: Implement device selection
@ 2020-11-17 11:40 Tvrtko Ursulin
2020-11-17 11:51 ` [Intel-gfx] " Chris Wilson
` (6 more replies)
0 siblings, 7 replies; 12+ messages in thread
From: Tvrtko Ursulin @ 2020-11-17 11:40 UTC (permalink / raw)
To: igt-dev; +Cc: Intel-gfx, Tvrtko Ursulin
From: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
-L and -D <device> on the command line.
With no device specified tool tries to find i915 discrete or integrated in
that order.
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
---
benchmarks/gem_wsim.c | 61 +++++++++++++++++++++++++++++++++++--------
1 file changed, 50 insertions(+), 11 deletions(-)
diff --git a/benchmarks/gem_wsim.c b/benchmarks/gem_wsim.c
index ecad4a8dcd22..f3567f7b9a0b 100644
--- a/benchmarks/gem_wsim.c
+++ b/benchmarks/gem_wsim.c
@@ -43,6 +43,7 @@
#include <pthread.h>
#include <math.h>
+#include "igt_device_scan.h"
#include "intel_chipset.h"
#include "intel_reg.h"
#include "drm.h"
@@ -2520,7 +2521,9 @@ static void print_help(void)
" clients.\n"
" -d Sync between data dependencies in userspace.\n"
" -f <scale> Scale factor for batch durations.\n"
-" -F <scale> Scale factor for delays."
+" -F <scale> Scale factor for delays.\n"
+" -L List GPUs.\n"
+" -D <gpu> One of the GPUs from -L.\n"
);
}
@@ -2570,6 +2573,7 @@ add_workload_arg(struct w_arg *w_args, unsigned int nr_args, char *w_arg,
int main(int argc, char **argv)
{
+ bool list_devices_arg = false;
unsigned int repeat = 1;
unsigned int clients = 1;
unsigned int flags = 0;
@@ -2581,26 +2585,25 @@ int main(int argc, char **argv)
char *append_workload_arg = NULL;
struct w_arg *w_args = NULL;
int exitcode = EXIT_FAILURE;
+ struct igt_device_card card;
+ char *device_arg = NULL;
double scale_time = 1.0f;
double scale_dur = 1.0f;
int prio = 0;
double t;
int i, c, ret;
- /*
- * Open the device via the low-level API so we can do the GPU quiesce
- * manually as close as possible in time to the start of the workload.
- * This minimizes the gap in engine utilization tracking when observed
- * via external tools like trace.pl.
- */
- fd = __drm_open_driver_render(DRIVER_INTEL);
- igt_require(fd);
-
master_prng = time(NULL);
while ((c = getopt(argc, argv,
- "hqvsSdc:r:w:W:a:p:I:f:F:")) != -1) {
+ "LhqvsSdc:r:w:W:a:p:I:f:F:D:")) != -1) {
switch (c) {
+ case 'L':
+ list_devices_arg = true;
+ break;
+ case 'D':
+ device_arg = strdup(optarg);
+ break;
case 'W':
if (master_workload >= 0) {
wsim_err("Only one master workload can be given!\n");
@@ -2661,6 +2664,42 @@ int main(int argc, char **argv)
}
}
+ igt_devices_scan(false);
+
+ if (list_devices_arg) {
+ struct igt_devices_print_format fmt = {
+ .type = IGT_PRINT_USER,
+ .option = IGT_PRINT_DRM,
+ };
+
+ igt_devices_print(&fmt);
+
+ return EXIT_SUCCESS;
+ }
+
+ if (device_arg) {
+ ret = igt_device_card_match(device_arg, &card);
+ if (!ret) {
+ wsim_err("Requested device %s not found!\n",
+ device_arg);
+ free(device_arg);
+
+ return EXIT_FAILURE;
+ }
+ free(device_arg);
+ } else {
+ ret = igt_device_find_first_i915_discrete_card(&card);
+ if (!ret)
+ ret = igt_device_find_integrated_card(&card);
+ if (!ret) {
+ wsim_err("No device filter specified and no discrete/integrated i915 devices found\n");
+ return EXIT_FAILURE;
+ }
+ }
+
+ fd = igt_open_card(&card);
+ igt_require(fd);
+
if (!nr_w_args) {
wsim_err("No workload descriptor(s)!\n");
goto err;
--
2.25.1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 12+ messages in thread* Re: [Intel-gfx] [PATCH i-g-t] gem_wsim: Implement device selection 2020-11-17 11:40 [igt-dev] [PATCH i-g-t] gem_wsim: Implement device selection Tvrtko Ursulin @ 2020-11-17 11:51 ` Chris Wilson 2020-11-17 12:14 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork ` (5 subsequent siblings) 6 siblings, 0 replies; 12+ messages in thread From: Chris Wilson @ 2020-11-17 11:51 UTC (permalink / raw) To: Tvrtko Ursulin, igt-dev; +Cc: Intel-gfx Quoting Tvrtko Ursulin (2020-11-17 11:40:50) > From: Tvrtko Ursulin <tvrtko.ursulin@intel.com> > > -L and -D <device> on the command line. > > With no device specified tool tries to find i915 discrete or integrated in > that order. I'm shocked you didn't add D.x to .wsim :) -Chris _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for gem_wsim: Implement device selection 2020-11-17 11:40 [igt-dev] [PATCH i-g-t] gem_wsim: Implement device selection Tvrtko Ursulin 2020-11-17 11:51 ` [Intel-gfx] " Chris Wilson @ 2020-11-17 12:14 ` Patchwork 2020-11-17 12:18 ` [Intel-gfx] [PATCH i-g-t] " Chris Wilson ` (4 subsequent siblings) 6 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2020-11-17 12:14 UTC (permalink / raw) To: Tvrtko Ursulin; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 5073 bytes --] == Series Details == Series: gem_wsim: Implement device selection URL : https://patchwork.freedesktop.org/series/83952/ State : success == Summary == CI Bug Log - changes from CI_DRM_9343 -> IGTPW_5175 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_5175: ### 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_5175/fi-tgl-dsi/igt@i915_selftest@live@gt_pm.html Known issues ------------ Here are the changes found in IGTPW_5175 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unbind-rebind: - fi-tgl-u2: [PASS][3] -> [DMESG-WARN][4] ([i915#1982]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/fi-tgl-u2/igt@core_hotunplug@unbind-rebind.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/fi-tgl-u2/igt@core_hotunplug@unbind-rebind.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-bsw-kefka: [PASS][5] -> [DMESG-WARN][6] ([i915#1982]) [5]: 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 [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-flip-before-cursor-atomic: - fi-icl-u2: [PASS][7] -> [DMESG-WARN][8] ([i915#1982]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/fi-icl-u2/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/fi-icl-u2/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html * igt@kms_pipe_crc_basic@read-crc-pipe-a: - fi-tgl-y: [PASS][9] -> [DMESG-WARN][10] ([i915#1982]) +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/fi-tgl-y/igt@kms_pipe_crc_basic@read-crc-pipe-a.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/fi-tgl-y/igt@kms_pipe_crc_basic@read-crc-pipe-a.html * igt@vgem_basic@dmabuf-export: - fi-tgl-y: [PASS][11] -> [DMESG-WARN][12] ([i915#402]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/fi-tgl-y/igt@vgem_basic@dmabuf-export.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/fi-tgl-y/igt@vgem_basic@dmabuf-export.html #### Possible fixes #### * igt@i915_pm_rpm@basic-pci-d3-state: - fi-bsw-kefka: [DMESG-WARN][13] ([i915#1982]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/fi-bsw-kefka/igt@i915_pm_rpm@basic-pci-d3-state.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/fi-bsw-kefka/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@kms_psr@sprite_plane_onoff: - fi-tgl-y: [DMESG-WARN][15] ([i915#1982]) -> [PASS][16] +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/fi-tgl-y/igt@kms_psr@sprite_plane_onoff.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/fi-tgl-y/igt@kms_psr@sprite_plane_onoff.html * igt@prime_self_import@basic-with_one_bo_two_files: - fi-tgl-y: [DMESG-WARN][17] ([i915#402]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/fi-tgl-y/igt@prime_self_import@basic-with_one_bo_two_files.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/fi-tgl-y/igt@prime_self_import@basic-with_one_bo_two_files.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#1759]: https://gitlab.freedesktop.org/drm/intel/issues/1759 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402 Participating hosts (45 -> 40) ------------------------------ Additional (1): fi-blb-e6850 Missing (6): fi-kbl-soraka 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_5175 CI-20190529: 20190529 CI_DRM_9343: e1757932e1d12120875a6f468de2583f1842eb2e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_5175: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/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_5175/index.html [-- Attachment #1.2: Type: text/html, Size: 6309 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] 12+ messages in thread
* Re: [Intel-gfx] [PATCH i-g-t] gem_wsim: Implement device selection 2020-11-17 11:40 [igt-dev] [PATCH i-g-t] gem_wsim: Implement device selection Tvrtko Ursulin 2020-11-17 11:51 ` [Intel-gfx] " Chris Wilson 2020-11-17 12:14 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2020-11-17 12:18 ` Chris Wilson 2020-11-17 12:33 ` Tvrtko Ursulin 2020-11-17 13:59 ` [igt-dev] [PATCH i-g-t v2] " Tvrtko Ursulin ` (3 subsequent siblings) 6 siblings, 1 reply; 12+ messages in thread From: Chris Wilson @ 2020-11-17 12:18 UTC (permalink / raw) To: Tvrtko Ursulin, igt-dev; +Cc: Intel-gfx Quoting Tvrtko Ursulin (2020-11-17 11:40:50) > From: Tvrtko Ursulin <tvrtko.ursulin@intel.com> > > -L and -D <device> on the command line. > > With no device specified tool tries to find i915 discrete or integrated in > that order. Ok, looks straightforward enough. (I still like having an idiot's guide with examples of -L output and what to pass to -D). > + fd = igt_open_card(&card); > + igt_require(fd); Does igt_require() still generate weirdness when used outside of igt tests? Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> -Chris _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [Intel-gfx] [PATCH i-g-t] gem_wsim: Implement device selection 2020-11-17 12:18 ` [Intel-gfx] [PATCH i-g-t] " Chris Wilson @ 2020-11-17 12:33 ` Tvrtko Ursulin 2020-11-17 12:37 ` [igt-dev] " Chris Wilson 0 siblings, 1 reply; 12+ messages in thread From: Tvrtko Ursulin @ 2020-11-17 12:33 UTC (permalink / raw) To: Chris Wilson, igt-dev; +Cc: Intel-gfx On 17/11/2020 12:18, Chris Wilson wrote: > Quoting Tvrtko Ursulin (2020-11-17 11:40:50) >> From: Tvrtko Ursulin <tvrtko.ursulin@intel.com> >> >> -L and -D <device> on the command line. >> >> With no device specified tool tries to find i915 discrete or integrated in >> that order. > > Ok, looks straightforward enough. (I still like having an idiot's guide > with examples of -L output and what to pass to -D). > >> + fd = igt_open_card(&card); >> + igt_require(fd); > > Does igt_require() still generate weirdness when used outside of igt > tests? It appears to do nothing. But more importantly I don't know how I ended up with it here. Probably some copy & paste again. > Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> Can I convert to igt_assert and keep the r-b? Regards, Tvrtko _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [igt-dev] [Intel-gfx] [PATCH i-g-t] gem_wsim: Implement device selection 2020-11-17 12:33 ` Tvrtko Ursulin @ 2020-11-17 12:37 ` Chris Wilson 0 siblings, 0 replies; 12+ messages in thread From: Chris Wilson @ 2020-11-17 12:37 UTC (permalink / raw) To: Tvrtko Ursulin, igt-dev; +Cc: Intel-gfx Quoting Tvrtko Ursulin (2020-11-17 12:33:11) > > On 17/11/2020 12:18, Chris Wilson wrote: > > Quoting Tvrtko Ursulin (2020-11-17 11:40:50) > >> From: Tvrtko Ursulin <tvrtko.ursulin@intel.com> > >> > >> -L and -D <device> on the command line. > >> > >> With no device specified tool tries to find i915 discrete or integrated in > >> that order. > > > > Ok, looks straightforward enough. (I still like having an idiot's guide > > with examples of -L output and what to pass to -D). > > > >> + fd = igt_open_card(&card); > >> + igt_require(fd); > > > > Does igt_require() still generate weirdness when used outside of igt > > tests? > > It appears to do nothing. But more importantly I don't know how I ended > up with it here. Probably some copy & paste again. > > > Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> > > Can I convert to igt_assert and keep the r-b? Make it return sensibly with a wsim_err. -Chris _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] [PATCH i-g-t v2] gem_wsim: Implement device selection 2020-11-17 11:40 [igt-dev] [PATCH i-g-t] gem_wsim: Implement device selection Tvrtko Ursulin ` (2 preceding siblings ...) 2020-11-17 12:18 ` [Intel-gfx] [PATCH i-g-t] " Chris Wilson @ 2020-11-17 13:59 ` Tvrtko Ursulin 2020-11-17 14:06 ` Chris Wilson 2020-11-17 14:04 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork ` (2 subsequent siblings) 6 siblings, 1 reply; 12+ messages in thread From: Tvrtko Ursulin @ 2020-11-17 13:59 UTC (permalink / raw) To: igt-dev; +Cc: Intel-gfx, Tvrtko Ursulin From: Tvrtko Ursulin <tvrtko.ursulin@intel.com> -L and -D <device> on the command line. With no device specified tool tries to find i915 discrete or integrated in that order. v2: * Fix error handling and support render devices. Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> --- benchmarks/gem_wsim.c | 75 ++++++++++++++++++++++++++++++++++++------- 1 file changed, 64 insertions(+), 11 deletions(-) diff --git a/benchmarks/gem_wsim.c b/benchmarks/gem_wsim.c index ecad4a8dcd22..1c0c591ed8af 100644 --- a/benchmarks/gem_wsim.c +++ b/benchmarks/gem_wsim.c @@ -43,6 +43,7 @@ #include <pthread.h> #include <math.h> +#include "igt_device_scan.h" #include "intel_chipset.h" #include "intel_reg.h" #include "drm.h" @@ -2520,7 +2521,9 @@ static void print_help(void) " clients.\n" " -d Sync between data dependencies in userspace.\n" " -f <scale> Scale factor for batch durations.\n" -" -F <scale> Scale factor for delays." +" -F <scale> Scale factor for delays.\n" +" -L List GPUs.\n" +" -D <gpu> One of the GPUs from -L.\n" ); } @@ -2570,6 +2573,8 @@ add_workload_arg(struct w_arg *w_args, unsigned int nr_args, char *w_arg, int main(int argc, char **argv) { + struct igt_device_card card = { }; + bool list_devices_arg = false; unsigned int repeat = 1; unsigned int clients = 1; unsigned int flags = 0; @@ -2581,26 +2586,25 @@ int main(int argc, char **argv) char *append_workload_arg = NULL; struct w_arg *w_args = NULL; int exitcode = EXIT_FAILURE; + char *device_arg = NULL; double scale_time = 1.0f; double scale_dur = 1.0f; int prio = 0; double t; int i, c, ret; - - /* - * Open the device via the low-level API so we can do the GPU quiesce - * manually as close as possible in time to the start of the workload. - * This minimizes the gap in engine utilization tracking when observed - * via external tools like trace.pl. - */ - fd = __drm_open_driver_render(DRIVER_INTEL); - igt_require(fd); + char *drm_dev; master_prng = time(NULL); while ((c = getopt(argc, argv, - "hqvsSdc:r:w:W:a:p:I:f:F:")) != -1) { + "LhqvsSdc:r:w:W:a:p:I:f:F:D:")) != -1) { switch (c) { + case 'L': + list_devices_arg = true; + break; + case 'D': + device_arg = strdup(optarg); + break; case 'W': if (master_workload >= 0) { wsim_err("Only one master workload can be given!\n"); @@ -2661,6 +2665,55 @@ int main(int argc, char **argv) } } + igt_devices_scan(false); + + if (list_devices_arg) { + struct igt_devices_print_format fmt = { + .type = IGT_PRINT_USER, + .option = IGT_PRINT_DRM, + }; + + igt_devices_print(&fmt); + return EXIT_SUCCESS; + } + + if (device_arg) { + ret = igt_device_card_match(device_arg, &card); + if (!ret) { + wsim_err("Requested device %s not found!\n", + device_arg); + free(device_arg); + return EXIT_FAILURE; + } + free(device_arg); + } else { + ret = igt_device_find_first_i915_discrete_card(&card); + if (!ret) + ret = igt_device_find_integrated_card(&card); + if (!ret) { + wsim_err("No device filter specified and no i915 devices found!\n"); + return EXIT_FAILURE; + } + } + + if (strlen(card.card)) { + drm_dev = card.card; + } else if (strlen(card.render)) { + drm_dev = card.render; + } else { + wsim_err("Failed to detect device!\n"); + return EXIT_FAILURE; + } + + fd = open(drm_dev, O_RDWR); + if (fd < 0) { + wsim_err("Failed to open '%s'! (%s)\n", + drm_dev, strerror(errno)); + return EXIT_FAILURE; + } + if (verbose > 1) + printf("Using device %s\n", drm_dev); + if (!nr_w_args) { wsim_err("No workload descriptor(s)!\n"); goto err; -- 2.25.1 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2] gem_wsim: Implement device selection 2020-11-17 13:59 ` [igt-dev] [PATCH i-g-t v2] " Tvrtko Ursulin @ 2020-11-17 14:06 ` Chris Wilson 2020-11-18 11:56 ` Tvrtko Ursulin 0 siblings, 1 reply; 12+ messages in thread From: Chris Wilson @ 2020-11-17 14:06 UTC (permalink / raw) To: Tvrtko Ursulin, igt-dev; +Cc: Intel-gfx, Tvrtko Ursulin Quoting Tvrtko Ursulin (2020-11-17 13:59:18) > From: Tvrtko Ursulin <tvrtko.ursulin@intel.com> > > -L and -D <device> on the command line. > > With no device specified tool tries to find i915 discrete or integrated in > that order. > > v2: > * Fix error handling and support render devices. > > Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> Hmm, optarg should be a pointer into the argv, so is the copy necessary? -Chris _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2] gem_wsim: Implement device selection 2020-11-17 14:06 ` Chris Wilson @ 2020-11-18 11:56 ` Tvrtko Ursulin 0 siblings, 0 replies; 12+ messages in thread From: Tvrtko Ursulin @ 2020-11-18 11:56 UTC (permalink / raw) To: Chris Wilson, igt-dev; +Cc: Intel-gfx, Tvrtko Ursulin On 17/11/2020 14:06, Chris Wilson wrote: > Quoting Tvrtko Ursulin (2020-11-17 13:59:18) >> From: Tvrtko Ursulin <tvrtko.ursulin@intel.com> >> >> -L and -D <device> on the command line. >> >> With no device specified tool tries to find i915 discrete or integrated in >> that order. >> >> v2: >> * Fix error handling and support render devices. >> >> Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> > Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> > > Hmm, optarg should be a pointer into the argv, so is the copy necessary? I don't remember if I tried, and I don't see that getopt(3) explains optarg from that angle, so probably safest to keep as is. Too lazy to try.. Or maybe presence of strdup suggests I did already try and that optarg is indeed temporary copy managed by getopt. Regards, Tvrtko _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for gem_wsim: Implement device selection 2020-11-17 11:40 [igt-dev] [PATCH i-g-t] gem_wsim: Implement device selection Tvrtko Ursulin ` (3 preceding siblings ...) 2020-11-17 13:59 ` [igt-dev] [PATCH i-g-t v2] " Tvrtko Ursulin @ 2020-11-17 14:04 ` Patchwork 2020-11-17 15:27 ` [igt-dev] ✓ Fi.CI.BAT: success for gem_wsim: Implement device selection (rev2) Patchwork 2020-11-17 17:56 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 6 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2020-11-17 14:04 UTC (permalink / raw) To: Tvrtko Ursulin; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 29425 bytes --] == Series Details == Series: gem_wsim: Implement device selection URL : https://patchwork.freedesktop.org/series/83952/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9343_full -> IGTPW_5175_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_5175_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_5175_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_5175/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_5175_full: ### IGT changes ### #### Possible regressions #### * igt@gem_partial_pwrite_pread@reads-snoop: - shard-snb: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-snb2/igt@gem_partial_pwrite_pread@reads-snoop.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-snb7/igt@gem_partial_pwrite_pread@reads-snoop.html Known issues ------------ Here are the changes found in IGTPW_5175_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_whisper@basic-contexts-forked: - shard-iclb: [PASS][3] -> [INCOMPLETE][4] ([i915#1895]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-iclb2/igt@gem_exec_whisper@basic-contexts-forked.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-iclb6/igt@gem_exec_whisper@basic-contexts-forked.html * igt@i915_pm_rpm@gem-execbuf-stress: - shard-hsw: [PASS][5] -> [SKIP][6] ([fdo#109271]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-hsw1/igt@i915_pm_rpm@gem-execbuf-stress.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-hsw4/igt@i915_pm_rpm@gem-execbuf-stress.html * igt@i915_selftest@live@execlists: - shard-kbl: [PASS][7] -> [INCOMPLETE][8] ([i915#1037] / [i915#794]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-kbl3/igt@i915_selftest@live@execlists.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-kbl7/igt@i915_selftest@live@execlists.html * igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic: - shard-tglb: [PASS][9] -> [FAIL][10] ([i915#2346]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-tglb7/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-tglb3/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html * igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size: - shard-tglb: [PASS][11] -> [DMESG-WARN][12] ([i915#1982]) +1 similar issue [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-tglb3/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-tglb8/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size.html * igt@kms_draw_crc@draw-method-rgb565-render-ytiled: - shard-glk: [PASS][13] -> [DMESG-WARN][14] ([i915#1982]) +9 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-glk1/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-glk3/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html - shard-apl: [PASS][15] -> [DMESG-WARN][16] ([i915#1635] / [i915#1982]) +5 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-apl1/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-apl6/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html * igt@kms_fbcon_fbt@psr-suspend: - shard-iclb: [PASS][17] -> [INCOMPLETE][18] ([i915#1185]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-iclb3/igt@kms_fbcon_fbt@psr-suspend.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-iclb3/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-dp1: - shard-kbl: [PASS][19] -> [DMESG-WARN][20] ([i915#1982]) +3 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-kbl1/igt@kms_flip@flip-vs-blocking-wf-vblank@a-dp1.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-kbl7/igt@kms_flip@flip-vs-blocking-wf-vblank@a-dp1.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-tglb: [PASS][21] -> [FAIL][22] ([i915#2598]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-tglb2/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-tglb5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-snb: [PASS][23] -> [FAIL][24] ([i915#2546]) +1 similar issue [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-snb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-snb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt@kms_properties@connector-properties-legacy: - shard-kbl: [PASS][25] -> [DMESG-WARN][26] ([i915#165] / [i915#78]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-kbl2/igt@kms_properties@connector-properties-legacy.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-kbl2/igt@kms_properties@connector-properties-legacy.html * igt@kms_psr@psr2_suspend: - shard-iclb: [PASS][27] -> [SKIP][28] ([fdo#109441]) +1 similar issue [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-iclb2/igt@kms_psr@psr2_suspend.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-iclb4/igt@kms_psr@psr2_suspend.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-kbl: [PASS][29] -> [INCOMPLETE][30] ([i915#155] / [i915#2295]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-kbl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-kbl4/igt@kms_vblank@pipe-a-ts-continuation-suspend.html - shard-apl: [PASS][31] -> [INCOMPLETE][32] ([i915#1635] / [i915#2295] / [i915#2635]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-apl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-apl8/igt@kms_vblank@pipe-a-ts-continuation-suspend.html - shard-glk: [PASS][33] -> [INCOMPLETE][34] ([i915#2295] / [i915#2635]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-glk6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-glk2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html - shard-iclb: [PASS][35] -> [INCOMPLETE][36] ([i915#1078] / [i915#1185] / [i915#2295]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-iclb8/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-iclb3/igt@kms_vblank@pipe-a-ts-continuation-suspend.html - shard-hsw: [PASS][37] -> [INCOMPLETE][38] ([i915#2295] / [i915#2637]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-hsw2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-hsw2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html * igt@perf@gen12-oa-tlb-invalidate: - shard-tglb: [PASS][39] -> [SKIP][40] ([i915#1354]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-tglb2/igt@perf@gen12-oa-tlb-invalidate.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-tglb7/igt@perf@gen12-oa-tlb-invalidate.html * igt@prime_vgem@coherency-blt: - shard-snb: [PASS][41] -> [FAIL][42] ([i915#2640]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-snb2/igt@prime_vgem@coherency-blt.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-snb7/igt@prime_vgem@coherency-blt.html #### Possible fixes #### * igt@core_hotunplug@hotrebind-lateclose: - shard-iclb: [DMESG-WARN][43] ([i915#1982]) -> [PASS][44] +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-iclb5/igt@core_hotunplug@hotrebind-lateclose.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-iclb8/igt@core_hotunplug@hotrebind-lateclose.html * igt@gem_caching@read-writes: - shard-hsw: [FAIL][45] -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-hsw1/igt@gem_caching@read-writes.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-hsw2/igt@gem_caching@read-writes.html * igt@gem_eio@kms: - shard-snb: [INCOMPLETE][47] -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-snb5/igt@gem_eio@kms.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-snb4/igt@gem_eio@kms.html * igt@gem_exec_reloc@basic-softpin: - shard-hsw: [DMESG-WARN][49] ([i915#1982]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-hsw8/igt@gem_exec_reloc@basic-softpin.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-hsw4/igt@gem_exec_reloc@basic-softpin.html * igt@gem_exec_whisper@basic-contexts-forked: - shard-hsw: [TIMEOUT][51] ([i915#2502]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-hsw1/igt@gem_exec_whisper@basic-contexts-forked.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-hsw6/igt@gem_exec_whisper@basic-contexts-forked.html * igt@gem_exec_whisper@basic-queues-forked-all: - shard-iclb: [INCOMPLETE][53] -> [PASS][54] [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-iclb5/igt@gem_exec_whisper@basic-queues-forked-all.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-iclb2/igt@gem_exec_whisper@basic-queues-forked-all.html * igt@gem_partial_pwrite_pread@write-display: - shard-hsw: [FAIL][55] ([i915#1888]) -> [PASS][56] +2 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-hsw1/igt@gem_partial_pwrite_pread@write-display.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-hsw1/igt@gem_partial_pwrite_pread@write-display.html * igt@gem_softpin@noreloc-s3: - shard-iclb: [INCOMPLETE][57] ([i915#1373] / [i915#2405]) -> [PASS][58] [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-iclb6/igt@gem_softpin@noreloc-s3.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-iclb7/igt@gem_softpin@noreloc-s3.html - shard-apl: [INCOMPLETE][59] ([i915#1635] / [i915#2405] / [i915#2635]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-apl6/igt@gem_softpin@noreloc-s3.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-apl1/igt@gem_softpin@noreloc-s3.html - shard-glk: [INCOMPLETE][61] ([i915#2199] / [i915#2405] / [i915#2635]) -> [PASS][62] [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-glk4/igt@gem_softpin@noreloc-s3.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-glk9/igt@gem_softpin@noreloc-s3.html - shard-hsw: [INCOMPLETE][63] ([i915#2405] / [i915#2637]) -> [PASS][64] [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-hsw8/igt@gem_softpin@noreloc-s3.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-hsw4/igt@gem_softpin@noreloc-s3.html - shard-kbl: [INCOMPLETE][65] ([i915#2405]) -> [PASS][66] [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-kbl3/igt@gem_softpin@noreloc-s3.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-kbl7/igt@gem_softpin@noreloc-s3.html * {igt@kms_async_flips@async-flip-with-page-flip-events}: - shard-kbl: [FAIL][67] ([i915#2521]) -> [PASS][68] [67]: 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 [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-kbl2/igt@kms_async_flips@async-flip-with-page-flip-events.html - shard-glk: [FAIL][69] ([i915#2521]) -> [PASS][70] [69]: 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 [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-glk1/igt@kms_async_flips@async-flip-with-page-flip-events.html * {igt@kms_async_flips@test-time-stamp}: - shard-tglb: [FAIL][71] ([i915#2597]) -> [PASS][72] [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-tglb1/igt@kms_async_flips@test-time-stamp.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-tglb5/igt@kms_async_flips@test-time-stamp.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-tglb: [FAIL][73] ([i915#2346]) -> [PASS][74] [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-tglb6/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-tglb1/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-untiled: - shard-glk: [DMESG-WARN][75] ([i915#1982]) -> [PASS][76] +5 similar issues [75]: 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 [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/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][77] ([i915#2055]) -> [PASS][78] [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-hsw7/igt@kms_flip@flip-vs-suspend@c-hdmi-a1.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-hsw2/igt@kms_flip@flip-vs-suspend@c-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-badstride: - shard-kbl: [DMESG-WARN][79] ([i915#1982]) -> [PASS][80] +2 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-badstride.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-badstride.html * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt: - shard-snb: [FAIL][81] ([i915#2546]) -> [PASS][82] [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-snb4/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-snb2/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt: - shard-tglb: [DMESG-WARN][83] ([i915#1982]) -> [PASS][84] +4 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-tglb3/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-tglb6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html * igt@kms_hdmi_inject@inject-audio: - shard-tglb: [SKIP][85] ([i915#433]) -> [PASS][86] [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-tglb2/igt@kms_hdmi_inject@inject-audio.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-tglb7/igt@kms_hdmi_inject@inject-audio.html * igt@kms_plane@plane-position-hole-dpms-pipe-b-planes: - shard-kbl: [FAIL][87] ([i915#2472]) -> [PASS][88] [87]: 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 [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-kbl3/igt@kms_plane@plane-position-hole-dpms-pipe-b-planes.html - shard-apl: [FAIL][89] ([i915#1635] / [i915#2472]) -> [PASS][90] [89]: 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 [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-apl8/igt@kms_plane@plane-position-hole-dpms-pipe-b-planes.html * igt@kms_plane_cursor@pipe-a-overlay-size-64: - shard-apl: [DMESG-WARN][91] ([i915#1635] / [i915#1982]) -> [PASS][92] +3 similar issues [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-apl1/igt@kms_plane_cursor@pipe-a-overlay-size-64.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-apl4/igt@kms_plane_cursor@pipe-a-overlay-size-64.html * igt@kms_psr@psr2_basic: - shard-iclb: [SKIP][93] ([fdo#109441]) -> [PASS][94] +1 similar issue [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-iclb5/igt@kms_psr@psr2_basic.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-iclb2/igt@kms_psr@psr2_basic.html * igt@perf_pmu@module-unload: - shard-tglb: [DMESG-WARN][95] ([i915#1982] / [i915#262]) -> [PASS][96] [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-tglb7/igt@perf_pmu@module-unload.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-tglb6/igt@perf_pmu@module-unload.html - shard-iclb: [DMESG-WARN][97] ([i915#1982] / [i915#262]) -> [PASS][98] [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-iclb5/igt@perf_pmu@module-unload.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-iclb5/igt@perf_pmu@module-unload.html #### Warnings #### * igt@core_hotunplug@hotrebind-lateclose: - shard-hsw: [WARN][99] ([i915#2283]) -> [FAIL][100] ([i915#2644]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-hsw7/igt@core_hotunplug@hotrebind-lateclose.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-hsw1/igt@core_hotunplug@hotrebind-lateclose.html * igt@gem_softpin@noreloc-s3: - shard-tglb: [INCOMPLETE][101] ([i915#1373] / [i915#1436] / [i915#456]) -> [DMESG-WARN][102] ([i915#2411]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-tglb6/igt@gem_softpin@noreloc-s3.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-tglb8/igt@gem_softpin@noreloc-s3.html * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: - shard-apl: [DMESG-FAIL][103] ([fdo#108145] / [i915#1635] / [i915#1982]) -> [FAIL][104] ([fdo#108145] / [i915#1635] / [i915#265]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-apl4/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-apl3/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-tglb: [DMESG-WARN][105] ([i915#2295] / [i915#2411]) -> [INCOMPLETE][106] ([i915#1436] / [i915#2295] / [i915#456]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-tglb3/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-tglb3/igt@kms_vblank@pipe-a-ts-continuation-suspend.html * igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend: - shard-tglb: [DMESG-WARN][107] ([i915#2411]) -> [INCOMPLETE][108] ([i915#1436]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-tglb7/igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-tglb8/igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend.html * igt@perf@gen12-oa-tlb-invalidate: - shard-kbl: [SKIP][109] ([fdo#109271]) -> [SKIP][110] ([fdo#109271] / [i915#1354]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-kbl3/igt@perf@gen12-oa-tlb-invalidate.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-kbl4/igt@perf@gen12-oa-tlb-invalidate.html - shard-glk: [SKIP][111] ([fdo#109271]) -> [SKIP][112] ([fdo#109271] / [i915#1354]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-glk6/igt@perf@gen12-oa-tlb-invalidate.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-glk5/igt@perf@gen12-oa-tlb-invalidate.html - shard-apl: [SKIP][113] ([fdo#109271] / [i915#1635]) -> [SKIP][114] ([fdo#109271] / [i915#1354] / [i915#1635]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-apl7/igt@perf@gen12-oa-tlb-invalidate.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-apl4/igt@perf@gen12-oa-tlb-invalidate.html - shard-iclb: [SKIP][115] ([fdo#109289]) -> [SKIP][116] ([i915#1354]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-iclb2/igt@perf@gen12-oa-tlb-invalidate.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-iclb8/igt@perf@gen12-oa-tlb-invalidate.html * igt@runner@aborted: - shard-hsw: [FAIL][117] ([i915#2295] / [i915#2439]) -> [FAIL][118] ([i915#2295]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-hsw8/igt@runner@aborted.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-hsw2/igt@runner@aborted.html - shard-kbl: [FAIL][119] ([i915#1611] / [i915#2295] / [i915#2439] / [i915#483]) -> ([FAIL][120], [FAIL][121], [FAIL][122]) ([i915#1436] / [i915#1611] / [i915#1784] / [i915#1814] / [i915#2295] / [i915#2426] / [i915#2439] / [i915#483] / [i915#602]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-kbl1/igt@runner@aborted.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-kbl7/igt@runner@aborted.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-kbl7/igt@runner@aborted.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-kbl4/igt@runner@aborted.html - shard-iclb: ([FAIL][123], [FAIL][124]) ([i915#2295] / [i915#2439] / [i915#483]) -> ([FAIL][125], [FAIL][126], [FAIL][127]) ([i915#1814] / [i915#2295] / [i915#2439] / [i915#483]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-iclb6/igt@runner@aborted.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-iclb4/igt@runner@aborted.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-iclb3/igt@runner@aborted.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-iclb3/igt@runner@aborted.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-iclb5/igt@runner@aborted.html - shard-apl: ([FAIL][128], [FAIL][129]) ([i915#1611] / [i915#1635] / [i915#2295] / [i915#2439]) -> ([FAIL][130], [FAIL][131]) ([i915#1611] / [i915#1635] / [i915#1814] / [i915#2295] / [i915#2439]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-apl6/igt@runner@aborted.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-apl7/igt@runner@aborted.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-apl8/igt@runner@aborted.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-apl7/igt@runner@aborted.html - shard-glk: ([FAIL][132], [FAIL][133]) ([i915#1611] / [i915#2295] / [i915#2439] / [i915#86] / [k.org#202321]) -> ([FAIL][134], [FAIL][135]) ([i915#1611] / [i915#1814] / [i915#2295] / [i915#2439] / [k.org#202321]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-glk4/igt@runner@aborted.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-glk8/igt@runner@aborted.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-glk2/igt@runner@aborted.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-glk2/igt@runner@aborted.html - shard-tglb: ([FAIL][136], [FAIL][137]) ([i915#2295] / [i915#2439]) -> ([FAIL][138], [FAIL][139], [FAIL][140]) ([i915#1602] / [i915#2295] / [i915#2439]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-tglb6/igt@runner@aborted.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9343/shard-tglb3/igt@runner@aborted.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-tglb8/igt@runner@aborted.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-tglb6/igt@runner@aborted.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/shard-tglb3/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#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [i915#1037]: https://gitlab.freedesktop.org/drm/intel/issues/1037 [i915#1078]: https://gitlab.freedesktop.org/drm/intel/issues/1078 [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#165]: https://gitlab.freedesktop.org/drm/intel/issues/165 [i915#1784]: https://gitlab.freedesktop.org/drm/intel/issues/1784 [i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814 [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888 [i915#1895]: https://gitlab.freedesktop.org/drm/intel/issues/1895 [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#2283]: https://gitlab.freedesktop.org/drm/intel/issues/2283 [i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2369]: https://gitlab.freedesktop.org/drm/intel/issues/2369 [i915#2405]: https://gitlab.freedesktop.org/drm/intel/issues/2405 [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 [i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426 [i915#2439]: https://gitlab.freedesktop.org/drm/intel/issues/2439 [i915#2472]: https://gitlab.freedesktop.org/drm/intel/issues/2472 [i915#2502]: https://gitlab.freedesktop.org/drm/intel/issues/2502 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2546]: https://gitlab.freedesktop.org/drm/intel/issues/2546 [i915#2597]: https://gitlab.freedesktop.org/drm/intel/issues/2597 [i915#2598]: https://gitlab.freedesktop.org/drm/intel/issues/2598 [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#2640]: https://gitlab.freedesktop.org/drm/intel/issues/2640 [i915#2644]: https://gitlab.freedesktop.org/drm/intel/issues/2644 [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#602]: https://gitlab.freedesktop.org/drm/intel/issues/602 [i915#78]: https://gitlab.freedesktop.org/drm/intel/issues/78 [i915#794]: https://gitlab.freedesktop.org/drm/intel/issues/794 [i915#86]: https://gitlab.freedesktop.org/drm/intel/issues/86 [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_5175 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_9343: e1757932e1d12120875a6f468de2583f1842eb2e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_5175: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5175/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_5175/index.html [-- Attachment #1.2: Type: text/html, Size: 37880 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] 12+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for gem_wsim: Implement device selection (rev2) 2020-11-17 11:40 [igt-dev] [PATCH i-g-t] gem_wsim: Implement device selection Tvrtko Ursulin ` (4 preceding siblings ...) 2020-11-17 14:04 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork @ 2020-11-17 15:27 ` Patchwork 2020-11-17 17:56 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 6 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2020-11-17 15:27 UTC (permalink / raw) To: Tvrtko Ursulin; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 8181 bytes --] == Series Details == Series: gem_wsim: Implement device selection (rev2) URL : https://patchwork.freedesktop.org/series/83952/ State : success == Summary == CI Bug Log - changes from CI_DRM_9345 -> IGTPW_5178 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/index.html Known issues ------------ Here are the changes found in IGTPW_5178 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_rpm@basic-pci-d3-state: - fi-bsw-kefka: [PASS][1] -> [DMESG-WARN][2] ([i915#1982]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/fi-bsw-kefka/igt@i915_pm_rpm@basic-pci-d3-state.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/fi-bsw-kefka/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_pm_rpm@module-reload: - fi-byt-j1900: [PASS][3] -> [DMESG-WARN][4] ([i915#1982]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/fi-byt-j1900/igt@i915_pm_rpm@module-reload.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/fi-byt-j1900/igt@i915_pm_rpm@module-reload.html * igt@kms_busy@basic@flip: - fi-kbl-soraka: [PASS][5] -> [DMESG-WARN][6] ([i915#1982]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/fi-kbl-soraka/igt@kms_busy@basic@flip.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/fi-kbl-soraka/igt@kms_busy@basic@flip.html * igt@kms_chamelium@dp-crc-fast: - fi-icl-u2: [PASS][7] -> [FAIL][8] ([i915#1161] / [i915#262]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/fi-icl-u2/igt@kms_chamelium@dp-crc-fast.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/fi-icl-u2/igt@kms_chamelium@dp-crc-fast.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-kbl-r: [PASS][9] -> [DMESG-WARN][10] ([i915#1982]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/fi-kbl-r/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/fi-kbl-r/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-flip-before-cursor-legacy: - fi-icl-u2: [PASS][11] -> [DMESG-WARN][12] ([i915#1982]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/fi-icl-u2/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/fi-icl-u2/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html * igt@kms_pipe_crc_basic@read-crc-pipe-c: - fi-tgl-y: [PASS][13] -> [DMESG-WARN][14] ([i915#1982]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/fi-tgl-y/igt@kms_pipe_crc_basic@read-crc-pipe-c.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/fi-tgl-y/igt@kms_pipe_crc_basic@read-crc-pipe-c.html * igt@prime_vgem@basic-fence-flip: - fi-tgl-y: [PASS][15] -> [DMESG-WARN][16] ([i915#402]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/fi-tgl-y/igt@prime_vgem@basic-fence-flip.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/fi-tgl-y/igt@prime_vgem@basic-fence-flip.html #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - fi-tgl-u2: [DMESG-WARN][17] ([i915#1982]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/fi-tgl-u2/igt@core_hotunplug@unbind-rebind.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/fi-tgl-u2/igt@core_hotunplug@unbind-rebind.html - fi-blb-e6850: [INCOMPLETE][19] ([i915#2540]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/fi-blb-e6850/igt@core_hotunplug@unbind-rebind.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/fi-blb-e6850/igt@core_hotunplug@unbind-rebind.html * igt@gem_exec_suspend@basic-s3: - fi-cml-u2: [INCOMPLETE][21] ([i915#2369] / [i915#2473]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/fi-cml-u2/igt@gem_exec_suspend@basic-s3.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/fi-cml-u2/igt@gem_exec_suspend@basic-s3.html * igt@i915_module_load@reload: - {fi-ehl-1}: [DMESG-WARN][23] ([i915#1982]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/fi-ehl-1/igt@i915_module_load@reload.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/fi-ehl-1/igt@i915_module_load@reload.html * igt@i915_selftest@live@gt_pm: - {fi-kbl-7560u}: [DMESG-FAIL][25] ([i915#2524]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/fi-kbl-7560u/igt@i915_selftest@live@gt_pm.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/fi-kbl-7560u/igt@i915_selftest@live@gt_pm.html * igt@kms_chamelium@dp-crc-fast: - fi-kbl-7500u: [DMESG-WARN][27] ([i915#1982] / [i915#262]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-byt-j1900: [DMESG-WARN][29] ([i915#1982]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/fi-byt-j1900/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/fi-byt-j1900/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_flip@basic-flip-vs-dpms@b-edp1: - fi-tgl-y: [DMESG-WARN][31] ([i915#1982]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/fi-tgl-y/igt@kms_flip@basic-flip-vs-dpms@b-edp1.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/fi-tgl-y/igt@kms_flip@basic-flip-vs-dpms@b-edp1.html * {igt@prime_vgem@basic-userptr}: - fi-tgl-y: [DMESG-WARN][33] ([i915#402]) -> [PASS][34] +2 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/fi-tgl-y/igt@prime_vgem@basic-userptr.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/fi-tgl-y/igt@prime_vgem@basic-userptr.html #### Warnings #### * igt@i915_pm_rpm@basic-pci-d3-state: - fi-tgl-y: [DMESG-WARN][35] ([i915#1982] / [i915#2411]) -> [DMESG-WARN][36] ([i915#2411]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/fi-tgl-y/igt@i915_pm_rpm@basic-pci-d3-state.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/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#1161]: https://gitlab.freedesktop.org/drm/intel/issues/1161 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2369]: https://gitlab.freedesktop.org/drm/intel/issues/2369 [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 [i915#2473]: https://gitlab.freedesktop.org/drm/intel/issues/2473 [i915#2524]: https://gitlab.freedesktop.org/drm/intel/issues/2524 [i915#2540]: https://gitlab.freedesktop.org/drm/intel/issues/2540 [i915#262]: https://gitlab.freedesktop.org/drm/intel/issues/262 [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402 Participating hosts (46 -> 40) ------------------------------ Missing (6): fi-ilk-m540 fi-tgl-dsi fi-hsw-4200u fi-bsw-cyan fi-ctg-p8600 fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5855 -> IGTPW_5178 CI-20190529: 20190529 CI_DRM_9345: 8b69b30f1a2a0937e0f2bf06dae524205e77218a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_5178: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/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_5178/index.html [-- Attachment #1.2: Type: text/html, Size: 10157 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] 12+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for gem_wsim: Implement device selection (rev2) 2020-11-17 11:40 [igt-dev] [PATCH i-g-t] gem_wsim: Implement device selection Tvrtko Ursulin ` (5 preceding siblings ...) 2020-11-17 15:27 ` [igt-dev] ✓ Fi.CI.BAT: success for gem_wsim: Implement device selection (rev2) Patchwork @ 2020-11-17 17:56 ` Patchwork 6 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2020-11-17 17:56 UTC (permalink / raw) To: Tvrtko Ursulin; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 24412 bytes --] == Series Details == Series: gem_wsim: Implement device selection (rev2) URL : https://patchwork.freedesktop.org/series/83952/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9345_full -> IGTPW_5178_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_5178_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_5178_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_5178/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_5178_full: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_lpsp@screens-disabled: - shard-hsw: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-hsw8/igt@i915_pm_lpsp@screens-disabled.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-hsw2/igt@i915_pm_lpsp@screens-disabled.html * igt@sysfs_heartbeat_interval@precise@vecs0: - shard-glk: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-glk1/igt@sysfs_heartbeat_interval@precise@vecs0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-glk2/igt@sysfs_heartbeat_interval@precise@vecs0.html Known issues ------------ Here are the changes found in IGTPW_5178_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_9345/shard-snb4/igt@core_hotunplug@hotrebind-lateclose.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-snb2/igt@core_hotunplug@hotrebind-lateclose.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-tglb: [PASS][7] -> [FAIL][8] ([i915#2346]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-tglb1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-tglb1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic: - shard-iclb: [PASS][9] -> [DMESG-WARN][10] ([i915#1982]) +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-iclb3/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-iclb5/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html * igt@kms_dp_aux_dev: - shard-iclb: [PASS][11] -> [DMESG-WARN][12] ([i915#262]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-iclb7/igt@kms_dp_aux_dev.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-iclb7/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-xrgb8888-mmap-cpu-xtiled: - shard-glk: [PASS][13] -> [DMESG-WARN][14] ([i915#1982]) +3 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-glk8/igt@kms_draw_crc@draw-method-xrgb8888-mmap-cpu-xtiled.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-glk3/igt@kms_draw_crc@draw-method-xrgb8888-mmap-cpu-xtiled.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1: - shard-glk: [PASS][15] -> [FAIL][16] ([i915#2122]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-glk8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-glk2/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-apl: [PASS][17] -> [DMESG-WARN][18] ([i915#1635] / [i915#1982]) +2 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-apl8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-apl3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_hdr@bpc-switch-suspend: - shard-kbl: [PASS][19] -> [INCOMPLETE][20] ([i915#155]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-kbl6/igt@kms_hdr@bpc-switch-suspend.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-kbl4/igt@kms_hdr@bpc-switch-suspend.html - shard-apl: [PASS][21] -> [INCOMPLETE][22] ([i915#1635] / [i915#2635]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-apl6/igt@kms_hdr@bpc-switch-suspend.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-apl2/igt@kms_hdr@bpc-switch-suspend.html - shard-glk: [PASS][23] -> [INCOMPLETE][24] ([i915#2635]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-glk3/igt@kms_hdr@bpc-switch-suspend.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-glk4/igt@kms_hdr@bpc-switch-suspend.html - shard-iclb: [PASS][25] -> [INCOMPLETE][26] ([i915#1185] / [i915#1373]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-iclb2/igt@kms_hdr@bpc-switch-suspend.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-iclb2/igt@kms_hdr@bpc-switch-suspend.html - shard-hsw: [PASS][27] -> [DMESG-WARN][28] ([i915#2637]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-hsw1/igt@kms_hdr@bpc-switch-suspend.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-hsw2/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_plane@plane-position-hole-pipe-b-planes: - shard-kbl: [PASS][29] -> [FAIL][30] ([i915#2472]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-kbl6/igt@kms_plane@plane-position-hole-pipe-b-planes.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-kbl2/igt@kms_plane@plane-position-hole-pipe-b-planes.html - shard-apl: [PASS][31] -> [FAIL][32] ([i915#1635] / [i915#2472]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-apl2/igt@kms_plane@plane-position-hole-pipe-b-planes.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-apl8/igt@kms_plane@plane-position-hole-pipe-b-planes.html - shard-glk: [PASS][33] -> [FAIL][34] ([i915#2472]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-glk1/igt@kms_plane@plane-position-hole-pipe-b-planes.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-glk4/igt@kms_plane@plane-position-hole-pipe-b-planes.html * igt@kms_psr2_su@page_flip: - shard-iclb: [PASS][35] -> [SKIP][36] ([fdo#109642] / [fdo#111068]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-iclb2/igt@kms_psr2_su@page_flip.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-iclb8/igt@kms_psr2_su@page_flip.html * igt@kms_psr@psr2_sprite_blt: - shard-iclb: [PASS][37] -> [SKIP][38] ([fdo#109441]) +1 similar issue [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-iclb7/igt@kms_psr@psr2_sprite_blt.html * igt@kms_universal_plane@universal-plane-gen9-features-pipe-a: - shard-kbl: [PASS][39] -> [DMESG-WARN][40] ([i915#1982]) +3 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-kbl7/igt@kms_universal_plane@universal-plane-gen9-features-pipe-a.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-kbl1/igt@kms_universal_plane@universal-plane-gen9-features-pipe-a.html * igt@kms_vblank@pipe-d-wait-busy: - shard-tglb: [PASS][41] -> [DMESG-WARN][42] ([i915#1982]) +5 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-tglb3/igt@kms_vblank@pipe-d-wait-busy.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-tglb6/igt@kms_vblank@pipe-d-wait-busy.html * igt@perf_pmu@module-unload: - shard-hsw: [PASS][43] -> [DMESG-WARN][44] ([i915#1982] / [i915#262]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-hsw1/igt@perf_pmu@module-unload.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-hsw1/igt@perf_pmu@module-unload.html #### Possible fixes #### * igt@gem_eio@kms: - shard-snb: [INCOMPLETE][45] -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-snb6/igt@gem_eio@kms.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-snb5/igt@gem_eio@kms.html * igt@gem_exec_reloc@basic-softpin: - shard-hsw: [DMESG-WARN][47] ([i915#1982]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-hsw6/igt@gem_exec_reloc@basic-softpin.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-hsw2/igt@gem_exec_reloc@basic-softpin.html * igt@gem_exec_whisper@basic-fds: - shard-glk: [INCOMPLETE][49] -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-glk7/igt@gem_exec_whisper@basic-fds.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-glk7/igt@gem_exec_whisper@basic-fds.html * igt@gem_huc_copy@huc-copy: - shard-tglb: [SKIP][51] ([i915#2190]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-tglb6/igt@gem_huc_copy@huc-copy.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-tglb7/igt@gem_huc_copy@huc-copy.html * igt@gem_softpin@noreloc-s3: - shard-iclb: [INCOMPLETE][53] ([i915#1373] / [i915#2405]) -> [PASS][54] [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-iclb8/igt@gem_softpin@noreloc-s3.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-iclb4/igt@gem_softpin@noreloc-s3.html - shard-apl: [INCOMPLETE][55] ([i915#1635] / [i915#2405] / [i915#2635]) -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-apl3/igt@gem_softpin@noreloc-s3.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-apl7/igt@gem_softpin@noreloc-s3.html - shard-glk: [INCOMPLETE][57] ([i915#2199] / [i915#2405] / [i915#2635]) -> [PASS][58] [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-glk4/igt@gem_softpin@noreloc-s3.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-glk1/igt@gem_softpin@noreloc-s3.html - shard-hsw: [INCOMPLETE][59] ([i915#2405] / [i915#2637]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-hsw6/igt@gem_softpin@noreloc-s3.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-hsw4/igt@gem_softpin@noreloc-s3.html - shard-kbl: [INCOMPLETE][61] ([i915#2405]) -> [PASS][62] [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-kbl2/igt@gem_softpin@noreloc-s3.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-kbl4/igt@gem_softpin@noreloc-s3.html * igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-untiled: - shard-apl: [DMESG-WARN][63] ([i915#1635] / [i915#1982]) -> [PASS][64] +1 similar issue [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-apl3/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-untiled.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-apl2/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-untiled.html - shard-glk: [DMESG-WARN][65] ([i915#1982]) -> [PASS][66] +4 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-glk4/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-untiled.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-glk2/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-untiled.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1: - shard-tglb: [FAIL][67] ([i915#2598]) -> [PASS][68] [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-tglb1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-tglb7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html * igt@kms_frontbuffer_tracking@fbc-badstride: - shard-iclb: [DMESG-WARN][69] ([i915#1982]) -> [PASS][70] [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-badstride.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-badstride.html * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt: - shard-snb: [FAIL][71] ([i915#2546]) -> [PASS][72] [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-snb4/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-snb4/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary: - shard-kbl: [DMESG-WARN][73] ([i915#1982]) -> [PASS][74] +1 similar issue [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt: - shard-tglb: [DMESG-WARN][75] ([i915#1982]) -> [PASS][76] +3 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-tglb7/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-tglb1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html * igt@kms_hdmi_inject@inject-audio: - shard-tglb: [SKIP][77] ([i915#433]) -> [PASS][78] [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-tglb8/igt@kms_hdmi_inject@inject-audio.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-tglb6/igt@kms_hdmi_inject@inject-audio.html * igt@kms_plane@plane-position-hole-dpms-pipe-b-planes: - shard-kbl: [FAIL][79] ([i915#2472]) -> [PASS][80] [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-kbl1/igt@kms_plane@plane-position-hole-dpms-pipe-b-planes.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-kbl2/igt@kms_plane@plane-position-hole-dpms-pipe-b-planes.html - shard-apl: [FAIL][81] ([i915#1635] / [i915#2472]) -> [PASS][82] [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-apl7/igt@kms_plane@plane-position-hole-dpms-pipe-b-planes.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-apl6/igt@kms_plane@plane-position-hole-dpms-pipe-b-planes.html * igt@kms_psr@psr2_no_drrs: - shard-iclb: [SKIP][83] ([fdo#109441]) -> [PASS][84] [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-iclb3/igt@kms_psr@psr2_no_drrs.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-iclb2/igt@kms_psr@psr2_no_drrs.html * igt@perf@oa-exponents: - shard-tglb: [SKIP][85] ([i915#1354]) -> [PASS][86] [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-tglb7/igt@perf@oa-exponents.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-tglb8/igt@perf@oa-exponents.html - shard-apl: [SKIP][87] ([fdo#109271] / [i915#1354] / [i915#1635]) -> [PASS][88] [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-apl7/igt@perf@oa-exponents.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-apl3/igt@perf@oa-exponents.html - shard-kbl: [SKIP][89] ([fdo#109271] / [i915#1354]) -> [PASS][90] [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-kbl1/igt@perf@oa-exponents.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-kbl4/igt@perf@oa-exponents.html - shard-iclb: [SKIP][91] ([i915#1354]) -> [PASS][92] [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-iclb3/igt@perf@oa-exponents.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-iclb6/igt@perf@oa-exponents.html * igt@perf@polling-parameterized: - shard-hsw: [FAIL][93] ([i915#1542]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-hsw8/igt@perf@polling-parameterized.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-hsw4/igt@perf@polling-parameterized.html #### Warnings #### * igt@core_hotunplug@hotrebind-lateclose: - shard-hsw: [FAIL][95] ([i915#2644]) -> [WARN][96] ([i915#2283]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-hsw4/igt@core_hotunplug@hotrebind-lateclose.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-hsw1/igt@core_hotunplug@hotrebind-lateclose.html * igt@gem_softpin@noreloc-s3: - shard-tglb: [INCOMPLETE][97] ([i915#1373] / [i915#1436] / [i915#456]) -> [DMESG-WARN][98] ([i915#2411]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-tglb3/igt@gem_softpin@noreloc-s3.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-tglb6/igt@gem_softpin@noreloc-s3.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglb: [DMESG-WARN][99] ([i915#2411]) -> [INCOMPLETE][100] ([i915#1373] / [i915#1436]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-tglb3/igt@kms_hdr@bpc-switch-suspend.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-tglb7/igt@kms_hdr@bpc-switch-suspend.html * igt@runner@aborted: - shard-hsw: [FAIL][101] ([i915#2295] / [i915#2439]) -> [FAIL][102] ([i915#2295]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-hsw6/igt@runner@aborted.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-hsw2/igt@runner@aborted.html - shard-iclb: ([FAIL][103], [FAIL][104]) ([i915#2295] / [i915#2439] / [i915#483]) -> ([FAIL][105], [FAIL][106]) ([i915#1814] / [i915#2295] / [i915#2439] / [i915#483]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-iclb8/igt@runner@aborted.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-iclb2/igt@runner@aborted.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-iclb2/igt@runner@aborted.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-iclb6/igt@runner@aborted.html - shard-apl: ([FAIL][107], [FAIL][108]) ([i915#1611] / [i915#1635] / [i915#2295] / [i915#2439]) -> ([FAIL][109], [FAIL][110]) ([i915#1611] / [i915#1635] / [i915#1814] / [i915#2295] / [i915#2439]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-apl1/igt@runner@aborted.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-apl3/igt@runner@aborted.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-apl2/igt@runner@aborted.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-apl3/igt@runner@aborted.html - shard-glk: ([FAIL][111], [FAIL][112], [FAIL][113]) ([i915#1611] / [i915#2263] / [i915#2295] / [i915#2439] / [i915#86] / [k.org#202321]) -> ([FAIL][114], [FAIL][115]) ([i915#1611] / [i915#1814] / [i915#2295] / [i915#2439] / [k.org#202321]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-glk7/igt@runner@aborted.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-glk5/igt@runner@aborted.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-glk4/igt@runner@aborted.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-glk8/igt@runner@aborted.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-glk4/igt@runner@aborted.html - shard-tglb: ([FAIL][116], [FAIL][117]) ([i915#2295] / [i915#2439]) -> ([FAIL][118], [FAIL][119]) ([i915#1814] / [i915#2295] / [i915#2439]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-tglb3/igt@runner@aborted.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9345/shard-tglb7/igt@runner@aborted.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-tglb7/igt@runner@aborted.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/shard-tglb6/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#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#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#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542 [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155 [i915#1611]: https://gitlab.freedesktop.org/drm/intel/issues/1611 [i915#1635]: https://gitlab.freedesktop.org/drm/intel/issues/1635 [i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2199]: https://gitlab.freedesktop.org/drm/intel/issues/2199 [i915#2263]: https://gitlab.freedesktop.org/drm/intel/issues/2263 [i915#2283]: https://gitlab.freedesktop.org/drm/intel/issues/2283 [i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [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#2546]: https://gitlab.freedesktop.org/drm/intel/issues/2546 [i915#2597]: https://gitlab.freedesktop.org/drm/intel/issues/2597 [i915#2598]: https://gitlab.freedesktop.org/drm/intel/issues/2598 [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#2644]: https://gitlab.freedesktop.org/drm/intel/issues/2644 [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#86]: https://gitlab.freedesktop.org/drm/intel/issues/86 [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_5178 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_9345: 8b69b30f1a2a0937e0f2bf06dae524205e77218a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_5178: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5178/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_5178/index.html [-- Attachment #1.2: Type: text/html, Size: 30775 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] 12+ messages in thread
end of thread, other threads:[~2020-11-18 11:56 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-11-17 11:40 [igt-dev] [PATCH i-g-t] gem_wsim: Implement device selection Tvrtko Ursulin 2020-11-17 11:51 ` [Intel-gfx] " Chris Wilson 2020-11-17 12:14 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2020-11-17 12:18 ` [Intel-gfx] [PATCH i-g-t] " Chris Wilson 2020-11-17 12:33 ` Tvrtko Ursulin 2020-11-17 12:37 ` [igt-dev] " Chris Wilson 2020-11-17 13:59 ` [igt-dev] [PATCH i-g-t v2] " Tvrtko Ursulin 2020-11-17 14:06 ` Chris Wilson 2020-11-18 11:56 ` Tvrtko Ursulin 2020-11-17 14:04 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork 2020-11-17 15:27 ` [igt-dev] ✓ Fi.CI.BAT: success for gem_wsim: Implement device selection (rev2) Patchwork 2020-11-17 17:56 ` [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