igt-dev.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t] tests/kms_big_fb: Make sure huge fbs work correctly
@ 2018-09-11 16:53 Ville Syrjala
  2018-09-11 18:54 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
  2018-09-12  0:56 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  0 siblings, 2 replies; 3+ messages in thread
From: Ville Syrjala @ 2018-09-11 16:53 UTC (permalink / raw)
  To: igt-dev

From: Ville Syrjälä <ville.syrjala@linux.intel.com>

Add various tests to excercise huge framebuffers. First some basic
sanity checks that the kernel accepts/rejects good/bad addfb2 ioctls,
and finally actual scanout tests to make sure we scan out the correct
thing from top-left and bottom-right of large framebuffers.

TODO: Need to rewrite not to render via cairo because that's
super slow when you're dealing with 4GiB framebuffers.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 tests/Makefile.sources |   1 +
 tests/kms_big_fb.c     | 414 +++++++++++++++++++++++++++++++++++++++++++++++++
 tests/meson.build      |   1 +
 3 files changed, 416 insertions(+)
 create mode 100644 tests/kms_big_fb.c

diff --git a/tests/Makefile.sources b/tests/Makefile.sources
index c84933f1d971..5a7da4854f1c 100644
--- a/tests/Makefile.sources
+++ b/tests/Makefile.sources
@@ -169,6 +169,7 @@ TESTS_progs = \
 	kms_atomic_interruptible \
 	kms_atomic_transition \
 	kms_available_modes_crc \
+	kms_big_fb \
 	kms_busy \
 	kms_ccs \
 	kms_chv_cursor_fail \
diff --git a/tests/kms_big_fb.c b/tests/kms_big_fb.c
new file mode 100644
index 000000000000..989a000ff02f
--- /dev/null
+++ b/tests/kms_big_fb.c
@@ -0,0 +1,414 @@
+/*
+ * Copyright © 2018 Intel Corporation
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
+ */
+
+#include "igt.h"
+#include <errno.h>
+#include <stdbool.h>
+#include <stdio.h>
+#include <string.h>
+
+typedef struct {
+	int drm_fd;
+	igt_display_t display;
+	enum pipe pipe;
+	igt_output_t *output;
+	igt_plane_t *plane;
+	igt_pipe_crc_t *pipe_crc;
+	struct igt_fb small_fb, big_fb;
+	uint64_t modifier;
+	struct {
+		int max_width, max_height;
+	} ram, kernel;
+} data_t;
+
+static void paint_pattern(data_t *data,
+			  struct igt_fb *fb,
+			  int w, int h)
+{
+	cairo_pattern_t *pat;
+	cairo_t *cr;
+
+	cr = igt_get_cairo_ctx(data->drm_fd, fb);
+
+	igt_paint_color(cr, 0, 0, w, h, 0.0, 0.0, 0.0);
+
+	pat = cairo_pattern_create_mesh();
+	cairo_mesh_pattern_begin_patch(pat);
+	cairo_mesh_pattern_move_to(pat, 0,  0);
+	cairo_mesh_pattern_line_to(pat, w, 0);
+	cairo_mesh_pattern_line_to(pat, w, h);
+	cairo_mesh_pattern_line_to(pat, 0, h);
+	cairo_mesh_pattern_set_corner_color_rgb(pat, 0, 0.0, 1.0, 1.0);
+	cairo_mesh_pattern_set_corner_color_rgb(pat, 1, 1.0, 0.0, 1.0);
+	cairo_mesh_pattern_set_corner_color_rgb(pat, 2, 1.0, 1.0, 0.0);
+	cairo_mesh_pattern_set_corner_color_rgb(pat, 3, 0.0, 0.0, 0.0);
+	cairo_mesh_pattern_end_patch(pat);
+
+	cairo_rectangle(cr, 0, 0, w, h);
+	cairo_set_source(cr, pat);
+	cairo_fill(cr);
+
+	cairo_pattern_destroy(pat);
+
+	igt_paint_test_pattern(cr, w, h);
+
+	igt_put_cairo_ctx(data->drm_fd, fb, cr);
+}
+
+static void copy_pattern(data_t *data,
+			  struct igt_fb *dst,
+			  struct igt_fb *src,
+			  int sx, int sy, int dx, int dy,
+			  int w, int h)
+{
+	cairo_surface_t *surface;
+	cairo_t *cr;
+
+	surface = igt_get_cairo_surface(data->drm_fd, src);
+
+	cr = igt_get_cairo_ctx(data->drm_fd, dst);
+
+	cairo_set_source_surface(cr, surface, dx-sx, dy-sy);
+	cairo_rectangle(cr, dx, dy, w, h);
+	cairo_fill (cr);
+
+	igt_put_cairo_ctx(data->drm_fd, dst, cr);
+
+	cairo_surface_destroy(surface);
+}
+
+static void test_plane(data_t *data)
+{
+	igt_plane_t *plane = data->plane;
+	struct igt_fb *small_fb = &data->small_fb;
+	struct igt_fb *big_fb = &data->big_fb;
+	igt_crc_t small_crc, big_crc;
+
+	if (plane->type == DRM_PLANE_TYPE_CURSOR)
+		return;
+
+	igt_info("small fb top left\n");
+	copy_pattern(data, small_fb, big_fb, 0, 0, 0, 0,
+		     small_fb->width, small_fb->height);
+	igt_plane_set_fb(plane, small_fb);
+	igt_display_commit2(&data->display, data->display.is_atomic ?
+			    COMMIT_ATOMIC : COMMIT_UNIVERSAL);
+	igt_pipe_crc_collect_crc(data->pipe_crc, &small_crc);
+
+	igt_info("big fb top left\n");
+	igt_plane_set_fb(plane, big_fb);
+	igt_fb_set_position(big_fb, plane, 0, 0);
+	igt_fb_set_size(big_fb, plane, small_fb->width, small_fb->height);
+	igt_plane_set_size(plane, small_fb->width, small_fb->height);
+	igt_display_commit2(&data->display, data->display.is_atomic ?
+			    COMMIT_ATOMIC : COMMIT_UNIVERSAL);
+	igt_pipe_crc_collect_crc(data->pipe_crc, &big_crc);
+
+	igt_assert_crc_equal(&big_crc, &small_crc);
+
+	igt_info("small fb bottom right\n");
+	copy_pattern(data, small_fb, big_fb,
+		     big_fb->width - small_fb->width,
+		     big_fb->height - small_fb->height,
+		     0, 0, small_fb->width, small_fb->height);
+	igt_plane_set_fb(plane, small_fb);
+	igt_display_commit2(&data->display, data->display.is_atomic ?
+			    COMMIT_ATOMIC : COMMIT_UNIVERSAL);
+	igt_pipe_crc_collect_crc(data->pipe_crc, &small_crc);
+
+	igt_info("big fb bottom right\n");
+	igt_plane_set_fb(plane, big_fb);
+	igt_fb_set_position(big_fb, plane,
+			    big_fb->width - small_fb->width,
+			    big_fb->height - small_fb->height);
+	igt_fb_set_size(big_fb, plane, small_fb->width, small_fb->height);
+	igt_plane_set_size(plane, small_fb->width, small_fb->height);
+	igt_display_commit2(&data->display, data->display.is_atomic ?
+			    COMMIT_ATOMIC : COMMIT_UNIVERSAL);
+	igt_pipe_crc_collect_crc(data->pipe_crc, &big_crc);
+
+	igt_assert_crc_equal(&big_crc, &small_crc);
+
+	igt_plane_set_fb(plane, NULL);
+	igt_display_commit2(&data->display, data->display.is_atomic ?
+			    COMMIT_ATOMIC : COMMIT_UNIVERSAL);
+}
+
+static void
+test_pipe(data_t *data)
+{
+	drmModeModeInfo *mode;
+
+	mode = igt_output_get_mode(data->output);
+
+	igt_create_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+		      DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+		      &data->small_fb);
+
+	igt_output_set_pipe(data->output, data->pipe);
+
+	if (!data->display.is_atomic) {
+		igt_plane_t *primary = igt_output_get_plane_type(data->output,
+								 DRM_PLANE_TYPE_PRIMARY);
+
+		/* legacy setcrtc needs an fb */
+		igt_plane_set_fb(primary, &data->small_fb);
+		igt_display_commit2(&data->display, COMMIT_LEGACY);
+		igt_plane_set_fb(primary, NULL);
+	}
+
+	igt_display_commit2(&data->display, data->display.is_atomic ?
+			    COMMIT_ATOMIC : COMMIT_UNIVERSAL);
+
+	data->pipe_crc = igt_pipe_crc_new(data->drm_fd, data->pipe,
+					  INTEL_PIPE_CRC_SOURCE_AUTO);
+
+	for_each_plane_on_pipe(&data->display, data->pipe, data->plane)
+		test_plane(data);
+
+	igt_pipe_crc_free(data->pipe_crc);
+
+	igt_remove_fb(data->drm_fd, &data->small_fb);
+}
+
+static void
+test_scanout(data_t *data)
+{
+	igt_create_fb(data->drm_fd,
+		      data->ram.max_width,
+		      data->ram.max_height,
+		      DRM_FORMAT_XRGB8888, data->modifier,
+		      &data->big_fb);
+
+	paint_pattern(data, &data->big_fb,
+		      data->big_fb.width, data->big_fb.height);
+
+	for_each_pipe_with_valid_output(&data->display, data->pipe, data->output)
+		test_pipe(data);
+
+	igt_remove_fb(data->drm_fd, &data->big_fb);
+}
+
+static void
+test_size_overflow(data_t *data)
+{
+	uint32_t fb_id;
+	uint32_t bo;
+	uint32_t offsets[4] = {};
+	int ret;
+
+	/*
+	 * Try to a specific integer overflow in i915 fb size
+	 * calculations. 32k * 32k * 4 == 1<<32 which is checked
+	 * against the bo size. The check should fail on account
+	 * of the bo being smaller, but due to the overflow the
+	 * computed fb size is 0 and thus the check never trips.
+	 */
+	igt_require(data->kernel.max_width >= 32767 &&
+		    data->kernel.max_height >= 32767);
+
+	bo = gem_create(data->drm_fd, (1ULL << 32) - 4096);
+	igt_require(bo);
+
+	ret = __kms_addfb(data->drm_fd, bo,
+			  32767, 32767,
+			  32768 * 4, DRM_FORMAT_XRGB8888,
+			  data->modifier,
+			  offsets, DRM_MODE_FB_MODIFIERS, &fb_id);
+	igt_assert_neq(ret, 0);
+
+	gem_close(data->drm_fd, bo);
+}
+
+static void
+test_size_offset_overflow(data_t *data)
+{
+	uint32_t fb_id;
+	uint32_t bo;
+	uint32_t offsets[4] = {};
+	int ret;
+
+	/*
+	 * Try to a specific integer overflow in i915 fb size
+	 * calculations. This time it's offsets[1] + the tile
+	 * aligned chroma plane size that overflows and
+	 * incorrectly passes the bo size check.
+	 */
+	igt_require(igt_display_has_format_mod(&data->display,
+					       DRM_FORMAT_NV12,
+					       data->modifier));
+
+	bo = gem_create(data->drm_fd, (1ULL << 32) - 4096);
+	igt_require(bo);
+
+	offsets[0] = 0;
+	offsets[1] = (1ULL << 32) - 8192 * 4096;
+
+	ret = __kms_addfb(data->drm_fd, bo,
+			  8192, 8188,
+			  8192, DRM_FORMAT_NV12,
+			  data->modifier,
+			  offsets, DRM_MODE_FB_MODIFIERS, &fb_id);
+	igt_assert_neq(ret, 0);
+
+	gem_close(data->drm_fd, bo);
+}
+
+static int rmfb(int fd, uint32_t id)
+{
+	int err;
+
+	err = 0;
+	if (igt_ioctl(fd, DRM_IOCTL_MODE_RMFB, &id))
+		err = -errno;
+
+	errno = 0;
+	return err;
+}
+
+static void
+test_addfb(data_t *data)
+{
+	uint64_t size;
+	unsigned int stride;
+	uint32_t fb_id;
+	uint32_t bo;
+	uint32_t offsets[4] = {};
+	int ret;
+
+	igt_calc_fb_size(data->drm_fd,
+			 data->kernel.max_width,
+			 data->kernel.max_height,
+			 DRM_FORMAT_XRGB8888,
+			 data->modifier,
+			 &size, &stride);
+
+	bo = gem_create(data->drm_fd, size);
+	igt_require(bo);
+
+	ret = __kms_addfb(data->drm_fd, bo,
+			  data->kernel.max_width,
+			  data->kernel.max_height,
+			  stride, DRM_FORMAT_XRGB8888,
+			  data->modifier,
+			  offsets, DRM_MODE_FB_MODIFIERS, &fb_id);
+	igt_assert_eq(ret, 0);
+
+	rmfb(data->drm_fd, fb_id);
+	gem_close(data->drm_fd, bo);
+}
+
+static data_t data;
+
+static const struct {
+	uint64_t modifier;
+	const char *name;
+} modifiers[] = {
+	{ DRM_FORMAT_MOD_LINEAR, "linear", },
+	{ I915_FORMAT_MOD_X_TILED, "x-tiled", },
+	{ I915_FORMAT_MOD_Y_TILED, "y-tiled", },
+	/* FIXME need a cpu mmap path in igt_fb */
+#if 0
+	{ I915_FORMAT_MOD_Yf_TILED, "yf-tiled", },
+#endif
+};
+
+igt_main
+{
+	igt_fixture {
+		drmModeResPtr res;
+		uint64_t ram;
+		int i = 0;
+
+		igt_skip_on_simulation();
+
+		data.drm_fd = drm_open_driver_master(DRIVER_INTEL);
+
+		kmstest_set_vt_graphics_mode();
+
+		igt_require_pipe_crc(data.drm_fd);
+		igt_display_init(&data.display, data.drm_fd);
+
+		res = drmModeGetResources(data.drm_fd);
+		igt_assert(res);
+
+		data.kernel.max_width = res->max_width;
+		data.kernel.max_height = res->max_height;
+
+		drmModeFreeResources(res);
+
+		/* Let's not try to use more than half of the total RAM */
+		ram = intel_get_total_ram_mb();
+		igt_info("%"PRIu64" MiB RAM\n", ram);
+
+		data.ram.max_width = data.kernel.max_width;
+		data.ram.max_height = data.kernel.max_height;
+		while (data.ram.max_height * data.ram.max_height * 4 / (1024*1024) > ram) {
+			if (i++ & 1)
+				data.ram.max_width >>= 1;
+			else
+				data.ram.max_height >>= 1;
+		}
+	}
+
+	/*
+	 * Skip linear as it doesn't hit the overflow we want
+	 * on account of the tile height being effectively one,
+	 * and thus the kenrnel rounding up to the next tile
+	 * height won't do anything.
+	 */
+	for (int i = 1; i < ARRAY_SIZE(modifiers); i++) {
+		igt_subtest_f("%s-addfb-size-overflow",
+			      modifiers[i].name) {
+			data.modifier = modifiers[i].modifier;
+			test_size_overflow(&data);
+		}
+	}
+
+	for (int i = 1; i < ARRAY_SIZE(modifiers); i++) {
+		igt_subtest_f("%s-addfb-size-offset-overflow",
+			      modifiers[i].name) {
+			data.modifier = modifiers[i].modifier;
+			test_size_offset_overflow(&data);
+		}
+	}
+
+	for (int i = 0; i < ARRAY_SIZE(modifiers); i++) {
+		igt_subtest_f("%s-addfb", modifiers[i].name) {
+			data.modifier = modifiers[i].modifier;
+
+			test_addfb(&data);
+		}
+	}
+
+	for (int i = 0; i < ARRAY_SIZE(modifiers); i++) {
+		igt_subtest_f("%s-scanout", modifiers[i].name) {
+			data.modifier = modifiers[i].modifier;
+
+			test_scanout(&data);
+		}
+	}
+
+	igt_fixture
+		igt_display_fini(&data.display);
+}
diff --git a/tests/meson.build b/tests/meson.build
index 17deb945ec95..797013c5e5b9 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -144,6 +144,7 @@ test_progs = [
 	'kms_atomic_interruptible',
 	'kms_atomic_transition',
 	'kms_available_modes_crc',
+	'kms_big_fb',
 	'kms_busy',
 	'kms_ccs',
 	'kms_chv_cursor_fail',
-- 
2.16.4

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_big_fb: Make sure huge fbs work correctly
  2018-09-11 16:53 [igt-dev] [PATCH i-g-t] tests/kms_big_fb: Make sure huge fbs work correctly Ville Syrjala
@ 2018-09-11 18:54 ` Patchwork
  2018-09-12  0:56 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  1 sibling, 0 replies; 3+ messages in thread
From: Patchwork @ 2018-09-11 18:54 UTC (permalink / raw)
  To: Ville Syrjälä; +Cc: igt-dev

== Series Details ==

Series: tests/kms_big_fb: Make sure huge fbs work correctly
URL   : https://patchwork.freedesktop.org/series/49494/
State : success

== Summary ==

= CI Bug Log - changes from CI_DRM_4798 -> IGTPW_1824 =

== Summary - SUCCESS ==

  No regressions found.

  External URL: https://patchwork.freedesktop.org/api/1.0/series/49494/revisions/1/mbox/

== Known issues ==

  Here are the changes found in IGTPW_1824 that come from known issues:

  === IGT changes ===

    ==== Issues hit ====

    igt@amdgpu/amd_basic@userptr:
      fi-kbl-8809g:       PASS -> INCOMPLETE (fdo#107402)

    igt@drv_module_reload@basic-reload:
      fi-blb-e6850:       NOTRUN -> INCOMPLETE (fdo#107718)

    igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
      fi-byt-clapper:     PASS -> FAIL (fdo#103191, fdo#107362)

    igt@kms_setmode@basic-clone-single-crtc:
      fi-ilk-650:         PASS -> DMESG-WARN (fdo#106387)

    
    ==== Possible fixes ====

    igt@kms_frontbuffer_tracking@basic:
      fi-byt-clapper:     FAIL (fdo#103167) -> PASS

    igt@kms_pipe_crc_basic@hang-read-crc-pipe-a:
      fi-byt-clapper:     FAIL (fdo#103191, fdo#107362) -> PASS

    igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
      fi-blb-e6850:       INCOMPLETE (fdo#107718) -> PASS

    igt@prime_vgem@basic-fence-flip:
      fi-ilk-650:         FAIL (fdo#104008) -> PASS

    
  fdo#103167 https://bugs.freedesktop.org/show_bug.cgi?id=103167
  fdo#103191 https://bugs.freedesktop.org/show_bug.cgi?id=103191
  fdo#104008 https://bugs.freedesktop.org/show_bug.cgi?id=104008
  fdo#106387 https://bugs.freedesktop.org/show_bug.cgi?id=106387
  fdo#107362 https://bugs.freedesktop.org/show_bug.cgi?id=107362
  fdo#107402 https://bugs.freedesktop.org/show_bug.cgi?id=107402
  fdo#107718 https://bugs.freedesktop.org/show_bug.cgi?id=107718


== Participating hosts (48 -> 44) ==

  Additional (1): fi-hsw-4770r 
  Missing    (5): fi-ctg-p8600 fi-ilk-m540 fi-byt-squawks fi-bsw-cyan fi-hsw-4200u 


== Build changes ==

    * IGT: IGT_4637 -> IGTPW_1824

  CI_DRM_4798: b35a9812b9bbb5b562fd5b4faf7bf06fc80f59ee @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_1824: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1824/
  IGT_4637: 57e3d826dee154cb8664667db7660d854a707fc6 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools



== Testlist changes ==

+igt@kms_big_fb@linear-addfb
+igt@kms_big_fb@linear-scanout
+igt@kms_big_fb@x-tiled-addfb
+igt@kms_big_fb@x-tiled-addfb-size-offset-overflow
+igt@kms_big_fb@x-tiled-addfb-size-overflow
+igt@kms_big_fb@x-tiled-scanout
+igt@kms_big_fb@y-tiled-addfb
+igt@kms_big_fb@y-tiled-addfb-size-offset-overflow
+igt@kms_big_fb@y-tiled-addfb-size-overflow
+igt@kms_big_fb@y-tiled-scanout

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1824/issues.html
_______________________________________________
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: success for tests/kms_big_fb: Make sure huge fbs work correctly
  2018-09-11 16:53 [igt-dev] [PATCH i-g-t] tests/kms_big_fb: Make sure huge fbs work correctly Ville Syrjala
  2018-09-11 18:54 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2018-09-12  0:56 ` Patchwork
  1 sibling, 0 replies; 3+ messages in thread
From: Patchwork @ 2018-09-12  0:56 UTC (permalink / raw)
  To: Ville Syrjälä; +Cc: igt-dev

== Series Details ==

Series: tests/kms_big_fb: Make sure huge fbs work correctly
URL   : https://patchwork.freedesktop.org/series/49494/
State : success

== Summary ==

= CI Bug Log - changes from IGT_4637_full -> IGTPW_1824_full =

== Summary - WARNING ==

  Minor unknown changes coming with IGTPW_1824_full need to be verified
  manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_1824_full, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

  External URL: https://patchwork.freedesktop.org/api/1.0/series/49494/revisions/1/mbox/

== Possible new issues ==

  Here are the unknown changes that may have been introduced in IGTPW_1824_full:

  === IGT changes ===

    ==== Possible regressions ====

    {igt@kms_big_fb@linear-scanout}:
      shard-snb:          NOTRUN -> FAIL +3
      shard-hsw:          NOTRUN -> FAIL +3

    {igt@kms_big_fb@x-tiled-addfb-size-offset-overflow}:
      shard-glk:          NOTRUN -> FAIL +4

    {igt@kms_big_fb@y-tiled-addfb-size-offset-overflow}:
      shard-kbl:          NOTRUN -> FAIL +2

    {igt@kms_big_fb@y-tiled-scanout}:
      shard-apl:          NOTRUN -> FAIL

    
    ==== Warnings ====

    igt@tools_test@tools_test:
      shard-apl:          SKIP -> PASS
      shard-glk:          SKIP -> PASS
      shard-snb:          SKIP -> PASS +1
      shard-hsw:          SKIP -> PASS +1
      shard-kbl:          SKIP -> PASS

    
== Known issues ==

  Here are the changes found in IGTPW_1824_full that come from known issues:

  === IGT changes ===

    ==== Issues hit ====

    igt@drv_suspend@shrink:
      shard-glk:          PASS -> INCOMPLETE (k.org#198133, fdo#106886, fdo#103359)

    igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
      shard-glk:          PASS -> INCOMPLETE (k.org#198133, fdo#103359) +1

    igt@kms_cursor_legacy@cursor-vs-flip-toggle:
      shard-hsw:          PASS -> FAIL (fdo#103355)

    igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc:
      shard-glk:          PASS -> FAIL (fdo#103167)

    igt@kms_setmode@basic:
      shard-apl:          PASS -> FAIL (fdo#99912)

    igt@kms_sysfs_edid_timing:
      shard-hsw:          PASS -> WARN (fdo#100047)
      shard-glk:          PASS -> WARN (fdo#100047)

    
    ==== Possible fixes ====

    igt@gem_ctx_isolation@bcs0-s3:
      shard-kbl:          INCOMPLETE (fdo#103665) -> PASS

    igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
      shard-hsw:          FAIL (fdo#105767) -> PASS +1

    igt@kms_flip@dpms-vs-vblank-race-interruptible:
      shard-glk:          FAIL (fdo#103060) -> PASS

    igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
      shard-glk:          FAIL (fdo#103167) -> PASS

    igt@kms_setmode@basic:
      shard-kbl:          FAIL (fdo#99912) -> PASS

    igt@perf@blocking:
      shard-hsw:          FAIL (fdo#107900) -> PASS

    
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  fdo#100047 https://bugs.freedesktop.org/show_bug.cgi?id=100047
  fdo#103060 https://bugs.freedesktop.org/show_bug.cgi?id=103060
  fdo#103167 https://bugs.freedesktop.org/show_bug.cgi?id=103167
  fdo#103355 https://bugs.freedesktop.org/show_bug.cgi?id=103355
  fdo#103359 https://bugs.freedesktop.org/show_bug.cgi?id=103359
  fdo#103665 https://bugs.freedesktop.org/show_bug.cgi?id=103665
  fdo#105767 https://bugs.freedesktop.org/show_bug.cgi?id=105767
  fdo#106886 https://bugs.freedesktop.org/show_bug.cgi?id=106886
  fdo#107900 https://bugs.freedesktop.org/show_bug.cgi?id=107900
  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 (5 -> 5) ==

  No changes in participating hosts


== Build changes ==

    * IGT: IGT_4637 -> IGTPW_1824
    * Linux: CI_DRM_4791 -> CI_DRM_4798

  CI_DRM_4791: 07cf212bc704357ee60aba52ec40bab538222040 @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_4798: b35a9812b9bbb5b562fd5b4faf7bf06fc80f59ee @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_1824: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1824/
  IGT_4637: 57e3d826dee154cb8664667db7660d854a707fc6 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1824/shards.html
_______________________________________________
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:[~2018-09-12  0:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-09-11 16:53 [igt-dev] [PATCH i-g-t] tests/kms_big_fb: Make sure huge fbs work correctly Ville Syrjala
2018-09-11 18:54 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2018-09-12  0:56 ` [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;
as well as URLs for NNTP newsgroup(s).