public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t] i915: Mark up a few more tests that only target GGTT
@ 2019-11-12 15:47 Chris Wilson
  2019-11-12 18:17 ` Antonio Argenziano
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Chris Wilson @ 2019-11-12 15:47 UTC (permalink / raw)
  To: intel-gfx; +Cc: igt-dev

If a test is only targeting the GGTT API and its corner cases, it can
only run if we have a mappable aperture.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Antonio Argenziano <antonio.argenziano@intel.com>
---
 lib/i915/gem_mman.c             | 19 +++++++++++++++++++
 lib/i915/gem_mman.h             |  3 +++
 tests/i915/gem_gtt_cpu_tlb.c    |  1 +
 tests/i915/gem_gtt_hog.c        |  1 +
 tests/i915/gem_gtt_speed.c      |  2 ++
 tests/i915/gem_mmap_gtt.c       |  5 +----
 tests/i915/gem_tiled_swapping.c |  1 +
 7 files changed, 28 insertions(+), 4 deletions(-)

diff --git a/lib/i915/gem_mman.c b/lib/i915/gem_mman.c
index 3cf9a6bbd..76d0be82e 100644
--- a/lib/i915/gem_mman.c
+++ b/lib/i915/gem_mman.c
@@ -252,3 +252,22 @@ void *gem_mmap__cpu(int fd, uint32_t handle, uint64_t offset, uint64_t size, uns
 	igt_assert(ptr);
 	return ptr;
 }
+
+bool gem_has_ggtt(int i915)
+{
+	struct drm_i915_gem_mmap_gtt arg = {};
+	int err;
+
+	err = 0;
+	if (ioctl(i915, DRM_IOCTL_I915_GEM_MMAP_GTT, &arg))
+		err = errno;
+	errno = 0;
+
+	return errno != ENODEV;
+}
+
+void gem_require_ggtt(int i915)
+{
+	igt_require_f(gem_has_ggtt(i915),
+		      "HW & kernel support for indirect detiling aperture\n");
+}
diff --git a/lib/i915/gem_mman.h b/lib/i915/gem_mman.h
index f7242ed77..67891c8de 100644
--- a/lib/i915/gem_mman.h
+++ b/lib/i915/gem_mman.h
@@ -35,6 +35,9 @@ void *gem_mmap__wc(int fd, uint32_t handle, uint64_t offset, uint64_t size, unsi
 #define I915_GEM_DOMAIN_WC 0x80
 #endif
 
+bool gem_has_ggtt(int i915);
+void gem_require_ggtt(int i915);
+
 void *__gem_mmap__gtt(int fd, uint32_t handle, uint64_t size, unsigned prot);
 void *__gem_mmap__cpu(int fd, uint32_t handle, uint64_t offset, uint64_t size, unsigned prot);
 void *__gem_mmap__wc(int fd, uint32_t handle, uint64_t offset, uint64_t size, unsigned prot);
diff --git a/tests/i915/gem_gtt_cpu_tlb.c b/tests/i915/gem_gtt_cpu_tlb.c
index cf3c543df..a4cbb1034 100644
--- a/tests/i915/gem_gtt_cpu_tlb.c
+++ b/tests/i915/gem_gtt_cpu_tlb.c
@@ -79,6 +79,7 @@ igt_simple_main
 	igt_skip_on_simulation();
 
 	fd = drm_open_driver(DRIVER_INTEL);
+	gem_require_ggtt(fd);
 
 	handle = gem_create(fd, OBJ_SIZE);
 
diff --git a/tests/i915/gem_gtt_hog.c b/tests/i915/gem_gtt_hog.c
index ca730649c..7a6273936 100644
--- a/tests/i915/gem_gtt_hog.c
+++ b/tests/i915/gem_gtt_hog.c
@@ -161,6 +161,7 @@ igt_simple_main
 	/* check for an intel gpu before goint nuts. */
 	int fd = drm_open_driver(DRIVER_INTEL);
 	igt_require_gem(fd);
+	gem_require_ggtt(fd);
 	close(fd);
 
 	igt_skip_on_simulation();
diff --git a/tests/i915/gem_gtt_speed.c b/tests/i915/gem_gtt_speed.c
index dfa7216cc..0cdd51dc3 100644
--- a/tests/i915/gem_gtt_speed.c
+++ b/tests/i915/gem_gtt_speed.c
@@ -124,7 +124,9 @@ igt_simple_main_args("s:", NULL, help_str, opt_handler, NULL)
 
 	buf = malloc(size);
 	memset(buf, 0, size);
+
 	fd = drm_open_driver(DRIVER_INTEL);
+	gem_require_ggtt(fd);
 
 	handle = gem_create(fd, size);
 	igt_assert(handle);
diff --git a/tests/i915/gem_mmap_gtt.c b/tests/i915/gem_mmap_gtt.c
index ac25f13e2..d31c73ed4 100644
--- a/tests/i915/gem_mmap_gtt.c
+++ b/tests/i915/gem_mmap_gtt.c
@@ -1020,8 +1020,6 @@ igt_main
 		OBJECT_SIZE = 1 * 1024 * 1024;
 
 	igt_fixture {
-		struct drm_i915_gem_mmap_gtt arg = {};
-
 		fd = drm_open_driver(DRIVER_INTEL);
 
 		/*
@@ -1029,8 +1027,7 @@ igt_main
 		 * detiling access from untrusted userspace to the objects,
 		 * the kernel does an early rejection of the mmap_gtt ioctl.
 		 */
-		igt_require_f(mmap_ioctl(fd, &arg) != -ENODEV,
-			      "HW & kernel support for indirect detiling aperture\n");
+		gem_require_ggtt(fd);
 	}
 
 	igt_subtest("bad-object") {
diff --git a/tests/i915/gem_tiled_swapping.c b/tests/i915/gem_tiled_swapping.c
index 1b70c1e51..3a95c9469 100644
--- a/tests/i915/gem_tiled_swapping.c
+++ b/tests/i915/gem_tiled_swapping.c
@@ -175,6 +175,7 @@ igt_main
 		current_tiling_mode = I915_TILING_X;
 
 		fd = drm_open_driver(DRIVER_INTEL);
+		gem_require_ggtt(fd);
 
 		intel_purge_vm_caches(fd);
 		check_memory_layout(fd);
-- 
2.24.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] i915: Mark up a few more tests that only target GGTT
  2019-11-12 15:47 [igt-dev] [PATCH i-g-t] i915: Mark up a few more tests that only target GGTT Chris Wilson
@ 2019-11-12 18:17 ` Antonio Argenziano
  2019-11-12 18:21   ` Chris Wilson
  2019-11-12 18:27 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
  2019-11-13  2:48 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  2 siblings, 1 reply; 6+ messages in thread
From: Antonio Argenziano @ 2019-11-12 18:17 UTC (permalink / raw)
  To: Chris Wilson, intel-gfx; +Cc: igt-dev



On 12/11/19 07:47, Chris Wilson wrote:
> If a test is only targeting the GGTT API and its corner cases, it can
> only run if we have a mappable aperture.
> 
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
> Cc: Antonio Argenziano <antonio.argenziano@intel.com>
> ---
>   lib/i915/gem_mman.c             | 19 +++++++++++++++++++
>   lib/i915/gem_mman.h             |  3 +++
>   tests/i915/gem_gtt_cpu_tlb.c    |  1 +
>   tests/i915/gem_gtt_hog.c        |  1 +
>   tests/i915/gem_gtt_speed.c      |  2 ++
>   tests/i915/gem_mmap_gtt.c       |  5 +----
>   tests/i915/gem_tiled_swapping.c |  1 +
>   7 files changed, 28 insertions(+), 4 deletions(-)
> 
> diff --git a/lib/i915/gem_mman.c b/lib/i915/gem_mman.c
> index 3cf9a6bbd..76d0be82e 100644
> --- a/lib/i915/gem_mman.c
> +++ b/lib/i915/gem_mman.c
> @@ -252,3 +252,22 @@ void *gem_mmap__cpu(int fd, uint32_t handle, uint64_t offset, uint64_t size, uns
>   	igt_assert(ptr);
>   	return ptr;
>   }
> +
> +bool gem_has_ggtt(int i915)

nit: I would put mapping or map or something in the name to make it 
clear that the mapping is not accessible but, your call :).

The patch looks good to me but IGT is quite different than the last time 
I played around with it so:
Acked-by: Antonio Argenziano <antonio.argenziano@intel.com>

> +{
> +	struct drm_i915_gem_mmap_gtt arg = {};
> +	int err;
> +
> +	err = 0;
> +	if (ioctl(i915, DRM_IOCTL_I915_GEM_MMAP_GTT, &arg))
> +		err = errno;
> +	errno = 0;
> +
> +	return errno != ENODEV;
> +}
> +
> +void gem_require_ggtt(int i915)
> +{
> +	igt_require_f(gem_has_ggtt(i915),
> +		      "HW & kernel support for indirect detiling aperture\n");
> +}
> diff --git a/lib/i915/gem_mman.h b/lib/i915/gem_mman.h
> index f7242ed77..67891c8de 100644
> --- a/lib/i915/gem_mman.h
> +++ b/lib/i915/gem_mman.h
> @@ -35,6 +35,9 @@ void *gem_mmap__wc(int fd, uint32_t handle, uint64_t offset, uint64_t size, unsi
>   #define I915_GEM_DOMAIN_WC 0x80
>   #endif
>   
> +bool gem_has_ggtt(int i915);
> +void gem_require_ggtt(int i915);
> +
>   void *__gem_mmap__gtt(int fd, uint32_t handle, uint64_t size, unsigned prot);
>   void *__gem_mmap__cpu(int fd, uint32_t handle, uint64_t offset, uint64_t size, unsigned prot);
>   void *__gem_mmap__wc(int fd, uint32_t handle, uint64_t offset, uint64_t size, unsigned prot);
> diff --git a/tests/i915/gem_gtt_cpu_tlb.c b/tests/i915/gem_gtt_cpu_tlb.c
> index cf3c543df..a4cbb1034 100644
> --- a/tests/i915/gem_gtt_cpu_tlb.c
> +++ b/tests/i915/gem_gtt_cpu_tlb.c
> @@ -79,6 +79,7 @@ igt_simple_main
>   	igt_skip_on_simulation();
>   
>   	fd = drm_open_driver(DRIVER_INTEL);
> +	gem_require_ggtt(fd);
>   
>   	handle = gem_create(fd, OBJ_SIZE);
>   
> diff --git a/tests/i915/gem_gtt_hog.c b/tests/i915/gem_gtt_hog.c
> index ca730649c..7a6273936 100644
> --- a/tests/i915/gem_gtt_hog.c
> +++ b/tests/i915/gem_gtt_hog.c
> @@ -161,6 +161,7 @@ igt_simple_main
>   	/* check for an intel gpu before goint nuts. */
>   	int fd = drm_open_driver(DRIVER_INTEL);
>   	igt_require_gem(fd);
> +	gem_require_ggtt(fd);
>   	close(fd);
>   
>   	igt_skip_on_simulation();
> diff --git a/tests/i915/gem_gtt_speed.c b/tests/i915/gem_gtt_speed.c
> index dfa7216cc..0cdd51dc3 100644
> --- a/tests/i915/gem_gtt_speed.c
> +++ b/tests/i915/gem_gtt_speed.c
> @@ -124,7 +124,9 @@ igt_simple_main_args("s:", NULL, help_str, opt_handler, NULL)
>   
>   	buf = malloc(size);
>   	memset(buf, 0, size);
> +
>   	fd = drm_open_driver(DRIVER_INTEL);
> +	gem_require_ggtt(fd);
>   
>   	handle = gem_create(fd, size);
>   	igt_assert(handle);
> diff --git a/tests/i915/gem_mmap_gtt.c b/tests/i915/gem_mmap_gtt.c
> index ac25f13e2..d31c73ed4 100644
> --- a/tests/i915/gem_mmap_gtt.c
> +++ b/tests/i915/gem_mmap_gtt.c
> @@ -1020,8 +1020,6 @@ igt_main
>   		OBJECT_SIZE = 1 * 1024 * 1024;
>   
>   	igt_fixture {
> -		struct drm_i915_gem_mmap_gtt arg = {};
> -
>   		fd = drm_open_driver(DRIVER_INTEL);
>   
>   		/*
> @@ -1029,8 +1027,7 @@ igt_main
>   		 * detiling access from untrusted userspace to the objects,
>   		 * the kernel does an early rejection of the mmap_gtt ioctl.
>   		 */
> -		igt_require_f(mmap_ioctl(fd, &arg) != -ENODEV,
> -			      "HW & kernel support for indirect detiling aperture\n");
> +		gem_require_ggtt(fd);
>   	}
>   
>   	igt_subtest("bad-object") {
> diff --git a/tests/i915/gem_tiled_swapping.c b/tests/i915/gem_tiled_swapping.c
> index 1b70c1e51..3a95c9469 100644
> --- a/tests/i915/gem_tiled_swapping.c
> +++ b/tests/i915/gem_tiled_swapping.c
> @@ -175,6 +175,7 @@ igt_main
>   		current_tiling_mode = I915_TILING_X;
>   
>   		fd = drm_open_driver(DRIVER_INTEL);
> +		gem_require_ggtt(fd);
>   
>   		intel_purge_vm_caches(fd);
>   		check_memory_layout(fd);
> 
_______________________________________________
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] [PATCH i-g-t] i915: Mark up a few more tests that only target GGTT
  2019-11-12 18:17 ` Antonio Argenziano
@ 2019-11-12 18:21   ` Chris Wilson
  2019-11-12 18:23     ` [Intel-gfx] " Antonio Argenziano
  0 siblings, 1 reply; 6+ messages in thread
From: Chris Wilson @ 2019-11-12 18:21 UTC (permalink / raw)
  To: Antonio Argenziano, intel-gfx; +Cc: igt-dev

Quoting Antonio Argenziano (2019-11-12 18:17:41)
> 
> 
> On 12/11/19 07:47, Chris Wilson wrote:
> > If a test is only targeting the GGTT API and its corner cases, it can
> > only run if we have a mappable aperture.
> > 
> > Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
> > Cc: Antonio Argenziano <antonio.argenziano@intel.com>
> > ---
> >   lib/i915/gem_mman.c             | 19 +++++++++++++++++++
> >   lib/i915/gem_mman.h             |  3 +++
> >   tests/i915/gem_gtt_cpu_tlb.c    |  1 +
> >   tests/i915/gem_gtt_hog.c        |  1 +
> >   tests/i915/gem_gtt_speed.c      |  2 ++
> >   tests/i915/gem_mmap_gtt.c       |  5 +----
> >   tests/i915/gem_tiled_swapping.c |  1 +
> >   7 files changed, 28 insertions(+), 4 deletions(-)
> > 
> > diff --git a/lib/i915/gem_mman.c b/lib/i915/gem_mman.c
> > index 3cf9a6bbd..76d0be82e 100644
> > --- a/lib/i915/gem_mman.c
> > +++ b/lib/i915/gem_mman.c
> > @@ -252,3 +252,22 @@ void *gem_mmap__cpu(int fd, uint32_t handle, uint64_t offset, uint64_t size, uns
> >       igt_assert(ptr);
> >       return ptr;
> >   }
> > +
> > +bool gem_has_ggtt(int i915)
> 
> nit: I would put mapping or map or something in the name to make it 
> clear that the mapping is not accessible but, your call :).

I could go with has_ggtt_aperture()? Or has_mappable_ggtt()?
Both have their merits. Leaning towards has_mappable_ggtt.
-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

* Re: [Intel-gfx] [PATCH i-g-t] i915: Mark up a few more tests that only target GGTT
  2019-11-12 18:21   ` Chris Wilson
@ 2019-11-12 18:23     ` Antonio Argenziano
  0 siblings, 0 replies; 6+ messages in thread
From: Antonio Argenziano @ 2019-11-12 18:23 UTC (permalink / raw)
  To: Chris Wilson, intel-gfx; +Cc: igt-dev



On 12/11/19 10:21, Chris Wilson wrote:
> Quoting Antonio Argenziano (2019-11-12 18:17:41)
>>
>>
>> On 12/11/19 07:47, Chris Wilson wrote:
>>> If a test is only targeting the GGTT API and its corner cases, it can
>>> only run if we have a mappable aperture.
>>>
>>> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
>>> Cc: Antonio Argenziano <antonio.argenziano@intel.com>
>>> ---
>>>    lib/i915/gem_mman.c             | 19 +++++++++++++++++++
>>>    lib/i915/gem_mman.h             |  3 +++
>>>    tests/i915/gem_gtt_cpu_tlb.c    |  1 +
>>>    tests/i915/gem_gtt_hog.c        |  1 +
>>>    tests/i915/gem_gtt_speed.c      |  2 ++
>>>    tests/i915/gem_mmap_gtt.c       |  5 +----
>>>    tests/i915/gem_tiled_swapping.c |  1 +
>>>    7 files changed, 28 insertions(+), 4 deletions(-)
>>>
>>> diff --git a/lib/i915/gem_mman.c b/lib/i915/gem_mman.c
>>> index 3cf9a6bbd..76d0be82e 100644
>>> --- a/lib/i915/gem_mman.c
>>> +++ b/lib/i915/gem_mman.c
>>> @@ -252,3 +252,22 @@ void *gem_mmap__cpu(int fd, uint32_t handle, uint64_t offset, uint64_t size, uns
>>>        igt_assert(ptr);
>>>        return ptr;
>>>    }
>>> +
>>> +bool gem_has_ggtt(int i915)
>>
>> nit: I would put mapping or map or something in the name to make it
>> clear that the mapping is not accessible but, your call :).
> 
> I could go with has_ggtt_aperture()? Or has_mappable_ggtt()?
> Both have their merits. Leaning towards has_mappable_ggtt.

+1 has_mappable_ggtt.

> -Chris
> 
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* [igt-dev] ✓ Fi.CI.BAT: success for i915: Mark up a few more tests that only target GGTT
  2019-11-12 15:47 [igt-dev] [PATCH i-g-t] i915: Mark up a few more tests that only target GGTT Chris Wilson
  2019-11-12 18:17 ` Antonio Argenziano
@ 2019-11-12 18:27 ` Patchwork
  2019-11-13  2:48 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  2 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2019-11-12 18:27 UTC (permalink / raw)
  To: Chris Wilson; +Cc: igt-dev

== Series Details ==

Series: i915: Mark up a few more tests that only target GGTT
URL   : https://patchwork.freedesktop.org/series/69363/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_7320 -> IGTPW_3686
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Possible fixes ####

  * igt@i915_pm_rpm@module-reload:
    - fi-skl-6770hq:      [FAIL][1] ([fdo#108511]) -> [PASS][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html

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

  [fdo#108511]: https://bugs.freedesktop.org/show_bug.cgi?id=108511
  [fdo#109964]: https://bugs.freedesktop.org/show_bug.cgi?id=109964
  [fdo#110343]: https://bugs.freedesktop.org/show_bug.cgi?id=110343


Participating hosts (52 -> 46)
------------------------------

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


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5273 -> IGTPW_3686

  CI-20190529: 20190529
  CI_DRM_7320: 5ad80c1d1c967e3f0c9233fd6a70e7443b43d497 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3686: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/index.html
  IGT_5273: 602003c3d751c72fc309a0e64d4193f6da720f6b @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/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 i915: Mark up a few more tests that only target GGTT
  2019-11-12 15:47 [igt-dev] [PATCH i-g-t] i915: Mark up a few more tests that only target GGTT Chris Wilson
  2019-11-12 18:17 ` Antonio Argenziano
  2019-11-12 18:27 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2019-11-13  2:48 ` Patchwork
  2 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2019-11-13  2:48 UTC (permalink / raw)
  To: Chris Wilson; +Cc: igt-dev

== Series Details ==

Series: i915: Mark up a few more tests that only target GGTT
URL   : https://patchwork.freedesktop.org/series/69363/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_7320_full -> IGTPW_3686_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Suppressed ####

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

  * {igt@gem_userptr_blits@userfault}:
    - shard-tglb:         NOTRUN -> [SKIP][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-tglb1/igt@gem_userptr_blits@userfault.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_parallel@basic:
    - shard-tglb:         [PASS][2] -> [INCOMPLETE][3] ([fdo#111887])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-tglb5/igt@gem_exec_parallel@basic.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-tglb5/igt@gem_exec_parallel@basic.html

  * igt@gem_exec_parallel@vcs1-fds:
    - shard-iclb:         [PASS][4] -> [SKIP][5] ([fdo#112080]) +16 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-iclb1/igt@gem_exec_parallel@vcs1-fds.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-iclb5/igt@gem_exec_parallel@vcs1-fds.html

  * igt@gem_exec_schedule@preempt-queue-chain-bsd1:
    - shard-tglb:         [PASS][6] -> [INCOMPLETE][7] ([fdo#111606] / [fdo#111677])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-tglb7/igt@gem_exec_schedule@preempt-queue-chain-bsd1.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-tglb6/igt@gem_exec_schedule@preempt-queue-chain-bsd1.html

  * igt@gem_exec_schedule@preempt-queue-contexts-chain-bsd:
    - shard-iclb:         [PASS][8] -> [SKIP][9] ([fdo#112146]) +3 similar issues
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-iclb8/igt@gem_exec_schedule@preempt-queue-contexts-chain-bsd.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-iclb2/igt@gem_exec_schedule@preempt-queue-contexts-chain-bsd.html

  * igt@gem_userptr_blits@map-fixed-invalidate-busy:
    - shard-snb:          [PASS][10] -> [DMESG-WARN][11] ([fdo#111870]) +2 similar issues
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-snb5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-snb7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
    - shard-iclb:         [PASS][12] -> [FAIL][13] ([fdo#103167]) +7 similar issues
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbc-badstride:
    - shard-apl:          [PASS][14] -> [FAIL][15] ([fdo#103167])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-apl1/igt@kms_frontbuffer_tracking@fbc-badstride.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-apl2/igt@kms_frontbuffer_tracking@fbc-badstride.html
    - shard-kbl:          [PASS][16] -> [FAIL][17] ([fdo#103167])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-kbl3/igt@kms_frontbuffer_tracking@fbc-badstride.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-badstride.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
    - shard-tglb:         [PASS][18] -> [FAIL][19] ([fdo#103167]) +2 similar issues
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-tglb4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
    - shard-apl:          [PASS][20] -> [DMESG-WARN][21] ([fdo#108566]) +2 similar issues
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-apl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-apl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
    - shard-kbl:          [PASS][22] -> [DMESG-WARN][23] ([fdo#108566]) +1 similar issue
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-kbl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-kbl3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html

  * igt@kms_psr@psr2_sprite_render:
    - shard-iclb:         [PASS][24] -> [SKIP][25] ([fdo#109441])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-iclb2/igt@kms_psr@psr2_sprite_render.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-iclb5/igt@kms_psr@psr2_sprite_render.html

  * igt@prime_busy@hang-bsd2:
    - shard-iclb:         [PASS][26] -> [SKIP][27] ([fdo#109276]) +17 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-iclb2/igt@prime_busy@hang-bsd2.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-iclb6/igt@prime_busy@hang-bsd2.html

  
#### Possible fixes ####

  * igt@gem_ctx_isolation@bcs0-s3:
    - shard-kbl:          [FAIL][28] ([fdo#103375]) -> [PASS][29]
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-kbl4/igt@gem_ctx_isolation@bcs0-s3.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-kbl4/igt@gem_ctx_isolation@bcs0-s3.html

  * igt@gem_ctx_isolation@vcs0-s3:
    - shard-tglb:         [INCOMPLETE][30] ([fdo#111832]) -> [PASS][31]
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-tglb5/igt@gem_ctx_isolation@vcs0-s3.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-tglb9/igt@gem_ctx_isolation@vcs0-s3.html

  * igt@gem_ctx_isolation@vcs1-clean:
    - shard-iclb:         [SKIP][32] ([fdo#109276] / [fdo#112080]) -> [PASS][33] +1 similar issue
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-iclb7/igt@gem_ctx_isolation@vcs1-clean.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-iclb2/igt@gem_ctx_isolation@vcs1-clean.html

  * igt@gem_ctx_shared@exec-shared-gtt-bsd2:
    - shard-iclb:         [SKIP][34] ([fdo#109276]) -> [PASS][35] +11 similar issues
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-iclb7/igt@gem_ctx_shared@exec-shared-gtt-bsd2.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-iclb2/igt@gem_ctx_shared@exec-shared-gtt-bsd2.html

  * igt@gem_ctx_shared@exec-single-timeline-bsd:
    - shard-iclb:         [SKIP][36] ([fdo#110841]) -> [PASS][37]
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-iclb2/igt@gem_ctx_shared@exec-single-timeline-bsd.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-iclb5/igt@gem_ctx_shared@exec-single-timeline-bsd.html

  * igt@gem_ctx_shared@q-smoketest-all:
    - shard-tglb:         [INCOMPLETE][38] ([fdo#111735]) -> [PASS][39] +1 similar issue
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-tglb3/igt@gem_ctx_shared@q-smoketest-all.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-tglb1/igt@gem_ctx_shared@q-smoketest-all.html

  * igt@gem_ctx_switch@vcs1-heavy-queue:
    - shard-iclb:         [SKIP][40] ([fdo#112080]) -> [PASS][41] +11 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-iclb6/igt@gem_ctx_switch@vcs1-heavy-queue.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-iclb4/igt@gem_ctx_switch@vcs1-heavy-queue.html

  * igt@gem_exec_schedule@wide-bsd:
    - shard-iclb:         [SKIP][42] ([fdo#112146]) -> [PASS][43] +3 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-iclb4/igt@gem_exec_schedule@wide-bsd.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-iclb5/igt@gem_exec_schedule@wide-bsd.html

  * igt@gem_persistent_relocs@forked-interruptible-faulting-reloc-thrash-inactive:
    - shard-iclb:         [TIMEOUT][44] ([fdo#112068 ]) -> [PASS][45]
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-iclb1/igt@gem_persistent_relocs@forked-interruptible-faulting-reloc-thrash-inactive.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-iclb3/igt@gem_persistent_relocs@forked-interruptible-faulting-reloc-thrash-inactive.html

  * igt@gem_userptr_blits@sync-unmap-cycles:
    - shard-snb:          [DMESG-WARN][46] ([fdo#111870]) -> [PASS][47] +3 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-snb2/igt@gem_userptr_blits@sync-unmap-cycles.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-snb1/igt@gem_userptr_blits@sync-unmap-cycles.html
    - shard-hsw:          [DMESG-WARN][48] ([fdo#111870]) -> [PASS][49] +3 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-hsw1/igt@gem_userptr_blits@sync-unmap-cycles.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-hsw5/igt@gem_userptr_blits@sync-unmap-cycles.html

  * igt@i915_suspend@sysfs-reader:
    - shard-kbl:          [DMESG-WARN][50] ([fdo#108566]) -> [PASS][51] +5 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-kbl7/igt@i915_suspend@sysfs-reader.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-kbl6/igt@i915_suspend@sysfs-reader.html

  * igt@kms_color@pipe-a-ctm-0-5:
    - shard-kbl:          [INCOMPLETE][52] ([fdo#103665]) -> [PASS][53]
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-kbl4/igt@kms_color@pipe-a-ctm-0-5.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-kbl3/igt@kms_color@pipe-a-ctm-0-5.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-tglb:         [INCOMPLETE][54] ([fdo#111850] / [fdo#112031]) -> [PASS][55]
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-tglb7/igt@kms_flip@flip-vs-suspend.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-tglb9/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-apl:          [DMESG-WARN][56] ([fdo#108566]) -> [PASS][57] +2 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-apl4/igt@kms_flip@flip-vs-suspend-interruptible.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-apl3/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render:
    - shard-iclb:         [FAIL][58] ([fdo#103167]) -> [PASS][59] +4 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-cpu:
    - shard-glk:          [FAIL][60] ([fdo#103167]) -> [PASS][61]
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-glk3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-glk5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack:
    - shard-tglb:         [FAIL][62] ([fdo#103167]) -> [PASS][63] +2 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-tglb4/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack.html

  * igt@kms_psr2_su@page_flip:
    - shard-iclb:         [SKIP][64] ([fdo#109642] / [fdo#111068]) -> [PASS][65]
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-iclb6/igt@kms_psr2_su@page_flip.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-iclb2/igt@kms_psr2_su@page_flip.html

  * igt@kms_psr@psr2_cursor_mmap_cpu:
    - shard-iclb:         [SKIP][66] ([fdo#109441]) -> [PASS][67]
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-iclb5/igt@kms_psr@psr2_cursor_mmap_cpu.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html

  * igt@kms_vblank@pipe-a-ts-continuation-suspend:
    - shard-tglb:         [INCOMPLETE][68] ([fdo#111832] / [fdo#111850]) -> [PASS][69] +3 similar issues
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-tglb1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-tglb6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html

  
#### Warnings ####

  * igt@gem_ctx_isolation@vcs1-nonpriv:
    - shard-iclb:         [FAIL][70] ([fdo#111329]) -> [SKIP][71] ([fdo#109276] / [fdo#112080])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-iclb4/igt@gem_ctx_isolation@vcs1-nonpriv.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-iclb7/igt@gem_ctx_isolation@vcs1-nonpriv.html

  * igt@gem_ctx_isolation@vcs1-nonpriv-switch:
    - shard-iclb:         [SKIP][72] ([fdo#109276] / [fdo#112080]) -> [FAIL][73] ([fdo#111329])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-iclb5/igt@gem_ctx_isolation@vcs1-nonpriv-switch.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-iclb2/igt@gem_ctx_isolation@vcs1-nonpriv-switch.html

  * igt@gem_mocs_settings@mocs-rc6-bsd2:
    - shard-iclb:         [SKIP][74] ([fdo#109276]) -> [FAIL][75] ([fdo#111330])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-iclb5/igt@gem_mocs_settings@mocs-rc6-bsd2.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-iclb2/igt@gem_mocs_settings@mocs-rc6-bsd2.html

  * igt@gem_mocs_settings@mocs-settings-bsd2:
    - shard-iclb:         [FAIL][76] ([fdo#111330]) -> [SKIP][77] ([fdo#109276]) +1 similar issue
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-iclb2/igt@gem_mocs_settings@mocs-settings-bsd2.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-iclb6/igt@gem_mocs_settings@mocs-settings-bsd2.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-tglb:         [FAIL][78] ([fdo#111830 ]) -> [SKIP][79] ([fdo#111865])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-tglb6/igt@i915_pm_dc@dc6-dpms.html

  * igt@kms_atomic_transition@6x-modeset-transitions-fencing:
    - shard-tglb:         [SKIP][80] ([fdo#112021 ]) -> [SKIP][81] ([fdo#112016 ] / [fdo#112021 ])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-tglb9/igt@kms_atomic_transition@6x-modeset-transitions-fencing.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-tglb2/igt@kms_atomic_transition@6x-modeset-transitions-fencing.html

  * igt@kms_cursor_crc@pipe-c-cursor-suspend:
    - shard-tglb:         [FAIL][82] ([fdo#111703]) -> [INCOMPLETE][83] ([fdo#111832] / [fdo#111850])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-tglb6/igt@kms_cursor_crc@pipe-c-cursor-suspend.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-tglb3/igt@kms_cursor_crc@pipe-c-cursor-suspend.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
    - shard-kbl:          [FAIL][84] ([fdo#103375]) -> [DMESG-WARN][85] ([fdo#108566])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-kbl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/shard-kbl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html

  * igt@kms_psr@psr2_suspend:
    - shard-iclb:         [SKIP][86] ([fdo#109441]) -> [DMESG-WARN][87] ([fdo#107724])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7320/shard-iclb4/igt@kms_psr@psr2_suspend.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/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#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
  [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
  [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111329]: https://bugs.freedesktop.org/show_bug.cgi?id=111329
  [fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330
  [fdo#111606]: https://bugs.freedesktop.org/show_bug.cgi?id=111606
  [fdo#111677]: https://bugs.freedesktop.org/show_bug.cgi?id=111677
  [fdo#111703]: https://bugs.freedesktop.org/show_bug.cgi?id=111703
  [fdo#111735]: https://bugs.freedesktop.org/show_bug.cgi?id=111735
  [fdo#111830 ]: https://bugs.freedesktop.org/show_bug.cgi?id=111830 
  [fdo#111832]: https://bugs.freedesktop.org/show_bug.cgi?id=111832
  [fdo#111850]: https://bugs.freedesktop.org/show_bug.cgi?id=111850
  [fdo#111865]: https://bugs.freedesktop.org/show_bug.cgi?id=111865
  [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
  [fdo#111887]: https://bugs.freedesktop.org/show_bug.cgi?id=111887
  [fdo#112016 ]: https://bugs.freedesktop.org/show_bug.cgi?id=112016 
  [fdo#112021 ]: https://bugs.freedesktop.org/show_bug.cgi?id=112021 
  [fdo#112031]: https://bugs.freedesktop.org/show_bug.cgi?id=112031
  [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


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

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


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5273 -> IGTPW_3686
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_7320: 5ad80c1d1c967e3f0c9233fd6a70e7443b43d497 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3686: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3686/index.html
  IGT_5273: 602003c3d751c72fc309a0e64d4193f6da720f6b @ 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_3686/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-11-13  2:48 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-11-12 15:47 [igt-dev] [PATCH i-g-t] i915: Mark up a few more tests that only target GGTT Chris Wilson
2019-11-12 18:17 ` Antonio Argenziano
2019-11-12 18:21   ` Chris Wilson
2019-11-12 18:23     ` [Intel-gfx] " Antonio Argenziano
2019-11-12 18:27 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2019-11-13  2:48 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox