* [igt-dev] [PATCH i-g-t 1/2] Revert "lib/igt_psr: Move "is enabled" implementation to lib"
@ 2019-11-28 0:49 José Roberto de Souza
2019-11-28 0:49 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915_pm_dc: Wait for PSR2 entry José Roberto de Souza
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: José Roberto de Souza @ 2019-11-28 0:49 UTC (permalink / raw)
To: igt-dev; +Cc: Jeevan B
This reverts commit 4bb46f08f7cb6485642c4351cecdad93072d27a0.
The next patch have more information about why this patch was
reverted.
Cc: Jeevan B <jeevan.b@intel.com>
Cc: Anshuman Gupta <anshuman.gupta@intel.com>
Cc: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
Signed-off-by: José Roberto de Souza <jose.souza@intel.com>
---
lib/igt_psr.c | 16 ----------------
lib/igt_psr.h | 1 -
tests/i915/i915_pm_dc.c | 13 ++++++++++++-
3 files changed, 12 insertions(+), 18 deletions(-)
diff --git a/lib/igt_psr.c b/lib/igt_psr.c
index 32d69fea..83ccacdd 100644
--- a/lib/igt_psr.c
+++ b/lib/igt_psr.c
@@ -210,19 +210,3 @@ bool psr2_wait_su(int debugfs_fd, uint16_t *num_su_blocks)
{
return igt_wait(psr2_read_last_num_su_blocks_val(debugfs_fd, num_su_blocks), 40, 1);
}
-
-bool psr_enabled(int debugfs_fd, enum psr_mode mode)
-{
- char buf[PSR_STATUS_MAX_LEN];
- int ret;
-
- ret = igt_debugfs_simple_read(debugfs_fd, "i915_edp_psr_status", buf,
- sizeof(buf));
- if (ret < 0)
- return false;
-
- if (mode == PSR_MODE_1)
- return strstr(buf, "PSR mode: PSR1 enabled");
- else
- return strstr(buf, "PSR mode: PSR2 enabled");
-}
diff --git a/lib/igt_psr.h b/lib/igt_psr.h
index 9885cb11..ca385736 100644
--- a/lib/igt_psr.h
+++ b/lib/igt_psr.h
@@ -42,6 +42,5 @@ bool psr_enable(int debugfs_fd, enum psr_mode);
bool psr_disable(int debugfs_fd);
bool psr_sink_support(int debugfs_fd, enum psr_mode);
bool psr2_wait_su(int debugfs_fd, uint16_t *num_su_blocks);
-bool psr_enabled(int debugfs_fd, enum psr_mode mode);
#endif
diff --git a/tests/i915/i915_pm_dc.c b/tests/i915/i915_pm_dc.c
index 2cf357a2..02b08189 100644
--- a/tests/i915/i915_pm_dc.c
+++ b/tests/i915/i915_pm_dc.c
@@ -84,6 +84,16 @@ static void display_fini(data_t *data)
igt_display_fini(&data->display);
}
+static bool edp_psr2_enabled(data_t *data)
+{
+ char buf[512];
+
+ igt_debugfs_simple_read(data->debugfs_fd, "i915_edp_psr_status",
+ buf, sizeof(buf));
+
+ return strstr(buf, "PSR mode: PSR2 enabled") != NULL;
+}
+
static void cleanup_dc_psr(data_t *data)
{
igt_plane_t *primary;
@@ -288,7 +298,8 @@ static void setup_dc3co(data_t *data)
{
data->op_psr_mode = PSR_MODE_2;
psr_enable(data->debugfs_fd, data->op_psr_mode);
- igt_require(psr_enabled(data->debugfs_fd, PSR_MODE_2));
+ igt_require_f(edp_psr2_enabled(data),
+ "PSR2 is not enabled\n");
}
static void test_dc3co_vpb_simulation(data_t *data)
--
2.24.0
_______________________________________________
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] tests/i915_pm_dc: Wait for PSR2 entry
2019-11-28 0:49 [igt-dev] [PATCH i-g-t 1/2] Revert "lib/igt_psr: Move "is enabled" implementation to lib" José Roberto de Souza
@ 2019-11-28 0:49 ` José Roberto de Souza
2019-11-28 1:31 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/2] Revert "lib/igt_psr: Move "is enabled" implementation to lib" Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 6+ messages in thread
From: José Roberto de Souza @ 2019-11-28 0:49 UTC (permalink / raw)
To: igt-dev; +Cc: Jeevan B
After enable PSR2 we can not check right away if PSR2 is enabled, we
need let some time to PSR2 to be enabled.
For that we have psr_wait_entry(), that is why the previous patch was
reverted as psr_enabled() is not much useful.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=112411
Cc: Jeevan B <jeevan.b@intel.com>
Cc: Anshuman Gupta <anshuman.gupta@intel.com>
Cc: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
Signed-off-by: José Roberto de Souza <jose.souza@intel.com>
---
tests/i915/i915_pm_dc.c | 12 +-----------
1 file changed, 1 insertion(+), 11 deletions(-)
diff --git a/tests/i915/i915_pm_dc.c b/tests/i915/i915_pm_dc.c
index 02b08189..cd2828b8 100644
--- a/tests/i915/i915_pm_dc.c
+++ b/tests/i915/i915_pm_dc.c
@@ -84,16 +84,6 @@ static void display_fini(data_t *data)
igt_display_fini(&data->display);
}
-static bool edp_psr2_enabled(data_t *data)
-{
- char buf[512];
-
- igt_debugfs_simple_read(data->debugfs_fd, "i915_edp_psr_status",
- buf, sizeof(buf));
-
- return strstr(buf, "PSR mode: PSR2 enabled") != NULL;
-}
-
static void cleanup_dc_psr(data_t *data)
{
igt_plane_t *primary;
@@ -298,7 +288,7 @@ static void setup_dc3co(data_t *data)
{
data->op_psr_mode = PSR_MODE_2;
psr_enable(data->debugfs_fd, data->op_psr_mode);
- igt_require_f(edp_psr2_enabled(data),
+ igt_require_f(psr_wait_entry(data->debugfs_fd, data->op_psr_mode),
"PSR2 is not enabled\n");
}
--
2.24.0
_______________________________________________
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] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/2] Revert "lib/igt_psr: Move "is enabled" implementation to lib"
2019-11-28 0:49 [igt-dev] [PATCH i-g-t 1/2] Revert "lib/igt_psr: Move "is enabled" implementation to lib" José Roberto de Souza
2019-11-28 0:49 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915_pm_dc: Wait for PSR2 entry José Roberto de Souza
@ 2019-11-28 1:31 ` Patchwork
2019-11-29 8:20 ` Arkadiusz Hiler
2019-11-28 2:21 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] Revert "lib/igt_psr: Move "is enabled" implementation to lib" (rev2) Patchwork
2019-11-29 7:16 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
3 siblings, 1 reply; 6+ messages in thread
From: Patchwork @ 2019-11-28 1:31 UTC (permalink / raw)
To: Souza, Jose; +Cc: igt-dev
== Series Details ==
Series: series starting with [i-g-t,1/2] Revert "lib/igt_psr: Move "is enabled" implementation to lib"
URL : https://patchwork.freedesktop.org/series/70132/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_7434 -> IGTPW_3771
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_3771 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_3771, 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_3771/index.html
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_3771:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live_active:
- fi-bxt-dsi: [PASS][1] -> [DMESG-FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/fi-bxt-dsi/igt@i915_selftest@live_active.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3771/fi-bxt-dsi/igt@i915_selftest@live_active.html
Known issues
------------
Here are the changes found in IGTPW_3771 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live_blt:
- fi-bsw-n3050: [PASS][3] -> [DMESG-FAIL][4] ([fdo#112176])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/fi-bsw-n3050/igt@i915_selftest@live_blt.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3771/fi-bsw-n3050/igt@i915_selftest@live_blt.html
* igt@kms_chamelium@hdmi-hpd-fast:
- fi-kbl-7500u: [PASS][5] -> [FAIL][6] ([fdo#111045] / [fdo#111096])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3771/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
#### Possible fixes ####
* igt@i915_module_load@reload-no-display:
- fi-skl-lmem: [DMESG-WARN][7] ([fdo#112261]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/fi-skl-lmem/igt@i915_module_load@reload-no-display.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3771/fi-skl-lmem/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@reload-with-fault-injection:
- fi-icl-u3: [INCOMPLETE][9] ([fdo#107713]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/fi-icl-u3/igt@i915_module_load@reload-with-fault-injection.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3771/fi-icl-u3/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rpm@module-reload:
- fi-skl-6770hq: [DMESG-WARN][11] ([fdo#112261]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3771/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live_blt:
- fi-hsw-peppy: [DMESG-FAIL][13] ([fdo#112147]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/fi-hsw-peppy/igt@i915_selftest@live_blt.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3771/fi-hsw-peppy/igt@i915_selftest@live_blt.html
* igt@i915_selftest@live_gt_heartbeat:
- {fi-kbl-7560u}: [DMESG-FAIL][15] -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/fi-kbl-7560u/igt@i915_selftest@live_gt_heartbeat.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3771/fi-kbl-7560u/igt@i915_selftest@live_gt_heartbeat.html
#### Warnings ####
* igt@gem_exec_suspend@basic-s3:
- fi-kbl-x1275: [DMESG-WARN][17] ([fdo#103558] / [fdo#105602] / [fdo#105763]) -> [DMESG-WARN][18] ([fdo#103558] / [fdo#105602]) +2 similar issues
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/fi-kbl-x1275/igt@gem_exec_suspend@basic-s3.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3771/fi-kbl-x1275/igt@gem_exec_suspend@basic-s3.html
* igt@gem_exec_suspend@basic-s4-devices:
- fi-kbl-x1275: [DMESG-WARN][19] ([fdo#103558] / [fdo#105602] / [fdo#107139]) -> [DMESG-WARN][20] ([fdo#103558] / [fdo#105602] / [fdo#105763] / [fdo#107139])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/fi-kbl-x1275/igt@gem_exec_suspend@basic-s4-devices.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3771/fi-kbl-x1275/igt@gem_exec_suspend@basic-s4-devices.html
* igt@kms_pipe_crc_basic@read-crc-pipe-b:
- fi-kbl-x1275: [DMESG-WARN][21] ([fdo#103558] / [fdo#105602]) -> [DMESG-WARN][22] ([fdo#103558] / [fdo#105602] / [fdo#105763]) +7 similar issues
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/fi-kbl-x1275/igt@kms_pipe_crc_basic@read-crc-pipe-b.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3771/fi-kbl-x1275/igt@kms_pipe_crc_basic@read-crc-pipe-b.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103558]: https://bugs.freedesktop.org/show_bug.cgi?id=103558
[fdo#105602]: https://bugs.freedesktop.org/show_bug.cgi?id=105602
[fdo#105763]: https://bugs.freedesktop.org/show_bug.cgi?id=105763
[fdo#107139]: https://bugs.freedesktop.org/show_bug.cgi?id=107139
[fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
[fdo#111045]: https://bugs.freedesktop.org/show_bug.cgi?id=111045
[fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096
[fdo#112147]: https://bugs.freedesktop.org/show_bug.cgi?id=112147
[fdo#112176]: https://bugs.freedesktop.org/show_bug.cgi?id=112176
[fdo#112261]: https://bugs.freedesktop.org/show_bug.cgi?id=112261
Participating hosts (52 -> 45)
------------------------------
Missing (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-bdw-samus
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5312 -> IGTPW_3771
CI-20190529: 20190529
CI_DRM_7434: 1bbc4d30ca9fd950cbcb73f324e00d0bc357758e @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_3771: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3771/index.html
IGT_5312: 851c75531043cd906e028632b64b02b9312e9945 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3771/index.html
_______________________________________________
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] Revert "lib/igt_psr: Move "is enabled" implementation to lib" (rev2)
2019-11-28 0:49 [igt-dev] [PATCH i-g-t 1/2] Revert "lib/igt_psr: Move "is enabled" implementation to lib" José Roberto de Souza
2019-11-28 0:49 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915_pm_dc: Wait for PSR2 entry José Roberto de Souza
2019-11-28 1:31 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/2] Revert "lib/igt_psr: Move "is enabled" implementation to lib" Patchwork
@ 2019-11-28 2:21 ` Patchwork
2019-11-29 7:16 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2019-11-28 2:21 UTC (permalink / raw)
To: José Roberto de Souza; +Cc: igt-dev
== Series Details ==
Series: series starting with [i-g-t,1/2] Revert "lib/igt_psr: Move "is enabled" implementation to lib" (rev2)
URL : https://patchwork.freedesktop.org/series/70132/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_7434 -> IGTPW_3772
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/index.html
Known issues
------------
Here are the changes found in IGTPW_3772 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live_blt:
- fi-bsw-nick: [PASS][1] -> [DMESG-FAIL][2] ([fdo#112176])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/fi-bsw-nick/igt@i915_selftest@live_blt.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/fi-bsw-nick/igt@i915_selftest@live_blt.html
* igt@kms_chamelium@hdmi-hpd-fast:
- fi-kbl-7500u: [PASS][3] -> [FAIL][4] ([fdo#111045] / [fdo#111096])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
#### Possible fixes ####
* igt@i915_module_load@reload-no-display:
- fi-skl-lmem: [DMESG-WARN][5] ([fdo#112261]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/fi-skl-lmem/igt@i915_module_load@reload-no-display.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/fi-skl-lmem/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@reload-with-fault-injection:
- fi-icl-u3: [INCOMPLETE][7] ([fdo#107713]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/fi-icl-u3/igt@i915_module_load@reload-with-fault-injection.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/fi-icl-u3/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_selftest@live_blt:
- fi-hsw-peppy: [DMESG-FAIL][9] ([fdo#112147]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/fi-hsw-peppy/igt@i915_selftest@live_blt.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/fi-hsw-peppy/igt@i915_selftest@live_blt.html
* igt@i915_selftest@live_gt_heartbeat:
- {fi-kbl-7560u}: [DMESG-FAIL][11] -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/fi-kbl-7560u/igt@i915_selftest@live_gt_heartbeat.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/fi-kbl-7560u/igt@i915_selftest@live_gt_heartbeat.html
#### Warnings ####
* igt@gem_exec_suspend@basic-s4-devices:
- fi-kbl-x1275: [DMESG-WARN][13] ([fdo#103558] / [fdo#105602] / [fdo#107139]) -> [DMESG-WARN][14] ([fdo#103558] / [fdo#105602] / [fdo#105763] / [fdo#107139])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/fi-kbl-x1275/igt@gem_exec_suspend@basic-s4-devices.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/fi-kbl-x1275/igt@gem_exec_suspend@basic-s4-devices.html
* igt@i915_pm_rpm@module-reload:
- fi-skl-6770hq: [DMESG-WARN][15] ([fdo#112261]) -> [FAIL][16] ([fdo#108511])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html
* igt@kms_flip@basic-flip-vs-modeset:
- fi-kbl-x1275: [DMESG-WARN][17] ([fdo#103558] / [fdo#105602]) -> [DMESG-WARN][18] ([fdo#103558] / [fdo#105602] / [fdo#105763]) +7 similar issues
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/fi-kbl-x1275/igt@kms_flip@basic-flip-vs-modeset.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/fi-kbl-x1275/igt@kms_flip@basic-flip-vs-modeset.html
* igt@kms_pipe_crc_basic@read-crc-pipe-a:
- fi-kbl-x1275: [DMESG-WARN][19] ([fdo#103558] / [fdo#105602] / [fdo#105763]) -> [DMESG-WARN][20] ([fdo#103558] / [fdo#105602])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/fi-kbl-x1275/igt@kms_pipe_crc_basic@read-crc-pipe-a.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/fi-kbl-x1275/igt@kms_pipe_crc_basic@read-crc-pipe-a.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103558]: https://bugs.freedesktop.org/show_bug.cgi?id=103558
[fdo#105602]: https://bugs.freedesktop.org/show_bug.cgi?id=105602
[fdo#105763]: https://bugs.freedesktop.org/show_bug.cgi?id=105763
[fdo#107139]: https://bugs.freedesktop.org/show_bug.cgi?id=107139
[fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
[fdo#108511]: https://bugs.freedesktop.org/show_bug.cgi?id=108511
[fdo#111045]: https://bugs.freedesktop.org/show_bug.cgi?id=111045
[fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096
[fdo#112147]: https://bugs.freedesktop.org/show_bug.cgi?id=112147
[fdo#112176]: https://bugs.freedesktop.org/show_bug.cgi?id=112176
[fdo#112261]: https://bugs.freedesktop.org/show_bug.cgi?id=112261
[fdo#112269]: https://bugs.freedesktop.org/show_bug.cgi?id=112269
Participating hosts (52 -> 45)
------------------------------
Missing (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-bdw-samus
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5312 -> IGTPW_3772
CI-20190529: 20190529
CI_DRM_7434: 1bbc4d30ca9fd950cbcb73f324e00d0bc357758e @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_3772: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/index.html
IGT_5312: 851c75531043cd906e028632b64b02b9312e9945 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/index.html
_______________________________________________
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: success for series starting with [i-g-t,1/2] Revert "lib/igt_psr: Move "is enabled" implementation to lib" (rev2)
2019-11-28 0:49 [igt-dev] [PATCH i-g-t 1/2] Revert "lib/igt_psr: Move "is enabled" implementation to lib" José Roberto de Souza
` (2 preceding siblings ...)
2019-11-28 2:21 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] Revert "lib/igt_psr: Move "is enabled" implementation to lib" (rev2) Patchwork
@ 2019-11-29 7:16 ` Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2019-11-29 7:16 UTC (permalink / raw)
To: José Roberto de Souza; +Cc: igt-dev
== Series Details ==
Series: series starting with [i-g-t,1/2] Revert "lib/igt_psr: Move "is enabled" implementation to lib" (rev2)
URL : https://patchwork.freedesktop.org/series/70132/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_7434_full -> IGTPW_3772_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/index.html
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_3772_full:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@gem_exec_balancer@bonded-chain}:
- shard-tglb: NOTRUN -> [FAIL][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-tglb9/igt@gem_exec_balancer@bonded-chain.html
Known issues
------------
Here are the changes found in IGTPW_3772_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_ctx_isolation@rcs0-s3:
- shard-apl: [PASS][2] -> [INCOMPLETE][3] ([fdo#103927])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-apl8/igt@gem_ctx_isolation@rcs0-s3.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-apl6/igt@gem_ctx_isolation@rcs0-s3.html
* igt@gem_exec_capture@capture-bsd1:
- shard-iclb: [PASS][4] -> [SKIP][5] ([fdo#109276])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-iclb2/igt@gem_exec_capture@capture-bsd1.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-iclb6/igt@gem_exec_capture@capture-bsd1.html
* igt@gem_exec_schedule@deep-bsd:
- shard-iclb: [PASS][6] -> [SKIP][7] ([fdo#112146]) +1 similar issue
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-iclb5/igt@gem_exec_schedule@deep-bsd.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-iclb4/igt@gem_exec_schedule@deep-bsd.html
* igt@gem_exec_schedule@preempt-queue-chain-vebox:
- shard-glk: [PASS][8] -> [INCOMPLETE][9] ([fdo#103359] / [k.org#198133])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-glk7/igt@gem_exec_schedule@preempt-queue-chain-vebox.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-glk6/igt@gem_exec_schedule@preempt-queue-chain-vebox.html
* igt@gem_exec_suspend@basic-s3:
- shard-kbl: [PASS][10] -> [DMESG-WARN][11] ([fdo#108566]) +2 similar issues
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-kbl1/igt@gem_exec_suspend@basic-s3.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-kbl3/igt@gem_exec_suspend@basic-s3.html
* igt@gem_ppgtt@flink-and-close-vma-leak:
- shard-glk: [PASS][12] -> [FAIL][13] ([fdo#112392])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-glk1/igt@gem_ppgtt@flink-and-close-vma-leak.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-glk2/igt@gem_ppgtt@flink-and-close-vma-leak.html
- shard-apl: [PASS][14] -> [FAIL][15] ([fdo#112392])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-apl7/igt@gem_ppgtt@flink-and-close-vma-leak.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-apl4/igt@gem_ppgtt@flink-and-close-vma-leak.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy-gup:
- shard-hsw: [PASS][16] -> [DMESG-WARN][17] ([fdo#111870]) +2 similar issues
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-hsw8/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-hsw6/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-snb: [PASS][18] -> [DMESG-WARN][19] ([fdo#111870]) +1 similar issue
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-snb4/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-snb7/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@i915_pm_rpm@modeset-stress-extra-wait:
- shard-glk: [PASS][20] -> [DMESG-WARN][21] ([fdo#105763] / [fdo#106538])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-glk6/igt@i915_pm_rpm@modeset-stress-extra-wait.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-glk8/igt@i915_pm_rpm@modeset-stress-extra-wait.html
* igt@kms_cursor_crc@pipe-a-cursor-128x128-sliding:
- shard-snb: [PASS][22] -> [INCOMPLETE][23] ([fdo#105411])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-snb4/igt@kms_cursor_crc@pipe-a-cursor-128x128-sliding.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-snb5/igt@kms_cursor_crc@pipe-a-cursor-128x128-sliding.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-glk: [PASS][24] -> [FAIL][25] ([fdo#105363])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-apl: [PASS][26] -> [DMESG-WARN][27] ([fdo#108566]) +2 similar issues
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-apl2/igt@kms_flip@flip-vs-suspend-interruptible.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-apl: [PASS][28] -> [FAIL][29] ([fdo#103167])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-apl3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-apl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff:
- shard-tglb: [PASS][30] -> [INCOMPLETE][31] ([fdo#112393])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-tglb7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-tglb5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_setmode@basic:
- shard-hsw: [PASS][32] -> [FAIL][33] ([fdo#99912])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-hsw1/igt@kms_setmode@basic.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-hsw5/igt@kms_setmode@basic.html
* igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm:
- shard-hsw: [PASS][34] -> [INCOMPLETE][35] ([fdo#103540])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-hsw6/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-hsw7/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
#### Possible fixes ####
* igt@gem_busy@extended-vcs1:
- shard-iclb: [SKIP][36] ([fdo#112080]) -> [PASS][37]
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-iclb3/igt@gem_busy@extended-vcs1.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-iclb4/igt@gem_busy@extended-vcs1.html
* igt@gem_ctx_isolation@bcs0-s3:
- shard-kbl: [DMESG-WARN][38] ([fdo#108566]) -> [PASS][39] +4 similar issues
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-kbl4/igt@gem_ctx_isolation@bcs0-s3.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-kbl3/igt@gem_ctx_isolation@bcs0-s3.html
* igt@gem_ctx_persistence@smoketest:
- shard-glk: [TIMEOUT][40] ([fdo#112404]) -> [PASS][41]
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-glk8/igt@gem_ctx_persistence@smoketest.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-glk1/igt@gem_ctx_persistence@smoketest.html
* igt@gem_eio@unwedge-stress:
- shard-hsw: [INCOMPLETE][42] ([fdo#103540]) -> [PASS][43]
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-hsw4/igt@gem_eio@unwedge-stress.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-hsw8/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_schedule@preempt-hang-bsd1:
- shard-iclb: [SKIP][44] ([fdo#109276]) -> [PASS][45] +1 similar issue
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-iclb3/igt@gem_exec_schedule@preempt-hang-bsd1.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-iclb4/igt@gem_exec_schedule@preempt-hang-bsd1.html
* igt@gem_userptr_blits@sync-unmap-cycles:
- shard-snb: [DMESG-WARN][46] ([fdo#111870]) -> [PASS][47] +1 similar issue
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-snb2/igt@gem_userptr_blits@sync-unmap-cycles.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-snb2/igt@gem_userptr_blits@sync-unmap-cycles.html
- shard-hsw: [DMESG-WARN][48] ([fdo#111870]) -> [PASS][49]
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-hsw5/igt@gem_userptr_blits@sync-unmap-cycles.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-hsw8/igt@gem_userptr_blits@sync-unmap-cycles.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-270:
- shard-glk: [INCOMPLETE][50] ([fdo#103359] / [k.org#198133]) -> [PASS][51]
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-glk7/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-glk2/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
* igt@kms_cursor_crc@pipe-c-cursor-256x85-onscreen:
- shard-apl: [FAIL][52] ([fdo#103232]) -> [PASS][53]
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-apl2/igt@kms_cursor_crc@pipe-c-cursor-256x85-onscreen.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-apl8/igt@kms_cursor_crc@pipe-c-cursor-256x85-onscreen.html
- shard-kbl: [FAIL][54] ([fdo#103232]) -> [PASS][55]
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-kbl1/igt@kms_cursor_crc@pipe-c-cursor-256x85-onscreen.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-kbl7/igt@kms_cursor_crc@pipe-c-cursor-256x85-onscreen.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-glk: [FAIL][56] ([fdo#107409]) -> [PASS][57]
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-glk9/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-glk7/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-apl: [FAIL][58] ([fdo#103167]) -> [PASS][59]
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-apl1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-apl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html
- shard-kbl: [FAIL][60] ([fdo#103167]) -> [PASS][61]
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-kbl3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-rte:
- shard-apl: [FAIL][62] ([fdo#103167] / [fdo#110378]) -> [PASS][63]
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-apl1/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-apl4/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
* igt@kms_frontbuffer_tracking@fbc-farfromfence:
- shard-tglb: [FAIL][64] ([fdo#103167]) -> [PASS][65] +1 similar issue
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-tglb3/igt@kms_frontbuffer_tracking@fbc-farfromfence.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-tglb1/igt@kms_frontbuffer_tracking@fbc-farfromfence.html
* igt@kms_plane@pixel-format-pipe-b-planes-source-clamping:
- shard-kbl: [INCOMPLETE][66] ([fdo#103665] / [fdo#111747]) -> [PASS][67]
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-kbl6/igt@kms_plane@pixel-format-pipe-b-planes-source-clamping.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-kbl3/igt@kms_plane@pixel-format-pipe-b-planes-source-clamping.html
* igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
- shard-apl: [DMESG-WARN][68] ([fdo#108566]) -> [PASS][69] +2 similar issues
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-apl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-apl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
* igt@kms_setmode@basic:
- shard-kbl: [FAIL][70] ([fdo#99912]) -> [PASS][71]
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-kbl7/igt@kms_setmode@basic.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-kbl7/igt@kms_setmode@basic.html
* igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend:
- shard-tglb: [INCOMPLETE][72] ([fdo#111850]) -> [PASS][73]
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-tglb1/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-tglb6/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
* igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend:
- shard-tglb: [INCOMPLETE][74] ([fdo#111832] / [fdo#111850]) -> [PASS][75]
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-tglb4/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-tglb5/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
#### Warnings ####
* igt@gem_ctx_isolation@vcs1-s3:
- shard-kbl: [DMESG-WARN][76] ([fdo#108566]) -> [INCOMPLETE][77] ([fdo#103665])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-kbl7/igt@gem_ctx_isolation@vcs1-s3.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-kbl6/igt@gem_ctx_isolation@vcs1-s3.html
* igt@gem_eio@kms:
- shard-snb: [INCOMPLETE][78] ([fdo#105411]) -> [DMESG-WARN][79] ([fdo# 112000 ] / [fdo#111781])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/shard-snb1/igt@gem_eio@kms.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/shard-snb4/igt@gem_eio@kms.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo# 112000 ]: https://bugs.freedesktop.org/show_bug.cgi?id= 112000
[fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
[fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232
[fdo#103359]: https://bugs.freedesktop.org/show_bug.cgi?id=103359
[fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
[fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
[fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
[fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363
[fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411
[fdo#105763]: https://bugs.freedesktop.org/show_bug.cgi?id=105763
[fdo#106538]: https://bugs.freedesktop.org/show_bug.cgi?id=106538
[fdo#107409]: https://bugs.freedesktop.org/show_bug.cgi?id=107409
[fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
[fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
[fdo#110378]: https://bugs.freedesktop.org/show_bug.cgi?id=110378
[fdo#111747]: https://bugs.freedesktop.org/show_bug.cgi?id=111747
[fdo#111781]: https://bugs.freedesktop.org/show_bug.cgi?id=111781
[fdo#111832]: https://bugs.freedesktop.org/show_bug.cgi?id=111832
[fdo#111850]: https://bugs.freedesktop.org/show_bug.cgi?id=111850
[fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
[fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
[fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
[fdo#112271]: https://bugs.freedesktop.org/show_bug.cgi?id=112271
[fdo#112392]: https://bugs.freedesktop.org/show_bug.cgi?id=112392
[fdo#112393]: https://bugs.freedesktop.org/show_bug.cgi?id=112393
[fdo#112404]: https://bugs.freedesktop.org/show_bug.cgi?id=112404
[fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912
[k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133
Participating hosts (11 -> 8)
------------------------------
Missing (3): pig-skl-6260u pig-glk-j5005 pig-hsw-4770r
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5312 -> IGTPW_3772
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_7434: 1bbc4d30ca9fd950cbcb73f324e00d0bc357758e @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_3772: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3772/index.html
IGT_5312: 851c75531043cd906e028632b64b02b9312e9945 @ 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_3772/index.html
_______________________________________________
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] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/2] Revert "lib/igt_psr: Move "is enabled" implementation to lib"
2019-11-28 1:31 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/2] Revert "lib/igt_psr: Move "is enabled" implementation to lib" Patchwork
@ 2019-11-29 8:20 ` Arkadiusz Hiler
0 siblings, 0 replies; 6+ messages in thread
From: Arkadiusz Hiler @ 2019-11-29 8:20 UTC (permalink / raw)
To: igt-dev; +Cc: Vudum, Lakshminarayana
On Thu, Nov 28, 2019 at 01:31:03AM +0000, Patchwork wrote:
> == Series Details ==
>
> Series: series starting with [i-g-t,1/2] Revert "lib/igt_psr: Move "is enabled" implementation to lib"
> URL : https://patchwork.freedesktop.org/series/70132/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from CI_DRM_7434 -> IGTPW_3771
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with IGTPW_3771 absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_3771, please notify your bug team to allow them
> to document this new failure mode, which will reduce false positives in CI.
Cc: Lakshmi
Failure in selftest unrelated to the IGT test changes. We already have
rerun for this so no re-reporting is needed.
> External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3771/index.html
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in IGTPW_3771:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@i915_selftest@live_active:
> - fi-bxt-dsi: [PASS][1] -> [DMESG-FAIL][2]
> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7434/fi-bxt-dsi/igt@i915_selftest@live_active.html
> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3771/fi-bxt-dsi/igt@i915_selftest@live_active.html
_______________________________________________
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:[~2019-11-29 8:20 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-11-28 0:49 [igt-dev] [PATCH i-g-t 1/2] Revert "lib/igt_psr: Move "is enabled" implementation to lib" José Roberto de Souza
2019-11-28 0:49 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915_pm_dc: Wait for PSR2 entry José Roberto de Souza
2019-11-28 1:31 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/2] Revert "lib/igt_psr: Move "is enabled" implementation to lib" Patchwork
2019-11-29 8:20 ` Arkadiusz Hiler
2019-11-28 2:21 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] Revert "lib/igt_psr: Move "is enabled" implementation to lib" (rev2) Patchwork
2019-11-29 7:16 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox