* [igt-dev] [PATCH] i915/perf: Sanity check reports in mapped OA buffer
@ 2020-07-14 7:13 Umesh Nerlige Ramappa
0 siblings, 0 replies; 4+ messages in thread
From: Umesh Nerlige Ramappa @ 2020-07-14 7:13 UTC (permalink / raw)
To: Lionel G Landwerlin, igt-dev
For applications that need a faster way to access reports in the OA
buffer, i915 now provides a way to map the OA buffer to privileged user
space. Add a test to sanity check reports in the mapped OA buffer.
Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
---
include/drm-uapi/i915_drm.h | 19 +++++++
tests/i915/perf.c | 100 ++++++++++++++++++++++++++++++++++++
2 files changed, 119 insertions(+)
diff --git a/include/drm-uapi/i915_drm.h b/include/drm-uapi/i915_drm.h
index 2b55af13..d03ee5dd 100644
--- a/include/drm-uapi/i915_drm.h
+++ b/include/drm-uapi/i915_drm.h
@@ -2048,6 +2048,25 @@ struct drm_i915_perf_open_param {
*/
#define I915_PERF_IOCTL_CONFIG _IO('i', 0x2)
+/**
+ * Returns OA buffer properties.
+ *
+ * This ioctl is available in perf revision 6.
+ */
+#define I915_PERF_IOCTL_GET_OA_BUFFER_INFO _IO('i', 0x3)
+
+/**
+ * OA buffer information structure.
+ */
+struct drm_i915_perf_oa_buffer_info {
+ __u32 size;
+ __u32 head;
+ __u32 tail;
+ __u32 gpu_address;
+ __u64 cpu_address;
+ __u64 reserved[4];
+};
+
/**
* Common to all i915 perf records
*/
diff --git a/tests/i915/perf.c b/tests/i915/perf.c
index 92edc9f1..194569e1 100644
--- a/tests/i915/perf.c
+++ b/tests/i915/perf.c
@@ -204,6 +204,7 @@ static struct intel_perf *intel_perf = NULL;
static struct intel_perf_metric_set *test_set = NULL;
static bool *undefined_a_counters;
static uint64_t oa_exp_1_millisec;
+struct intel_mmio_data mmio_data;
static igt_render_copyfunc_t render_copy = NULL;
static uint32_t (*read_report_ticks)(uint32_t *report,
@@ -4768,6 +4769,95 @@ test_whitelisted_registers_userspace_config(void)
i915_perf_remove_config(drm_fd, config_id);
}
+#define OA_BUFFER_DATA(tail, head, oa_buffer_size) \
+ (((tail) - (head)) & ((oa_buffer_size) - 1))
+
+static void dump_oa_buffer_info(struct drm_i915_perf_oa_buffer_info *oa_buffer)
+{
+ igt_debug("size = %d\n", oa_buffer->size);
+ igt_debug("head = %x\n", oa_buffer->head);
+ igt_debug("tail = %x\n", oa_buffer->tail);
+ igt_debug("gpu_address = %x\n", oa_buffer->gpu_address);
+ igt_debug("cpu_address = %llx\n", oa_buffer->cpu_address);
+}
+
+static uint32_t oa_status_reg(void)
+{
+ if (IS_HASWELL(devid))
+ return intel_register_read(&mmio_data, 0x2346) & 0x7;
+ else if (IS_GEN12(devid))
+ return intel_register_read(&mmio_data, 0xdafc) & 0x7;
+ else
+ return intel_register_read(&mmio_data, 0x2b08) & 0xf;
+}
+
+static void check_reports_from_mapped_buffer(enum drm_i915_oa_format fmt,
+ int oa_exponent)
+{
+ struct drm_i915_perf_oa_buffer_info oa_buffer;
+ struct oa_format format = get_oa_format(fmt);
+ size_t report_size = format.size;
+ uint8_t *reports;
+ uint32_t *report0, *report1;
+ uint32_t offset, num_reports, timer_reports = 0;
+ uint32_t period_us = oa_exponent_to_ns(oa_exponent) / 1000;
+ int i;
+
+ /* wait for approx 100 reports */
+ usleep(100 * period_us);
+ do_ioctl(stream_fd, I915_PERF_IOCTL_GET_OA_BUFFER_INFO, &oa_buffer);
+ dump_oa_buffer_info(&oa_buffer);
+
+ igt_assert_eq(oa_buffer.size & (oa_buffer.size - 1), 0);
+ igt_assert_neq(oa_buffer.head, 0);
+ igt_assert_neq(oa_buffer.tail, 0);
+ igt_assert_neq(oa_buffer.gpu_address, 0);
+ igt_assert_neq(oa_buffer.cpu_address, 0);
+
+ igt_assert_eq(oa_status_reg(), 0);
+
+ offset = oa_buffer.head - oa_buffer.gpu_address;
+ reports = (uint8_t *) (oa_buffer.cpu_address + offset);
+
+ num_reports = OA_BUFFER_DATA(oa_buffer.tail,
+ oa_buffer.head,
+ oa_buffer.size) / report_size;
+
+ for (i = 0; i < num_reports; i++) {
+ report1 = (uint32_t *)(reports + (i * report_size));
+ if (!oa_report_is_periodic(oa_exponent, report1))
+ continue;
+
+ timer_reports++;
+ if (timer_reports >= 2)
+ sanity_check_reports(report0, report1, fmt);
+
+ report0 = report1;
+ }
+}
+
+static void test_mapped_oa_buffer(void)
+{
+ int oa_exponent = max_oa_exponent_for_period_lte(1000000);
+ enum drm_i915_oa_format fmt = test_set->perf_oa_format;
+ uint64_t properties[] = {
+ DRM_I915_PERF_PROP_SAMPLE_OA, true,
+ DRM_I915_PERF_PROP_OA_METRICS_SET, test_set->perf_oa_metrics_set,
+ DRM_I915_PERF_PROP_OA_FORMAT, fmt,
+ DRM_I915_PERF_PROP_OA_EXPONENT, oa_exponent,
+
+ };
+ struct drm_i915_perf_open_param param = {
+ .flags = I915_PERF_FLAG_FD_CLOEXEC,
+ .num_properties = sizeof(properties) / 16,
+ .properties_ptr = to_user_pointer(properties),
+ };
+
+ stream_fd = __perf_open(drm_fd, ¶m, false);
+ check_reports_from_mapped_buffer(fmt, oa_exponent);
+ __perf_close(stream_fd);
+}
+
static unsigned
read_i915_module_ref(void)
{
@@ -4936,6 +5026,9 @@ igt_main
render_copy = igt_get_render_copyfunc(devid);
igt_require_f(render_copy, "no render-copy function\n");
+
+ intel_register_access_init(&mmio_data, intel_get_pci_device(),
+ 0, drm_fd);
}
igt_subtest("non-system-wide-paranoid")
@@ -5096,6 +5189,12 @@ igt_main
igt_subtest("whitelisted-registers-userspace-config")
test_whitelisted_registers_userspace_config();
+ igt_describe("Verify mapping of oa buffer to umd");
+ igt_subtest("mapped-oa-buffer") {
+ igt_require(i915_perf_revision(drm_fd) >= 6);
+ test_mapped_oa_buffer();
+ }
+
igt_fixture {
/* leave sysctl options in their default state... */
write_u64_file("/proc/sys/dev/i915/oa_max_sample_rate", 100000);
@@ -5104,6 +5203,7 @@ igt_main
if (intel_perf)
intel_perf_free(intel_perf);
+ intel_register_access_fini(&mmio_data);
close(drm_fd);
}
}
--
2.20.1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [igt-dev] [PATCH] i915/perf: Sanity check reports in mapped OA buffer
@ 2020-07-17 1:54 Umesh Nerlige Ramappa
2020-07-17 2:20 ` [igt-dev] ✓ Fi.CI.BAT: success for i915/perf: Sanity check reports in mapped OA buffer (rev2) Patchwork
2020-07-17 4:02 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
0 siblings, 2 replies; 4+ messages in thread
From: Umesh Nerlige Ramappa @ 2020-07-17 1:54 UTC (permalink / raw)
To: Lionel G Landwerlin, igt-dev
For applications that need a faster way to access reports in the OA
buffer, i915 now provides a way to map the OA buffer to privileged user
space. Add a test to sanity check reports in the mapped OA buffer.
Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
---
include/drm-uapi/i915_drm.h | 32 ++++++++++
tests/i915/perf.c | 118 ++++++++++++++++++++++++++++++++++++
2 files changed, 150 insertions(+)
diff --git a/include/drm-uapi/i915_drm.h b/include/drm-uapi/i915_drm.h
index 2b55af13..f7523d55 100644
--- a/include/drm-uapi/i915_drm.h
+++ b/include/drm-uapi/i915_drm.h
@@ -2048,6 +2048,38 @@ struct drm_i915_perf_open_param {
*/
#define I915_PERF_IOCTL_CONFIG _IO('i', 0x2)
+/**
+ * Returns OA buffer properties to be used with mmap.
+ *
+ * This ioctl is available in perf revision 6.
+ */
+#define I915_PERF_IOCTL_GET_OA_BUFFER_INFO _IO('i', 0x3)
+
+/**
+ * OA buffer size and offset.
+ */
+struct drm_i915_perf_oa_buffer_info {
+ __u32 size;
+ __u32 offset;
+ __u64 reserved[4];
+};
+
+/**
+ * Returns current position of OA buffer head and tail.
+ *
+ * This ioctl is available in perf revision 6.
+ */
+#define I915_PERF_IOCTL_GET_OA_BUFFER_HEAD_TAIL _IO('i', 0x4)
+
+/**
+ * OA buffer head and tail.
+ */
+struct drm_i915_perf_oa_buffer_head_tail {
+ __u32 head;
+ __u32 tail;
+ __u64 reserved[4];
+};
+
/**
* Common to all i915 perf records
*/
diff --git a/tests/i915/perf.c b/tests/i915/perf.c
index 92edc9f1..36e98ffa 100644
--- a/tests/i915/perf.c
+++ b/tests/i915/perf.c
@@ -204,6 +204,7 @@ static struct intel_perf *intel_perf = NULL;
static struct intel_perf_metric_set *test_set = NULL;
static bool *undefined_a_counters;
static uint64_t oa_exp_1_millisec;
+struct intel_mmio_data mmio_data;
static igt_render_copyfunc_t render_copy = NULL;
static uint32_t (*read_report_ticks)(uint32_t *report,
@@ -4768,6 +4769,108 @@ test_whitelisted_registers_userspace_config(void)
i915_perf_remove_config(drm_fd, config_id);
}
+#define OA_BUFFER_DATA(tail, head, oa_buffer_size) \
+ (((tail) - (head)) & ((oa_buffer_size) - 1))
+
+static uint32_t oa_status_reg(void)
+{
+ if (IS_HASWELL(devid))
+ return intel_register_read(&mmio_data, 0x2346) & 0x7;
+ else if (IS_GEN12(devid))
+ return intel_register_read(&mmio_data, 0xdafc) & 0x7;
+ else
+ return intel_register_read(&mmio_data, 0x2b08) & 0xf;
+}
+
+static void check_reports_from_mapped_buffer(enum drm_i915_oa_format fmt,
+ int oa_exponent)
+{
+ struct drm_i915_perf_oa_buffer_info oa_buffer;
+ struct drm_i915_perf_oa_buffer_head_tail oa_ht;
+ struct oa_format format = get_oa_format(fmt);
+ size_t report_size = format.size;
+ uint8_t *reports;
+ uint32_t *report0, *report1;
+ uint32_t num_reports, timer_reports = 0;
+ uint32_t period_us = oa_exponent_to_ns(oa_exponent) / 1000;
+ void *oa_vaddr;
+ int i;
+
+ do_ioctl(stream_fd, I915_PERF_IOCTL_GET_OA_BUFFER_INFO, &oa_buffer);
+
+ igt_debug("size = %d\n", oa_buffer.size);
+ igt_debug("offset = %x\n", oa_buffer.offset);
+
+ igt_assert_eq(oa_buffer.size & (oa_buffer.size - 1), 0);
+ igt_assert_eq(oa_status_reg(), 0);
+
+ /* try a couple invalid mmaps */
+ /* bad offsets */
+ igt_assert(mmap(0, oa_buffer.size, PROT_READ, MAP_PRIVATE,
+ stream_fd, 0) == (void *) -1);
+ igt_assert(mmap(0, oa_buffer.size, PROT_READ, MAP_PRIVATE,
+ stream_fd, 8192) == (void *) -1);
+ igt_assert(mmap(0, oa_buffer.size, PROT_READ, MAP_PRIVATE,
+ stream_fd, 11) == (void *) -1);
+
+ /* bad size */
+ igt_assert(mmap(0, oa_buffer.size + 4096, PROT_READ, MAP_PRIVATE,
+ stream_fd, oa_buffer.offset) == (void *) -1);
+
+ /* do the right thing */
+ oa_vaddr = mmap(0, oa_buffer.size, PROT_READ, MAP_PRIVATE, stream_fd, oa_buffer.offset);
+
+ /* wait for approx 100 reports */
+ usleep(100 * period_us);
+
+ do_ioctl(stream_fd, I915_PERF_IOCTL_GET_OA_BUFFER_HEAD_TAIL, &oa_ht);
+
+ igt_debug("head = %x\n", oa_ht.head);
+ igt_debug("tail = %x\n", oa_ht.tail);
+
+ reports = (uint8_t *) (oa_vaddr + oa_ht.head);
+
+ num_reports = OA_BUFFER_DATA(oa_ht.tail,
+ oa_ht.head,
+ oa_buffer.size) / report_size;
+
+ for (i = 0; i < num_reports; i++) {
+ report1 = (uint32_t *)(reports + (i * report_size));
+ if (!oa_report_is_periodic(oa_exponent, report1))
+ continue;
+
+ timer_reports++;
+ if (timer_reports >= 2)
+ sanity_check_reports(report0, report1, fmt);
+
+ report0 = report1;
+ }
+
+ munmap(oa_vaddr, oa_buffer.size);
+}
+
+static void test_mapped_oa_buffer(void)
+{
+ int oa_exponent = max_oa_exponent_for_period_lte(1000000);
+ enum drm_i915_oa_format fmt = test_set->perf_oa_format;
+ uint64_t properties[] = {
+ DRM_I915_PERF_PROP_SAMPLE_OA, true,
+ DRM_I915_PERF_PROP_OA_METRICS_SET, test_set->perf_oa_metrics_set,
+ DRM_I915_PERF_PROP_OA_FORMAT, fmt,
+ DRM_I915_PERF_PROP_OA_EXPONENT, oa_exponent,
+
+ };
+ struct drm_i915_perf_open_param param = {
+ .flags = I915_PERF_FLAG_FD_CLOEXEC,
+ .num_properties = sizeof(properties) / 16,
+ .properties_ptr = to_user_pointer(properties),
+ };
+
+ stream_fd = __perf_open(drm_fd, ¶m, false);
+ check_reports_from_mapped_buffer(fmt, oa_exponent);
+ __perf_close(stream_fd);
+}
+
static unsigned
read_i915_module_ref(void)
{
@@ -4936,6 +5039,9 @@ igt_main
render_copy = igt_get_render_copyfunc(devid);
igt_require_f(render_copy, "no render-copy function\n");
+
+ intel_register_access_init(&mmio_data, intel_get_pci_device(),
+ 0, drm_fd);
}
igt_subtest("non-system-wide-paranoid")
@@ -5096,6 +5202,17 @@ igt_main
igt_subtest("whitelisted-registers-userspace-config")
test_whitelisted_registers_userspace_config();
+
+ igt_subtest_group {
+ igt_fixture {
+ igt_require(i915_perf_revision(drm_fd) >= 6);
+ }
+
+ igt_describe("Verify mapping of oa buffer");
+ igt_subtest("mapped-oa-buffer")
+ test_mapped_oa_buffer();
+ }
+
igt_fixture {
/* leave sysctl options in their default state... */
write_u64_file("/proc/sys/dev/i915/oa_max_sample_rate", 100000);
@@ -5104,6 +5221,7 @@ igt_main
if (intel_perf)
intel_perf_free(intel_perf);
+ intel_register_access_fini(&mmio_data);
close(drm_fd);
}
}
--
2.20.1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for i915/perf: Sanity check reports in mapped OA buffer (rev2)
2020-07-17 1:54 [igt-dev] [PATCH] i915/perf: Sanity check reports in mapped OA buffer Umesh Nerlige Ramappa
@ 2020-07-17 2:20 ` Patchwork
2020-07-17 4:02 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
1 sibling, 0 replies; 4+ messages in thread
From: Patchwork @ 2020-07-17 2:20 UTC (permalink / raw)
To: Umesh Nerlige Ramappa; +Cc: igt-dev
[-- Attachment #1.1: Type: text/plain, Size: 5502 bytes --]
== Series Details ==
Series: i915/perf: Sanity check reports in mapped OA buffer (rev2)
URL : https://patchwork.freedesktop.org/series/79459/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_8759 -> IGTPW_4773
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/index.html
Known issues
------------
Here are the changes found in IGTPW_4773 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_pm_rpm@module-reload:
- fi-byt-j1900: [PASS][1] -> [DMESG-WARN][2] ([i915#1982])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/fi-byt-j1900/igt@i915_pm_rpm@module-reload.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/fi-byt-j1900/igt@i915_pm_rpm@module-reload.html
* igt@prime_self_import@basic-with_two_bos:
- fi-tgl-y: [PASS][3] -> [DMESG-WARN][4] ([i915#402]) +1 similar issue
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/fi-tgl-y/igt@prime_self_import@basic-with_two_bos.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/fi-tgl-y/igt@prime_self_import@basic-with_two_bos.html
#### Possible fixes ####
* igt@gem_exec_suspend@basic-s3:
- fi-tgl-u2: [FAIL][5] ([i915#1888]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/fi-tgl-u2/igt@gem_exec_suspend@basic-s3.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/fi-tgl-u2/igt@gem_exec_suspend@basic-s3.html
* igt@i915_selftest@live@gt_lrc:
- fi-tgl-u2: [DMESG-FAIL][7] ([i915#1233]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/fi-tgl-u2/igt@i915_selftest@live@gt_lrc.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/fi-tgl-u2/igt@i915_selftest@live@gt_lrc.html
* igt@kms_busy@basic@flip:
- fi-tgl-y: [DMESG-WARN][9] ([i915#1982]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/fi-tgl-y/igt@kms_busy@basic@flip.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/fi-tgl-y/igt@kms_busy@basic@flip.html
* igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1:
- fi-icl-u2: [DMESG-WARN][11] ([i915#1982]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/fi-icl-u2/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/fi-icl-u2/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html
* igt@prime_vgem@basic-write:
- fi-tgl-y: [DMESG-WARN][13] ([i915#402]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/fi-tgl-y/igt@prime_vgem@basic-write.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/fi-tgl-y/igt@prime_vgem@basic-write.html
#### Warnings ####
* igt@gem_exec_suspend@basic-s0:
- fi-kbl-x1275: [DMESG-WARN][15] ([i915#1982] / [i915#62] / [i915#92] / [i915#95]) -> [DMESG-WARN][16] ([i915#62] / [i915#92])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/fi-kbl-x1275/igt@gem_exec_suspend@basic-s0.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/fi-kbl-x1275/igt@gem_exec_suspend@basic-s0.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- fi-kbl-x1275: [DMESG-WARN][17] ([i915#62] / [i915#92]) -> [DMESG-WARN][18] ([i915#62] / [i915#92] / [i915#95])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/fi-kbl-x1275/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/fi-kbl-x1275/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_force_connector_basic@force-edid:
- fi-kbl-x1275: [DMESG-WARN][19] ([i915#62] / [i915#92] / [i915#95]) -> [DMESG-WARN][20] ([i915#62] / [i915#92]) +2 similar issues
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/fi-kbl-x1275/igt@kms_force_connector_basic@force-edid.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/fi-kbl-x1275/igt@kms_force_connector_basic@force-edid.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#1233]: https://gitlab.freedesktop.org/drm/intel/issues/1233
[i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
[i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62
[i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92
[i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95
Participating hosts (45 -> 40)
------------------------------
Missing (5): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-byt-clapper
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5738 -> IGTPW_4773
CI-20190529: 20190529
CI_DRM_8759: 9136d875406863759c4c7939f4b32edf7d76b007 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_4773: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/index.html
IGT_5738: bc8b56fe177af34fbde7b96f1f66614a0014c6ef @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Testlist changes ==
+igt@perf@mapped-oa-buffer
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/index.html
[-- Attachment #1.2: Type: text/html, Size: 7397 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] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for i915/perf: Sanity check reports in mapped OA buffer (rev2)
2020-07-17 1:54 [igt-dev] [PATCH] i915/perf: Sanity check reports in mapped OA buffer Umesh Nerlige Ramappa
2020-07-17 2:20 ` [igt-dev] ✓ Fi.CI.BAT: success for i915/perf: Sanity check reports in mapped OA buffer (rev2) Patchwork
@ 2020-07-17 4:02 ` Patchwork
1 sibling, 0 replies; 4+ messages in thread
From: Patchwork @ 2020-07-17 4:02 UTC (permalink / raw)
To: Umesh Nerlige Ramappa; +Cc: igt-dev
[-- Attachment #1.1: Type: text/plain, Size: 23164 bytes --]
== Series Details ==
Series: i915/perf: Sanity check reports in mapped OA buffer (rev2)
URL : https://patchwork.freedesktop.org/series/79459/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_8759_full -> IGTPW_4773_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/index.html
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_4773_full:
### IGT changes ###
#### Possible regressions ####
* {igt@perf@mapped-oa-buffer} (NEW):
- shard-tglb: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-tglb2/igt@perf@mapped-oa-buffer.html
- shard-iclb: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-iclb4/igt@perf@mapped-oa-buffer.html
New tests
---------
New tests have been introduced between CI_DRM_8759_full and IGTPW_4773_full:
### New IGT tests (1) ###
* igt@perf@mapped-oa-buffer:
- Statuses : 7 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_4773_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gen9_exec_parse@allowed-all:
- shard-kbl: [PASS][3] -> [DMESG-WARN][4] ([i915#1436] / [i915#716])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-kbl2/igt@gen9_exec_parse@allowed-all.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-kbl6/igt@gen9_exec_parse@allowed-all.html
* igt@i915_module_load@reload:
- shard-tglb: [PASS][5] -> [DMESG-WARN][6] ([i915#402])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-tglb7/igt@i915_module_load@reload.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-tglb7/igt@i915_module_load@reload.html
* igt@i915_selftest@mock@requests:
- shard-apl: [PASS][7] -> [INCOMPLETE][8] ([i915#1635] / [i915#2110])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-apl3/igt@i915_selftest@mock@requests.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-apl2/igt@i915_selftest@mock@requests.html
- shard-hsw: [PASS][9] -> [INCOMPLETE][10] ([i915#2110])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-hsw2/igt@i915_selftest@mock@requests.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-hsw6/igt@i915_selftest@mock@requests.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-0:
- shard-glk: [PASS][11] -> [DMESG-FAIL][12] ([i915#118] / [i915#95]) +1 similar issue
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-glk9/igt@kms_big_fb@x-tiled-64bpp-rotate-0.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-glk8/igt@kms_big_fb@x-tiled-64bpp-rotate-0.html
* igt@kms_cursor_crc@pipe-b-cursor-64x64-rapid-movement:
- shard-snb: [PASS][13] -> [TIMEOUT][14] ([i915#1958] / [i915#2119]) +1 similar issue
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-snb2/igt@kms_cursor_crc@pipe-b-cursor-64x64-rapid-movement.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-snb5/igt@kms_cursor_crc@pipe-b-cursor-64x64-rapid-movement.html
* igt@kms_cursor_edge_walk@pipe-b-64x64-left-edge:
- shard-glk: [PASS][15] -> [DMESG-WARN][16] ([i915#1982])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-glk5/igt@kms_cursor_edge_walk@pipe-b-64x64-left-edge.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-glk2/igt@kms_cursor_edge_walk@pipe-b-64x64-left-edge.html
* igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2:
- shard-glk: [PASS][17] -> [FAIL][18] ([i915#79])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-glk8/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-glk6/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2.html
* igt@kms_frontbuffer_tracking@psr-farfromfence:
- shard-tglb: [PASS][19] -> [DMESG-WARN][20] ([i915#1982]) +4 similar issues
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-tglb2/igt@kms_frontbuffer_tracking@psr-farfromfence.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-tglb5/igt@kms_frontbuffer_tracking@psr-farfromfence.html
* igt@kms_psr2_su@frontbuffer:
- shard-tglb: [PASS][21] -> [SKIP][22] ([i915#1911])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-tglb3/igt@kms_psr2_su@frontbuffer.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-tglb6/igt@kms_psr2_su@frontbuffer.html
- shard-iclb: [PASS][23] -> [SKIP][24] ([i915#1911])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-iclb2/igt@kms_psr2_su@frontbuffer.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-iclb2/igt@kms_psr2_su@frontbuffer.html
* igt@kms_psr@psr2_cursor_render:
- shard-iclb: [PASS][25] -> [SKIP][26] ([fdo#109441]) +1 similar issue
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-iclb2/igt@kms_psr@psr2_cursor_render.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-iclb4/igt@kms_psr@psr2_cursor_render.html
* igt@kms_vblank@pipe-a-ts-continuation-suspend:
- shard-kbl: [PASS][27] -> [DMESG-WARN][28] ([i915#180]) +8 similar issues
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-kbl7/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-kbl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-apl: [PASS][29] -> [TIMEOUT][30] ([i915#1635] / [i915#1958] / [i915#2119])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-apl8/igt@perf@gen8-unprivileged-single-ctx-counters.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-apl2/igt@perf@gen8-unprivileged-single-ctx-counters.html
- shard-glk: [PASS][31] -> [TIMEOUT][32] ([i915#1958] / [i915#2119])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-glk4/igt@perf@gen8-unprivileged-single-ctx-counters.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-glk4/igt@perf@gen8-unprivileged-single-ctx-counters.html
- shard-iclb: [PASS][33] -> [TIMEOUT][34] ([i915#1958] / [i915#2119])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-iclb7/igt@perf@gen8-unprivileged-single-ctx-counters.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-iclb4/igt@perf@gen8-unprivileged-single-ctx-counters.html
- shard-kbl: [PASS][35] -> [TIMEOUT][36] ([i915#1958] / [i915#2119])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-kbl6/igt@perf@gen8-unprivileged-single-ctx-counters.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-kbl1/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@rc6-disable:
- shard-iclb: [PASS][37] -> [TIMEOUT][38] ([i915#2119])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-iclb2/igt@perf@rc6-disable.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-iclb1/igt@perf@rc6-disable.html
- shard-hsw: [PASS][39] -> [TIMEOUT][40] ([i915#2119])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-hsw1/igt@perf@rc6-disable.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-hsw1/igt@perf@rc6-disable.html
- shard-kbl: [PASS][41] -> [TIMEOUT][42] ([i915#2119])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-kbl2/igt@perf@rc6-disable.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-kbl7/igt@perf@rc6-disable.html
- shard-apl: [PASS][43] -> [TIMEOUT][44] ([i915#1635] / [i915#2119])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-apl4/igt@perf@rc6-disable.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-apl3/igt@perf@rc6-disable.html
- shard-tglb: [PASS][45] -> [TIMEOUT][46] ([i915#2119])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-tglb8/igt@perf@rc6-disable.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-tglb1/igt@perf@rc6-disable.html
- shard-glk: [PASS][47] -> [TIMEOUT][48] ([i915#2119])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-glk4/igt@perf@rc6-disable.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-glk5/igt@perf@rc6-disable.html
* igt@syncobj_wait@invalid-reset-one-illegal-handle:
- shard-hsw: [PASS][49] -> [TIMEOUT][50] ([i915#1958] / [i915#2119]) +2 similar issues
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-hsw1/igt@syncobj_wait@invalid-reset-one-illegal-handle.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-hsw6/igt@syncobj_wait@invalid-reset-one-illegal-handle.html
#### Possible fixes ####
* igt@dumb_buffer@map-invalid-size:
- shard-hsw: [TIMEOUT][51] ([i915#1958] / [i915#2119]) -> [PASS][52] +3 similar issues
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-hsw2/igt@dumb_buffer@map-invalid-size.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-hsw2/igt@dumb_buffer@map-invalid-size.html
* igt@gem_exec_balancer@bonded-early:
- shard-kbl: [FAIL][53] ([i915#2079]) -> [PASS][54]
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-kbl2/igt@gem_exec_balancer@bonded-early.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-kbl7/igt@gem_exec_balancer@bonded-early.html
* igt@gem_exec_params@sol-reset-not-gen7:
- shard-tglb: [DMESG-WARN][55] ([i915#402]) -> [PASS][56] +2 similar issues
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-tglb1/igt@gem_exec_params@sol-reset-not-gen7.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-tglb2/igt@gem_exec_params@sol-reset-not-gen7.html
* igt@gem_exec_whisper@basic-queues-all:
- shard-glk: [DMESG-WARN][57] ([i915#118] / [i915#95]) -> [PASS][58] +1 similar issue
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-glk2/igt@gem_exec_whisper@basic-queues-all.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-glk7/igt@gem_exec_whisper@basic-queues-all.html
* {igt@gem_huc_copy@huc-copy}:
- shard-tglb: [SKIP][59] ([i915#2190]) -> [PASS][60]
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-tglb6/igt@gem_huc_copy@huc-copy.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-tglb2/igt@gem_huc_copy@huc-copy.html
* igt@kms_big_fb@linear-64bpp-rotate-180:
- shard-glk: [DMESG-FAIL][61] ([i915#118] / [i915#95]) -> [PASS][62]
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-glk8/igt@kms_big_fb@linear-64bpp-rotate-180.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-glk3/igt@kms_big_fb@linear-64bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-180:
- shard-apl: [DMESG-WARN][63] ([i915#1635] / [i915#1982]) -> [PASS][64] +2 similar issues
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-apl7/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-apl6/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html
- shard-glk: [DMESG-WARN][65] ([i915#1982]) -> [PASS][66]
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-glk9/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-glk9/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html
* igt@kms_cursor_crc@pipe-c-cursor-suspend:
- shard-kbl: [DMESG-WARN][67] ([i915#180]) -> [PASS][68] +5 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-kbl1/igt@kms_cursor_crc@pipe-c-cursor-suspend.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-kbl1/igt@kms_cursor_crc@pipe-c-cursor-suspend.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-snb: [TIMEOUT][69] ([i915#1958] / [i915#2119]) -> [PASS][70] +2 similar issues
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-snb4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions:
- shard-tglb: [DMESG-WARN][71] ([i915#1982]) -> [PASS][72] +2 similar issues
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-tglb2/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-tglb8/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions.html
* igt@kms_flip_tiling@flip-changes-tiling-yf:
- shard-kbl: [DMESG-WARN][73] ([i915#1982]) -> [PASS][74] +1 similar issue
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-kbl7/igt@kms_flip_tiling@flip-changes-tiling-yf.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-kbl7/igt@kms_flip_tiling@flip-changes-tiling-yf.html
* igt@kms_psr@psr2_sprite_mmap_gtt:
- shard-iclb: [SKIP][75] ([fdo#109441]) -> [PASS][76] +3 similar issues
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-iclb6/igt@kms_psr@psr2_sprite_mmap_gtt.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html
* igt@kms_setmode@basic:
- shard-hsw: [FAIL][77] ([i915#31]) -> [PASS][78]
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-hsw7/igt@kms_setmode@basic.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-hsw1/igt@kms_setmode@basic.html
* igt@perf@blocking-parameterized:
- shard-iclb: [FAIL][79] ([i915#1542]) -> [PASS][80]
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-iclb4/igt@perf@blocking-parameterized.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-iclb6/igt@perf@blocking-parameterized.html
* igt@perf_pmu@busy-idle@rcs0:
- shard-snb: [FAIL][81] ([i915#1958]) -> [PASS][82] +1 similar issue
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-snb2/igt@perf_pmu@busy-idle@rcs0.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-snb2/igt@perf_pmu@busy-idle@rcs0.html
* igt@perf_pmu@busy-idle@vcs0:
- shard-hsw: [FAIL][83] ([i915#1958]) -> [PASS][84] +2 similar issues
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-hsw2/igt@perf_pmu@busy-idle@vcs0.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-hsw2/igt@perf_pmu@busy-idle@vcs0.html
- shard-snb: [INCOMPLETE][85] ([i915#2119] / [i915#82]) -> [PASS][86]
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-snb2/igt@perf_pmu@busy-idle@vcs0.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-snb2/igt@perf_pmu@busy-idle@vcs0.html
* igt@perf_pmu@busy-idle@vecs0:
- shard-hsw: [DMESG-FAIL][87] ([i915#2119]) -> [PASS][88]
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-hsw2/igt@perf_pmu@busy-idle@vecs0.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-hsw2/igt@perf_pmu@busy-idle@vecs0.html
#### Warnings ####
* igt@gem_exec_reloc@basic-spin-others@vcs0:
- shard-snb: [WARN][89] ([i915#2021]) -> [WARN][90] ([i915#2036])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-snb1/igt@gem_exec_reloc@basic-spin-others@vcs0.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-snb6/igt@gem_exec_reloc@basic-spin-others@vcs0.html
* igt@kms_ccs@pipe-c-ccs-on-another-bo:
- shard-hsw: [TIMEOUT][91] ([i915#1958] / [i915#2119]) -> [SKIP][92] ([fdo#109271])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-hsw2/igt@kms_ccs@pipe-c-ccs-on-another-bo.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-hsw1/igt@kms_ccs@pipe-c-ccs-on-another-bo.html
- shard-snb: [TIMEOUT][93] ([i915#1958] / [i915#2119]) -> [SKIP][94] ([fdo#109271]) +1 similar issue
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-snb2/igt@kms_ccs@pipe-c-ccs-on-another-bo.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-snb4/igt@kms_ccs@pipe-c-ccs-on-another-bo.html
* igt@kms_content_protection@srm:
- shard-kbl: [TIMEOUT][95] ([i915#1319] / [i915#1958] / [i915#2119]) -> [TIMEOUT][96] ([i915#1319] / [i915#2119])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-kbl4/igt@kms_content_protection@srm.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-kbl2/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen:
- shard-hsw: [SKIP][97] ([fdo#109271]) -> [TIMEOUT][98] ([i915#1958] / [i915#2119]) +2 similar issues
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-hsw2/igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-hsw6/igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen.html
* igt@kms_dp_dsc@basic-dsc-enable-edp:
- shard-iclb: [SKIP][99] ([fdo#109349]) -> [DMESG-WARN][100] ([i915#1226])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-iclb8/igt@kms_dp_dsc@basic-dsc-enable-edp.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-kbl: [DMESG-WARN][101] ([i915#1982]) -> [DMESG-WARN][102] ([i915#180])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-suspend.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_plane_lowres@pipe-d-tiling-y:
- shard-snb: [SKIP][103] ([fdo#109271]) -> [TIMEOUT][104] ([i915#1958] / [i915#2119]) +3 similar issues
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-snb6/igt@kms_plane_lowres@pipe-d-tiling-y.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-snb5/igt@kms_plane_lowres@pipe-d-tiling-y.html
* igt@runner@aborted:
- shard-kbl: ([FAIL][105], [FAIL][106], [FAIL][107], [FAIL][108], [FAIL][109], [FAIL][110]) ([i915#1436] / [i915#1784] / [i915#2110]) -> ([FAIL][111], [FAIL][112]) ([fdo#109271] / [i915#1436] / [i915#1784] / [i915#2110] / [i915#716])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-kbl4/igt@runner@aborted.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-kbl4/igt@runner@aborted.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-kbl7/igt@runner@aborted.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-kbl6/igt@runner@aborted.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-kbl3/igt@runner@aborted.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-kbl2/igt@runner@aborted.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-kbl6/igt@runner@aborted.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-kbl7/igt@runner@aborted.html
- shard-apl: ([FAIL][113], [FAIL][114]) ([i915#1610] / [i915#1635] / [i915#2110]) -> [FAIL][115] ([i915#1635] / [i915#2110])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-apl7/igt@runner@aborted.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8759/shard-apl6/igt@runner@aborted.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/shard-apl2/igt@runner@aborted.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
[i915#1226]: https://gitlab.freedesktop.org/drm/intel/issues/1226
[i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
[i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
[i915#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542
[i915#1610]: https://gitlab.freedesktop.org/drm/intel/issues/1610
[i915#1635]: https://gitlab.freedesktop.org/drm/intel/issues/1635
[i915#1784]: https://gitlab.freedesktop.org/drm/intel/issues/1784
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911
[i915#1958]: https://gitlab.freedesktop.org/drm/intel/issues/1958
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2021]: https://gitlab.freedesktop.org/drm/intel/issues/2021
[i915#2036]: https://gitlab.freedesktop.org/drm/intel/issues/2036
[i915#2079]: https://gitlab.freedesktop.org/drm/intel/issues/2079
[i915#2110]: https://gitlab.freedesktop.org/drm/intel/issues/2110
[i915#2119]: https://gitlab.freedesktop.org/drm/intel/issues/2119
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
[i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
[i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#82]: https://gitlab.freedesktop.org/drm/intel/issues/82
[i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95
Participating hosts (10 -> 8)
------------------------------
Missing (2): pig-skl-6260u pig-glk-j5005
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5738 -> IGTPW_4773
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_8759: 9136d875406863759c4c7939f4b32edf7d76b007 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_4773: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4773/index.html
IGT_5738: bc8b56fe177af34fbde7b96f1f66614a0014c6ef @ 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_4773/index.html
[-- Attachment #1.2: Type: text/html, Size: 29945 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] 4+ messages in thread
end of thread, other threads:[~2020-07-17 4:02 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-07-17 1:54 [igt-dev] [PATCH] i915/perf: Sanity check reports in mapped OA buffer Umesh Nerlige Ramappa
2020-07-17 2:20 ` [igt-dev] ✓ Fi.CI.BAT: success for i915/perf: Sanity check reports in mapped OA buffer (rev2) Patchwork
2020-07-17 4:02 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2020-07-14 7:13 [igt-dev] [PATCH] i915/perf: Sanity check reports in mapped OA buffer Umesh Nerlige Ramappa
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox