All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [CI] tests/gem_create: Test unaligned BO size update
@ 2019-04-01 12:49 Michał Winiarski
  2019-04-01 14:47 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/gem_create: Test unaligned BO size update (rev3) Patchwork
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Michał Winiarski @ 2019-04-01 12:49 UTC (permalink / raw)
  To: igt-dev

The driver is supposed to update the size when it's trying to outsmart
userspace. Let's test it.

v2: Rework to use local ioctl wrapper (Chris)
v3: s/16/15, move test a bit earlier (Chris)

Signed-off-by: Michał Winiarski <michal.winiarski@intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Janusz Krzysztofik <janusz.krzysztofik@intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
---
 tests/i915/gem_create.c | 84 ++++++++++++++++++++++++++++-------------
 1 file changed, 57 insertions(+), 27 deletions(-)

diff --git a/tests/i915/gem_create.c b/tests/i915/gem_create.c
index 2a861ca8..43cbf45f 100644
--- a/tests/i915/gem_create.c
+++ b/tests/i915/gem_create.c
@@ -71,7 +71,7 @@ struct local_i915_gem_create_v2 {
 	uint32_t pad;
 #define I915_CREATE_PLACEMENT_STOLEN (1<<0)
 	uint32_t flags;
-} create;
+} create_v2;
 
 #define LOCAL_IOCTL_I915_GEM_CREATE       DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_CREATE, struct local_i915_gem_create_v2)
 
@@ -81,24 +81,39 @@ static void invalid_flag_test(int fd)
 
 	gem_require_stolen_support(fd);
 
-	create.handle = 0;
-	create.size = PAGE_SIZE;
-	create.flags = ~I915_CREATE_PLACEMENT_STOLEN;
-	ret = drmIoctl(fd, LOCAL_IOCTL_I915_GEM_CREATE, &create);
+	create_v2.handle = 0;
+	create_v2.size = PAGE_SIZE;
+	create_v2.flags = ~I915_CREATE_PLACEMENT_STOLEN;
+	ret = drmIoctl(fd, LOCAL_IOCTL_I915_GEM_CREATE, &create_v2);
 
 	igt_assert(ret <= 0);
 
-	create.flags = ~0;
-	ret = drmIoctl(fd, LOCAL_IOCTL_I915_GEM_CREATE, &create);
+	create_v2.flags = ~0;
+	ret = drmIoctl(fd, LOCAL_IOCTL_I915_GEM_CREATE, &create_v2);
 
 	igt_assert(ret <= 0);
 }
 
+static int create_ioctl(int fd, struct drm_i915_gem_create *create)
+{
+        int err = 0;
+
+        if (igt_ioctl(fd, DRM_IOCTL_I915_GEM_CREATE, create)) {
+                err = -errno;
+                igt_assume(err != 0);
+        }
+
+        errno = 0;
+        return err;
+}
+
 static void invalid_size_test(int fd)
 {
-	uint32_t handle;
+	struct drm_i915_gem_create create = {
+		.size = 0,
+	};
 
-	igt_assert_eq(__gem_create(fd, 0, &handle), -EINVAL);
+	igt_assert_eq(create_ioctl(fd, &create), -EINVAL);
 }
 
 /*
@@ -108,14 +123,16 @@ static void invalid_size_test(int fd)
  */
 static void valid_nonaligned_size(int fd)
 {
-	int handle;
+	struct drm_i915_gem_create create = {
+		.size = PAGE_SIZE / 2,
+	};
 	char buf[PAGE_SIZE];
 
-	handle = gem_create(fd, PAGE_SIZE / 2);
+	igt_assert_eq(create_ioctl(fd, &create), 0);
 
-	gem_write(fd, handle, PAGE_SIZE / 2, buf, PAGE_SIZE / 2);
+	gem_write(fd, create.handle, PAGE_SIZE / 2, buf, PAGE_SIZE / 2);
 
-	gem_close(fd, handle);
+	gem_close(fd, create.handle);
 }
 
 /*
@@ -125,21 +142,18 @@ static void valid_nonaligned_size(int fd)
  */
 static void invalid_nonaligned_size(int fd)
 {
-	int handle;
+	struct drm_i915_gem_create create = {
+		.size = PAGE_SIZE / 2,
+	};
 	char buf[PAGE_SIZE];
-	struct drm_i915_gem_pwrite gem_pwrite;
 
-	handle = gem_create(fd, PAGE_SIZE / 2);
+	igt_assert_eq(create_ioctl(fd, &create), 0);
 
-	CLEAR(gem_pwrite);
-	gem_pwrite.handle = handle;
-	gem_pwrite.offset = PAGE_SIZE / 2;
-	gem_pwrite.size = PAGE_SIZE;
-	gem_pwrite.data_ptr = to_user_pointer(buf);
 	/* This should fail. Hence cannot use gem_write. */
-	igt_assert(drmIoctl(fd, DRM_IOCTL_I915_GEM_PWRITE, &gem_pwrite));
+	igt_assert(__gem_write(fd, create.handle,
+			       PAGE_SIZE / 2, buf, PAGE_SIZE));
 
-	gem_close(fd, handle);
+	gem_close(fd, create.handle);
 }
 
 static uint64_t get_npages(uint64_t *global, uint64_t npages)
@@ -168,24 +182,25 @@ static void *thread_clear(void *data)
 	int i915 = arg->i915;
 
 	igt_until_timeout(arg->timeout) {
-		uint32_t handle;
+		struct drm_i915_gem_create create = {};
 		uint64_t npages;
 
 		npages = random();
 		npages <<= 32;
 		npages |= random();
 		npages = get_npages(&arg->max, npages);
+		create.size = npages << 12;
 
-		handle = gem_create(i915, npages << 12);
+		create_ioctl(i915, &create);
 		for (uint64_t page = 0; page < npages; page++) {
 			uint64_t x;
 
-			gem_read(i915, handle,
+			gem_read(i915, create.handle,
 				 page * 4096 + (page % (4096 - sizeof(x))),
 				 &x, sizeof(x));
 			igt_assert_eq_u64(x, 0);
 		}
-		gem_close(i915, handle);
+		gem_close(i915, create.handle);
 
 		__sync_add_and_fetch(&arg->max, npages);
 	}
@@ -209,6 +224,18 @@ static void always_clear(int i915, int timeout)
 		pthread_join(thread[i], NULL);
 }
 
+static void size_update(int fd)
+{
+	int size_initial_nonaligned = 15;
+
+	struct drm_i915_gem_create create = {
+		.size = size_initial_nonaligned,
+	};
+
+	igt_assert_eq(create_ioctl(fd, &create), 0);
+	igt_assert_neq(create.size, size_initial_nonaligned);
+}
+
 igt_main
 {
 	int fd = -1;
@@ -231,6 +258,9 @@ igt_main
 	igt_subtest("create-invalid-nonaligned")
 		invalid_nonaligned_size(fd);
 
+	igt_subtest("create-size-update")
+		size_update(fd);
+
 	igt_subtest("create-clear")
 		always_clear(fd, 30);
 }
-- 
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] 6+ messages in thread

* [igt-dev] ✓ Fi.CI.BAT: success for tests/gem_create: Test unaligned BO size update (rev3)
  2019-04-01 12:49 [igt-dev] [CI] tests/gem_create: Test unaligned BO size update Michał Winiarski
@ 2019-04-01 14:47 ` Patchwork
  2019-04-01 14:49 ` Patchwork
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2019-04-01 14:47 UTC (permalink / raw)
  To: Michał Winiarski; +Cc: igt-dev

== Series Details ==

Series: tests/gem_create: Test unaligned BO size update (rev3)
URL   : https://patchwork.freedesktop.org/series/58591/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_5851 -> IGTPW_2752
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://patchwork.freedesktop.org/api/1.0/series/58591/revisions/3/mbox/

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

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

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_basic@userptr:
    - fi-whl-u:           NOTRUN -> SKIP [fdo#109271] +41

  * igt@amdgpu/amd_cs_nop@fork-gfx0:
    - fi-hsw-peppy:       NOTRUN -> SKIP [fdo#109271] +46

  * igt@gem_exec_basic@basic-vebox:
    - fi-ivb-3770:        NOTRUN -> SKIP [fdo#109271] +48

  * igt@gem_exec_basic@gtt-bsd2:
    - fi-kbl-7500u:       NOTRUN -> SKIP [fdo#109271] +9

  * igt@gem_exec_store@basic-bsd1:
    - fi-kbl-r:           NOTRUN -> SKIP [fdo#109271] +41

  * igt@gem_ringfill@basic-default-fd:
    - fi-elk-e7500:       NOTRUN -> SKIP [fdo#109271] +73

  * igt@i915_selftest@live_contexts:
    - fi-bdw-gvtdvm:      PASS -> DMESG-FAIL [fdo#110235 ]

  * igt@i915_selftest@live_uncore:
    - fi-ivb-3770:        NOTRUN -> DMESG-FAIL [fdo#110210]

  * igt@kms_busy@basic-flip-c:
    - fi-elk-e7500:       NOTRUN -> SKIP [fdo#109271] / [fdo#109278]

  * igt@kms_chamelium@dp-crc-fast:
    - fi-kbl-7500u:       NOTRUN -> DMESG-WARN [fdo#103841]

  * igt@kms_chamelium@vga-edid-read:
    - fi-hsw-4770r:       NOTRUN -> SKIP [fdo#109271] +45

  * igt@kms_force_connector_basic@force-connector-state:
    - fi-kbl-7567u:       NOTRUN -> SKIP [fdo#109271] +33

  * igt@kms_frontbuffer_tracking@basic:
    - fi-hsw-peppy:       NOTRUN -> DMESG-FAIL [fdo#102614] / [fdo#107814]

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
    - fi-whl-u:           NOTRUN -> FAIL [fdo#103375] +3

  * igt@kms_psr@cursor_plane_move:
    - fi-whl-u:           NOTRUN -> FAIL [fdo#107383] +3

  * igt@kms_psr@primary_mmap_gtt:
    - fi-skl-guc:         NOTRUN -> SKIP [fdo#109271] +49

  * igt@runner@aborted:
    - fi-kbl-7500u:       NOTRUN -> FAIL [fdo#103841]

  
#### Possible fixes ####

  * igt@debugfs_test@read_all_entries:
    - fi-ilk-650:         DMESG-WARN [fdo#106387] -> PASS

  * igt@i915_selftest@live_contexts:
    - fi-skl-gvtdvm:      DMESG-FAIL [fdo#110235 ] -> PASS

  
  [fdo#102614]: https://bugs.freedesktop.org/show_bug.cgi?id=102614
  [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
  [fdo#103841]: https://bugs.freedesktop.org/show_bug.cgi?id=103841
  [fdo#106387]: https://bugs.freedesktop.org/show_bug.cgi?id=106387
  [fdo#107383]: https://bugs.freedesktop.org/show_bug.cgi?id=107383
  [fdo#107814]: https://bugs.freedesktop.org/show_bug.cgi?id=107814
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#110210]: https://bugs.freedesktop.org/show_bug.cgi?id=110210
  [fdo#110235 ]: https://bugs.freedesktop.org/show_bug.cgi?id=110235 


Participating hosts (24 -> 27)
------------------------------

  Additional (9): fi-hsw-4770r fi-kbl-7567u fi-hsw-peppy fi-skl-guc fi-kbl-7500u fi-whl-u fi-ivb-3770 fi-elk-e7500 fi-kbl-r 
  Missing    (6): fi-ilk-m540 fi-byt-j1900 fi-skl-6770hq fi-hsw-4770 fi-skl-lmem fi-bdw-samus 


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

    * IGT: IGT_4917 -> IGTPW_2752

  CI_DRM_5851: ddcab27b76cf685a9136cf26f11103765fd7d8d5 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_2752: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2752/
  IGT_4917: ec9792ad770d5055d6f42e2a481b8314754c9218 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools



== Testlist changes ==

+igt@gem_create@create-size-update

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2752/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✓ Fi.CI.BAT: success for tests/gem_create: Test unaligned BO size update (rev3)
  2019-04-01 12:49 [igt-dev] [CI] tests/gem_create: Test unaligned BO size update Michał Winiarski
  2019-04-01 14:47 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/gem_create: Test unaligned BO size update (rev3) Patchwork
@ 2019-04-01 14:49 ` Patchwork
  2019-04-01 15:13 ` Patchwork
  2019-04-01 18:02 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2019-04-01 14:49 UTC (permalink / raw)
  To: Michał Winiarski; +Cc: igt-dev

== Series Details ==

Series: tests/gem_create: Test unaligned BO size update (rev3)
URL   : https://patchwork.freedesktop.org/series/58591/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_5851 -> IGTPW_2752
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://patchwork.freedesktop.org/api/1.0/series/58591/revisions/3/mbox/

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

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

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_basic@userptr:
    - fi-whl-u:           NOTRUN -> SKIP [fdo#109271] +41

  * igt@amdgpu/amd_cs_nop@fork-gfx0:
    - fi-hsw-peppy:       NOTRUN -> SKIP [fdo#109271] +46

  * igt@gem_exec_basic@basic-vebox:
    - fi-ivb-3770:        NOTRUN -> SKIP [fdo#109271] +48

  * igt@gem_exec_basic@gtt-bsd2:
    - fi-kbl-7500u:       NOTRUN -> SKIP [fdo#109271] +9

  * igt@gem_exec_store@basic-bsd1:
    - fi-kbl-r:           NOTRUN -> SKIP [fdo#109271] +41

  * igt@gem_ringfill@basic-default-fd:
    - fi-elk-e7500:       NOTRUN -> SKIP [fdo#109271] +73

  * igt@i915_selftest@live_contexts:
    - fi-bdw-gvtdvm:      PASS -> DMESG-FAIL [fdo#110235 ]

  * igt@i915_selftest@live_uncore:
    - fi-ivb-3770:        NOTRUN -> DMESG-FAIL [fdo#110210]

  * igt@kms_busy@basic-flip-c:
    - fi-elk-e7500:       NOTRUN -> SKIP [fdo#109271] / [fdo#109278]

  * igt@kms_chamelium@dp-crc-fast:
    - fi-kbl-7500u:       NOTRUN -> DMESG-WARN [fdo#103841]

  * igt@kms_chamelium@vga-edid-read:
    - fi-hsw-4770r:       NOTRUN -> SKIP [fdo#109271] +45

  * igt@kms_force_connector_basic@force-connector-state:
    - fi-kbl-7567u:       NOTRUN -> SKIP [fdo#109271] +33

  * igt@kms_frontbuffer_tracking@basic:
    - fi-hsw-peppy:       NOTRUN -> DMESG-FAIL [fdo#102614] / [fdo#107814]

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
    - fi-whl-u:           NOTRUN -> FAIL [fdo#103375] +3

  * igt@kms_psr@cursor_plane_move:
    - fi-whl-u:           NOTRUN -> FAIL [fdo#107383] +3

  * igt@kms_psr@primary_mmap_gtt:
    - fi-skl-guc:         NOTRUN -> SKIP [fdo#109271] +49

  * igt@runner@aborted:
    - fi-kbl-7500u:       NOTRUN -> FAIL [fdo#103841]

  
#### Possible fixes ####

  * igt@debugfs_test@read_all_entries:
    - fi-ilk-650:         DMESG-WARN [fdo#106387] -> PASS

  * igt@i915_selftest@live_contexts:
    - fi-skl-gvtdvm:      DMESG-FAIL [fdo#110235 ] -> PASS

  
  [fdo#102614]: https://bugs.freedesktop.org/show_bug.cgi?id=102614
  [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
  [fdo#103841]: https://bugs.freedesktop.org/show_bug.cgi?id=103841
  [fdo#106387]: https://bugs.freedesktop.org/show_bug.cgi?id=106387
  [fdo#107383]: https://bugs.freedesktop.org/show_bug.cgi?id=107383
  [fdo#107814]: https://bugs.freedesktop.org/show_bug.cgi?id=107814
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#110210]: https://bugs.freedesktop.org/show_bug.cgi?id=110210
  [fdo#110235 ]: https://bugs.freedesktop.org/show_bug.cgi?id=110235 


Participating hosts (24 -> 27)
------------------------------

  Additional (9): fi-hsw-4770r fi-kbl-7567u fi-hsw-peppy fi-skl-guc fi-kbl-7500u fi-whl-u fi-ivb-3770 fi-elk-e7500 fi-kbl-r 
  Missing    (6): fi-ilk-m540 fi-byt-j1900 fi-skl-6770hq fi-hsw-4770 fi-skl-lmem fi-bdw-samus 


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

    * IGT: IGT_4917 -> IGTPW_2752

  CI_DRM_5851: ddcab27b76cf685a9136cf26f11103765fd7d8d5 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_2752: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2752/
  IGT_4917: ec9792ad770d5055d6f42e2a481b8314754c9218 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools



== Testlist changes ==

+igt@gem_create@create-size-update

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2752/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✓ Fi.CI.BAT: success for tests/gem_create: Test unaligned BO size update (rev3)
  2019-04-01 12:49 [igt-dev] [CI] tests/gem_create: Test unaligned BO size update Michał Winiarski
  2019-04-01 14:47 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/gem_create: Test unaligned BO size update (rev3) Patchwork
  2019-04-01 14:49 ` Patchwork
@ 2019-04-01 15:13 ` Patchwork
  2019-04-01 15:21   ` Chris Wilson
  2019-04-01 18:02 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  3 siblings, 1 reply; 6+ messages in thread
From: Patchwork @ 2019-04-01 15:13 UTC (permalink / raw)
  To: Michał Winiarski; +Cc: igt-dev

== Series Details ==

Series: tests/gem_create: Test unaligned BO size update (rev3)
URL   : https://patchwork.freedesktop.org/series/58591/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_5851 -> IGTPW_2752
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://patchwork.freedesktop.org/api/1.0/series/58591/revisions/3/mbox/

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

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

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_basic@userptr:
    - fi-whl-u:           NOTRUN -> SKIP [fdo#109271] +41

  * igt@amdgpu/amd_cs_nop@fork-gfx0:
    - fi-hsw-peppy:       NOTRUN -> SKIP [fdo#109271] +46

  * igt@gem_exec_basic@basic-vebox:
    - fi-ivb-3770:        NOTRUN -> SKIP [fdo#109271] +48

  * igt@gem_exec_basic@gtt-bsd2:
    - fi-kbl-7500u:       NOTRUN -> SKIP [fdo#109271] +9

  * igt@gem_exec_store@basic-bsd1:
    - fi-kbl-r:           NOTRUN -> SKIP [fdo#109271] +41

  * igt@gem_ringfill@basic-default-fd:
    - fi-elk-e7500:       NOTRUN -> SKIP [fdo#109271] +73

  * igt@i915_selftest@live_contexts:
    - fi-bdw-gvtdvm:      PASS -> DMESG-FAIL [fdo#110235 ]

  * igt@i915_selftest@live_uncore:
    - fi-ivb-3770:        NOTRUN -> DMESG-FAIL [fdo#110210]

  * igt@kms_busy@basic-flip-c:
    - fi-elk-e7500:       NOTRUN -> SKIP [fdo#109271] / [fdo#109278]

  * igt@kms_chamelium@dp-crc-fast:
    - fi-kbl-7500u:       NOTRUN -> DMESG-WARN [fdo#103841]

  * igt@kms_chamelium@vga-edid-read:
    - fi-hsw-4770r:       NOTRUN -> SKIP [fdo#109271] +45

  * igt@kms_force_connector_basic@force-connector-state:
    - fi-kbl-7567u:       NOTRUN -> SKIP [fdo#109271] +33

  * igt@kms_frontbuffer_tracking@basic:
    - fi-hsw-peppy:       NOTRUN -> DMESG-FAIL [fdo#102614] / [fdo#107814]

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
    - fi-whl-u:           NOTRUN -> FAIL [fdo#103375] +3

  * igt@kms_psr@cursor_plane_move:
    - fi-whl-u:           NOTRUN -> FAIL [fdo#107383] +3

  * igt@kms_psr@primary_mmap_gtt:
    - fi-skl-guc:         NOTRUN -> SKIP [fdo#109271] +49

  * igt@runner@aborted:
    - fi-kbl-7500u:       NOTRUN -> FAIL [fdo#103841]

  
#### Possible fixes ####

  * igt@debugfs_test@read_all_entries:
    - fi-ilk-650:         DMESG-WARN [fdo#106387] -> PASS

  * igt@i915_selftest@live_contexts:
    - fi-skl-gvtdvm:      DMESG-FAIL [fdo#110235 ] -> PASS

  
  [fdo#102614]: https://bugs.freedesktop.org/show_bug.cgi?id=102614
  [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
  [fdo#103841]: https://bugs.freedesktop.org/show_bug.cgi?id=103841
  [fdo#106387]: https://bugs.freedesktop.org/show_bug.cgi?id=106387
  [fdo#107383]: https://bugs.freedesktop.org/show_bug.cgi?id=107383
  [fdo#107814]: https://bugs.freedesktop.org/show_bug.cgi?id=107814
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#110210]: https://bugs.freedesktop.org/show_bug.cgi?id=110210
  [fdo#110235 ]: https://bugs.freedesktop.org/show_bug.cgi?id=110235 


Participating hosts (24 -> 27)
------------------------------

  Additional (9): fi-hsw-4770r fi-kbl-7567u fi-hsw-peppy fi-skl-guc fi-kbl-7500u fi-whl-u fi-ivb-3770 fi-elk-e7500 fi-kbl-r 
  Missing    (6): fi-ilk-m540 fi-byt-j1900 fi-skl-6770hq fi-hsw-4770 fi-skl-lmem fi-bdw-samus 


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

    * IGT: IGT_4917 -> IGTPW_2752

  CI_DRM_5851: ddcab27b76cf685a9136cf26f11103765fd7d8d5 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_2752: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2752/
  IGT_4917: ec9792ad770d5055d6f42e2a481b8314754c9218 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools



== Testlist changes ==

+igt@gem_create@create-size-update

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2752/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] ✓ Fi.CI.BAT: success for tests/gem_create: Test unaligned BO size update (rev3)
  2019-04-01 15:13 ` Patchwork
@ 2019-04-01 15:21   ` Chris Wilson
  0 siblings, 0 replies; 6+ messages in thread
From: Chris Wilson @ 2019-04-01 15:21 UTC (permalink / raw)
  To: Michał Winiarski, Patchwork, igt-dev

Quoting Patchwork (2019-04-01 16:13:04)
> Participating hosts (24 -> 27)
> ------------------------------
> 
>   Additional (9): fi-hsw-4770r fi-kbl-7567u fi-hsw-peppy fi-skl-guc fi-kbl-7500u fi-whl-u fi-ivb-3770 fi-elk-e7500 fi-kbl-r 
>   Missing    (6): fi-ilk-m540 fi-byt-j1900 fi-skl-6770hq fi-hsw-4770 fi-skl-lmem fi-bdw-samus 

CI's not getting any better. :|
-Chris
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✗ Fi.CI.IGT: failure for tests/gem_create: Test unaligned BO size update (rev3)
  2019-04-01 12:49 [igt-dev] [CI] tests/gem_create: Test unaligned BO size update Michał Winiarski
                   ` (2 preceding siblings ...)
  2019-04-01 15:13 ` Patchwork
@ 2019-04-01 18:02 ` Patchwork
  3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2019-04-01 18:02 UTC (permalink / raw)
  To: Michał Winiarski; +Cc: igt-dev

== Series Details ==

Series: tests/gem_create: Test unaligned BO size update (rev3)
URL   : https://patchwork.freedesktop.org/series/58591/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_5851_full -> IGTPW_2752_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_2752_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_2752_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/58591/revisions/3/mbox/

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_vblank@invalid:
    - shard-kbl:          PASS -> ( 1 FAIL, 1 PASS )

  
#### Warnings ####

  * igt@gem_exec_params@dr1-dirt:
    - shard-kbl:          PASS -> ( 2 PASS ) +399

  * igt@gem_pwrite@display:
    - shard-snb:          PASS -> ( 2 PASS ) +423

  * igt@gem_pwrite@small-cpu-random:
    - shard-hsw:          PASS -> ( 2 PASS ) +292

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap:
    - shard-glk:          PASS -> ( 2 PASS ) +691

  * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
    - shard-apl:          PASS -> ( 2 PASS ) +355

  
New tests
---------

  New tests have been introduced between CI_DRM_5851_full and IGTPW_2752_full:

### New IGT tests (1) ###

  * igt@gem_create@create-size-update:
    - Statuses : 5 pass(s)
    - Exec time: [0.0] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_create@create-clear:
    - shard-snb:          NOTRUN -> ( 2 INCOMPLETE ) [fdo#105411]

  * igt@gem_eio@in-flight-suspend:
    - shard-kbl:          PASS -> ( 1 INCOMPLETE, 1 PASS ) [fdo#103665] +1

  * igt@gem_tiled_swapping@non-threaded:
    - shard-hsw:          PASS -> INCOMPLETE [fdo#103540]

  * igt@i915_missed_irq:
    - shard-glk:          NOTRUN -> ( 2 SKIP ) [fdo#109271]

  * igt@kms_atomic_transition@1x-modeset-transitions-nonblocking-fencing:
    - shard-apl:          PASS -> ( 2 FAIL ) [fdo#109660]
    - shard-kbl:          PASS -> ( 2 FAIL ) [fdo#109660]

  * igt@kms_busy@basic-modeset-f:
    - shard-glk:          NOTRUN -> SKIP [fdo#109271] / [fdo#109278]

  * igt@kms_busy@extended-modeset-hang-newfb-render-a:
    - shard-snb:          PASS -> DMESG-WARN [fdo#110222]

  * igt@kms_busy@extended-modeset-hang-newfb-render-c:
    - shard-hsw:          PASS -> DMESG-WARN [fdo#110222] +1
    - shard-kbl:          PASS -> DMESG-WARN [fdo#110222]

  * igt@kms_cursor_crc@cursor-128x128-offscreen:
    - shard-hsw:          PASS -> ( 1 INCOMPLETE, 1 PASS ) [fdo#103540] +1

  * igt@kms_cursor_crc@cursor-64x21-random:
    - shard-apl:          PASS -> ( 1 INCOMPLETE, 1 PASS ) [fdo#103927] +2

  * igt@kms_flip@2x-flip-vs-fences-interruptible:
    - shard-glk:          PASS -> ( 1 INCOMPLETE, 1 PASS ) [fdo#103359] / [k.org#198133] +4

  * igt@kms_flip@blocking-absolute-wf_vblank-interruptible:
    - shard-snb:          PASS -> ( 1 INCOMPLETE, 1 PASS ) [fdo#105411]

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt:
    - shard-kbl:          NOTRUN -> SKIP [fdo#109271] +17

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:
    - shard-snb:          NOTRUN -> ( 2 SKIP ) [fdo#109271] +7

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
    - shard-kbl:          NOTRUN -> ( 2 SKIP ) [fdo#109271] +2

  * igt@kms_pipe_crc_basic@hang-read-crc-pipe-d:
    - shard-kbl:          NOTRUN -> SKIP [fdo#109271] / [fdo#109278] +2

  * igt@kms_plane_alpha_blend@pipe-a-alpha-7efc:
    - shard-apl:          PASS -> FAIL [fdo#108145]

  * igt@kms_plane_scaling@pipe-a-scaler-with-clipping-clamping:
    - shard-glk:          PASS -> SKIP [fdo#109271] / [fdo#109278]

  * igt@kms_plane_scaling@pipe-c-plane-scaling:
    - shard-snb:          NOTRUN -> SKIP [fdo#109271] / [fdo#109278]

  * igt@kms_universal_plane@cursor-fb-leak-pipe-d:
    - shard-snb:          NOTRUN -> ( 2 SKIP ) [fdo#109271] / [fdo#109278] +4

  * igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm:
    - shard-apl:          PASS -> ( 2 FAIL ) [fdo#104894]
    - shard-kbl:          PASS -> FAIL [fdo#104894]

  * igt@kms_vblank@pipe-b-wait-forked-busy:
    - shard-kbl:          PASS -> ( 1 DMESG-WARN, 1 PASS ) [fdo#103558] / [fdo#105602] +3

  * igt@prime_busy@wait-after-vebox:
    - shard-snb:          NOTRUN -> SKIP [fdo#109271] +22

  * igt@prime_nv_pcopy@test1_micro:
    - shard-glk:          NOTRUN -> SKIP [fdo#109271] +2

  
#### Possible fixes ####

  * igt@kms_busy@extended-modeset-hang-newfb-render-b:
    - shard-hsw:          DMESG-WARN [fdo#110222] -> ( 2 PASS )
    - shard-snb:          DMESG-WARN [fdo#110222] -> ( 2 PASS )

  * igt@kms_busy@extended-modeset-hang-newfb-with-reset-render-a:
    - shard-kbl:          DMESG-WARN [fdo#110222] -> PASS

  * igt@kms_cursor_crc@cursor-128x42-sliding:
    - shard-kbl:          FAIL [fdo#103232] -> PASS
    - shard-apl:          FAIL [fdo#103232] -> PASS

  * igt@kms_cursor_crc@cursor-256x256-dpms:
    - shard-glk:          FAIL [fdo#103232] -> PASS

  * igt@kms_flip@flip-vs-suspend:
    - shard-snb:          DMESG-WARN [fdo#102365] -> PASS

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu:
    - shard-glk:          FAIL [fdo#103167] -> PASS

  * igt@kms_plane_alpha_blend@pipe-b-alpha-7efc:
    - shard-apl:          FAIL [fdo#108145] -> PASS

  * igt@kms_setmode@basic:
    - shard-kbl:          FAIL [fdo#99912] -> PASS

  * igt@kms_vblank@pipe-b-ts-continuation-suspend:
    - shard-kbl:          INCOMPLETE [fdo#103665] -> ( 2 PASS )

  
#### Warnings ####

  * igt@gem_userptr_blits@process-exit-gtt:
    - shard-glk:          SKIP [fdo#109271] -> ( 2 SKIP ) [fdo#109271] +258

  * igt@kms_atomic_transition@3x-modeset-transitions:
    - shard-kbl:          SKIP [fdo#109271] / [fdo#109278] -> ( 2 SKIP ) [fdo#109271] / [fdo#109278] +14

  * igt@kms_atomic_transition@4x-modeset-transitions-nonblocking-fencing:
    - shard-hsw:          SKIP [fdo#109271] / [fdo#109278] -> ( 2 SKIP ) [fdo#109271] / [fdo#109278] +16

  * igt@kms_busy@basic-flip-d:
    - shard-snb:          SKIP [fdo#109271] / [fdo#109278] -> ( 2 SKIP ) [fdo#109271] / [fdo#109278] +50

  * igt@kms_busy@extended-modeset-hang-newfb-with-reset-render-b:
    - shard-kbl:          DMESG-WARN [fdo#110222] -> ( 2 DMESG-WARN ) [fdo#110222] +1
    - shard-snb:          DMESG-WARN [fdo#110222] -> ( 2 DMESG-WARN ) [fdo#110222]
    - shard-apl:          DMESG-WARN [fdo#110222] -> ( 2 DMESG-WARN ) [fdo#110222] +1
    - shard-hsw:          DMESG-WARN [fdo#110222] -> ( 2 DMESG-WARN ) [fdo#110222]

  * igt@kms_busy@extended-pageflip-hang-newfb-render-a:
    - shard-glk:          DMESG-WARN [fdo#110222] -> ( 2 DMESG-WARN ) [fdo#110222] +4

  * igt@kms_chamelium@hdmi-edid-change-during-suspend:
    - shard-apl:          SKIP [fdo#109271] -> ( 2 SKIP ) [fdo#109271] +160

  * igt@kms_color@pipe-c-ctm-max:
    - shard-glk:          FAIL [fdo#108147] -> ( 2 FAIL ) [fdo#108147] +1

  * igt@kms_content_protection@atomic:
    - shard-apl:          FAIL [fdo#108597] / [fdo#108739] -> ( 2 FAIL ) [fdo#108597] / [fdo#108739]

  * igt@kms_content_protection@atomic-dpms:
    - shard-apl:          FAIL [fdo#108739] -> ( 2 FAIL ) [fdo#108739]
    - shard-kbl:          FAIL [fdo#108739] -> ( 2 FAIL ) [fdo#108739]

  * igt@kms_cursor_crc@cursor-128x42-onscreen:
    - shard-glk:          FAIL [fdo#103232] -> ( 2 FAIL ) [fdo#103232] +6

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
    - shard-kbl:          SKIP [fdo#109271] -> ( 2 SKIP ) [fdo#105602] / [fdo#109271] +1

  * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc:
    - shard-kbl:          SKIP [fdo#109271] -> ( 2 SKIP ) [fdo#109271] +136

  * igt@kms_lease@atomic_implicit_crtc:
    - shard-glk:          FAIL [fdo#110279] -> ( 2 FAIL ) [fdo#110279]
    - shard-snb:          FAIL [fdo#110279] -> ( 2 FAIL ) [fdo#110279]

  * igt@kms_lease@cursor_implicit_plane:
    - shard-hsw:          FAIL [fdo#110278] -> ( 2 FAIL ) [fdo#110278]
    - shard-kbl:          FAIL [fdo#110278] -> ( 2 FAIL ) [fdo#110278]
    - shard-snb:          FAIL [fdo#110278] -> ( 2 FAIL ) [fdo#110278]
    - shard-apl:          FAIL [fdo#110278] -> ( 2 FAIL ) [fdo#110278]
    - shard-glk:          FAIL [fdo#110278] -> ( 2 FAIL ) [fdo#110278]

  * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d:
    - shard-apl:          SKIP [fdo#109271] / [fdo#109278] -> ( 2 SKIP ) [fdo#109271] / [fdo#109278] +13

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d:
    - shard-glk:          SKIP [fdo#109271] / [fdo#109278] -> ( 2 SKIP ) [fdo#109271] / [fdo#109278] +29

  * igt@kms_plane@pixel-format-pipe-a-planes-source-clamping:
    - shard-snb:          FAIL [fdo#110296 ] -> ( 2 FAIL ) [fdo#110296 ]
    - shard-glk:          FAIL [fdo#110296 ] -> ( 2 FAIL ) [fdo#110296 ]
    - shard-apl:          FAIL [fdo#110296 ] -> ( 2 FAIL ) [fdo#110296 ]
    - shard-hsw:          FAIL [fdo#110296 ] -> ( 2 FAIL ) [fdo#110296 ]

  * igt@kms_plane_alpha_blend@pipe-b-alpha-basic:
    - shard-apl:          FAIL [fdo#108145] -> ( 2 FAIL ) [fdo#108145] +3
    - shard-kbl:          FAIL [fdo#108145] / [fdo#108590] -> ( 2 FAIL ) [fdo#108145] / [fdo#108590] +1

  * igt@kms_plane_alpha_blend@pipe-c-alpha-transparant-fb:
    - shard-glk:          FAIL [fdo#108145] -> ( 2 FAIL ) [fdo#108145] +7
    - shard-kbl:          FAIL [fdo#108145] -> ( 2 FAIL ) [fdo#108145] +1

  * igt@kms_plane_scaling@pipe-b-scaler-with-pixel-format:
    - shard-glk:          SKIP [fdo#109271] / [fdo#109278] -> ( 1 PASS, 1 SKIP ) [fdo#109271] / [fdo#109278]

  * igt@kms_psr@primary_page_flip:
    - shard-hsw:          SKIP [fdo#109271] -> ( 2 SKIP ) [fdo#109271] +141

  * igt@kms_sysfs_edid_timing:
    - shard-apl:          FAIL [fdo#100047] -> ( 2 FAIL ) [fdo#100047]
    - shard-kbl:          FAIL [fdo#100047] -> ( 2 FAIL ) [fdo#100047]

  * igt@perf_pmu@busy-start-vcs1:
    - shard-snb:          SKIP [fdo#109271] -> ( 2 SKIP ) [fdo#109271] +384

  
  {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#102365]: https://bugs.freedesktop.org/show_bug.cgi?id=102365
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232
  [fdo#103359]: https://bugs.freedesktop.org/show_bug.cgi?id=103359
  [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
  [fdo#103558]: https://bugs.freedesktop.org/show_bug.cgi?id=103558
  [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
  [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [fdo#104894]: https://bugs.freedesktop.org/show_bug.cgi?id=104894
  [fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411
  [fdo#105602]: https://bugs.freedesktop.org/show_bug.cgi?id=105602
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#108147]: https://bugs.freedesktop.org/show_bug.cgi?id=108147
  [fdo#108590]: https://bugs.freedesktop.org/show_bug.cgi?id=108590
  [fdo#108597]: https://bugs.freedesktop.org/show_bug.cgi?id=108597
  [fdo#108739]: https://bugs.freedesktop.org/show_bug.cgi?id=108739
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109660]: https://bugs.freedesktop.org/show_bug.cgi?id=109660
  [fdo#110222]: https://bugs.freedesktop.org/show_bug.cgi?id=110222
  [fdo#110278]: https://bugs.freedesktop.org/show_bug.cgi?id=110278
  [fdo#110279]: https://bugs.freedesktop.org/show_bug.cgi?id=110279
  [fdo#110296 ]: https://bugs.freedesktop.org/show_bug.cgi?id=110296 
  [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 (10 -> 5)
------------------------------

  Missing    (5): shard-skl pig-hsw-4770r pig-glk-j5005 shard-iclb pig-skl-6260u 


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

    * IGT: IGT_4917 -> IGTPW_2752
    * Piglit: piglit_4509 -> None

  CI_DRM_5851: ddcab27b76cf685a9136cf26f11103765fd7d8d5 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_2752: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2752/
  IGT_4917: ec9792ad770d5055d6f42e2a481b8314754c9218 @ 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_2752/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

end of thread, other threads:[~2019-04-01 18:02 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-01 12:49 [igt-dev] [CI] tests/gem_create: Test unaligned BO size update Michał Winiarski
2019-04-01 14:47 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/gem_create: Test unaligned BO size update (rev3) Patchwork
2019-04-01 14:49 ` Patchwork
2019-04-01 15:13 ` Patchwork
2019-04-01 15:21   ` Chris Wilson
2019-04-01 18:02 ` [igt-dev] ✗ Fi.CI.IGT: failure " 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.