All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t] lib/ioctl_wrappers: Remove static variables for getting params
@ 2019-12-04  8:06 Zbigniew Kempczyński
  2019-12-04  8:18 ` Chris Wilson
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Zbigniew Kempczyński @ 2019-12-04  8:06 UTC (permalink / raw)
  To: igt-dev

For multi-device support caching parameters (GET_PARAM and other
queries) is bad idea. Remove static variables to avoid making wrong
decisions in the tests.

Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
---
 lib/ioctl_wrappers.c | 155 +++++++++++++++++--------------------------
 1 file changed, 61 insertions(+), 94 deletions(-)

diff --git a/lib/ioctl_wrappers.c b/lib/ioctl_wrappers.c
index 78b92bd2..627717d2 100644
--- a/lib/ioctl_wrappers.c
+++ b/lib/ioctl_wrappers.c
@@ -472,19 +472,17 @@ void gem_sync(int fd, uint32_t handle)
 
 bool gem_create__has_stolen_support(int fd)
 {
-	static int has_stolen_support = -1;
+	int has_stolen_support;
 	struct drm_i915_getparam gp;
 	int val = -1;
 
-	if (has_stolen_support < 0) {
-		memset(&gp, 0, sizeof(gp));
-		gp.param = 38; /* CREATE_VERSION */
-		gp.value = &val;
+	memset(&gp, 0, sizeof(gp));
+	gp.param = 38; /* CREATE_VERSION */
+	gp.value = &val;
 
-		/* Do we have the extended gem_create_ioctl? */
-		ioctl(fd, DRM_IOCTL_I915_GETPARAM, &gp);
-		has_stolen_support = val >= 2;
-	}
+	/* Do we have the extended gem_create_ioctl? */
+	ioctl(fd, DRM_IOCTL_I915_GETPARAM, &gp);
+	has_stolen_support = val >= 2;
 
 	return has_stolen_support;
 }
@@ -865,38 +863,32 @@ bool gem_engine_reset_enabled(int fd)
  */
 int gem_available_fences(int fd)
 {
-	static int num_fences = -1;
-
-	if (num_fences < 0) {
-		struct drm_i915_getparam gp;
+	int num_fences;
+	struct drm_i915_getparam gp;
 
-		memset(&gp, 0, sizeof(gp));
-		gp.param = I915_PARAM_NUM_FENCES_AVAIL;
-		gp.value = &num_fences;
+	memset(&gp, 0, sizeof(gp));
+	gp.param = I915_PARAM_NUM_FENCES_AVAIL;
+	gp.value = &num_fences;
 
-		num_fences = 0;
-		ioctl(fd, DRM_IOCTL_I915_GETPARAM, &gp, sizeof(gp));
-		errno = 0;
-	}
+	num_fences = 0;
+	ioctl(fd, DRM_IOCTL_I915_GETPARAM, &gp, sizeof(gp));
+	errno = 0;
 
 	return num_fences;
 }
 
 bool gem_has_llc(int fd)
 {
-	static int has_llc = -1;
-
-	if (has_llc < 0) {
-		struct drm_i915_getparam gp;
+	int has_llc;
+	struct drm_i915_getparam gp;
 
-		memset(&gp, 0, sizeof(gp));
-		gp.param = I915_PARAM_HAS_LLC;
-		gp.value = &has_llc;
+	memset(&gp, 0, sizeof(gp));
+	gp.param = I915_PARAM_HAS_LLC;
+	gp.value = &has_llc;
 
-		has_llc = 0;
-		ioctl(fd, DRM_IOCTL_I915_GETPARAM, &gp, sizeof(gp));
-		errno = 0;
-	}
+	has_llc = 0;
+	ioctl(fd, DRM_IOCTL_I915_GETPARAM, &gp, sizeof(gp));
+	errno = 0;
 
 	return has_llc;
 }
@@ -929,10 +921,7 @@ static bool has_param(int fd, int param)
  */
 bool gem_has_bsd(int fd)
 {
-	static int has_bsd = -1;
-	if (has_bsd < 0)
-		has_bsd = has_param(fd, I915_PARAM_HAS_BSD);
-	return has_bsd;
+	return has_param(fd, I915_PARAM_HAS_BSD);
 }
 
 /**
@@ -947,10 +936,7 @@ bool gem_has_bsd(int fd)
  */
 bool gem_has_blt(int fd)
 {
-	static int has_blt = -1;
-	if (has_blt < 0)
-		has_blt =  has_param(fd, I915_PARAM_HAS_BLT);
-	return has_blt;
+	return has_param(fd, I915_PARAM_HAS_BLT);
 }
 
 /**
@@ -966,10 +952,7 @@ bool gem_has_blt(int fd)
  */
 bool gem_has_vebox(int fd)
 {
-	static int has_vebox = -1;
-	if (has_vebox < 0)
-		has_vebox =  has_param(fd, I915_PARAM_HAS_VEBOX);
-	return has_vebox;
+	return has_param(fd, I915_PARAM_HAS_VEBOX);
 }
 
 #define I915_PARAM_HAS_BSD2 31
@@ -985,10 +968,7 @@ bool gem_has_vebox(int fd)
  */
 bool gem_has_bsd2(int fd)
 {
-	static int has_bsd2 = -1;
-	if (has_bsd2 < 0)
-		has_bsd2 = has_param(fd, I915_PARAM_HAS_BSD2);
-	return has_bsd2;
+	return has_param(fd, I915_PARAM_HAS_BSD2);
 }
 
 struct local_i915_gem_get_aperture {
@@ -1066,24 +1046,21 @@ uint64_t gem_available_aperture_size(int fd)
  */
 uint64_t gem_aperture_size(int fd)
 {
-	static uint64_t aperture_size = 0;
-
-	if (aperture_size == 0) {
-		struct drm_i915_gem_context_param p;
+	uint64_t aperture_size = 0;
+	struct drm_i915_gem_context_param p;
 
-		memset(&p, 0, sizeof(p));
-		p.param = 0x3;
-		if (__gem_context_get_param(fd, &p) == 0) {
-			aperture_size = p.value;
-		} else {
-			struct drm_i915_gem_get_aperture aperture;
+	memset(&p, 0, sizeof(p));
+	p.param = 0x3;
+	if (__gem_context_get_param(fd, &p) == 0) {
+		aperture_size = p.value;
+	} else {
+		struct drm_i915_gem_get_aperture aperture;
 
-			memset(&aperture, 0, sizeof(aperture));
-			aperture.aper_size = 256*1024*1024;
+		memset(&aperture, 0, sizeof(aperture));
+		aperture.aper_size = 256*1024*1024;
 
-			do_ioctl(fd, DRM_IOCTL_I915_GEM_GET_APERTURE, &aperture);
-			aperture_size =  aperture.aper_size;
-		}
+		do_ioctl(fd, DRM_IOCTL_I915_GEM_GET_APERTURE, &aperture);
+		aperture_size =  aperture.aper_size;
 	}
 
 	return aperture_size;
@@ -1141,19 +1118,16 @@ uint64_t gem_global_aperture_size(int fd)
  */
 bool gem_has_softpin(int fd)
 {
-	static int has_softpin = -1;
-
-	if (has_softpin < 0) {
-		struct drm_i915_getparam gp;
+	int has_softpin;
+	struct drm_i915_getparam gp;
 
-		memset(&gp, 0, sizeof(gp));
-		gp.param = I915_PARAM_HAS_EXEC_SOFTPIN;
-		gp.value = &has_softpin;
+	memset(&gp, 0, sizeof(gp));
+	gp.param = I915_PARAM_HAS_EXEC_SOFTPIN;
+	gp.value = &has_softpin;
 
-		has_softpin = 0;
-		ioctl(fd, DRM_IOCTL_I915_GETPARAM, &gp, sizeof(gp));
-		errno = 0;
-	}
+	has_softpin = 0;
+	ioctl(fd, DRM_IOCTL_I915_GETPARAM, &gp, sizeof(gp));
+	errno = 0;
 
 	return has_softpin;
 }
@@ -1169,19 +1143,16 @@ bool gem_has_softpin(int fd)
  */
 bool gem_has_exec_fence(int fd)
 {
-	static int has_exec_fence = -1;
-
-	if (has_exec_fence < 0) {
-		struct drm_i915_getparam gp;
+	int has_exec_fence;
+	struct drm_i915_getparam gp;
 
-		memset(&gp, 0, sizeof(gp));
-		gp.param = I915_PARAM_HAS_EXEC_FENCE;
-		gp.value = &has_exec_fence;
+	memset(&gp, 0, sizeof(gp));
+	gp.param = I915_PARAM_HAS_EXEC_FENCE;
+	gp.value = &has_exec_fence;
 
-		has_exec_fence = 0;
-		ioctl(fd, DRM_IOCTL_I915_GETPARAM, &gp, sizeof(gp));
-		errno = 0;
-	}
+	has_exec_fence = 0;
+	ioctl(fd, DRM_IOCTL_I915_GETPARAM, &gp, sizeof(gp));
+	errno = 0;
 
 	return has_exec_fence;
 }
@@ -1429,17 +1400,13 @@ void prime_sync_end(int dma_buf_fd, bool write)
 
 bool igt_has_fb_modifiers(int fd)
 {
-	static bool has_modifiers, cap_modifiers_tested;
-
-	if (!cap_modifiers_tested) {
-		uint64_t cap_modifiers;
-		int ret;
+	bool has_modifiers;
+	uint64_t cap_modifiers;
+	int ret;
 
-		ret = drmGetCap(fd, DRM_CAP_ADDFB2_MODIFIERS, &cap_modifiers);
-		igt_assert(ret == 0 || errno == EINVAL || errno == EOPNOTSUPP);
-		has_modifiers = ret == 0 && cap_modifiers == 1;
-		cap_modifiers_tested = true;
-	}
+	ret = drmGetCap(fd, DRM_CAP_ADDFB2_MODIFIERS, &cap_modifiers);
+	igt_assert(ret == 0 || errno == EINVAL || errno == EOPNOTSUPP);
+	has_modifiers = ret == 0 && cap_modifiers == 1;
 
 	return has_modifiers;
 }
-- 
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] 6+ messages in thread

* Re: [igt-dev] [PATCH i-g-t] lib/ioctl_wrappers: Remove static variables for getting params
  2019-12-04  8:06 [igt-dev] [PATCH i-g-t] lib/ioctl_wrappers: Remove static variables for getting params Zbigniew Kempczyński
@ 2019-12-04  8:18 ` Chris Wilson
  2019-12-04  8:48 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Chris Wilson @ 2019-12-04  8:18 UTC (permalink / raw)
  To: Zbigniew Kempczyński, igt-dev

Quoting Zbigniew Kempczyński (2019-12-04 08:06:49)
> For multi-device support caching parameters (GET_PARAM and other
> queries) is bad idea. Remove static variables to avoid making wrong
> decisions in the tests.
> 
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Chris Wilson <chris@chris-wilson.co.uk>

Lots of grumbling at the inanity of our API,
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
-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.BAT: success for lib/ioctl_wrappers: Remove static variables for getting params
  2019-12-04  8:06 [igt-dev] [PATCH i-g-t] lib/ioctl_wrappers: Remove static variables for getting params Zbigniew Kempczyński
  2019-12-04  8:18 ` Chris Wilson
@ 2019-12-04  8:48 ` Patchwork
  2019-12-04 15:03 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  2019-12-09  7:13 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2019-12-04  8:48 UTC (permalink / raw)
  To: Zbigniew Kempczyński; +Cc: igt-dev

== Series Details ==

Series: lib/ioctl_wrappers: Remove static variables for getting params
URL   : https://patchwork.freedesktop.org/series/70416/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_7480 -> IGTPW_3803
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_pm_rpm@module-reload:
    - fi-skl-lmem:        [PASS][1] -> [DMESG-WARN][2] ([i915#592])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/fi-skl-lmem/igt@i915_pm_rpm@module-reload.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/fi-skl-lmem/igt@i915_pm_rpm@module-reload.html
    - fi-kbl-guc:         [PASS][3] -> [FAIL][4] ([i915#579])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html

  * igt@kms_frontbuffer_tracking@basic:
    - fi-icl-u2:          [PASS][5] -> [FAIL][6] ([i915#49])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html

  
#### Possible fixes ####

  * igt@gem_exec_parallel@basic:
    - {fi-tgl-u}:         [INCOMPLETE][7] ([i915#476]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/fi-tgl-u/igt@gem_exec_parallel@basic.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/fi-tgl-u/igt@gem_exec_parallel@basic.html

  * igt@i915_selftest@live_gem_contexts:
    - fi-hsw-peppy:       [INCOMPLETE][9] ([i915#694]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/fi-hsw-peppy/igt@i915_selftest@live_gem_contexts.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/fi-hsw-peppy/igt@i915_selftest@live_gem_contexts.html

  
#### Warnings ####

  * igt@gem_exec_suspend@basic-s3:
    - fi-kbl-x1275:       [DMESG-WARN][11] ([i915#62] / [i915#92] / [i915#95]) -> [DMESG-WARN][12] ([i915#62] / [i915#92]) +2 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/fi-kbl-x1275/igt@gem_exec_suspend@basic-s3.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/fi-kbl-x1275/igt@gem_exec_suspend@basic-s3.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
    - fi-kbl-x1275:       [DMESG-WARN][13] ([i915#62] / [i915#92]) -> [DMESG-WARN][14] ([i915#62] / [i915#92] / [i915#95]) +8 similar issues
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/fi-kbl-x1275/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/fi-kbl-x1275/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html

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

  [i915#476]: https://gitlab.freedesktop.org/drm/intel/issues/476
  [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49
  [i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579
  [i915#592]: https://gitlab.freedesktop.org/drm/intel/issues/592
  [i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62
  [i915#694]: https://gitlab.freedesktop.org/drm/intel/issues/694
  [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92
  [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95


Participating hosts (50 -> 44)
------------------------------

  Missing    (6): fi-ilk-m540 fi-byt-squawks fi-bsw-cyan fi-kbl-7560u fi-byt-clapper fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5323 -> IGTPW_3803

  CI-20190529: 20190529
  CI_DRM_7480: acd4664d865fde46dcd32c48ccac1b048b355bea @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3803: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/index.html
  IGT_5323: b0f877d06a78b9c38ed246be2537a0453b6c214f @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/index.html
_______________________________________________
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 lib/ioctl_wrappers: Remove static variables for getting params
  2019-12-04  8:06 [igt-dev] [PATCH i-g-t] lib/ioctl_wrappers: Remove static variables for getting params Zbigniew Kempczyński
  2019-12-04  8:18 ` Chris Wilson
  2019-12-04  8:48 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2019-12-04 15:03 ` Patchwork
  2019-12-06 12:33   ` Zbigniew Kempczyński
  2019-12-09  7:13 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  3 siblings, 1 reply; 6+ messages in thread
From: Patchwork @ 2019-12-04 15:03 UTC (permalink / raw)
  To: Zbigniew Kempczyński; +Cc: igt-dev

== Series Details ==

Series: lib/ioctl_wrappers: Remove static variables for getting params
URL   : https://patchwork.freedesktop.org/series/70416/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_7480_full -> IGTPW_3803_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@runner@aborted:
    - shard-apl:          NOTRUN -> [FAIL][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-apl8/igt@runner@aborted.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_userptr_blits@map-fixed-invalidate-busy-gup:
    - shard-snb:          [PASS][2] -> [DMESG-WARN][3] ([fdo#111870])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-snb2/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-snb4/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html

  * igt@kms_big_fb@linear-64bpp-rotate-180:
    - shard-glk:          [PASS][4] -> [INCOMPLETE][5] ([i915#58] / [k.org#198133])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-glk6/igt@kms_big_fb@linear-64bpp-rotate-180.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-glk2/igt@kms_big_fb@linear-64bpp-rotate-180.html

  * igt@kms_cursor_crc@pipe-b-cursor-suspend:
    - shard-apl:          [PASS][6] -> [DMESG-WARN][7] ([i915#180]) +1 similar issue
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-apl1/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-apl1/igt@kms_cursor_crc@pipe-b-cursor-suspend.html

  * igt@perf@disabled-read-error:
    - shard-hsw:          [PASS][8] -> [INCOMPLETE][9] ([i915#61])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-hsw5/igt@perf@disabled-read-error.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-hsw6/igt@perf@disabled-read-error.html

  
#### Possible fixes ####

  * igt@gem_exec_parallel@vcs0-contexts:
    - shard-hsw:          [FAIL][10] ([i915#676]) -> [PASS][11] +1 similar issue
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-hsw5/igt@gem_exec_parallel@vcs0-contexts.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-hsw5/igt@gem_exec_parallel@vcs0-contexts.html

  * {igt@gem_exec_parse_blt@bb-start-cmd}:
    - shard-glk:          [TIMEOUT][12] ([fdo#112271]) -> [PASS][13] +1 similar issue
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-glk6/igt@gem_exec_parse_blt@bb-start-cmd.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-glk7/igt@gem_exec_parse_blt@bb-start-cmd.html

  * igt@gem_persistent_relocs@forked-thrash-inactive:
    - shard-snb:          [TIMEOUT][14] ([i915#530]) -> [PASS][15]
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-snb4/igt@gem_persistent_relocs@forked-thrash-inactive.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-snb4/igt@gem_persistent_relocs@forked-thrash-inactive.html
    - shard-hsw:          [INCOMPLETE][16] ([i915#530] / [i915#61]) -> [PASS][17]
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-hsw6/igt@gem_persistent_relocs@forked-thrash-inactive.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-hsw4/igt@gem_persistent_relocs@forked-thrash-inactive.html

  * igt@gem_ppgtt@flink-and-close-vma-leak:
    - shard-glk:          [FAIL][18] ([i915#644]) -> [PASS][19]
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-glk5/igt@gem_ppgtt@flink-and-close-vma-leak.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-glk9/igt@gem_ppgtt@flink-and-close-vma-leak.html
    - shard-apl:          [FAIL][20] ([i915#644]) -> [PASS][21]
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-apl3/igt@gem_ppgtt@flink-and-close-vma-leak.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-apl3/igt@gem_ppgtt@flink-and-close-vma-leak.html

  * igt@gem_userptr_blits@sync-unmap-cycles:
    - shard-snb:          [DMESG-WARN][22] ([fdo#111870]) -> [PASS][23] +1 similar issue
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-snb2/igt@gem_userptr_blits@sync-unmap-cycles.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-snb4/igt@gem_userptr_blits@sync-unmap-cycles.html

  * igt@i915_selftest@live_blt:
    - shard-hsw:          [DMESG-FAIL][24] ([i915#553]) -> [PASS][25]
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-hsw7/igt@i915_selftest@live_blt.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-hsw4/igt@i915_selftest@live_blt.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-snb:          [DMESG-WARN][26] ([i915#42]) -> [PASS][27]
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-snb4/igt@kms_flip@flip-vs-suspend-interruptible.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-snb4/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
    - shard-apl:          [FAIL][28] ([i915#49]) -> [PASS][29]
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-apl8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-apl7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html

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

  [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
  [fdo#112271]: https://bugs.freedesktop.org/show_bug.cgi?id=112271
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#42]: https://gitlab.freedesktop.org/drm/intel/issues/42
  [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49
  [i915#530]: https://gitlab.freedesktop.org/drm/intel/issues/530
  [i915#553]: https://gitlab.freedesktop.org/drm/intel/issues/553
  [i915#58]: https://gitlab.freedesktop.org/drm/intel/issues/58
  [i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61
  [i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644
  [i915#675]: https://gitlab.freedesktop.org/drm/intel/issues/675
  [i915#676]: https://gitlab.freedesktop.org/drm/intel/issues/676
  [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133


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

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


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5323 -> IGTPW_3803
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_7480: acd4664d865fde46dcd32c48ccac1b048b355bea @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3803: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/index.html
  IGT_5323: b0f877d06a78b9c38ed246be2537a0453b6c214f @ 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_3803/index.html
_______________________________________________
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.IGT: failure for lib/ioctl_wrappers: Remove static variables for getting params
  2019-12-04 15:03 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2019-12-06 12:33   ` Zbigniew Kempczyński
  0 siblings, 0 replies; 6+ messages in thread
From: Zbigniew Kempczyński @ 2019-12-06 12:33 UTC (permalink / raw)
  To: igt-dev; +Cc: Vudum, Lakshminarayana

On Wed, Dec 04, 2019 at 03:03:02PM +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: lib/ioctl_wrappers: Remove static variables for getting params
> URL   : https://patchwork.freedesktop.org/series/70416/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_7480_full -> IGTPW_3803_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_3803_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_3803_full, please notify your bug team to allow them
>   to document this new failure mode, which will reduce false positives in CI.
> 
>   External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/index.html
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_3803_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@runner@aborted:
>     - shard-apl:          NOTRUN -> [FAIL][1]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-apl8/igt@runner@aborted.html

Change has no influence on this. 

Zbigniew

> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_3803_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_userptr_blits@map-fixed-invalidate-busy-gup:
>     - shard-snb:          [PASS][2] -> [DMESG-WARN][3] ([fdo#111870])
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-snb2/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-snb4/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html
> 
>   * igt@kms_big_fb@linear-64bpp-rotate-180:
>     - shard-glk:          [PASS][4] -> [INCOMPLETE][5] ([i915#58] / [k.org#198133])
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-glk6/igt@kms_big_fb@linear-64bpp-rotate-180.html
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-glk2/igt@kms_big_fb@linear-64bpp-rotate-180.html
> 
>   * igt@kms_cursor_crc@pipe-b-cursor-suspend:
>     - shard-apl:          [PASS][6] -> [DMESG-WARN][7] ([i915#180]) +1 similar issue
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-apl1/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-apl1/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
> 
>   * igt@perf@disabled-read-error:
>     - shard-hsw:          [PASS][8] -> [INCOMPLETE][9] ([i915#61])
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-hsw5/igt@perf@disabled-read-error.html
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-hsw6/igt@perf@disabled-read-error.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_exec_parallel@vcs0-contexts:
>     - shard-hsw:          [FAIL][10] ([i915#676]) -> [PASS][11] +1 similar issue
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-hsw5/igt@gem_exec_parallel@vcs0-contexts.html
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-hsw5/igt@gem_exec_parallel@vcs0-contexts.html
> 
>   * {igt@gem_exec_parse_blt@bb-start-cmd}:
>     - shard-glk:          [TIMEOUT][12] ([fdo#112271]) -> [PASS][13] +1 similar issue
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-glk6/igt@gem_exec_parse_blt@bb-start-cmd.html
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-glk7/igt@gem_exec_parse_blt@bb-start-cmd.html
> 
>   * igt@gem_persistent_relocs@forked-thrash-inactive:
>     - shard-snb:          [TIMEOUT][14] ([i915#530]) -> [PASS][15]
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-snb4/igt@gem_persistent_relocs@forked-thrash-inactive.html
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-snb4/igt@gem_persistent_relocs@forked-thrash-inactive.html
>     - shard-hsw:          [INCOMPLETE][16] ([i915#530] / [i915#61]) -> [PASS][17]
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-hsw6/igt@gem_persistent_relocs@forked-thrash-inactive.html
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-hsw4/igt@gem_persistent_relocs@forked-thrash-inactive.html
> 
>   * igt@gem_ppgtt@flink-and-close-vma-leak:
>     - shard-glk:          [FAIL][18] ([i915#644]) -> [PASS][19]
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-glk5/igt@gem_ppgtt@flink-and-close-vma-leak.html
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-glk9/igt@gem_ppgtt@flink-and-close-vma-leak.html
>     - shard-apl:          [FAIL][20] ([i915#644]) -> [PASS][21]
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-apl3/igt@gem_ppgtt@flink-and-close-vma-leak.html
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-apl3/igt@gem_ppgtt@flink-and-close-vma-leak.html
> 
>   * igt@gem_userptr_blits@sync-unmap-cycles:
>     - shard-snb:          [DMESG-WARN][22] ([fdo#111870]) -> [PASS][23] +1 similar issue
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-snb2/igt@gem_userptr_blits@sync-unmap-cycles.html
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-snb4/igt@gem_userptr_blits@sync-unmap-cycles.html
> 
>   * igt@i915_selftest@live_blt:
>     - shard-hsw:          [DMESG-FAIL][24] ([i915#553]) -> [PASS][25]
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-hsw7/igt@i915_selftest@live_blt.html
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-hsw4/igt@i915_selftest@live_blt.html
> 
>   * igt@kms_flip@flip-vs-suspend-interruptible:
>     - shard-snb:          [DMESG-WARN][26] ([i915#42]) -> [PASS][27]
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-snb4/igt@kms_flip@flip-vs-suspend-interruptible.html
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-snb4/igt@kms_flip@flip-vs-suspend-interruptible.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
>     - shard-apl:          [FAIL][28] ([i915#49]) -> [PASS][29]
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-apl8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-apl7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
>   [fdo#112271]: https://bugs.freedesktop.org/show_bug.cgi?id=112271
>   [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
>   [i915#42]: https://gitlab.freedesktop.org/drm/intel/issues/42
>   [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49
>   [i915#530]: https://gitlab.freedesktop.org/drm/intel/issues/530
>   [i915#553]: https://gitlab.freedesktop.org/drm/intel/issues/553
>   [i915#58]: https://gitlab.freedesktop.org/drm/intel/issues/58
>   [i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61
>   [i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644
>   [i915#675]: https://gitlab.freedesktop.org/drm/intel/issues/675
>   [i915#676]: https://gitlab.freedesktop.org/drm/intel/issues/676
>   [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133
> 
> 
> Participating hosts (11 -> 8)
> ------------------------------
> 
>   Missing    (3): pig-skl-6260u pig-glk-j5005 pig-hsw-4770r 
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_5323 -> IGTPW_3803
>   * Piglit: piglit_4509 -> None
> 
>   CI-20190529: 20190529
>   CI_DRM_7480: acd4664d865fde46dcd32c48ccac1b048b355bea @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_3803: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/index.html
>   IGT_5323: b0f877d06a78b9c38ed246be2537a0453b6c214f @ 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_3803/index.html


_______________________________________________
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: success for lib/ioctl_wrappers: Remove static variables for getting params
  2019-12-04  8:06 [igt-dev] [PATCH i-g-t] lib/ioctl_wrappers: Remove static variables for getting params Zbigniew Kempczyński
                   ` (2 preceding siblings ...)
  2019-12-04 15:03 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2019-12-09  7:13 ` Patchwork
  3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2019-12-09  7:13 UTC (permalink / raw)
  To: Zbigniew Kempczyński; +Cc: igt-dev

== Series Details ==

Series: lib/ioctl_wrappers: Remove static variables for getting params
URL   : https://patchwork.freedesktop.org/series/70416/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_7480_full -> IGTPW_3803_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_userptr_blits@map-fixed-invalidate-busy-gup:
    - shard-snb:          [PASS][1] -> [DMESG-WARN][2] ([fdo#111870])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-snb2/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-snb4/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html

  * igt@kms_big_fb@linear-64bpp-rotate-180:
    - shard-glk:          [PASS][3] -> [INCOMPLETE][4] ([i915#58] / [k.org#198133])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-glk6/igt@kms_big_fb@linear-64bpp-rotate-180.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-glk2/igt@kms_big_fb@linear-64bpp-rotate-180.html

  * igt@kms_cursor_crc@pipe-b-cursor-suspend:
    - shard-apl:          [PASS][5] -> [DMESG-WARN][6] ([i915#180]) +1 similar issue
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-apl1/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-apl1/igt@kms_cursor_crc@pipe-b-cursor-suspend.html

  * igt@perf@disabled-read-error:
    - shard-hsw:          [PASS][7] -> [INCOMPLETE][8] ([i915#61])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-hsw5/igt@perf@disabled-read-error.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-hsw6/igt@perf@disabled-read-error.html

  * igt@perf_pmu@frequency-idle:
    - shard-snb:          [PASS][9] -> [FAIL][10] ([i915#675])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-snb5/igt@perf_pmu@frequency-idle.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-snb2/igt@perf_pmu@frequency-idle.html

  
#### Possible fixes ####

  * igt@gem_exec_parallel@vcs0-contexts:
    - shard-hsw:          [FAIL][11] ([i915#676]) -> [PASS][12] +1 similar issue
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-hsw5/igt@gem_exec_parallel@vcs0-contexts.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-hsw5/igt@gem_exec_parallel@vcs0-contexts.html

  * igt@gem_exec_parse_blt@bb-start-cmd:
    - shard-glk:          [TIMEOUT][13] ([fdo#112271]) -> [PASS][14] +1 similar issue
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-glk6/igt@gem_exec_parse_blt@bb-start-cmd.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-glk7/igt@gem_exec_parse_blt@bb-start-cmd.html

  * igt@gem_persistent_relocs@forked-thrash-inactive:
    - shard-snb:          [TIMEOUT][15] ([i915#530]) -> [PASS][16]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-snb4/igt@gem_persistent_relocs@forked-thrash-inactive.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-snb4/igt@gem_persistent_relocs@forked-thrash-inactive.html
    - shard-hsw:          [INCOMPLETE][17] ([i915#530] / [i915#61]) -> [PASS][18]
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-hsw6/igt@gem_persistent_relocs@forked-thrash-inactive.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-hsw4/igt@gem_persistent_relocs@forked-thrash-inactive.html

  * igt@gem_ppgtt@flink-and-close-vma-leak:
    - shard-glk:          [FAIL][19] ([i915#644]) -> [PASS][20]
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-glk5/igt@gem_ppgtt@flink-and-close-vma-leak.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-glk9/igt@gem_ppgtt@flink-and-close-vma-leak.html
    - shard-apl:          [FAIL][21] ([i915#644]) -> [PASS][22]
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-apl3/igt@gem_ppgtt@flink-and-close-vma-leak.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-apl3/igt@gem_ppgtt@flink-and-close-vma-leak.html

  * igt@gem_userptr_blits@sync-unmap-cycles:
    - shard-snb:          [DMESG-WARN][23] ([fdo#111870]) -> [PASS][24] +1 similar issue
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-snb2/igt@gem_userptr_blits@sync-unmap-cycles.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-snb4/igt@gem_userptr_blits@sync-unmap-cycles.html

  * igt@i915_selftest@live_blt:
    - shard-hsw:          [DMESG-FAIL][25] ([i915#553]) -> [PASS][26]
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-hsw7/igt@i915_selftest@live_blt.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-hsw4/igt@i915_selftest@live_blt.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-snb:          [DMESG-WARN][27] ([i915#42]) -> [PASS][28]
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-snb4/igt@kms_flip@flip-vs-suspend-interruptible.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-snb4/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
    - shard-apl:          [FAIL][29] ([i915#49]) -> [PASS][30]
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7480/shard-apl8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/shard-apl7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html

  
  [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
  [fdo#112271]: https://bugs.freedesktop.org/show_bug.cgi?id=112271
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#42]: https://gitlab.freedesktop.org/drm/intel/issues/42
  [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49
  [i915#530]: https://gitlab.freedesktop.org/drm/intel/issues/530
  [i915#553]: https://gitlab.freedesktop.org/drm/intel/issues/553
  [i915#58]: https://gitlab.freedesktop.org/drm/intel/issues/58
  [i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61
  [i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644
  [i915#675]: https://gitlab.freedesktop.org/drm/intel/issues/675
  [i915#676]: https://gitlab.freedesktop.org/drm/intel/issues/676
  [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133


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

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


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5323 -> IGTPW_3803
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_7480: acd4664d865fde46dcd32c48ccac1b048b355bea @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3803: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3803/index.html
  IGT_5323: b0f877d06a78b9c38ed246be2537a0453b6c214f @ 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_3803/index.html
_______________________________________________
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-12-09  7:13 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-04  8:06 [igt-dev] [PATCH i-g-t] lib/ioctl_wrappers: Remove static variables for getting params Zbigniew Kempczyński
2019-12-04  8:18 ` Chris Wilson
2019-12-04  8:48 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2019-12-04 15:03 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2019-12-06 12:33   ` Zbigniew Kempczyński
2019-12-09  7:13 ` [igt-dev] ✓ Fi.CI.IGT: success " 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.