All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH 1/2] i915/gem_exec_blt: Verify data after blitter copy
       [not found] <20191101174413.1495370-1-vanshidhar.r.konda@intel.com>
@ 2019-11-01 17:44 ` Vanshidhar Konda
       [not found] ` <20191101174413.1495370-3-vanshidhar.r.konda@intel.com>
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 4+ messages in thread
From: Vanshidhar Konda @ 2019-11-01 17:44 UTC (permalink / raw)
  To: igt-dev

Verify the data after the blitter engine has copied data from source to
destination.

Signed-off-by: Vanshidhar Konda <vanshidhar.r.konda@intel.com>
---
 tests/i915/gem_exec_blt.c | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/tests/i915/gem_exec_blt.c b/tests/i915/gem_exec_blt.c
index ffb60d0c..6be73f53 100644
--- a/tests/i915/gem_exec_blt.c
+++ b/tests/i915/gem_exec_blt.c
@@ -182,6 +182,18 @@ static int dcmp(const void *A, const void *B)
 		return 0;
 }
 
+static void init_buffer_data(void *addr, int object_size, uint32_t base_dword)
+{
+	uint32_t *base_addr = (uint32_t *)addr;
+	int num_itr = object_size/sizeof(uint32_t);
+
+	for (int i = 0; i < num_itr; i++)
+		base_addr[i] = base_dword + i;
+}
+
+#define verify_data(src__, dst__, size) \
+	igt_assert_eq(memcmp(src__, dst__, size), 0)
+
 static void run(int fd, int object_size, bool dumb)
 {
 	struct drm_i915_gem_execbuffer2 execbuf;
@@ -191,6 +203,7 @@ static void run(int fd, int object_size, bool dumb)
 	uint32_t handle, src, dst;
 	int len, count;
 	int ring;
+	void *src_buffer, *dst_buffer;
 
 	if (dumb)
 		handle = kmstest_dumb_create(fd, 32, 32, 32, NULL, NULL);
@@ -200,6 +213,12 @@ static void run(int fd, int object_size, bool dumb)
 	src = gem_create(fd, object_size);
 	dst = gem_create(fd, object_size);
 
+	src_buffer = gem_mmap__wc(fd, src, 0, object_size, PROT_WRITE);
+	dst_buffer = gem_mmap__wc(fd, src, 0, object_size,
+				PROT_READ | PROT_WRITE);
+
+	init_buffer_data(src_buffer, object_size, 0xcafe);
+
 	len = gem_linear_blt(fd, buf, 0, 1, object_size, reloc);
 	gem_write(fd, handle, 0, buf, len);
 
@@ -235,6 +254,8 @@ static void run(int fd, int object_size, bool dumb)
 	}
 	gem_sync(fd, handle);
 
+	verify_data(src_buffer, dst_buffer, object_size);
+
 	for (count = 1; count <= 1<<12; count <<= 1) {
 		struct timeval start, end;
 		const int reps = 9;
@@ -242,11 +263,13 @@ static void run(int fd, int object_size, bool dumb)
 		int n;
 
 		for (n = 0; n < reps; n++) {
+			memset(dst_buffer, 0, object_size);
 			gettimeofday(&start, NULL);
 			for (int loop = 0; loop < count; loop++)
 				gem_execbuf(fd, &execbuf);
 			gem_sync(fd, handle);
 			gettimeofday(&end, NULL);
+			verify_data(src_buffer, dst_buffer, object_size);
 			t[n] = elapsed(&start, &end, count);
 		}
 		qsort(t, n, sizeof(double), dcmp);
@@ -259,6 +282,10 @@ static void run(int fd, int object_size, bool dumb)
 			 bytes_per_sec((char *)buf, object_size/sum*1e6));
 		fflush(stdout);
 	}
+
+	munmap(src_buffer, object_size);
+	munmap(dst_buffer, object_size);
+
 	gem_close(fd, handle);
 }
 
-- 
2.23.0

_______________________________________________
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

* Re: [igt-dev] [PATCH 2/2] i915/gem_exec_blt: Add tests that do a single copy using blitter
       [not found] ` <20191101174413.1495370-3-vanshidhar.r.konda@intel.com>
@ 2019-11-01 17:53   ` Chris Wilson
  0 siblings, 0 replies; 4+ messages in thread
From: Chris Wilson @ 2019-11-01 17:53 UTC (permalink / raw)
  To: Vanshidhar Konda, igt-dev

Quoting Vanshidhar Konda (2019-11-01 17:44:13)
> Add a basic test that does a single copy of data using the blitter
> engine. The intention is to verify if blitter engine is copying data
> as expected.

So gem_(linear|tiled)_blits. Make it a bit more interesting to sell it.
-Chris
_______________________________________________
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.BAT: success for i915/gem_exec_blt: Add basic tests and verify data
       [not found] <20191101174413.1495370-1-vanshidhar.r.konda@intel.com>
  2019-11-01 17:44 ` [igt-dev] [PATCH 1/2] i915/gem_exec_blt: Verify data after blitter copy Vanshidhar Konda
       [not found] ` <20191101174413.1495370-3-vanshidhar.r.konda@intel.com>
@ 2019-11-01 18:36 ` Patchwork
  2019-11-03  4:42 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  3 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2019-11-01 18:36 UTC (permalink / raw)
  To: Vanshidhar Konda; +Cc: igt-dev

== Series Details ==

Series: i915/gem_exec_blt: Add basic tests and verify data
URL   : https://patchwork.freedesktop.org/series/68879/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_7242 -> IGTPW_3643
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/index.html

Known issues
------------

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live_blt:
    - fi-bsw-n3050:       [PASS][1] -> [DMESG-FAIL][2] ([fdo#112176])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/fi-bsw-n3050/igt@i915_selftest@live_blt.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/fi-bsw-n3050/igt@i915_selftest@live_blt.html

  
#### Possible fixes ####

  * igt@gem_ctx_switch@rcs0:
    - {fi-icl-y}:         [INCOMPLETE][3] ([fdo#107713]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/fi-icl-y/igt@gem_ctx_switch@rcs0.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/fi-icl-y/igt@gem_ctx_switch@rcs0.html

  * igt@gem_sync@basic-many-each:
    - {fi-tgl-u}:         [INCOMPLETE][5] ([fdo#111880] / [fdo#111998]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/fi-tgl-u/igt@gem_sync@basic-many-each.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/fi-tgl-u/igt@gem_sync@basic-many-each.html

  * igt@prime_vgem@basic-fence-flip:
    - fi-icl-u3:          [DMESG-WARN][7] ([fdo#107724]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/fi-icl-u3/igt@prime_vgem@basic-fence-flip.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/fi-icl-u3/igt@prime_vgem@basic-fence-flip.html

  
#### Warnings ####

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-kbl-7500u:       [FAIL][9] ([fdo#111407]) -> [FAIL][10] ([fdo#111045] / [fdo#111096])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html

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

  [fdo# 112163]: https://bugs.freedesktop.org/show_bug.cgi?id= 112163
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
  [fdo#111045]: https://bugs.freedesktop.org/show_bug.cgi?id=111045
  [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096
  [fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407
  [fdo#111880]: https://bugs.freedesktop.org/show_bug.cgi?id=111880
  [fdo#111998]: https://bugs.freedesktop.org/show_bug.cgi?id=111998
  [fdo#112176]: https://bugs.freedesktop.org/show_bug.cgi?id=112176


Participating hosts (51 -> 44)
------------------------------

  Additional (1): fi-skl-6600u 
  Missing    (8): fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-bwr-2160 fi-ctg-p8600 fi-gdg-551 fi-byt-clapper fi-bdw-samus 


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_5258 -> IGTPW_3643

  CI-20190529: 20190529
  CI_DRM_7242: 6cc1e34e4202cb6cfd4994e37414a34939eae4a3 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3643: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/index.html
  IGT_5258: c8a88b614ac057b01809a17b9e87a197195b44ad @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools



== Testlist changes ==

+igt@gem_exec_blt@basic-dumb-buf
+igt@gem_exec_blt@basic-normal

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/index.html
_______________________________________________
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/gem_exec_blt: Add basic tests and verify data
       [not found] <20191101174413.1495370-1-vanshidhar.r.konda@intel.com>
                   ` (2 preceding siblings ...)
  2019-11-01 18:36 ` [igt-dev] ✓ Fi.CI.BAT: success for i915/gem_exec_blt: Add basic tests and verify data Patchwork
@ 2019-11-03  4:42 ` Patchwork
  3 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2019-11-03  4:42 UTC (permalink / raw)
  To: Vanshidhar Konda; +Cc: igt-dev

== Series Details ==

Series: i915/gem_exec_blt: Add basic tests and verify data
URL   : https://patchwork.freedesktop.org/series/68879/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_7242_full -> IGTPW_3643_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/index.html

Possible new issues
-------------------

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

### IGT changes ###

#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * igt@kms_atomic_interruptible@universal-setplane-primary:
    - {shard-tglb}:       [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-tglb1/igt@kms_atomic_interruptible@universal-setplane-primary.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-tglb2/igt@kms_atomic_interruptible@universal-setplane-primary.html

  * igt@kms_rotation_crc@multiplane-rotation:
    - {shard-tglb}:       NOTRUN -> [FAIL][3] +1 similar issue
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-tglb1/igt@kms_rotation_crc@multiplane-rotation.html

  
New tests
---------

  New tests have been introduced between CI_DRM_7242_full and IGTPW_3643_full:

### New IGT tests (2) ###

  * igt@gem_exec_blt@basic-dumb-buf:
    - Statuses : 7 pass(s)
    - Exec time: [0.0, 0.00] s

  * igt@gem_exec_blt@basic-normal:
    - Statuses : 7 pass(s)
    - Exec time: [0.00] s

  

Known issues
------------

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_isolation@vcs1-dirty-create:
    - shard-iclb:         [PASS][4] -> [SKIP][5] ([fdo#109276] / [fdo#112080]) +2 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-iclb1/igt@gem_ctx_isolation@vcs1-dirty-create.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-iclb8/igt@gem_ctx_isolation@vcs1-dirty-create.html

  * igt@gem_exec_schedule@in-order-bsd:
    - shard-iclb:         [PASS][6] -> [SKIP][7] ([fdo#112146]) +4 similar issues
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-iclb8/igt@gem_exec_schedule@in-order-bsd.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-iclb2/igt@gem_exec_schedule@in-order-bsd.html

  * igt@gem_exec_schedule@preempt-contexts-bsd2:
    - shard-iclb:         [PASS][8] -> [SKIP][9] ([fdo#109276]) +12 similar issues
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-iclb2/igt@gem_exec_schedule@preempt-contexts-bsd2.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-iclb3/igt@gem_exec_schedule@preempt-contexts-bsd2.html

  * igt@gem_persistent_relocs@forked-interruptible-thrashing:
    - shard-snb:          [PASS][10] -> [FAIL][11] ([fdo#112037])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-snb4/igt@gem_persistent_relocs@forked-interruptible-thrashing.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-snb7/igt@gem_persistent_relocs@forked-interruptible-thrashing.html

  * igt@gem_softpin@noreloc-s3:
    - shard-apl:          [PASS][12] -> [DMESG-WARN][13] ([fdo#108566]) +3 similar issues
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-apl4/igt@gem_softpin@noreloc-s3.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-apl1/igt@gem_softpin@noreloc-s3.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-hsw:          [PASS][14] -> [DMESG-WARN][15] ([fdo#111870])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-hsw4/igt@gem_userptr_blits@dmabuf-sync.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-hsw1/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_userptr_blits@sync-unmap:
    - shard-snb:          [PASS][16] -> [DMESG-WARN][17] ([fdo#111870])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-snb1/igt@gem_userptr_blits@sync-unmap.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-snb7/igt@gem_userptr_blits@sync-unmap.html

  * igt@i915_suspend@sysfs-reader:
    - shard-kbl:          [PASS][18] -> [DMESG-WARN][19] ([fdo#108566]) +3 similar issues
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-kbl4/igt@i915_suspend@sysfs-reader.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-kbl7/igt@i915_suspend@sysfs-reader.html

  * igt@kms_cursor_legacy@pipe-b-forked-move:
    - shard-apl:          [PASS][20] -> [INCOMPLETE][21] ([fdo#103927])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-apl8/igt@kms_cursor_legacy@pipe-b-forked-move.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-apl4/igt@kms_cursor_legacy@pipe-b-forked-move.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-glk:          [PASS][22] -> [FAIL][23] ([fdo#105363])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-glk5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-glk1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-hsw:          [PASS][24] -> [INCOMPLETE][25] ([fdo#103540])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-hsw4/igt@kms_flip@flip-vs-suspend.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-hsw6/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
    - shard-iclb:         [PASS][26] -> [FAIL][27] ([fdo#103167]) +3 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_plane_lowres@pipe-a-tiling-x:
    - shard-iclb:         [PASS][28] -> [FAIL][29] ([fdo#103166])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-iclb8/igt@kms_plane_lowres@pipe-a-tiling-x.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-iclb7/igt@kms_plane_lowres@pipe-a-tiling-x.html

  * igt@kms_psr@psr2_sprite_plane_move:
    - shard-iclb:         [PASS][30] -> [SKIP][31] ([fdo#109441]) +1 similar issue
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-iclb8/igt@kms_psr@psr2_sprite_plane_move.html

  * igt@perf_pmu@busy-no-semaphores-vcs1:
    - shard-iclb:         [PASS][32] -> [SKIP][33] ([fdo#112080]) +7 similar issues
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-iclb4/igt@perf_pmu@busy-no-semaphores-vcs1.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-iclb8/igt@perf_pmu@busy-no-semaphores-vcs1.html

  
#### Possible fixes ####

  * igt@gem_ctx_exec@basic-invalid-context-vcs1:
    - shard-iclb:         [SKIP][34] ([fdo#112080]) -> [PASS][35] +11 similar issues
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-iclb7/igt@gem_ctx_exec@basic-invalid-context-vcs1.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-iclb2/igt@gem_ctx_exec@basic-invalid-context-vcs1.html

  * {igt@gem_ctx_persistence@vcs1-cleanup}:
    - shard-iclb:         [SKIP][36] ([fdo#109276] / [fdo#112080]) -> [PASS][37]
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-iclb8/igt@gem_ctx_persistence@vcs1-cleanup.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-iclb2/igt@gem_ctx_persistence@vcs1-cleanup.html

  * {igt@gem_ctx_persistence@vecs0-mixed-process}:
    - {shard-tglb}:       [FAIL][38] -> [PASS][39]
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-tglb3/igt@gem_ctx_persistence@vecs0-mixed-process.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-tglb5/igt@gem_ctx_persistence@vecs0-mixed-process.html

  * igt@gem_eio@unwedge-stress:
    - shard-snb:          [FAIL][40] ([fdo#109661]) -> [PASS][41]
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-snb5/igt@gem_eio@unwedge-stress.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-snb1/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_schedule@preempt-bsd:
    - shard-iclb:         [SKIP][42] ([fdo#112146]) -> [PASS][43] +6 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-iclb4/igt@gem_exec_schedule@preempt-bsd.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-iclb8/igt@gem_exec_schedule@preempt-bsd.html

  * igt@gem_persistent_relocs@forked-faulting-reloc-thrashing:
    - shard-iclb:         [TIMEOUT][44] ([fdo#112068 ]) -> [PASS][45]
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-iclb3/igt@gem_persistent_relocs@forked-faulting-reloc-thrashing.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-iclb4/igt@gem_persistent_relocs@forked-faulting-reloc-thrashing.html

  * igt@gem_persistent_relocs@forked-interruptible-faulting-reloc-thrashing:
    - shard-snb:          [FAIL][46] ([fdo#112037]) -> [PASS][47]
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-snb5/igt@gem_persistent_relocs@forked-interruptible-faulting-reloc-thrashing.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-snb1/igt@gem_persistent_relocs@forked-interruptible-faulting-reloc-thrashing.html

  * igt@gem_softpin@noreloc-s3:
    - shard-kbl:          [DMESG-WARN][48] ([fdo#108566]) -> [PASS][49]
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-kbl4/igt@gem_softpin@noreloc-s3.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-kbl7/igt@gem_softpin@noreloc-s3.html

  * igt@gem_userptr_blits@map-fixed-invalidate-busy-gup:
    - shard-hsw:          [DMESG-WARN][50] ([fdo#111870]) -> [PASS][51] +2 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-hsw2/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-hsw1/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html

  * igt@gem_userptr_blits@sync-unmap-cycles:
    - shard-snb:          [DMESG-WARN][52] ([fdo#111870]) -> [PASS][53] +2 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-snb1/igt@gem_userptr_blits@sync-unmap-cycles.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-snb2/igt@gem_userptr_blits@sync-unmap-cycles.html

  * igt@i915_suspend@sysfs-reader:
    - shard-apl:          [DMESG-WARN][54] ([fdo#108566]) -> [PASS][55] +5 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-apl6/igt@i915_suspend@sysfs-reader.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-apl7/igt@i915_suspend@sysfs-reader.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
    - shard-hsw:          [FAIL][56] ([fdo#105767]) -> [PASS][57]
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-hsw6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-hsw6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html

  * igt@kms_flip@flip-vs-dpms-off-vs-modeset:
    - shard-apl:          [INCOMPLETE][58] ([fdo#103927]) -> [PASS][59]
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-apl2/igt@kms_flip@flip-vs-dpms-off-vs-modeset.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-apl6/igt@kms_flip@flip-vs-dpms-off-vs-modeset.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render:
    - shard-iclb:         [FAIL][60] ([fdo#103167]) -> [PASS][61] +1 similar issue
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
    - {shard-tglb}:       [FAIL][62] ([fdo#103167]) -> [PASS][63]
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-tglb4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-tglb3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-suspend:
    - {shard-tglb}:       [INCOMPLETE][64] ([fdo#111832] / [fdo#111850] / [fdo#111884]) -> [PASS][65]
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html

  * igt@kms_lease@setcrtc_implicit_plane:
    - {shard-tglb}:       [TIMEOUT][66] ([fdo#112168]) -> [PASS][67]
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-tglb5/igt@kms_lease@setcrtc_implicit_plane.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-tglb8/igt@kms_lease@setcrtc_implicit_plane.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
    - shard-kbl:          [DMESG-FAIL][68] ([fdo#103375] / [fdo#108566]) -> [PASS][69]
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-kbl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-kbl3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html

  * igt@kms_psr@psr2_cursor_mmap_cpu:
    - shard-iclb:         [SKIP][70] ([fdo#109441]) -> [PASS][71] +1 similar issue
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-iclb3/igt@kms_psr@psr2_cursor_mmap_cpu.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html

  * igt@kms_setmode@basic:
    - shard-hsw:          [FAIL][72] ([fdo#99912]) -> [PASS][73]
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-hsw1/igt@kms_setmode@basic.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-hsw6/igt@kms_setmode@basic.html

  * igt@kms_vblank@pipe-a-ts-continuation-suspend:
    - {shard-tglb}:       [INCOMPLETE][74] ([fdo#111832] / [fdo#111850]) -> [PASS][75] +2 similar issues
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-tglb1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-tglb2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html

  * igt@prime_vgem@fence-wait-bsd2:
    - shard-iclb:         [SKIP][76] ([fdo#109276]) -> [PASS][77] +12 similar issues
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-iclb8/igt@prime_vgem@fence-wait-bsd2.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-iclb2/igt@prime_vgem@fence-wait-bsd2.html

  * igt@tools_test@tools_test:
    - shard-apl:          [SKIP][78] ([fdo#109271]) -> [PASS][79]
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-apl4/igt@tools_test@tools_test.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-apl7/igt@tools_test@tools_test.html

  
#### Warnings ####

  * igt@gem_mocs_settings@mocs-rc6-bsd2:
    - shard-iclb:         [FAIL][80] ([fdo#111330]) -> [SKIP][81] ([fdo#109276])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-iclb1/igt@gem_mocs_settings@mocs-rc6-bsd2.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-iclb8/igt@gem_mocs_settings@mocs-rc6-bsd2.html

  * igt@kms_psr@psr2_suspend:
    - shard-iclb:         [SKIP][82] ([fdo#109441]) -> [DMESG-WARN][83] ([fdo#107724])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7242/shard-iclb8/igt@kms_psr@psr2_suspend.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/shard-iclb2/igt@kms_psr@psr2_suspend.html

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

  [fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
  [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
  [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363
  [fdo#105767]: https://bugs.freedesktop.org/show_bug.cgi?id=105767
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109661]: https://bugs.freedesktop.org/show_bug.cgi?id=109661
  [fdo#110548]: https://bugs.freedesktop.org/show_bug.cgi?id=110548
  [fdo#111329]: https://bugs.freedesktop.org/show_bug.cgi?id=111329
  [fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330
  [fdo#111747]: https://bugs.freedesktop.org/show_bug.cgi?id=111747
  [fdo#111827 ]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 
  [fdo#111832]: https://bugs.freedesktop.org/show_bug.cgi?id=111832
  [fdo#111850]: https://bugs.freedesktop.org/show_bug.cgi?id=111850
  [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
  [fdo#111884]: https://bugs.freedesktop.org/show_bug.cgi?id=111884
  [fdo#112037]: https://bugs.freedesktop.org/show_bug.cgi?id=112037
  [fdo#112068 ]: https://bugs.freedesktop.org/show_bug.cgi?id=112068 
  [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
  [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
  [fdo#112168]: https://bugs.freedesktop.org/show_bug.cgi?id=112168
  [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912


Participating hosts (11 -> 8)
------------------------------

  Missing    (3): pig-skl-6260u pig-glk-j5005 pig-hsw-4770r 


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_5258 -> IGTPW_3643
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_7242: 6cc1e34e4202cb6cfd4994e37414a34939eae4a3 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3643: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3643/index.html
  IGT_5258: c8a88b614ac057b01809a17b9e87a197195b44ad @ 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_3643/index.html
_______________________________________________
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:[~2019-11-03  4:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20191101174413.1495370-1-vanshidhar.r.konda@intel.com>
2019-11-01 17:44 ` [igt-dev] [PATCH 1/2] i915/gem_exec_blt: Verify data after blitter copy Vanshidhar Konda
     [not found] ` <20191101174413.1495370-3-vanshidhar.r.konda@intel.com>
2019-11-01 17:53   ` [igt-dev] [PATCH 2/2] i915/gem_exec_blt: Add tests that do a single copy using blitter Chris Wilson
2019-11-01 18:36 ` [igt-dev] ✓ Fi.CI.BAT: success for i915/gem_exec_blt: Add basic tests and verify data Patchwork
2019-11-03  4:42 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.