* [igt-dev] [PATCH i-g-t] i915/gem_mocs_settings: Fudge gen11:vcs2 mocs register base
@ 2019-08-13 16:13 Chris Wilson
2019-08-13 17:15 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2019-08-14 4:23 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
0 siblings, 2 replies; 3+ messages in thread
From: Chris Wilson @ 2019-08-13 16:13 UTC (permalink / raw)
To: intel-gfx; +Cc: igt-dev
On gen11 CI, we have vcs2 available which has a different base to gen9
vcs1. Gloss over the discrepancy while a proper fix is sought.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=111330
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
---
tests/i915/gem_mocs_settings.c | 28 ++++++++++++++++++++++------
1 file changed, 22 insertions(+), 6 deletions(-)
diff --git a/tests/i915/gem_mocs_settings.c b/tests/i915/gem_mocs_settings.c
index 3ad941491..06240877e 100644
--- a/tests/i915/gem_mocs_settings.c
+++ b/tests/i915/gem_mocs_settings.c
@@ -62,6 +62,7 @@ static const char * const test_modes[] = {
#define GEN9_MFX0_MOCS_0 (0xc900) /* Media 0 MOCS base register*/
#define GEN9_MFX1_MOCS_0 (0xcA00) /* Media 1 MOCS base register*/
#define GEN9_VEBOX_MOCS_0 (0xcB00) /* Video MOCS base register*/
+#define GEN11_MFX2_MOCS_0 (0x10000)
#define GEN9_BLT_MOCS_0 (0xcc00) /* Blitter MOCS base register*/
#define GEN12_GLOBAL_MOCS (0x4000)
#define ICELAKE_MOCS_PTE {0x00000004, 0x0030, 0x1}
@@ -216,12 +217,27 @@ static uint32_t get_engine_base(int fd, uint32_t engine)
return GEN12_GLOBAL_MOCS;
switch (engine) {
- case LOCAL_I915_EXEC_BSD1: return GEN9_MFX0_MOCS_0;
- case LOCAL_I915_EXEC_BSD2: return GEN9_MFX1_MOCS_0;
- case I915_EXEC_RENDER: return GEN9_GFX_MOCS_0;
- case I915_EXEC_BLT: return GEN9_BLT_MOCS_0;
- case I915_EXEC_VEBOX: return GEN9_VEBOX_MOCS_0;
- default: return 0;
+ case LOCAL_I915_EXEC_BSD1:
+ return GEN9_MFX0_MOCS_0;
+
+ case LOCAL_I915_EXEC_BSD2:
+ if (intel_gen(intel_get_drm_devid(fd)) >= 11)
+ /* i915_query to find correct HW base */
+ return GEN11_MFX2_MOCS_0;
+ else
+ return GEN9_MFX1_MOCS_0;
+
+ case I915_EXEC_RENDER:
+ return GEN9_GFX_MOCS_0;
+
+ case I915_EXEC_BLT:
+ return GEN9_BLT_MOCS_0;
+
+ case I915_EXEC_VEBOX:
+ return GEN9_VEBOX_MOCS_0;
+
+ default:
+ return 0;
}
}
--
2.23.0.rc1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for i915/gem_mocs_settings: Fudge gen11:vcs2 mocs register base
2019-08-13 16:13 [igt-dev] [PATCH i-g-t] i915/gem_mocs_settings: Fudge gen11:vcs2 mocs register base Chris Wilson
@ 2019-08-13 17:15 ` Patchwork
2019-08-14 4:23 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
1 sibling, 0 replies; 3+ messages in thread
From: Patchwork @ 2019-08-13 17:15 UTC (permalink / raw)
To: Chris Wilson; +Cc: igt-dev
== Series Details ==
Series: i915/gem_mocs_settings: Fudge gen11:vcs2 mocs register base
URL : https://patchwork.freedesktop.org/series/65139/
State : success
== Summary ==
CI Bug Log - changes from IGT_5132 -> IGTPW_3343
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://patchwork.freedesktop.org/api/1.0/series/65139/revisions/1/mbox/
Known issues
------------
Here are the changes found in IGTPW_3343 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live_hangcheck:
- fi-icl-u3: [PASS][1] -> [INCOMPLETE][2] ([fdo#107713] / [fdo#108569])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5132/fi-icl-u3/igt@i915_selftest@live_hangcheck.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/fi-icl-u3/igt@i915_selftest@live_hangcheck.html
* igt@prime_vgem@basic-fence-flip:
- fi-ilk-650: [PASS][3] -> [DMESG-WARN][4] ([fdo#106387])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5132/fi-ilk-650/igt@prime_vgem@basic-fence-flip.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/fi-ilk-650/igt@prime_vgem@basic-fence-flip.html
#### Possible fixes ####
* igt@gem_ctx_switch@legacy-render:
- fi-bxt-dsi: [INCOMPLETE][5] ([fdo#103927]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5132/fi-bxt-dsi/igt@gem_ctx_switch@legacy-render.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/fi-bxt-dsi/igt@gem_ctx_switch@legacy-render.html
* igt@i915_module_load@reload:
- fi-blb-e6850: [INCOMPLETE][7] ([fdo#107718]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5132/fi-blb-e6850/igt@i915_module_load@reload.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/fi-blb-e6850/igt@i915_module_load@reload.html
* igt@kms_chamelium@hdmi-hpd-fast:
- fi-kbl-7567u: [FAIL][9] ([fdo#109485]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5132/fi-kbl-7567u/igt@kms_chamelium@hdmi-hpd-fast.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/fi-kbl-7567u/igt@kms_chamelium@hdmi-hpd-fast.html
* igt@kms_frontbuffer_tracking@basic:
- fi-icl-u2: [FAIL][11] ([fdo#103167]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5132/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html
#### Warnings ####
* igt@kms_chamelium@vga-edid-read:
- fi-icl-u2: [SKIP][13] ([fdo#109309]) -> [FAIL][14] ([fdo#109483])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5132/fi-icl-u2/igt@kms_chamelium@vga-edid-read.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/fi-icl-u2/igt@kms_chamelium@vga-edid-read.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
[fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
[fdo#106387]: https://bugs.freedesktop.org/show_bug.cgi?id=106387
[fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
[fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718
[fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
[fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
[fdo#109483]: https://bugs.freedesktop.org/show_bug.cgi?id=109483
[fdo#109485]: https://bugs.freedesktop.org/show_bug.cgi?id=109485
[fdo#109644]: https://bugs.freedesktop.org/show_bug.cgi?id=109644
[fdo#110464]: https://bugs.freedesktop.org/show_bug.cgi?id=110464
Participating hosts (54 -> 47)
------------------------------
Additional (1): fi-skl-6770hq
Missing (8): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper fi-bdw-samus
Build changes
-------------
* IGT: IGT_5132 -> IGTPW_3343
CI_DRM_6696: e9dffb84ec534faeafbcd7029ab6b58f3a3bc01e @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_3343: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/
IGT_5132: eced11670da92bc338a162af6eeda39edd49cd12 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 3+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for i915/gem_mocs_settings: Fudge gen11:vcs2 mocs register base
2019-08-13 16:13 [igt-dev] [PATCH i-g-t] i915/gem_mocs_settings: Fudge gen11:vcs2 mocs register base Chris Wilson
2019-08-13 17:15 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2019-08-14 4:23 ` Patchwork
1 sibling, 0 replies; 3+ messages in thread
From: Patchwork @ 2019-08-14 4:23 UTC (permalink / raw)
To: Chris Wilson; +Cc: igt-dev
== Series Details ==
Series: i915/gem_mocs_settings: Fudge gen11:vcs2 mocs register base
URL : https://patchwork.freedesktop.org/series/65139/
State : failure
== Summary ==
CI Bug Log - changes from IGT_5132_full -> IGTPW_3343_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_3343_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_3343_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://patchwork.freedesktop.org/api/1.0/series/65139/revisions/1/mbox/
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_3343_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_crc@pipe-b-cursor-256x256-onscreen:
- shard-apl: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5132/shard-apl4/igt@kms_cursor_crc@pipe-b-cursor-256x256-onscreen.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/shard-apl7/igt@kms_cursor_crc@pipe-b-cursor-256x256-onscreen.html
Known issues
------------
Here are the changes found in IGTPW_3343_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_schedule@promotion-bsd:
- shard-iclb: [PASS][3] -> [SKIP][4] ([fdo#111325]) +4 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5132/shard-iclb3/igt@gem_exec_schedule@promotion-bsd.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/shard-iclb4/igt@gem_exec_schedule@promotion-bsd.html
* igt@i915_suspend@sysfs-reader:
- shard-apl: [PASS][5] -> [DMESG-WARN][6] ([fdo#108566]) +3 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5132/shard-apl5/igt@i915_suspend@sysfs-reader.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/shard-apl3/igt@i915_suspend@sysfs-reader.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-glk: [PASS][7] -> [FAIL][8] ([fdo#104873])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5132/shard-glk7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/shard-glk4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
- shard-iclb: [PASS][9] -> [FAIL][10] ([fdo#103167]) +4 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5132/shard-iclb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_psr@psr2_sprite_plane_move:
- shard-iclb: [PASS][11] -> [SKIP][12] ([fdo#109441]) +5 similar issues
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5132/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/shard-iclb8/igt@kms_psr@psr2_sprite_plane_move.html
* igt@prime_busy@hang-bsd2:
- shard-iclb: [PASS][13] -> [SKIP][14] ([fdo#109276]) +14 similar issues
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5132/shard-iclb1/igt@prime_busy@hang-bsd2.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/shard-iclb3/igt@prime_busy@hang-bsd2.html
#### Possible fixes ####
* igt@gem_ctx_isolation@vecs0-s3:
- shard-kbl: [DMESG-WARN][15] ([fdo#103313]) -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5132/shard-kbl2/igt@gem_ctx_isolation@vecs0-s3.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/shard-kbl1/igt@gem_ctx_isolation@vecs0-s3.html
* igt@gem_exec_balancer@smoke:
- shard-iclb: [SKIP][17] ([fdo#110854]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5132/shard-iclb8/igt@gem_exec_balancer@smoke.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/shard-iclb2/igt@gem_exec_balancer@smoke.html
* igt@gem_exec_schedule@preempt-other-bsd:
- shard-iclb: [SKIP][19] ([fdo#111325]) -> [PASS][20] +2 similar issues
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5132/shard-iclb1/igt@gem_exec_schedule@preempt-other-bsd.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/shard-iclb7/igt@gem_exec_schedule@preempt-other-bsd.html
* igt@gem_exec_schedule@preempt-other-bsd1:
- shard-iclb: [SKIP][21] ([fdo#109276]) -> [PASS][22] +20 similar issues
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5132/shard-iclb7/igt@gem_exec_schedule@preempt-other-bsd1.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/shard-iclb4/igt@gem_exec_schedule@preempt-other-bsd1.html
* igt@i915_suspend@fence-restore-untiled:
- shard-apl: [DMESG-WARN][23] ([fdo#108566]) -> [PASS][24] +8 similar issues
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5132/shard-apl8/igt@i915_suspend@fence-restore-untiled.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/shard-apl7/igt@i915_suspend@fence-restore-untiled.html
* igt@kms_cursor_crc@pipe-b-cursor-size-change:
- shard-glk: [FAIL][25] ([fdo#103232]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5132/shard-glk6/igt@kms_cursor_crc@pipe-b-cursor-size-change.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/shard-glk2/igt@kms_cursor_crc@pipe-b-cursor-size-change.html
- shard-apl: [FAIL][27] ([fdo#103232]) -> [PASS][28]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5132/shard-apl4/igt@kms_cursor_crc@pipe-b-cursor-size-change.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/shard-apl4/igt@kms_cursor_crc@pipe-b-cursor-size-change.html
- shard-kbl: [FAIL][29] ([fdo#103232]) -> [PASS][30]
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5132/shard-kbl3/igt@kms_cursor_crc@pipe-b-cursor-size-change.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/shard-kbl7/igt@kms_cursor_crc@pipe-b-cursor-size-change.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-hsw: [FAIL][31] ([fdo#105767]) -> [PASS][32]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5132/shard-hsw6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/shard-hsw7/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_flip@dpms-vs-vblank-race-interruptible:
- shard-apl: [FAIL][33] ([fdo#103060]) -> [PASS][34]
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5132/shard-apl7/igt@kms_flip@dpms-vs-vblank-race-interruptible.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/shard-apl8/igt@kms_flip@dpms-vs-vblank-race-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render:
- shard-apl: [FAIL][35] ([fdo#103167]) -> [PASS][36]
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5132/shard-apl3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/shard-apl3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-stridechange:
- shard-iclb: [FAIL][37] ([fdo#103167]) -> [PASS][38] +7 similar issues
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5132/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-stridechange.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-stridechange.html
* igt@kms_plane_lowres@pipe-a-tiling-x:
- shard-iclb: [FAIL][39] ([fdo#103166]) -> [PASS][40]
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5132/shard-iclb8/igt@kms_plane_lowres@pipe-a-tiling-x.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/shard-iclb4/igt@kms_plane_lowres@pipe-a-tiling-x.html
#### Warnings ####
* igt@gem_ctx_isolation@vcs1-nonpriv:
- shard-iclb: [SKIP][41] ([fdo#109276]) -> [FAIL][42] ([fdo#111329])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5132/shard-iclb3/igt@gem_ctx_isolation@vcs1-nonpriv.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/shard-iclb4/igt@gem_ctx_isolation@vcs1-nonpriv.html
* igt@gem_mocs_settings@mocs-reset-bsd2:
- shard-iclb: [FAIL][43] ([fdo#111330]) -> [SKIP][44] ([fdo#109276]) +1 similar issue
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5132/shard-iclb4/igt@gem_mocs_settings@mocs-reset-bsd2.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/shard-iclb7/igt@gem_mocs_settings@mocs-reset-bsd2.html
[fdo#103060]: https://bugs.freedesktop.org/show_bug.cgi?id=103060
[fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166
[fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
[fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232
[fdo#103313]: https://bugs.freedesktop.org/show_bug.cgi?id=103313
[fdo#104873]: https://bugs.freedesktop.org/show_bug.cgi?id=104873
[fdo#105767]: https://bugs.freedesktop.org/show_bug.cgi?id=105767
[fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
[fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854
[fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325
[fdo#111329]: https://bugs.freedesktop.org/show_bug.cgi?id=111329
[fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330
Participating hosts (7 -> 6)
------------------------------
Missing (1): shard-skl
Build changes
-------------
* IGT: IGT_5132 -> IGTPW_3343
CI_DRM_6696: e9dffb84ec534faeafbcd7029ab6b58f3a3bc01e @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_3343: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/
IGT_5132: eced11670da92bc338a162af6eeda39edd49cd12 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3343/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-08-14 4:23 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-08-13 16:13 [igt-dev] [PATCH i-g-t] i915/gem_mocs_settings: Fudge gen11:vcs2 mocs register base Chris Wilson
2019-08-13 17:15 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2019-08-14 4:23 ` [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