* [igt-dev] [PATCH i-g-t 1/2] i915/gem_exec_whisper: Reopen existing device
@ 2020-11-05 0:21 Chris Wilson
2020-11-05 0:21 ` [igt-dev] [PATCH i-g-t 2/2] i915/gem_ctx_thrash: Reopen the same device Chris Wilson
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Chris Wilson @ 2020-11-05 0:21 UTC (permalink / raw)
To: intel-gfx; +Cc: igt-dev, Chris Wilson
Reopen the existing device, rather than relying on the filtering in
drm_open_driver().
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
---
tests/i915/gem_exec_whisper.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/tests/i915/gem_exec_whisper.c b/tests/i915/gem_exec_whisper.c
index 9acf6c306..b63d791d1 100644
--- a/tests/i915/gem_exec_whisper.c
+++ b/tests/i915/gem_exec_whisper.c
@@ -87,12 +87,12 @@ struct hang {
int fd;
};
-static void init_hang(struct hang *h)
+static void init_hang(struct hang *h, int fd)
{
uint32_t *batch;
int i, gen;
- h->fd = drm_open_driver(DRIVER_INTEL);
+ h->fd = gem_reopen_driver(fd);
igt_allow_hang(h->fd, 0, 0);
gen = intel_gen(intel_get_drm_devid(h->fd));
@@ -224,7 +224,7 @@ static void whisper(int fd, unsigned engine, unsigned flags)
igt_require(gem_has_queues(fd));
if (flags & HANG)
- init_hang(&hang);
+ init_hang(&hang, fd);
nchild = 1;
if (flags & FORKED)
@@ -304,7 +304,7 @@ static void whisper(int fd, unsigned engine, unsigned flags)
}
if (flags & FDS) {
for (n = 0; n < 64; n++)
- fds[n] = drm_open_driver(DRIVER_INTEL);
+ fds[n] = gem_reopen_driver(fd);
}
memset(batches, 0, sizeof(batches));
--
2.29.2
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 6+ messages in thread* [igt-dev] [PATCH i-g-t 2/2] i915/gem_ctx_thrash: Reopen the same device 2020-11-05 0:21 [igt-dev] [PATCH i-g-t 1/2] i915/gem_exec_whisper: Reopen existing device Chris Wilson @ 2020-11-05 0:21 ` Chris Wilson 2020-11-05 1:51 ` [igt-dev] [Intel-gfx] " Dixit, Ashutosh 2020-11-05 1:25 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] i915/gem_exec_whisper: Reopen existing device Patchwork ` (2 subsequent siblings) 3 siblings, 1 reply; 6+ messages in thread From: Chris Wilson @ 2020-11-05 0:21 UTC (permalink / raw) To: intel-gfx; +Cc: igt-dev, Chris Wilson Use gem_reopen_driver() to always reopen the same device without relying on the filtering in drm_open_driver(). Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> --- tests/i915/gem_ctx_thrash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/i915/gem_ctx_thrash.c b/tests/i915/gem_ctx_thrash.c index d32619d5d..d9ddd6689 100644 --- a/tests/i915/gem_ctx_thrash.c +++ b/tests/i915/gem_ctx_thrash.c @@ -250,7 +250,7 @@ static void processes(void) fds = malloc(num_ctx * sizeof(int)); igt_assert(fds); for (unsigned n = 0; n < num_ctx; n++) { - fds[n] = drm_open_driver(DRIVER_INTEL); + fds[n] = gem_reopen_driver(fd); if (fds[n] == -1) { int err = errno; for (unsigned i = n; i--; ) -- 2.29.2 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [igt-dev] [Intel-gfx] [PATCH i-g-t 2/2] i915/gem_ctx_thrash: Reopen the same device 2020-11-05 0:21 ` [igt-dev] [PATCH i-g-t 2/2] i915/gem_ctx_thrash: Reopen the same device Chris Wilson @ 2020-11-05 1:51 ` Dixit, Ashutosh 0 siblings, 0 replies; 6+ messages in thread From: Dixit, Ashutosh @ 2020-11-05 1:51 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev, intel-gfx On Wed, 04 Nov 2020 16:21:24 -0800, Chris Wilson wrote: > > Use gem_reopen_driver() to always reopen the same device without relying > on the filtering in drm_open_driver(). Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com> > Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> > --- > tests/i915/gem_ctx_thrash.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/i915/gem_ctx_thrash.c b/tests/i915/gem_ctx_thrash.c > index d32619d5d..d9ddd6689 100644 > --- a/tests/i915/gem_ctx_thrash.c > +++ b/tests/i915/gem_ctx_thrash.c > @@ -250,7 +250,7 @@ static void processes(void) > fds = malloc(num_ctx * sizeof(int)); > igt_assert(fds); > for (unsigned n = 0; n < num_ctx; n++) { > - fds[n] = drm_open_driver(DRIVER_INTEL); > + fds[n] = gem_reopen_driver(fd); > if (fds[n] == -1) { > int err = errno; > for (unsigned i = n; i--; ) _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] i915/gem_exec_whisper: Reopen existing device 2020-11-05 0:21 [igt-dev] [PATCH i-g-t 1/2] i915/gem_exec_whisper: Reopen existing device Chris Wilson 2020-11-05 0:21 ` [igt-dev] [PATCH i-g-t 2/2] i915/gem_ctx_thrash: Reopen the same device Chris Wilson @ 2020-11-05 1:25 ` Patchwork 2020-11-05 1:49 ` [igt-dev] [Intel-gfx] [PATCH i-g-t 1/2] " Dixit, Ashutosh 2020-11-05 4:35 ` [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] " Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2020-11-05 1:25 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 5415 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] i915/gem_exec_whisper: Reopen existing device URL : https://patchwork.freedesktop.org/series/83516/ State : success == Summary == CI Bug Log - changes from IGT_5833 -> IGTPW_5131 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/index.html Known issues ------------ Here are the changes found in IGTPW_5131 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/IGT_5833/fi-bsw-kefka/igt@i915_pm_rpm@basic-pci-d3-state.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/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/IGT_5833/fi-byt-j1900/igt@i915_pm_rpm@module-reload.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/fi-byt-j1900/igt@i915_pm_rpm@module-reload.html - fi-kbl-guc: [PASS][5] -> [SKIP][6] ([fdo#109271]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@active: - fi-bsw-n3050: [PASS][7] -> [DMESG-FAIL][8] ([i915#541]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-bsw-n3050/igt@i915_selftest@live@active.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/fi-bsw-n3050/igt@i915_selftest@live@active.html #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - fi-tgl-u2: [DMESG-WARN][9] ([i915#1982]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-tgl-u2/igt@core_hotunplug@unbind-rebind.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/fi-tgl-u2/igt@core_hotunplug@unbind-rebind.html * igt@debugfs_test@read_all_entries: - fi-bsw-nick: [INCOMPLETE][11] ([i915#1250] / [i915#1436]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-bsw-nick/igt@debugfs_test@read_all_entries.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/fi-bsw-nick/igt@debugfs_test@read_all_entries.html * igt@i915_module_load@reload: - fi-icl-u2: [DMESG-WARN][13] ([i915#1982]) -> [PASS][14] +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-icl-u2/igt@i915_module_load@reload.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/fi-icl-u2/igt@i915_module_load@reload.html - fi-byt-j1900: [DMESG-WARN][15] ([i915#1982]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-byt-j1900/igt@i915_module_load@reload.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/fi-byt-j1900/igt@i915_module_load@reload.html * igt@i915_pm_rpm@basic-pci-d3-state: - {fi-ehl-1}: [DMESG-WARN][17] ([i915#1982]) -> [PASS][18] +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-ehl-1/igt@i915_pm_rpm@basic-pci-d3-state.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/fi-ehl-1/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@kms_chamelium@dp-crc-fast: - fi-kbl-7500u: [FAIL][19] ([i915#1161] / [i915#262]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1161]: https://gitlab.freedesktop.org/drm/intel/issues/1161 [i915#1250]: https://gitlab.freedesktop.org/drm/intel/issues/1250 [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436 [i915#1784]: https://gitlab.freedesktop.org/drm/intel/issues/1784 [i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 [i915#2417]: https://gitlab.freedesktop.org/drm/intel/issues/2417 [i915#2439]: https://gitlab.freedesktop.org/drm/intel/issues/2439 [i915#262]: https://gitlab.freedesktop.org/drm/intel/issues/262 [i915#541]: https://gitlab.freedesktop.org/drm/intel/issues/541 Participating hosts (44 -> 40) ------------------------------ Missing (4): fi-ctg-p8600 fi-bsw-cyan fi-bdw-samus fi-hsw-4200u Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5833 -> IGTPW_5131 CI-20190529: 20190529 CI_DRM_9265: 4152d4ab08d937cfb9254d0e880f1daea64db549 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_5131: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/index.html IGT_5833: 212e55b9aa9e98a3ef63f37a50fd5b69761fbecd @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/index.html [-- Attachment #1.2: Type: text/html, Size: 6246 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] 6+ messages in thread
* Re: [igt-dev] [Intel-gfx] [PATCH i-g-t 1/2] i915/gem_exec_whisper: Reopen existing device 2020-11-05 0:21 [igt-dev] [PATCH i-g-t 1/2] i915/gem_exec_whisper: Reopen existing device Chris Wilson 2020-11-05 0:21 ` [igt-dev] [PATCH i-g-t 2/2] i915/gem_ctx_thrash: Reopen the same device Chris Wilson 2020-11-05 1:25 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] i915/gem_exec_whisper: Reopen existing device Patchwork @ 2020-11-05 1:49 ` Dixit, Ashutosh 2020-11-05 4:35 ` [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] " Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Dixit, Ashutosh @ 2020-11-05 1:49 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev, intel-gfx On Wed, 04 Nov 2020 16:21:23 -0800, Chris Wilson wrote: > > Reopen the existing device, rather than relying on the filtering in > drm_open_driver(). Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com> > Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> > --- > tests/i915/gem_exec_whisper.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/tests/i915/gem_exec_whisper.c b/tests/i915/gem_exec_whisper.c > index 9acf6c306..b63d791d1 100644 > --- a/tests/i915/gem_exec_whisper.c > +++ b/tests/i915/gem_exec_whisper.c > @@ -87,12 +87,12 @@ struct hang { > int fd; > }; > > -static void init_hang(struct hang *h) > +static void init_hang(struct hang *h, int fd) > { > uint32_t *batch; > int i, gen; > > - h->fd = drm_open_driver(DRIVER_INTEL); > + h->fd = gem_reopen_driver(fd); > igt_allow_hang(h->fd, 0, 0); > > gen = intel_gen(intel_get_drm_devid(h->fd)); > @@ -224,7 +224,7 @@ static void whisper(int fd, unsigned engine, unsigned flags) > igt_require(gem_has_queues(fd)); > > if (flags & HANG) > - init_hang(&hang); > + init_hang(&hang, fd); > > nchild = 1; > if (flags & FORKED) > @@ -304,7 +304,7 @@ static void whisper(int fd, unsigned engine, unsigned flags) > } > if (flags & FDS) { > for (n = 0; n < 64; n++) > - fds[n] = drm_open_driver(DRIVER_INTEL); > + fds[n] = gem_reopen_driver(fd); > } > > memset(batches, 0, sizeof(batches)); _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] i915/gem_exec_whisper: Reopen existing device 2020-11-05 0:21 [igt-dev] [PATCH i-g-t 1/2] i915/gem_exec_whisper: Reopen existing device Chris Wilson ` (2 preceding siblings ...) 2020-11-05 1:49 ` [igt-dev] [Intel-gfx] [PATCH i-g-t 1/2] " Dixit, Ashutosh @ 2020-11-05 4:35 ` Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2020-11-05 4:35 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 22307 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] i915/gem_exec_whisper: Reopen existing device URL : https://patchwork.freedesktop.org/series/83516/ State : failure == Summary == CI Bug Log - changes from IGT_5833_full -> IGTPW_5131_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_5131_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_5131_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_5131/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_5131_full: ### IGT changes ### #### Possible regressions #### * igt@gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-hsw: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-hsw4/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-hsw7/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html Known issues ------------ Here are the changes found in IGTPW_5131_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@hotrebind-lateclose: - shard-snb: [PASS][3] -> [INCOMPLETE][4] ([i915#82]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-snb7/igt@core_hotunplug@hotrebind-lateclose.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-snb7/igt@core_hotunplug@hotrebind-lateclose.html * igt@device_reset@unbind-reset-rebind: - shard-glk: [PASS][5] -> [INCOMPLETE][6] ([i915#2283]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-glk8/igt@device_reset@unbind-reset-rebind.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-glk3/igt@device_reset@unbind-reset-rebind.html - shard-apl: [PASS][7] -> [INCOMPLETE][8] ([i915#1635] / [i915#2283]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-apl4/igt@device_reset@unbind-reset-rebind.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-apl1/igt@device_reset@unbind-reset-rebind.html - shard-kbl: [PASS][9] -> [INCOMPLETE][10] ([i915#2283]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-kbl7/igt@device_reset@unbind-reset-rebind.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-kbl2/igt@device_reset@unbind-reset-rebind.html * igt@gem_exec_whisper@basic-fds-all: - shard-hsw: [PASS][11] -> [FAIL][12] ([i915#1888]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-hsw2/igt@gem_exec_whisper@basic-fds-all.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-hsw7/igt@gem_exec_whisper@basic-fds-all.html * igt@gem_huc_copy@huc-copy: - shard-tglb: [PASS][13] -> [SKIP][14] ([i915#2190]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-tglb1/igt@gem_huc_copy@huc-copy.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-tglb6/igt@gem_huc_copy@huc-copy.html * igt@i915_pm_rpm@cursor: - shard-kbl: [PASS][15] -> [SKIP][16] ([fdo#109271]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-kbl6/igt@i915_pm_rpm@cursor.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-kbl2/igt@i915_pm_rpm@cursor.html - shard-hsw: [PASS][17] -> [SKIP][18] ([fdo#109271]) +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-hsw8/igt@i915_pm_rpm@cursor.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-hsw2/igt@i915_pm_rpm@cursor.html - shard-iclb: [PASS][19] -> [SKIP][20] ([i915#579]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-iclb8/igt@i915_pm_rpm@cursor.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-iclb1/igt@i915_pm_rpm@cursor.html - shard-glk: [PASS][21] -> [SKIP][22] ([fdo#109271]) +1 similar issue [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-glk6/igt@i915_pm_rpm@cursor.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-glk3/igt@i915_pm_rpm@cursor.html - shard-apl: [PASS][23] -> [SKIP][24] ([fdo#109271] / [i915#1635]) +1 similar issue [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-apl7/igt@i915_pm_rpm@cursor.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-apl1/igt@i915_pm_rpm@cursor.html * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - shard-kbl: [PASS][25] -> [DMESG-WARN][26] ([i915#1982]) +3 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-kbl3/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-kbl2/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-glk: [PASS][27] -> [DMESG-WARN][28] ([i915#1982]) +7 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-glk8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-glk7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt: - shard-apl: [PASS][29] -> [DMESG-WARN][30] ([i915#1635] / [i915#1982]) +5 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-apl8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-iclb: [PASS][31] -> [INCOMPLETE][32] ([i915#1185] / [i915#123]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render: - shard-tglb: [PASS][33] -> [DMESG-WARN][34] ([i915#1982]) +2 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-tglb6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-tglb5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_psr@psr2_primary_page_flip: - shard-iclb: [PASS][35] -> [SKIP][36] ([fdo#109441]) +1 similar issue [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-iclb7/igt@kms_psr@psr2_primary_page_flip.html * igt@kms_universal_plane@universal-plane-pipe-b-functional: - shard-glk: [PASS][37] -> [FAIL][38] ([i915#331]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-glk1/igt@kms_universal_plane@universal-plane-pipe-b-functional.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-glk7/igt@kms_universal_plane@universal-plane-pipe-b-functional.html - shard-apl: [PASS][39] -> [FAIL][40] ([i915#1635] / [i915#331]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-apl4/igt@kms_universal_plane@universal-plane-pipe-b-functional.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-apl2/igt@kms_universal_plane@universal-plane-pipe-b-functional.html - shard-kbl: [PASS][41] -> [FAIL][42] ([i915#331]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-kbl7/igt@kms_universal_plane@universal-plane-pipe-b-functional.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-kbl1/igt@kms_universal_plane@universal-plane-pipe-b-functional.html * igt@kms_vblank@pipe-c-query-idle-hang: - shard-kbl: [PASS][43] -> [DMESG-WARN][44] ([i915#78]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-kbl3/igt@kms_vblank@pipe-c-query-idle-hang.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-kbl2/igt@kms_vblank@pipe-c-query-idle-hang.html * igt@syncobj_wait@single-wait-signaled: - shard-hsw: [PASS][45] -> [DMESG-WARN][46] ([i915#1982]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-hsw7/igt@syncobj_wait@single-wait-signaled.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-hsw6/igt@syncobj_wait@single-wait-signaled.html #### Possible fixes #### * igt@drm_read@short-buffer-wakeup: - shard-kbl: [INCOMPLETE][47] -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-kbl3/igt@drm_read@short-buffer-wakeup.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-kbl3/igt@drm_read@short-buffer-wakeup.html * igt@gem_caching@writes: - shard-snb: [INCOMPLETE][49] ([i915#82]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-snb7/igt@gem_caching@writes.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-snb7/igt@gem_caching@writes.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [FAIL][51] ([i915#454]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-iclb6/igt@i915_pm_dc@dc6-psr.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-iclb3/igt@i915_pm_dc@dc6-psr.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-hsw: [DMESG-WARN][53] ([i915#1982]) -> [PASS][54] [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-hsw6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-hsw8/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp1: - shard-kbl: [DMESG-WARN][55] ([i915#1982]) -> [PASS][56] +4 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-kbl3/igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp1.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-kbl2/igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp1.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1: - shard-tglb: [FAIL][57] ([i915#2122]) -> [PASS][58] [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-tglb3/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-tglb6/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-tglb: [FAIL][59] ([i915#2598]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-tglb5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-tglb7/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_flip@flip-vs-suspend@b-vga1: - shard-snb: [DMESG-WARN][61] ([i915#42]) -> [PASS][62] [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-snb2/igt@kms_flip@flip-vs-suspend@b-vga1.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-snb7/igt@kms_flip@flip-vs-suspend@b-vga1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-tglb: [DMESG-WARN][63] ([i915#1982]) -> [PASS][64] +2 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite: - shard-snb: [FAIL][65] ([i915#2546]) -> [PASS][66] [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-snb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-snb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_hdmi_inject@inject-audio: - shard-tglb: [SKIP][67] ([i915#433]) -> [PASS][68] [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-tglb2/igt@kms_hdmi_inject@inject-audio.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-tglb6/igt@kms_hdmi_inject@inject-audio.html * igt@kms_plane_cursor@pipe-b-overlay-size-256: - shard-apl: [DMESG-WARN][69] ([i915#1635] / [i915#1982]) -> [PASS][70] +6 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-apl2/igt@kms_plane_cursor@pipe-b-overlay-size-256.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-apl2/igt@kms_plane_cursor@pipe-b-overlay-size-256.html * igt@kms_plane_lowres@pipe-a-tiling-none: - shard-glk: [FAIL][71] ([i915#899]) -> [PASS][72] [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-glk5/igt@kms_plane_lowres@pipe-a-tiling-none.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-glk6/igt@kms_plane_lowres@pipe-a-tiling-none.html * igt@kms_plane_scaling@pipe-a-scaler-with-clipping-clamping: - shard-glk: [DMESG-WARN][73] ([i915#1982]) -> [PASS][74] +4 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-glk4/igt@kms_plane_scaling@pipe-a-scaler-with-clipping-clamping.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-glk3/igt@kms_plane_scaling@pipe-a-scaler-with-clipping-clamping.html * igt@kms_psr2_su@page_flip: - shard-iclb: [SKIP][75] ([fdo#109642] / [fdo#111068]) -> [PASS][76] [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-iclb7/igt@kms_psr2_su@page_flip.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-iclb2/igt@kms_psr2_su@page_flip.html * igt@kms_psr@psr2_primary_mmap_gtt: - shard-iclb: [SKIP][77] ([fdo#109441]) -> [PASS][78] [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-iclb4/igt@kms_psr@psr2_primary_mmap_gtt.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-iclb2/igt@kms_psr@psr2_primary_mmap_gtt.html * igt@perf@polling-parameterized: - shard-glk: [SKIP][79] ([fdo#109271] / [i915#1354]) -> [PASS][80] +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-glk6/igt@perf@polling-parameterized.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-glk1/igt@perf@polling-parameterized.html - shard-iclb: [SKIP][81] ([i915#1354]) -> [PASS][82] +1 similar issue [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-iclb6/igt@perf@polling-parameterized.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-iclb8/igt@perf@polling-parameterized.html * igt@perf@polling-small-buf: - shard-tglb: [SKIP][83] ([i915#1354]) -> [PASS][84] +1 similar issue [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-tglb5/igt@perf@polling-small-buf.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-tglb6/igt@perf@polling-small-buf.html - shard-apl: [SKIP][85] ([fdo#109271] / [i915#1354] / [i915#1635]) -> [PASS][86] +1 similar issue [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-apl2/igt@perf@polling-small-buf.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-apl2/igt@perf@polling-small-buf.html - shard-kbl: [SKIP][87] ([fdo#109271] / [i915#1354]) -> [PASS][88] +1 similar issue [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-kbl2/igt@perf@polling-small-buf.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-kbl1/igt@perf@polling-small-buf.html - shard-hsw: [SKIP][89] ([fdo#109271]) -> [PASS][90] +1 similar issue [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-hsw1/igt@perf@polling-small-buf.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-hsw8/igt@perf@polling-small-buf.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-hsw: [WARN][91] ([i915#2283]) -> [INCOMPLETE][92] ([i915#2283]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-hsw6/igt@device_reset@unbind-reset-rebind.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-hsw2/igt@device_reset@unbind-reset-rebind.html * igt@i915_pm_rpm@cursor: - shard-tglb: [DMESG-WARN][93] ([i915#2411]) -> [SKIP][94] ([i915#579]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-tglb8/igt@i915_pm_rpm@cursor.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-tglb6/igt@i915_pm_rpm@cursor.html * igt@kms_dp_dsc@basic-dsc-enable-edp: - shard-iclb: [DMESG-WARN][95] ([i915#1226]) -> [SKIP][96] ([fdo#109349]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-iclb5/igt@kms_dp_dsc@basic-dsc-enable-edp.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-tglb: [DMESG-WARN][97] ([i915#2411]) -> [INCOMPLETE][98] ([i915#1436] / [i915#456]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_plane_alpha_blend@pipe-b-alpha-basic: - shard-glk: [FAIL][99] ([fdo#108145] / [i915#265]) -> [DMESG-FAIL][100] ([fdo#108145] / [i915#1982]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-glk5/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-glk7/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html - shard-apl: [FAIL][101] ([fdo#108145] / [i915#1635] / [i915#265]) -> [DMESG-FAIL][102] ([fdo#108145] / [i915#1635] / [i915#1982]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-apl6/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html * igt@runner@aborted: - shard-glk: [FAIL][103] ([i915#1611] / [i915#1814] / [k.org#202321]) -> [FAIL][104] ([i915#483] / [k.org#202321]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-glk8/igt@runner@aborted.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/shard-glk3/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#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349 [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#1185]: https://gitlab.freedesktop.org/drm/intel/issues/1185 [i915#1226]: https://gitlab.freedesktop.org/drm/intel/issues/1226 [i915#123]: https://gitlab.freedesktop.org/drm/intel/issues/123 [i915#1354]: https://gitlab.freedesktop.org/drm/intel/issues/1354 [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436 [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#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888 [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#2283]: https://gitlab.freedesktop.org/drm/intel/issues/2283 [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2546]: https://gitlab.freedesktop.org/drm/intel/issues/2546 [i915#2598]: https://gitlab.freedesktop.org/drm/intel/issues/2598 [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265 [i915#331]: https://gitlab.freedesktop.org/drm/intel/issues/331 [i915#42]: https://gitlab.freedesktop.org/drm/intel/issues/42 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#456]: https://gitlab.freedesktop.org/drm/intel/issues/456 [i915#483]: https://gitlab.freedesktop.org/drm/intel/issues/483 [i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579 [i915#78]: https://gitlab.freedesktop.org/drm/intel/issues/78 [i915#82]: https://gitlab.freedesktop.org/drm/intel/issues/82 [i915#899]: https://gitlab.freedesktop.org/drm/intel/issues/899 [k.org#202321]: https://bugzilla.kernel.org/show_bug.cgi?id=202321 Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5833 -> IGTPW_5131 CI-20190529: 20190529 CI_DRM_9265: 4152d4ab08d937cfb9254d0e880f1daea64db549 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_5131: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/index.html IGT_5833: 212e55b9aa9e98a3ef63f37a50fd5b69761fbecd @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5131/index.html [-- Attachment #1.2: Type: text/html, Size: 26902 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] 6+ messages in thread
end of thread, other threads:[~2020-11-05 4:35 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-11-05 0:21 [igt-dev] [PATCH i-g-t 1/2] i915/gem_exec_whisper: Reopen existing device Chris Wilson 2020-11-05 0:21 ` [igt-dev] [PATCH i-g-t 2/2] i915/gem_ctx_thrash: Reopen the same device Chris Wilson 2020-11-05 1:51 ` [igt-dev] [Intel-gfx] " Dixit, Ashutosh 2020-11-05 1:25 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] i915/gem_exec_whisper: Reopen existing device Patchwork 2020-11-05 1:49 ` [igt-dev] [Intel-gfx] [PATCH i-g-t 1/2] " Dixit, Ashutosh 2020-11-05 4:35 ` [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox