* [Intel-gfx] [PATCH i-g-t v2] tests/i915/perf_pmu: PCI unbind test
@ 2020-10-22 9:48 Tvrtko Ursulin
2020-10-22 10:27 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/perf_pmu: PCI unbind test (rev2) Patchwork
2020-10-22 13:16 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
0 siblings, 2 replies; 3+ messages in thread
From: Tvrtko Ursulin @ 2020-10-22 9:48 UTC (permalink / raw)
To: igt-dev; +Cc: Intel-gfx
From: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Test driver unbind from device with active PMU client.
v2:
* Verify successful open after rebind. (Chris)
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
---
tests/i915/perf_pmu.c | 113 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 113 insertions(+)
diff --git a/tests/i915/perf_pmu.c b/tests/i915/perf_pmu.c
index cb7273142b8f..76bfa0d40e2c 100644
--- a/tests/i915/perf_pmu.c
+++ b/tests/i915/perf_pmu.c
@@ -43,6 +43,7 @@
#include "igt.h"
#include "igt_core.h"
#include "igt_device.h"
+#include "igt_device_scan.h"
#include "igt_kmod.h"
#include "igt_perf.h"
#include "igt_sysfs.h"
@@ -2011,6 +2012,80 @@ static void test_unload(unsigned int num_engines)
igt_assert_eq(unload_i915(), 0);
}
+static void set_filter_from_device(int fd)
+{
+ const char *filter_type = "sys:";
+ char filter[strlen(filter_type) + PATH_MAX + 1];
+ char *dst = stpcpy(filter, filter_type);
+ char path[PATH_MAX + 1];
+
+ igt_assert(igt_sysfs_path(fd, path, PATH_MAX));
+ igt_ignore_warn(strncat(path, "/device", PATH_MAX - strlen(path)));
+ igt_assert(realpath(path, dst));
+
+ igt_device_filter_free_all();
+ igt_assert_eq(igt_device_filter_add(filter), 1);
+}
+
+struct rebind_data
+{
+ int sysfs;
+ uint64_t perf_type;
+ char *bus_addr;
+};
+
+static void test_rebind(struct rebind_data *data)
+{
+ struct igt_helper_process pmu_client = { };
+ const unsigned int timeout = 5;
+ int pmu;
+
+ /* Start rapid PMU traffic from a background process. */
+ igt_fork_helper(&pmu_client) {
+ pmu = igt_perf_open(data->perf_type, I915_PMU_INTERRUPTS);
+ igt_assert(pmu >= 0);
+
+ for (;;) {
+ pmu_read_single(pmu);
+ usleep(500);
+ }
+ }
+
+ /* Let the child run for a bit. */
+ usleep(1e6);
+
+ /* Unbind the device. */
+ igt_set_timeout(timeout, "Driver unbind timeout!");
+ igt_assert_f(igt_sysfs_set(data->sysfs, "unbind", data->bus_addr),
+ "Driver unbind failure!\n");
+ igt_reset_timeout();
+
+ /* Check new PMUs cannot be opened. */
+ pmu = igt_perf_open(data->perf_type, I915_PMU_INTERRUPTS);
+ igt_assert(pmu < 0);
+ usleep(1e6);
+ pmu = igt_perf_open(data->perf_type, I915_PMU_INTERRUPTS);
+ igt_assert(pmu < 0);
+
+ /* Stop background PMU traffic. */
+ usleep(1e6);
+ igt_stop_helper(&pmu_client);
+
+ /* Bind the device back. */
+ igt_set_timeout(timeout, "Driver bind timeout!");
+ igt_assert_f(igt_sysfs_set(data->sysfs, "bind", data->bus_addr),
+ "Driver bind failure\n!");
+ igt_reset_timeout();
+
+ igt_fail_on_f(faccessat(data->sysfs, data->bus_addr, F_OK, 0),
+ "Device not present!\n");
+
+ /* Check new PMUs can be opened. */
+ pmu = igt_perf_open(data->perf_type, I915_PMU_INTERRUPTS);
+ igt_assert(pmu >= 0);
+ close(pmu);
+}
+
#define test_each_engine(T, i915, e) \
igt_subtest_with_dynamic(T) __for_each_physical_engine(i915, e) \
igt_dynamic_f("%s", e->name)
@@ -2026,6 +2101,7 @@ igt_main
const unsigned int num_other_metrics =
I915_PMU_LAST - __I915_PMU_OTHER(0) + 1;
unsigned int num_engines = 0;
+ struct rebind_data rebind;
int fd = -1;
igt_fixture {
@@ -2269,9 +2345,46 @@ igt_main
}
igt_fixture {
+ const char *filter;
+ char *sysfs_path;
+ int sysfs_dev;
+
+ /* Prepare for the rebind test before closing the device. */
+ set_filter_from_device(fd);
+
+ filter = igt_device_filter_get(0);
+ igt_assert(filter);
+
+ rebind.bus_addr = strrchr(filter, '/');
+ igt_assert(rebind.bus_addr++);
+
+ sysfs_path = strchr(filter, ':');
+ igt_assert(sysfs_path++);
+ igt_debug("sysfs path = %s\n", sysfs_path);
+
+ sysfs_dev = open(sysfs_path, O_DIRECTORY);
+ igt_assert_fd(sysfs_dev);
+
+ rebind.sysfs = openat(sysfs_dev, "driver", O_DIRECTORY);
+ igt_assert_fd(rebind.sysfs);
+
+ close(sysfs_dev);
+
+ rebind.perf_type = i915_perf_type_id(fd);
+ igt_debug("type id = %"PRIu64"\n", rebind.perf_type);
+
+ /* Close the device - REQUIRED step for following tests! */
close(fd);
}
+ igt_subtest("rebind")
+ test_rebind(&rebind);
+
+ igt_fixture {
+ close(rebind.sysfs);
+ igt_device_filter_free_all();
+ }
+
igt_subtest("module-unload") {
igt_require(unload_i915() == 0);
for (int pass = 0; pass < 3; pass++)
--
2.25.1
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/perf_pmu: PCI unbind test (rev2)
2020-10-22 9:48 [Intel-gfx] [PATCH i-g-t v2] tests/i915/perf_pmu: PCI unbind test Tvrtko Ursulin
@ 2020-10-22 10:27 ` Patchwork
2020-10-22 13:16 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
1 sibling, 0 replies; 3+ messages in thread
From: Patchwork @ 2020-10-22 10:27 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: igt-dev
[-- Attachment #1.1: Type: text/plain, Size: 3683 bytes --]
== Series Details ==
Series: tests/i915/perf_pmu: PCI unbind test (rev2)
URL : https://patchwork.freedesktop.org/series/82874/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_9182 -> IGTPW_5082
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/index.html
Known issues
------------
Here are the changes found in IGTPW_5082 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@execlists:
- fi-kbl-soraka: [PASS][1] -> [INCOMPLETE][2] ([i915#794])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/fi-kbl-soraka/igt@i915_selftest@live@execlists.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/fi-kbl-soraka/igt@i915_selftest@live@execlists.html
* igt@kms_chamelium@hdmi-crc-fast:
- fi-kbl-7500u: [PASS][3] -> [DMESG-WARN][4] ([i915#2203])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/fi-kbl-7500u/igt@kms_chamelium@hdmi-crc-fast.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/fi-kbl-7500u/igt@kms_chamelium@hdmi-crc-fast.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- fi-bsw-kefka: [PASS][5] -> [DMESG-WARN][6] ([i915#1982]) +1 similar issue
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1:
- fi-icl-u2: [PASS][7] -> [DMESG-WARN][8] ([i915#1982])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/fi-icl-u2/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/fi-icl-u2/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html
* igt@vgem_basic@unload:
- fi-skl-guc: [PASS][9] -> [DMESG-WARN][10] ([i915#2203])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/fi-skl-guc/igt@vgem_basic@unload.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/fi-skl-guc/igt@vgem_basic@unload.html
#### Warnings ####
* igt@core_hotunplug@unbind-rebind:
- fi-icl-u2: [DMESG-WARN][11] ([i915#1982] / [i915#289]) -> [DMESG-WARN][12] ([i915#289])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/fi-icl-u2/igt@core_hotunplug@unbind-rebind.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/fi-icl-u2/igt@core_hotunplug@unbind-rebind.html
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2203]: https://gitlab.freedesktop.org/drm/intel/issues/2203
[i915#289]: https://gitlab.freedesktop.org/drm/intel/issues/289
[i915#794]: https://gitlab.freedesktop.org/drm/intel/issues/794
Participating hosts (45 -> 37)
------------------------------
Missing (8): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-blb-e6850 fi-byt-clapper fi-bdw-samus
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5822 -> IGTPW_5082
CI-20190529: 20190529
CI_DRM_9182: 5d76506480cdfef424b52f63a0d21093b2c78dc4 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_5082: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/index.html
IGT_5822: b4bcf05cb9839037128905deda7146434155cc41 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Testlist changes ==
+igt@perf_pmu@rebind
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/index.html
[-- Attachment #1.2: Type: text/html, Size: 4689 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] 3+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915/perf_pmu: PCI unbind test (rev2)
2020-10-22 9:48 [Intel-gfx] [PATCH i-g-t v2] tests/i915/perf_pmu: PCI unbind test Tvrtko Ursulin
2020-10-22 10:27 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/perf_pmu: PCI unbind test (rev2) Patchwork
@ 2020-10-22 13:16 ` Patchwork
1 sibling, 0 replies; 3+ messages in thread
From: Patchwork @ 2020-10-22 13:16 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: igt-dev
[-- Attachment #1.1: Type: text/plain, Size: 23007 bytes --]
== Series Details ==
Series: tests/i915/perf_pmu: PCI unbind test (rev2)
URL : https://patchwork.freedesktop.org/series/82874/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_9182_full -> IGTPW_5082_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_5082_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_5082_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_5082/index.html
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_5082_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_parallel@contexts@bcs0:
- shard-snb: [PASS][1] -> [FAIL][2] +1 similar issue
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-snb7/igt@gem_exec_parallel@contexts@bcs0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-snb2/igt@gem_exec_parallel@contexts@bcs0.html
* igt@gem_exec_parallel@contexts@vcs0:
- shard-hsw: [PASS][3] -> [FAIL][4] +3 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-hsw2/igt@gem_exec_parallel@contexts@vcs0.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-hsw2/igt@gem_exec_parallel@contexts@vcs0.html
* igt@kms_cursor_crc@pipe-b-cursor-128x42-offscreen:
- shard-hsw: [PASS][5] -> [INCOMPLETE][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-hsw5/igt@kms_cursor_crc@pipe-b-cursor-128x42-offscreen.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-hsw2/igt@kms_cursor_crc@pipe-b-cursor-128x42-offscreen.html
* {igt@perf_pmu@rebind} (NEW):
- shard-hsw: NOTRUN -> [INCOMPLETE][7]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-hsw8/igt@perf_pmu@rebind.html
New tests
---------
New tests have been introduced between CI_DRM_9182_full and IGTPW_5082_full:
### New IGT tests (1) ###
* igt@perf_pmu@rebind:
- Statuses : 1 incomplete(s) 6 pass(s)
- Exec time: [0.0, 4.60] s
Known issues
------------
Here are the changes found in IGTPW_5082_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_parallel@contexts@vecs0:
- shard-hsw: [PASS][8] -> [FAIL][9] ([i915#1888]) +3 similar issues
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-hsw2/igt@gem_exec_parallel@contexts@vecs0.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-hsw2/igt@gem_exec_parallel@contexts@vecs0.html
* igt@gem_exec_reloc@basic-many-active@vcs0:
- shard-glk: [PASS][10] -> [FAIL][11] ([i915#2389])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-glk3/igt@gem_exec_reloc@basic-many-active@vcs0.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-glk7/igt@gem_exec_reloc@basic-many-active@vcs0.html
* igt@gem_exec_whisper@basic-contexts-forked-all:
- shard-glk: [PASS][12] -> [DMESG-WARN][13] ([i915#118] / [i915#95])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-glk6/igt@gem_exec_whisper@basic-contexts-forked-all.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-glk1/igt@gem_exec_whisper@basic-contexts-forked-all.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-kbl: [PASS][14] -> [TIMEOUT][15] ([i915#1288])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-kbl4/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-kbl6/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-apl: [PASS][16] -> [TIMEOUT][17] ([i915#1288] / [i915#1635])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-apl8/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-apl1/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_cursor_edge_walk@pipe-b-128x128-bottom-edge:
- shard-glk: [PASS][18] -> [DMESG-WARN][19] ([i915#1982])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-glk1/igt@kms_cursor_edge_walk@pipe-b-128x128-bottom-edge.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-glk9/igt@kms_cursor_edge_walk@pipe-b-128x128-bottom-edge.html
* igt@kms_flip@flip-vs-expired-vblank@a-dp1:
- shard-kbl: [PASS][20] -> [DMESG-WARN][21] ([i915#78]) +1 similar issue
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-kbl2/igt@kms_flip@flip-vs-expired-vblank@a-dp1.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-kbl2/igt@kms_flip@flip-vs-expired-vblank@a-dp1.html
* igt@kms_flip@flip-vs-panning@c-dp1:
- shard-kbl: [PASS][22] -> [DMESG-WARN][23] ([i915#2282] / [i915#78])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-kbl2/igt@kms_flip@flip-vs-panning@c-dp1.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-kbl2/igt@kms_flip@flip-vs-panning@c-dp1.html
* igt@kms_flip_tiling@flip-changes-tiling-yf:
- shard-kbl: [PASS][24] -> [DMESG-WARN][25] ([i915#1982])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-kbl2/igt@kms_flip_tiling@flip-changes-tiling-yf.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-kbl6/igt@kms_flip_tiling@flip-changes-tiling-yf.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-kbl: [PASS][26] -> [DMESG-WARN][27] ([i915#165] / [i915#78])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-kbl6/igt@kms_force_connector_basic@force-connector-state.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-kbl2/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move:
- shard-glk: [PASS][28] -> [FAIL][29] ([i915#49])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-glk8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-glk6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
* igt@kms_psr2_su@frontbuffer:
- shard-iclb: [PASS][30] -> [SKIP][31] ([fdo#109642] / [fdo#111068])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-iclb2/igt@kms_psr2_su@frontbuffer.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-iclb7/igt@kms_psr2_su@frontbuffer.html
* igt@kms_psr@psr2_cursor_mmap_cpu:
- shard-tglb: [PASS][32] -> [SKIP][33] ([i915#668]) +2 similar issues
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-tglb2/igt@kms_psr@psr2_cursor_mmap_cpu.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-tglb8/igt@kms_psr@psr2_cursor_mmap_cpu.html
* igt@kms_psr@psr2_primary_page_flip:
- shard-iclb: [PASS][34] -> [SKIP][35] ([fdo#109441]) +1 similar issue
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-iclb7/igt@kms_psr@psr2_primary_page_flip.html
* igt@kms_setmode@basic:
- shard-apl: [PASS][36] -> [FAIL][37] ([i915#1635] / [i915#31])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-apl2/igt@kms_setmode@basic.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-apl7/igt@kms_setmode@basic.html
* igt@kms_universal_plane@universal-plane-pipe-b-sanity:
- shard-tglb: [PASS][38] -> [DMESG-WARN][39] ([i915#1982]) +4 similar issues
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-tglb5/igt@kms_universal_plane@universal-plane-pipe-b-sanity.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-tglb7/igt@kms_universal_plane@universal-plane-pipe-b-sanity.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-apl: [PASS][40] -> [SKIP][41] ([fdo#109271] / [i915#1354] / [i915#1635]) +1 similar issue
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-apl8/igt@perf@gen8-unprivileged-single-ctx-counters.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-apl6/igt@perf@gen8-unprivileged-single-ctx-counters.html
- shard-glk: [PASS][42] -> [SKIP][43] ([fdo#109271] / [i915#1354]) +1 similar issue
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-glk9/igt@perf@gen8-unprivileged-single-ctx-counters.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-glk9/igt@perf@gen8-unprivileged-single-ctx-counters.html
- shard-iclb: [PASS][44] -> [SKIP][45] ([i915#1354]) +1 similar issue
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-iclb2/igt@perf@gen8-unprivileged-single-ctx-counters.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-iclb4/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@invalid-oa-format-id:
- shard-kbl: [PASS][46] -> [SKIP][47] ([fdo#109271] / [i915#1354]) +1 similar issue
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-kbl7/igt@perf@invalid-oa-format-id.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-kbl7/igt@perf@invalid-oa-format-id.html
- shard-hsw: [PASS][48] -> [SKIP][49] ([fdo#109271])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-hsw8/igt@perf@invalid-oa-format-id.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-hsw2/igt@perf@invalid-oa-format-id.html
- shard-tglb: [PASS][50] -> [SKIP][51] ([i915#1354])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-tglb5/igt@perf@invalid-oa-format-id.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-tglb5/igt@perf@invalid-oa-format-id.html
#### Possible fixes ####
* igt@gem_exec_reloc@basic-many-active@rcs0:
- shard-apl: [FAIL][52] ([i915#1635] / [i915#2389]) -> [PASS][53]
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-apl7/igt@gem_exec_reloc@basic-many-active@rcs0.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-apl2/igt@gem_exec_reloc@basic-many-active@rcs0.html
- shard-glk: [FAIL][54] ([i915#2389]) -> [PASS][55]
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-glk3/igt@gem_exec_reloc@basic-many-active@rcs0.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-glk7/igt@gem_exec_reloc@basic-many-active@rcs0.html
* igt@gem_exec_whisper@basic-queues:
- shard-iclb: [INCOMPLETE][56] -> [PASS][57]
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-iclb8/igt@gem_exec_whisper@basic-queues.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-iclb3/igt@gem_exec_whisper@basic-queues.html
* igt@i915_pm_dc@dc6-psr:
- shard-iclb: [FAIL][58] ([i915#454]) -> [PASS][59]
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-iclb2/igt@i915_pm_dc@dc6-psr.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-iclb7/igt@i915_pm_dc@dc6-psr.html
* {igt@kms_async_flips@async-flip-with-page-flip-events}:
- shard-kbl: [FAIL][60] ([i915#2521]) -> [PASS][61]
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-kbl4/igt@kms_async_flips@async-flip-with-page-flip-events.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-kbl6/igt@kms_async_flips@async-flip-with-page-flip-events.html
- shard-glk: [FAIL][62] ([i915#2521]) -> [PASS][63]
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-glk2/igt@kms_async_flips@async-flip-with-page-flip-events.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-glk3/igt@kms_async_flips@async-flip-with-page-flip-events.html
- shard-tglb: [FAIL][64] ([i915#2521]) -> [PASS][65]
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-tglb1/igt@kms_async_flips@async-flip-with-page-flip-events.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-tglb2/igt@kms_async_flips@async-flip-with-page-flip-events.html
* igt@kms_big_fb@linear-32bpp-rotate-180:
- shard-glk: [DMESG-FAIL][66] ([i915#118] / [i915#95]) -> [PASS][67]
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-glk3/igt@kms_big_fb@linear-32bpp-rotate-180.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-glk4/igt@kms_big_fb@linear-32bpp-rotate-180.html
* igt@kms_cursor_crc@pipe-c-cursor-64x21-sliding:
- shard-glk: [FAIL][68] ([i915#54]) -> [PASS][69]
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-glk2/igt@kms_cursor_crc@pipe-c-cursor-64x21-sliding.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-glk6/igt@kms_cursor_crc@pipe-c-cursor-64x21-sliding.html
- shard-apl: [FAIL][70] ([i915#1635] / [i915#54]) -> [PASS][71]
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-apl2/igt@kms_cursor_crc@pipe-c-cursor-64x21-sliding.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-apl7/igt@kms_cursor_crc@pipe-c-cursor-64x21-sliding.html
- shard-kbl: [FAIL][72] ([i915#54]) -> [PASS][73]
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-kbl1/igt@kms_cursor_crc@pipe-c-cursor-64x21-sliding.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-kbl7/igt@kms_cursor_crc@pipe-c-cursor-64x21-sliding.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1:
- shard-hsw: [DMESG-WARN][74] ([i915#1982]) -> [PASS][75]
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-hsw6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-hsw8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html
* igt@kms_flip@blocking-wf_vblank@a-edp1:
- shard-tglb: [DMESG-WARN][76] ([i915#1982]) -> [PASS][77] +5 similar issues
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-tglb5/igt@kms_flip@blocking-wf_vblank@a-edp1.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-tglb5/igt@kms_flip@blocking-wf_vblank@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2:
- shard-glk: [FAIL][78] ([i915#79]) -> [PASS][79] +1 similar issue
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-glk9/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-glk9/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-dp1:
- shard-kbl: [DMESG-WARN][80] ([i915#180]) -> [PASS][81]
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html
* igt@kms_flip_tiling@flip-changes-tiling:
- shard-apl: [DMESG-WARN][82] ([i915#1635] / [i915#1982]) -> [PASS][83] +1 similar issue
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-apl7/igt@kms_flip_tiling@flip-changes-tiling.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-apl1/igt@kms_flip_tiling@flip-changes-tiling.html
* igt@kms_frontbuffer_tracking@fbc-modesetfrombusy:
- shard-snb: [FAIL][84] ([i915#2546]) -> [PASS][85]
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-snb4/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-snb7/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html
* igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
- shard-iclb: [DMESG-WARN][86] ([i915#1982]) -> [PASS][87]
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-iclb6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-iclb5/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
* igt@kms_psr@psr2_primary_render:
- shard-iclb: [SKIP][88] ([fdo#109441]) -> [PASS][89]
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-iclb6/igt@kms_psr@psr2_primary_render.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-iclb2/igt@kms_psr@psr2_primary_render.html
* igt@perf@polling:
- shard-glk: [SKIP][90] ([fdo#109271] / [i915#1354]) -> [PASS][91]
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-glk7/igt@perf@polling.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-glk3/igt@perf@polling.html
- shard-tglb: [SKIP][92] ([i915#1354]) -> [PASS][93]
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-tglb7/igt@perf@polling.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-tglb2/igt@perf@polling.html
- shard-apl: [SKIP][94] ([fdo#109271] / [i915#1354] / [i915#1635]) -> [PASS][95]
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-apl1/igt@perf@polling.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-apl1/igt@perf@polling.html
- shard-kbl: [SKIP][96] ([fdo#109271] / [i915#1354]) -> [PASS][97]
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-kbl7/igt@perf@polling.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-kbl6/igt@perf@polling.html
- shard-hsw: [SKIP][98] ([fdo#109271]) -> [PASS][99]
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-hsw1/igt@perf@polling.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-hsw5/igt@perf@polling.html
- shard-iclb: [SKIP][100] ([i915#1354]) -> [PASS][101]
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-iclb7/igt@perf@polling.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-iclb8/igt@perf@polling.html
* igt@prime_vgem@coherency-blt:
- shard-hsw: [FAIL][102] -> [PASS][103]
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-hsw1/igt@prime_vgem@coherency-blt.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-hsw8/igt@prime_vgem@coherency-blt.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-tglb: [DMESG-WARN][104] ([i915#1982] / [i915#2411]) -> [DMESG-WARN][105] ([i915#2411])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_plane_alpha_blend@pipe-a-alpha-7efc:
- shard-apl: [FAIL][106] ([fdo#108145] / [i915#1635] / [i915#265]) -> [DMESG-FAIL][107] ([fdo#108145] / [i915#1635] / [i915#1982])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-apl7/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-apl1/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-tglb: [SKIP][108] ([fdo#109289]) -> [SKIP][109] ([i915#1354])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9182/shard-tglb3/igt@perf@gen8-unprivileged-single-ctx-counters.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/shard-tglb6/igt@perf@gen8-unprivileged-single-ctx-counters.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
[i915#1288]: https://gitlab.freedesktop.org/drm/intel/issues/1288
[i915#1354]: https://gitlab.freedesktop.org/drm/intel/issues/1354
[i915#1635]: https://gitlab.freedesktop.org/drm/intel/issues/1635
[i915#165]: https://gitlab.freedesktop.org/drm/intel/issues/165
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2282]: https://gitlab.freedesktop.org/drm/intel/issues/2282
[i915#2389]: https://gitlab.freedesktop.org/drm/intel/issues/2389
[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#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
[i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
[i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
[i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49
[i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
[i915#668]: https://gitlab.freedesktop.org/drm/intel/issues/668
[i915#78]: https://gitlab.freedesktop.org/drm/intel/issues/78
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95
Participating hosts (11 -> 8)
------------------------------
Missing (3): pig-skl-6260u pig-glk-j5005 pig-icl-1065g7
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5822 -> IGTPW_5082
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_9182: 5d76506480cdfef424b52f63a0d21093b2c78dc4 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_5082: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5082/index.html
IGT_5822: b4bcf05cb9839037128905deda7146434155cc41 @ 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_5082/index.html
[-- Attachment #1.2: Type: text/html, Size: 27995 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] 3+ messages in thread
end of thread, other threads:[~2020-10-22 13:16 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-22 9:48 [Intel-gfx] [PATCH i-g-t v2] tests/i915/perf_pmu: PCI unbind test Tvrtko Ursulin
2020-10-22 10:27 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/perf_pmu: PCI unbind test (rev2) Patchwork
2020-10-22 13:16 ` [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