All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-gfx] [PATCH i-g-t] lib/color_encoding: Fix up support for XYUV format
@ 2020-01-27 19:28 ` Bob Paauwe
  0 siblings, 0 replies; 7+ messages in thread
From: Bob Paauwe @ 2020-01-27 19:28 UTC (permalink / raw)
  To: igt-dev, intel-gfx

Add XYUV8888 to the list of DRM Formats to test.

Also fix the byte order for the format.

Signed-off-by: Bob Paauwe <bob.j.paauwe@intel.com>
Reviewed-by: Uma Shankar <uma.shankar@intel.com>
---
 lib/igt_color_encoding.c | 1 +
 lib/igt_fb.c             | 6 +++---
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/lib/igt_color_encoding.c b/lib/igt_color_encoding.c
index 7de6d5ab..a7bd2b22 100644
--- a/lib/igt_color_encoding.c
+++ b/lib/igt_color_encoding.c
@@ -160,6 +160,7 @@ static const struct color_encoding_format {
 	{ DRM_FORMAT_XVYU2101010, 1023.f, 64.f, 940.f, 64.f, 512.f, 960.f },
 	{ DRM_FORMAT_XVYU12_16161616, 65520.f, 4096.f, 60160.f, 4096.f, 32768.f, 61440.f },
 	{ DRM_FORMAT_XVYU16161616, 65535.f, 4096.f, 60160.f, 4096.f, 32768.f, 61440.f },
+	{ DRM_FORMAT_XYUV8888, 255.f, 16.f, 235.f, 16.f, 128.f, 240.f },
 };
 
 static const struct color_encoding_format *lookup_fourcc(uint32_t fourcc)
diff --git a/lib/igt_fb.c b/lib/igt_fb.c
index c81b9de8..7409e6b3 100644
--- a/lib/igt_fb.c
+++ b/lib/igt_fb.c
@@ -2634,9 +2634,9 @@ static void get_yuv_parameters(struct igt_fb *fb, struct yuv_parameters *params)
 		break;
 
 	case DRM_FORMAT_XYUV8888:
-		params->y_offset = fb->offsets[0] + 1;
-		params->u_offset = fb->offsets[0] + 2;
-		params->v_offset = fb->offsets[0] + 3;
+		params->y_offset = fb->offsets[0] + 2;
+		params->u_offset = fb->offsets[0] + 1;
+		params->v_offset = fb->offsets[0] + 0;
 		break;
 	}
 }
-- 
2.21.0

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

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

* [igt-dev] [PATCH i-g-t] lib/color_encoding: Fix up support for XYUV format
@ 2020-01-27 19:28 ` Bob Paauwe
  0 siblings, 0 replies; 7+ messages in thread
From: Bob Paauwe @ 2020-01-27 19:28 UTC (permalink / raw)
  To: igt-dev, intel-gfx

Add XYUV8888 to the list of DRM Formats to test.

Also fix the byte order for the format.

Signed-off-by: Bob Paauwe <bob.j.paauwe@intel.com>
Reviewed-by: Uma Shankar <uma.shankar@intel.com>
---
 lib/igt_color_encoding.c | 1 +
 lib/igt_fb.c             | 6 +++---
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/lib/igt_color_encoding.c b/lib/igt_color_encoding.c
index 7de6d5ab..a7bd2b22 100644
--- a/lib/igt_color_encoding.c
+++ b/lib/igt_color_encoding.c
@@ -160,6 +160,7 @@ static const struct color_encoding_format {
 	{ DRM_FORMAT_XVYU2101010, 1023.f, 64.f, 940.f, 64.f, 512.f, 960.f },
 	{ DRM_FORMAT_XVYU12_16161616, 65520.f, 4096.f, 60160.f, 4096.f, 32768.f, 61440.f },
 	{ DRM_FORMAT_XVYU16161616, 65535.f, 4096.f, 60160.f, 4096.f, 32768.f, 61440.f },
+	{ DRM_FORMAT_XYUV8888, 255.f, 16.f, 235.f, 16.f, 128.f, 240.f },
 };
 
 static const struct color_encoding_format *lookup_fourcc(uint32_t fourcc)
diff --git a/lib/igt_fb.c b/lib/igt_fb.c
index c81b9de8..7409e6b3 100644
--- a/lib/igt_fb.c
+++ b/lib/igt_fb.c
@@ -2634,9 +2634,9 @@ static void get_yuv_parameters(struct igt_fb *fb, struct yuv_parameters *params)
 		break;
 
 	case DRM_FORMAT_XYUV8888:
-		params->y_offset = fb->offsets[0] + 1;
-		params->u_offset = fb->offsets[0] + 2;
-		params->v_offset = fb->offsets[0] + 3;
+		params->y_offset = fb->offsets[0] + 2;
+		params->u_offset = fb->offsets[0] + 1;
+		params->v_offset = fb->offsets[0] + 0;
 		break;
 	}
 }
-- 
2.21.0

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

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

* [igt-dev] ✓ Fi.CI.BAT: success for lib/color_encoding: Fix up support for XYUV format
  2020-01-27 19:28 ` [igt-dev] " Bob Paauwe
  (?)
@ 2020-01-27 20:26 ` Patchwork
  -1 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2020-01-27 20:26 UTC (permalink / raw)
  To: Bob Paauwe; +Cc: igt-dev

== Series Details ==

Series: lib/color_encoding: Fix up support for XYUV format
URL   : https://patchwork.freedesktop.org/series/72636/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_7826 -> IGTPW_4011
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Suppressed ####

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

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
    - {fi-kbl-7560u}:     NOTRUN -> [DMESG-WARN][1] +2 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/fi-kbl-7560u/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_close_race@basic-threads:
    - fi-byt-j1900:       [PASS][2] -> [INCOMPLETE][3] ([i915#45])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/fi-byt-j1900/igt@gem_close_race@basic-threads.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/fi-byt-j1900/igt@gem_close_race@basic-threads.html
    - fi-byt-n2820:       [PASS][4] -> [INCOMPLETE][5] ([i915#45])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/fi-byt-n2820/igt@gem_close_race@basic-threads.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/fi-byt-n2820/igt@gem_close_race@basic-threads.html

  * igt@i915_selftest@live_execlists:
    - fi-glk-dsi:         [PASS][6] -> [DMESG-WARN][7] ([i915#889]) +23 similar issues
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/fi-glk-dsi/igt@i915_selftest@live_execlists.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/fi-glk-dsi/igt@i915_selftest@live_execlists.html

  * igt@i915_selftest@live_gt_engines:
    - fi-glk-dsi:         [PASS][8] -> [DMESG-FAIL][9] ([i915#889]) +7 similar issues
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/fi-glk-dsi/igt@i915_selftest@live_gt_engines.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/fi-glk-dsi/igt@i915_selftest@live_gt_engines.html

  
#### Possible fixes ####

  * igt@gem_close_race@basic-threads:
    - fi-hsw-peppy:       [INCOMPLETE][10] ([i915#816]) -> [PASS][11]
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/fi-hsw-peppy/igt@gem_close_race@basic-threads.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/fi-hsw-peppy/igt@gem_close_race@basic-threads.html

  * igt@i915_module_load@reload-with-fault-injection:
    - fi-cfl-8700k:       [DMESG-WARN][12] ([i915#889]) -> [PASS][13]
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/fi-cfl-8700k/igt@i915_module_load@reload-with-fault-injection.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/fi-cfl-8700k/igt@i915_module_load@reload-with-fault-injection.html
    - fi-skl-lmem:        [DMESG-WARN][14] ([i915#889]) -> [PASS][15]
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/fi-skl-lmem/igt@i915_module_load@reload-with-fault-injection.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/fi-skl-lmem/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_pm_rpm@module-reload:
    - fi-cfl-8700k:       [INCOMPLETE][16] ([i915#148] / [i915#971]) -> [PASS][17]
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/fi-cfl-8700k/igt@i915_pm_rpm@module-reload.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/fi-cfl-8700k/igt@i915_pm_rpm@module-reload.html
    - fi-skl-6700k2:      [DMESG-WARN][18] ([i915#889]) -> [PASS][19] +1 similar issue
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/fi-skl-6700k2/igt@i915_pm_rpm@module-reload.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/fi-skl-6700k2/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live_blt:
    - fi-hsw-4770:        [DMESG-FAIL][20] ([i915#770]) -> [PASS][21]
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/fi-hsw-4770/igt@i915_selftest@live_blt.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/fi-hsw-4770/igt@i915_selftest@live_blt.html

  
#### Warnings ####

  * igt@i915_pm_rpm@basic-pci-d3-state:
    - fi-kbl-guc:         [FAIL][22] ([i915#704]) -> [SKIP][23] ([fdo#109271])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/fi-kbl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/fi-kbl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html

  * igt@i915_selftest@live_blt:
    - fi-hsw-4770r:       [DMESG-FAIL][24] ([i915#553] / [i915#725]) -> [DMESG-FAIL][25] ([i915#725])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/fi-hsw-4770r/igt@i915_selftest@live_blt.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/fi-hsw-4770r/igt@i915_selftest@live_blt.html

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

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [i915#148]: https://gitlab.freedesktop.org/drm/intel/issues/148
  [i915#45]: https://gitlab.freedesktop.org/drm/intel/issues/45
  [i915#553]: https://gitlab.freedesktop.org/drm/intel/issues/553
  [i915#704]: https://gitlab.freedesktop.org/drm/intel/issues/704
  [i915#725]: https://gitlab.freedesktop.org/drm/intel/issues/725
  [i915#770]: https://gitlab.freedesktop.org/drm/intel/issues/770
  [i915#816]: https://gitlab.freedesktop.org/drm/intel/issues/816
  [i915#889]: https://gitlab.freedesktop.org/drm/intel/issues/889
  [i915#971]: https://gitlab.freedesktop.org/drm/intel/issues/971


Participating hosts (46 -> 45)
------------------------------

  Additional (3): fi-kbl-7560u fi-skl-6600u fi-bsw-n3050 
  Missing    (4): fi-ctg-p8600 fi-byt-squawks fi-byt-clapper fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5389 -> IGTPW_4011

  CI-20190529: 20190529
  CI_DRM_7826: 04d0421c09d70ea76da8a3685347740df9f84aaf @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_4011: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/index.html
  IGT_5389: 966c58649dee31bb5bf2fad92f75ffd365968b81 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

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

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

* [igt-dev] ✗ GitLab.Pipeline: warning for lib/color_encoding: Fix up support for XYUV format
  2020-01-27 19:28 ` [igt-dev] " Bob Paauwe
  (?)
  (?)
@ 2020-01-27 20:28 ` Patchwork
  -1 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2020-01-27 20:28 UTC (permalink / raw)
  To: Bob Paauwe; +Cc: igt-dev

== Series Details ==

Series: lib/color_encoding: Fix up support for XYUV format
URL   : https://patchwork.freedesktop.org/series/72636/
State : warning

== Summary ==

Did not get list of undocumented tests for this run, something is wrong!

Other than that, pipeline status: FAILED.

see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/101947 for the overview.

test:ninja-test-arm64 has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/1474702):
    [test_root]           Directory that contains the IGT tests. The environment
                          variable IGT_TEST_ROOT will be used if set, overriding
                          this option if given.
  Cannot open /builds/gfx-ci/igt-ci-tags/build/tmpdirsaUonV/test-list.txt
  -------
  
  Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt
  FAILED: meson-test 
  /usr/bin/meson test --no-rebuild --print-errorlogs
  ninja: build stopped: subcommand failed.
  section_end:1580156049:build_script
  ^[[0Ksection_start:1580156049:after_script
  ^[[0Ksection_end:1580156050:after_script
  ^[[0Ksection_start:1580156050:upload_artifacts_on_failure
  ^[[0K^[[32;1mUploading artifacts...^[[0;m
  build: found 1379 matching files                  ^[[0;m 
  Uploading artifacts to coordinator... ok          ^[[0;m  id^[[0;m=1474702 responseStatus^[[0;m=201 Created token^[[0;m=zFZxx7c6
  section_end:1580156056:upload_artifacts_on_failure
  ^[[0K^[[31;1mERROR: Job failed: exit code 1
  ^[[0;m

test:ninja-test-armhf has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/1474703):
    [test_root]           Directory that contains the IGT tests. The environment
                          variable IGT_TEST_ROOT will be used if set, overriding
                          this option if given.
  Cannot open /builds/gfx-ci/igt-ci-tags/build/tmpdirXsVs69/test-list.txt
  -------
  
  Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt
  FAILED: meson-test 
  /usr/bin/meson test --no-rebuild --print-errorlogs
  ninja: build stopped: subcommand failed.
  section_end:1580156103:build_script
  ^[[0Ksection_start:1580156103:after_script
  ^[[0Ksection_end:1580156104:after_script
  ^[[0Ksection_start:1580156104:upload_artifacts_on_failure
  ^[[0K^[[32;1mUploading artifacts...^[[0;m
  build: found 1379 matching files                  ^[[0;m 
  Uploading artifacts to coordinator... ok          ^[[0;m  id^[[0;m=1474703 responseStatus^[[0;m=201 Created token^[[0;m=yj1ycmtf
  section_end:1580156110:upload_artifacts_on_failure
  ^[[0K^[[31;1mERROR: Job failed: exit code 1
  ^[[0;m

test:ninja-test-arm64 has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/1474712):
    [test_root]           Directory that contains the IGT tests. The environment
                          variable IGT_TEST_ROOT will be used if set, overriding
                          this option if given.
  Cannot open /builds/gfx-ci/igt-ci-tags/build/tmpdirafSQ2R/test-list.txt
  -------
  
  Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt
  FAILED: meson-test 
  /usr/bin/meson test --no-rebuild --print-errorlogs
  ninja: build stopped: subcommand failed.
  section_end:1580156393:build_script
  ^[[0Ksection_start:1580156393:after_script
  ^[[0Ksection_end:1580156395:after_script
  ^[[0Ksection_start:1580156395:upload_artifacts_on_failure
  ^[[0K^[[32;1mUploading artifacts...^[[0;m
  build: found 1379 matching files                  ^[[0;m 
  Uploading artifacts to coordinator... ok          ^[[0;m  id^[[0;m=1474712 responseStatus^[[0;m=201 Created token^[[0;m=EghC_an_
  section_end:1580156401:upload_artifacts_on_failure
  ^[[0K^[[31;1mERROR: Job failed: exit code 1
  ^[[0;m

test:ninja-test-armhf has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/1474713):
    [test_root]           Directory that contains the IGT tests. The environment
                          variable IGT_TEST_ROOT will be used if set, overriding
                          this option if given.
  Cannot open /builds/gfx-ci/igt-ci-tags/build/tmpdirnzJZ1k/test-list.txt
  -------
  
  Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt
  FAILED: meson-test 
  /usr/bin/meson test --no-rebuild --print-errorlogs
  ninja: build stopped: subcommand failed.
  section_end:1580156495:build_script
  ^[[0Ksection_start:1580156495:after_script
  ^[[0Ksection_end:1580156496:after_script
  ^[[0Ksection_start:1580156496:upload_artifacts_on_failure
  ^[[0K^[[32;1mUploading artifacts...^[[0;m
  build: found 1379 matching files                  ^[[0;m 
  Uploading artifacts to coordinator... ok          ^[[0;m  id^[[0;m=1474713 responseStatus^[[0;m=201 Created token^[[0;m=esYneQy3
  section_end:1580156502:upload_artifacts_on_failure
  ^[[0K^[[31;1mERROR: Job failed: exit code 1
  ^[[0;m

test:ninja-test-arm64 has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/1474752):
    [test_root]           Directory that contains the IGT tests. The environment
                          variable IGT_TEST_ROOT will be used if set, overriding
                          this option if given.
  Cannot open /builds/gfx-ci/igt-ci-tags/build/tmpdirpDDOKe/test-list.txt
  -------
  
  Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt
  FAILED: meson-test 
  /usr/bin/meson test --no-rebuild --print-errorlogs
  ninja: build stopped: subcommand failed.
  section_end:1580156728:build_script
  ^[[0Ksection_start:1580156728:after_script
  ^[[0Ksection_end:1580156729:after_script
  ^[[0Ksection_start:1580156729:upload_artifacts_on_failure
  ^[[0K^[[32;1mUploading artifacts...^[[0;m
  build: found 1379 matching files                  ^[[0;m 
  Uploading artifacts to coordinator... ok          ^[[0;m  id^[[0;m=1474752 responseStatus^[[0;m=201 Created token^[[0;m=T1X9DkbS
  section_end:1580156735:upload_artifacts_on_failure
  ^[[0K^[[31;1mERROR: Job failed: exit code 1
  ^[[0;m

test:ninja-test-armhf has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/1474757):
    [test_root]           Directory that contains the IGT tests. The environment
                          variable IGT_TEST_ROOT will be used if set, overriding
                          this option if given.
  Cannot open /builds/gfx-ci/igt-ci-tags/build/tmpdircmw9ir/test-list.txt
  -------
  
  Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt
  FAILED: meson-test 
  /usr/bin/meson test --no-rebuild --print-errorlogs
  ninja: build stopped: subcommand failed.
  section_end:1580156857:build_script
  ^[[0Ksection_start:1580156857:after_script
  ^[[0Ksection_end:1580156859:after_script
  ^[[0Ksection_start:1580156859:upload_artifacts_on_failure
  ^[[0K^[[32;1mUploading artifacts...^[[0;m
  build: found 1379 matching files                  ^[[0;m 
  Uploading artifacts to coordinator... ok          ^[[0;m  id^[[0;m=1474757 responseStatus^[[0;m=201 Created token^[[0;m=pi3oio8L
  section_end:1580156864:upload_artifacts_on_failure
  ^[[0K^[[31;1mERROR: Job failed: exit code 1
  ^[[0;m

== Logs ==

For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/101947
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✗ Fi.CI.IGT: failure for lib/color_encoding: Fix up support for XYUV format
  2020-01-27 19:28 ` [igt-dev] " Bob Paauwe
                   ` (2 preceding siblings ...)
  (?)
@ 2020-01-28 15:41 ` Patchwork
  2020-01-28 16:40   ` Paauwe, Bob J
  -1 siblings, 1 reply; 7+ messages in thread
From: Patchwork @ 2020-01-28 15:41 UTC (permalink / raw)
  To: Bob Paauwe; +Cc: igt-dev

== Series Details ==

Series: lib/color_encoding: Fix up support for XYUV format
URL   : https://patchwork.freedesktop.org/series/72636/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_7826_full -> IGTPW_4011_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_4011_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_4011_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_4011/index.html

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_partial_pwrite_pread@reads:
    - shard-hsw:          [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-hsw5/igt@gem_partial_pwrite_pread@reads.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-hsw7/igt@gem_partial_pwrite_pread@reads.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_caching@read-writes:
    - shard-hsw:          [PASS][3] -> [FAIL][4] ([i915#694])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-hsw7/igt@gem_caching@read-writes.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-hsw8/igt@gem_caching@read-writes.html

  * igt@gem_ctx_persistence@vcs1-queued:
    - shard-iclb:         [PASS][5] -> [SKIP][6] ([fdo#109276] / [fdo#112080]) +3 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-iclb2/igt@gem_ctx_persistence@vcs1-queued.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-iclb3/igt@gem_ctx_persistence@vcs1-queued.html

  * igt@gem_ctx_shared@exec-shared-gtt-bsd1:
    - shard-tglb:         [PASS][7] -> [FAIL][8] ([i915#616])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-tglb5/igt@gem_ctx_shared@exec-shared-gtt-bsd1.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-tglb8/igt@gem_ctx_shared@exec-shared-gtt-bsd1.html

  * igt@gem_ctx_shared@exec-single-timeline-bsd:
    - shard-iclb:         [PASS][9] -> [SKIP][10] ([fdo#110841])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-iclb7/igt@gem_ctx_shared@exec-single-timeline-bsd.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-iclb2/igt@gem_ctx_shared@exec-single-timeline-bsd.html

  * igt@gem_exec_create@forked:
    - shard-glk:          [PASS][11] -> [INCOMPLETE][12] ([i915#58] / [k.org#198133]) +1 similar issue
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-glk4/igt@gem_exec_create@forked.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-glk8/igt@gem_exec_create@forked.html

  * igt@gem_exec_schedule@out-order-bsd2:
    - shard-iclb:         [PASS][13] -> [SKIP][14] ([fdo#109276]) +15 similar issues
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-iclb1/igt@gem_exec_schedule@out-order-bsd2.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-iclb3/igt@gem_exec_schedule@out-order-bsd2.html

  * igt@gem_exec_schedule@pi-common-bsd:
    - shard-iclb:         [PASS][15] -> [SKIP][16] ([i915#677]) +1 similar issue
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-iclb8/igt@gem_exec_schedule@pi-common-bsd.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-iclb4/igt@gem_exec_schedule@pi-common-bsd.html

  * igt@gem_exec_schedule@reorder-wide-bsd:
    - shard-iclb:         [PASS][17] -> [SKIP][18] ([fdo#112146]) +4 similar issues
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-iclb7/igt@gem_exec_schedule@reorder-wide-bsd.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-iclb1/igt@gem_exec_schedule@reorder-wide-bsd.html

  * igt@gem_userptr_blits@sync-unmap-after-close:
    - shard-apl:          [PASS][19] -> [DMESG-WARN][20] ([fdo#111870] / [i915#211] / [i915#836])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-apl1/igt@gem_userptr_blits@sync-unmap-after-close.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-apl4/igt@gem_userptr_blits@sync-unmap-after-close.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-iclb:         [PASS][21] -> [FAIL][22] ([i915#454])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-iclb1/igt@i915_pm_dc@dc6-dpms.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-iclb8/igt@i915_pm_dc@dc6-dpms.html

  * igt@i915_suspend@forcewake:
    - shard-apl:          [PASS][23] -> [DMESG-WARN][24] ([i915#180])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-apl4/igt@i915_suspend@forcewake.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-apl4/igt@i915_suspend@forcewake.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-kbl:          [PASS][25] -> [DMESG-WARN][26] ([i915#180]) +4 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_psr@no_drrs:
    - shard-tglb:         [PASS][27] -> [SKIP][28] ([i915#668]) +5 similar issues
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-tglb3/igt@kms_psr@no_drrs.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-tglb1/igt@kms_psr@no_drrs.html

  * igt@kms_psr@psr2_sprite_mmap_gtt:
    - shard-iclb:         [PASS][29] -> [SKIP][30] ([fdo#109441]) +2 similar issues
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-iclb3/igt@kms_psr@psr2_sprite_mmap_gtt.html

  * igt@perf@short-reads:
    - shard-apl:          [PASS][31] -> [TIMEOUT][32] ([fdo#112271] / [i915#51])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-apl3/igt@perf@short-reads.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-apl4/igt@perf@short-reads.html

  * igt@perf_pmu@busy-no-semaphores-vcs1:
    - shard-iclb:         [PASS][33] -> [SKIP][34] ([fdo#112080]) +12 similar issues
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-iclb4/igt@perf_pmu@busy-no-semaphores-vcs1.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-iclb7/igt@perf_pmu@busy-no-semaphores-vcs1.html

  
#### Possible fixes ####

  * igt@gem_caching@reads:
    - shard-hsw:          [FAIL][35] ([i915#694]) -> [PASS][36]
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-hsw2/igt@gem_caching@reads.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-hsw4/igt@gem_caching@reads.html

  * igt@gem_ctx_isolation@rcs0-s3:
    - shard-kbl:          [DMESG-WARN][37] ([i915#180]) -> [PASS][38] +5 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-kbl7/igt@gem_ctx_isolation@rcs0-s3.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-kbl7/igt@gem_ctx_isolation@rcs0-s3.html

  * igt@gem_ctx_persistence@vcs1-hostile-preempt:
    - shard-iclb:         [SKIP][39] ([fdo#109276] / [fdo#112080]) -> [PASS][40] +1 similar issue
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-iclb5/igt@gem_ctx_persistence@vcs1-hostile-preempt.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-iclb4/igt@gem_ctx_persistence@vcs1-hostile-preempt.html

  * igt@gem_exec_balancer@smoke:
    - shard-iclb:         [SKIP][41] ([fdo#110854]) -> [PASS][42]
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-iclb3/igt@gem_exec_balancer@smoke.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-iclb2/igt@gem_exec_balancer@smoke.html

  * igt@gem_exec_schedule@pi-shared-iova-bsd:
    - shard-iclb:         [SKIP][43] ([i915#677]) -> [PASS][44]
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-iclb1/igt@gem_exec_schedule@pi-shared-iova-bsd.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-iclb6/igt@gem_exec_schedule@pi-shared-iova-bsd.html

  * igt@gem_exec_schedule@preemptive-hang-bsd:
    - shard-iclb:         [SKIP][45] ([fdo#112146]) -> [PASS][46] +6 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-iclb1/igt@gem_exec_schedule@preemptive-hang-bsd.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-iclb5/igt@gem_exec_schedule@preemptive-hang-bsd.html

  * igt@gem_ppgtt@flink-and-close-vma-leak:
    - shard-tglb:         [FAIL][47] ([i915#644]) -> [PASS][48]
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-tglb3/igt@gem_ppgtt@flink-and-close-vma-leak.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-tglb4/igt@gem_ppgtt@flink-and-close-vma-leak.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-snb:          [DMESG-WARN][49] ([fdo#111870] / [i915#478]) -> [PASS][50]
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-snb2/igt@gem_userptr_blits@dmabuf-unsync.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-snb6/igt@gem_userptr_blits@dmabuf-unsync.html

  * igt@kms_color@pipe-c-ctm-0-5:
    - shard-hsw:          [DMESG-WARN][51] ([i915#44]) -> [PASS][52]
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-hsw5/igt@kms_color@pipe-c-ctm-0-5.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-hsw2/igt@kms_color@pipe-c-ctm-0-5.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
    - shard-hsw:          [FAIL][53] ([i915#96]) -> [PASS][54]
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-hsw4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-hsw5/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-apl:          [DMESG-WARN][55] ([i915#180]) -> [PASS][56] +3 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-apl6/igt@kms_flip@flip-vs-suspend-interruptible.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-apl7/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_psr2_su@frontbuffer:
    - shard-iclb:         [SKIP][57] ([fdo#109642] / [fdo#111068]) -> [PASS][58]
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-iclb7/igt@kms_psr2_su@frontbuffer.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-iclb2/igt@kms_psr2_su@frontbuffer.html

  * igt@kms_psr@psr2_cursor_render:
    - shard-iclb:         [SKIP][59] ([fdo#109441]) -> [PASS][60] +1 similar issue
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-iclb5/igt@kms_psr@psr2_cursor_render.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-iclb2/igt@kms_psr@psr2_cursor_render.html

  * igt@perf_pmu@busy-check-all-vcs1:
    - shard-iclb:         [SKIP][61] ([fdo#112080]) -> [PASS][62] +7 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-iclb5/igt@perf_pmu@busy-check-all-vcs1.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-iclb1/igt@perf_pmu@busy-check-all-vcs1.html

  * igt@prime_busy@hang-bsd2:
    - shard-iclb:         [SKIP][63] ([fdo#109276]) -> [PASS][64] +15 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-iclb7/igt@prime_busy@hang-bsd2.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-iclb1/igt@prime_busy@hang-bsd2.html

  
#### Warnings ####

  * igt@gem_ctx_isolation@vcs1-nonpriv:
    - shard-iclb:         [FAIL][65] ([IGT#28]) -> [SKIP][66] ([fdo#109276] / [fdo#112080])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-iclb1/igt@gem_ctx_isolation@vcs1-nonpriv.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-iclb6/igt@gem_ctx_isolation@vcs1-nonpriv.html

  * igt@gem_tiled_blits@interruptible:
    - shard-hsw:          [FAIL][67] ([i915#694]) -> [FAIL][68] ([i915#818])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-hsw1/igt@gem_tiled_blits@interruptible.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-hsw8/igt@gem_tiled_blits@interruptible.html

  * igt@gem_userptr_blits@sync-unmap-after-close:
    - shard-snb:          [DMESG-WARN][69] ([fdo#110789] / [fdo#111870] / [i915#478]) -> [DMESG-WARN][70] ([fdo#111870] / [i915#478])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-snb6/igt@gem_userptr_blits@sync-unmap-after-close.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-snb4/igt@gem_userptr_blits@sync-unmap-after-close.html

  * igt@i915_selftest@live_blt:
    - shard-hsw:          [DMESG-FAIL][71] ([i915#770]) -> [DMESG-FAIL][72] ([i915#553] / [i915#725])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-hsw1/igt@i915_selftest@live_blt.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-hsw1/igt@i915_selftest@live_blt.html

  
  [IGT#28]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/28
  [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#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789
  [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841
  [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
  [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
  [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
  [fdo#112271]: https://bugs.freedesktop.org/show_bug.cgi?id=112271
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#211]: https://gitlab.freedesktop.org/drm/intel/issues/211
  [i915#44]: https://gitlab.freedesktop.org/drm/intel/issues/44
  [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
  [i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478
  [i915#51]: https://gitlab.freedesktop.org/drm/intel/issues/51
  [i915#553]: https://gitlab.freedesktop.org/drm/intel/issues/553
  [i915#58]: https://gitlab.freedesktop.org/drm/intel/issues/58
  [i915#616]: https://gitlab.freedesktop.org/drm/intel/issues/616
  [i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644
  [i915#668]: https://gitlab.freedesktop.org/drm/intel/issues/668
  [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677
  [i915#694]: https://gitlab.freedesktop.org/drm/intel/issues/694
  [i915#725]: https://gitlab.freedesktop.org/drm/intel/issues/725
  [i915#770]: https://gitlab.freedesktop.org/drm/intel/issues/770
  [i915#818]: https://gitlab.freedesktop.org/drm/intel/issues/818
  [i915#836]: https://gitlab.freedesktop.org/drm/intel/issues/836
  [i915#96]: https://gitlab.freedesktop.org/drm/intel/issues/96
  [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133


Participating hosts (10 -> 8)
------------------------------

  Missing    (2): pig-skl-6260u pig-glk-j5005 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5389 -> IGTPW_4011
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_7826: 04d0421c09d70ea76da8a3685347740df9f84aaf @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_4011: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/index.html
  IGT_5389: 966c58649dee31bb5bf2fad92f75ffd365968b81 @ 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_4011/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/color_encoding: Fix up support for XYUV format
  2020-01-28 15:41 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2020-01-28 16:40   ` Paauwe, Bob J
  2020-01-29 13:29     ` Shankar, Uma
  0 siblings, 1 reply; 7+ messages in thread
From: Paauwe, Bob J @ 2020-01-28 16:40 UTC (permalink / raw)
  To: igt-dev

Again, these failures don't appear to be related to the change at all. 

Every CI run with this patch produces different unrelated failures.

Bob
--
Bob Paauwe                  
Bob.J.Paauwe@intel.com
IOTG / Platform Software Engineering
Intel Corp.  Folsom, CA
(916) 356-6193    

  

>-----Original Message-----
>From: Patchwork <patchwork@emeril.freedesktop.org>
>Sent: Tuesday, January 28, 2020 7:42 AM
>To: Paauwe, Bob J <bob.j.paauwe@intel.com>
>Cc: igt-dev@lists.freedesktop.org
>Subject: ✗ Fi.CI.IGT: failure for lib/color_encoding: Fix up support for XYUV
>format
>
>== Series Details ==
>
>Series: lib/color_encoding: Fix up support for XYUV format
>URL   : https://patchwork.freedesktop.org/series/72636/
>State : failure
>
>== Summary ==
>
>CI Bug Log - changes from CI_DRM_7826_full -> IGTPW_4011_full
>====================================================
>
>Summary
>-------
>
>  **FAILURE**
>
>  Serious unknown changes coming with IGTPW_4011_full absolutely need to be
>  verified manually.
>
>  If you think the reported changes have nothing to do with the changes
>  introduced in IGTPW_4011_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_4011/index.html
>
>Possible new issues
>-------------------
>
>  Here are the unknown changes that may have been introduced in
>IGTPW_4011_full:
>
>### IGT changes ###
>
>#### Possible regressions ####
>
>  * igt@gem_partial_pwrite_pread@reads:
>    - shard-hsw:          [PASS][1] -> [FAIL][2]
>   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>hsw5/igt@gem_partial_pwrite_pread@reads.html
>   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>hsw7/igt@gem_partial_pwrite_pread@reads.html
>
>
>Known issues
>------------
>
>  Here are the changes found in IGTPW_4011_full that come from known issues:
>
>### IGT changes ###
>
>#### Issues hit ####
>
>  * igt@gem_caching@read-writes:
>    - shard-hsw:          [PASS][3] -> [FAIL][4] ([i915#694])
>   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>hsw7/igt@gem_caching@read-writes.html
>   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>hsw8/igt@gem_caching@read-writes.html
>
>  * igt@gem_ctx_persistence@vcs1-queued:
>    - shard-iclb:         [PASS][5] -> [SKIP][6] ([fdo#109276] / [fdo#112080]) +3
>similar issues
>   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>iclb2/igt@gem_ctx_persistence@vcs1-queued.html
>   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>iclb3/igt@gem_ctx_persistence@vcs1-queued.html
>
>  * igt@gem_ctx_shared@exec-shared-gtt-bsd1:
>    - shard-tglb:         [PASS][7] -> [FAIL][8] ([i915#616])
>   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>tglb5/igt@gem_ctx_shared@exec-shared-gtt-bsd1.html
>   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>tglb8/igt@gem_ctx_shared@exec-shared-gtt-bsd1.html
>
>  * igt@gem_ctx_shared@exec-single-timeline-bsd:
>    - shard-iclb:         [PASS][9] -> [SKIP][10] ([fdo#110841])
>   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>iclb7/igt@gem_ctx_shared@exec-single-timeline-bsd.html
>   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>iclb2/igt@gem_ctx_shared@exec-single-timeline-bsd.html
>
>  * igt@gem_exec_create@forked:
>    - shard-glk:          [PASS][11] -> [INCOMPLETE][12] ([i915#58] /
>[k.org#198133]) +1 similar issue
>   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>glk4/igt@gem_exec_create@forked.html
>   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>glk8/igt@gem_exec_create@forked.html
>
>  * igt@gem_exec_schedule@out-order-bsd2:
>    - shard-iclb:         [PASS][13] -> [SKIP][14] ([fdo#109276]) +15 similar issues
>   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>iclb1/igt@gem_exec_schedule@out-order-bsd2.html
>   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>iclb3/igt@gem_exec_schedule@out-order-bsd2.html
>
>  * igt@gem_exec_schedule@pi-common-bsd:
>    - shard-iclb:         [PASS][15] -> [SKIP][16] ([i915#677]) +1 similar issue
>   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>iclb8/igt@gem_exec_schedule@pi-common-bsd.html
>   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>iclb4/igt@gem_exec_schedule@pi-common-bsd.html
>
>  * igt@gem_exec_schedule@reorder-wide-bsd:
>    - shard-iclb:         [PASS][17] -> [SKIP][18] ([fdo#112146]) +4 similar issues
>   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>iclb7/igt@gem_exec_schedule@reorder-wide-bsd.html
>   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>iclb1/igt@gem_exec_schedule@reorder-wide-bsd.html
>
>  * igt@gem_userptr_blits@sync-unmap-after-close:
>    - shard-apl:          [PASS][19] -> [DMESG-WARN][20] ([fdo#111870] /
>[i915#211] / [i915#836])
>   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>apl1/igt@gem_userptr_blits@sync-unmap-after-close.html
>   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>apl4/igt@gem_userptr_blits@sync-unmap-after-close.html
>
>  * igt@i915_pm_dc@dc6-dpms:
>    - shard-iclb:         [PASS][21] -> [FAIL][22] ([i915#454])
>   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>iclb1/igt@i915_pm_dc@dc6-dpms.html
>   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>iclb8/igt@i915_pm_dc@dc6-dpms.html
>
>  * igt@i915_suspend@forcewake:
>    - shard-apl:          [PASS][23] -> [DMESG-WARN][24] ([i915#180])
>   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>apl4/igt@i915_suspend@forcewake.html
>   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>apl4/igt@i915_suspend@forcewake.html
>
>  * igt@kms_frontbuffer_tracking@fbc-suspend:
>    - shard-kbl:          [PASS][25] -> [DMESG-WARN][26] ([i915#180]) +4 similar
>issues
>   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>kbl7/igt@kms_frontbuffer_tracking@fbc-suspend.html
>   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>kbl2/igt@kms_frontbuffer_tracking@fbc-suspend.html
>
>  * igt@kms_psr@no_drrs:
>    - shard-tglb:         [PASS][27] -> [SKIP][28] ([i915#668]) +5 similar issues
>   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>tglb3/igt@kms_psr@no_drrs.html
>   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>tglb1/igt@kms_psr@no_drrs.html
>
>  * igt@kms_psr@psr2_sprite_mmap_gtt:
>    - shard-iclb:         [PASS][29] -> [SKIP][30] ([fdo#109441]) +2 similar issues
>   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html
>   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>iclb3/igt@kms_psr@psr2_sprite_mmap_gtt.html
>
>  * igt@perf@short-reads:
>    - shard-apl:          [PASS][31] -> [TIMEOUT][32] ([fdo#112271] / [i915#51])
>   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>apl3/igt@perf@short-reads.html
>   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>apl4/igt@perf@short-reads.html
>
>  * igt@perf_pmu@busy-no-semaphores-vcs1:
>    - shard-iclb:         [PASS][33] -> [SKIP][34] ([fdo#112080]) +12 similar issues
>   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>iclb4/igt@perf_pmu@busy-no-semaphores-vcs1.html
>   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>iclb7/igt@perf_pmu@busy-no-semaphores-vcs1.html
>
>
>#### Possible fixes ####
>
>  * igt@gem_caching@reads:
>    - shard-hsw:          [FAIL][35] ([i915#694]) -> [PASS][36]
>   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>hsw2/igt@gem_caching@reads.html
>   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>hsw4/igt@gem_caching@reads.html
>
>  * igt@gem_ctx_isolation@rcs0-s3:
>    - shard-kbl:          [DMESG-WARN][37] ([i915#180]) -> [PASS][38] +5 similar
>issues
>   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>kbl7/igt@gem_ctx_isolation@rcs0-s3.html
>   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>kbl7/igt@gem_ctx_isolation@rcs0-s3.html
>
>  * igt@gem_ctx_persistence@vcs1-hostile-preempt:
>    - shard-iclb:         [SKIP][39] ([fdo#109276] / [fdo#112080]) -> [PASS][40] +1
>similar issue
>   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>iclb5/igt@gem_ctx_persistence@vcs1-hostile-preempt.html
>   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>iclb4/igt@gem_ctx_persistence@vcs1-hostile-preempt.html
>
>  * igt@gem_exec_balancer@smoke:
>    - shard-iclb:         [SKIP][41] ([fdo#110854]) -> [PASS][42]
>   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>iclb3/igt@gem_exec_balancer@smoke.html
>   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>iclb2/igt@gem_exec_balancer@smoke.html
>
>  * igt@gem_exec_schedule@pi-shared-iova-bsd:
>    - shard-iclb:         [SKIP][43] ([i915#677]) -> [PASS][44]
>   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>iclb1/igt@gem_exec_schedule@pi-shared-iova-bsd.html
>   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>iclb6/igt@gem_exec_schedule@pi-shared-iova-bsd.html
>
>  * igt@gem_exec_schedule@preemptive-hang-bsd:
>    - shard-iclb:         [SKIP][45] ([fdo#112146]) -> [PASS][46] +6 similar issues
>   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>iclb1/igt@gem_exec_schedule@preemptive-hang-bsd.html
>   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>iclb5/igt@gem_exec_schedule@preemptive-hang-bsd.html
>
>  * igt@gem_ppgtt@flink-and-close-vma-leak:
>    - shard-tglb:         [FAIL][47] ([i915#644]) -> [PASS][48]
>   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>tglb3/igt@gem_ppgtt@flink-and-close-vma-leak.html
>   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>tglb4/igt@gem_ppgtt@flink-and-close-vma-leak.html
>
>  * igt@gem_userptr_blits@dmabuf-unsync:
>    - shard-snb:          [DMESG-WARN][49] ([fdo#111870] / [i915#478]) ->
>[PASS][50]
>   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>snb2/igt@gem_userptr_blits@dmabuf-unsync.html
>   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>snb6/igt@gem_userptr_blits@dmabuf-unsync.html
>
>  * igt@kms_color@pipe-c-ctm-0-5:
>    - shard-hsw:          [DMESG-WARN][51] ([i915#44]) -> [PASS][52]
>   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>hsw5/igt@kms_color@pipe-c-ctm-0-5.html
>   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>hsw2/igt@kms_color@pipe-c-ctm-0-5.html
>
>  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
>    - shard-hsw:          [FAIL][53] ([i915#96]) -> [PASS][54]
>   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>hsw4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
>   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>hsw5/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
>
>  * igt@kms_flip@flip-vs-suspend-interruptible:
>    - shard-apl:          [DMESG-WARN][55] ([i915#180]) -> [PASS][56] +3 similar
>issues
>   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>apl6/igt@kms_flip@flip-vs-suspend-interruptible.html
>   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>apl7/igt@kms_flip@flip-vs-suspend-interruptible.html
>
>  * igt@kms_psr2_su@frontbuffer:
>    - shard-iclb:         [SKIP][57] ([fdo#109642] / [fdo#111068]) -> [PASS][58]
>   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>iclb7/igt@kms_psr2_su@frontbuffer.html
>   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>iclb2/igt@kms_psr2_su@frontbuffer.html
>
>  * igt@kms_psr@psr2_cursor_render:
>    - shard-iclb:         [SKIP][59] ([fdo#109441]) -> [PASS][60] +1 similar issue
>   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>iclb5/igt@kms_psr@psr2_cursor_render.html
>   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>iclb2/igt@kms_psr@psr2_cursor_render.html
>
>  * igt@perf_pmu@busy-check-all-vcs1:
>    - shard-iclb:         [SKIP][61] ([fdo#112080]) -> [PASS][62] +7 similar issues
>   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>iclb5/igt@perf_pmu@busy-check-all-vcs1.html
>   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>iclb1/igt@perf_pmu@busy-check-all-vcs1.html
>
>  * igt@prime_busy@hang-bsd2:
>    - shard-iclb:         [SKIP][63] ([fdo#109276]) -> [PASS][64] +15 similar issues
>   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>iclb7/igt@prime_busy@hang-bsd2.html
>   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>iclb1/igt@prime_busy@hang-bsd2.html
>
>
>#### Warnings ####
>
>  * igt@gem_ctx_isolation@vcs1-nonpriv:
>    - shard-iclb:         [FAIL][65] ([IGT#28]) -> [SKIP][66] ([fdo#109276] /
>[fdo#112080])
>   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>iclb1/igt@gem_ctx_isolation@vcs1-nonpriv.html
>   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>iclb6/igt@gem_ctx_isolation@vcs1-nonpriv.html
>
>  * igt@gem_tiled_blits@interruptible:
>    - shard-hsw:          [FAIL][67] ([i915#694]) -> [FAIL][68] ([i915#818])
>   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>hsw1/igt@gem_tiled_blits@interruptible.html
>   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>hsw8/igt@gem_tiled_blits@interruptible.html
>
>  * igt@gem_userptr_blits@sync-unmap-after-close:
>    - shard-snb:          [DMESG-WARN][69] ([fdo#110789] / [fdo#111870] /
>[i915#478]) -> [DMESG-WARN][70] ([fdo#111870] / [i915#478])
>   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>snb6/igt@gem_userptr_blits@sync-unmap-after-close.html
>   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>snb4/igt@gem_userptr_blits@sync-unmap-after-close.html
>
>  * igt@i915_selftest@live_blt:
>    - shard-hsw:          [DMESG-FAIL][71] ([i915#770]) -> [DMESG-FAIL][72]
>([i915#553] / [i915#725])
>   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
>hsw1/igt@i915_selftest@live_blt.html
>   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
>hsw1/igt@i915_selftest@live_blt.html
>
>
>  [IGT#28]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/28
>  [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#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789
>  [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841
>  [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854
>  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
>  [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
>  [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
>  [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
>  [fdo#112271]: https://bugs.freedesktop.org/show_bug.cgi?id=112271
>  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
>  [i915#211]: https://gitlab.freedesktop.org/drm/intel/issues/211
>  [i915#44]: https://gitlab.freedesktop.org/drm/intel/issues/44
>  [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
>  [i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478
>  [i915#51]: https://gitlab.freedesktop.org/drm/intel/issues/51
>  [i915#553]: https://gitlab.freedesktop.org/drm/intel/issues/553
>  [i915#58]: https://gitlab.freedesktop.org/drm/intel/issues/58
>  [i915#616]: https://gitlab.freedesktop.org/drm/intel/issues/616
>  [i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644
>  [i915#668]: https://gitlab.freedesktop.org/drm/intel/issues/668
>  [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677
>  [i915#694]: https://gitlab.freedesktop.org/drm/intel/issues/694
>  [i915#725]: https://gitlab.freedesktop.org/drm/intel/issues/725
>  [i915#770]: https://gitlab.freedesktop.org/drm/intel/issues/770
>  [i915#818]: https://gitlab.freedesktop.org/drm/intel/issues/818
>  [i915#836]: https://gitlab.freedesktop.org/drm/intel/issues/836
>  [i915#96]: https://gitlab.freedesktop.org/drm/intel/issues/96
>  [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133
>
>
>Participating hosts (10 -> 8)
>------------------------------
>
>  Missing    (2): pig-skl-6260u pig-glk-j5005
>
>
>Build changes
>-------------
>
>  * CI: CI-20190529 -> None
>  * IGT: IGT_5389 -> IGTPW_4011
>  * Piglit: piglit_4509 -> None
>
>  CI-20190529: 20190529
>  CI_DRM_7826: 04d0421c09d70ea76da8a3685347740df9f84aaf @
>git://anongit.freedesktop.org/gfx-ci/linux
>  IGTPW_4011: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/index.html
>  IGT_5389: 966c58649dee31bb5bf2fad92f75ffd365968b81 @
>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_4011/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/color_encoding: Fix up support for XYUV format
  2020-01-28 16:40   ` Paauwe, Bob J
@ 2020-01-29 13:29     ` Shankar, Uma
  0 siblings, 0 replies; 7+ messages in thread
From: Shankar, Uma @ 2020-01-29 13:29 UTC (permalink / raw)
  To: Paauwe, Bob J, igt-dev, Peres, Martin



> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Paauwe, Bob J
> Sent: Tuesday, January 28, 2020 10:10 PM
> To: igt-dev@lists.freedesktop.org
> Subject: Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/color_encoding: Fix up support for
> XYUV format
> 
> Again, these failures don't appear to be related to the change at all.
> 
> Every CI run with this patch produces different unrelated failures.

Hi Bob,
I have triggered a fresh run in try-bot with the kernel and IGT changes together. 
https://patchwork.freedesktop.org/series/72720/
This should give a result with your kernel change taking the changes done in IGT
as well and get the combined result.

There are occasional glitches in CI due to some randomly reproducible issues, Martin can give
his ack once the results are out and with that we can get the changes merged.

Regards,
Uma Shankar

> Bob
> --
> Bob Paauwe
> Bob.J.Paauwe@intel.com
> IOTG / Platform Software Engineering
> Intel Corp.  Folsom, CA
> (916) 356-6193
> 
> 
> 
> >-----Original Message-----
> >From: Patchwork <patchwork@emeril.freedesktop.org>
> >Sent: Tuesday, January 28, 2020 7:42 AM
> >To: Paauwe, Bob J <bob.j.paauwe@intel.com>
> >Cc: igt-dev@lists.freedesktop.org
> >Subject: ✗ Fi.CI.IGT: failure for lib/color_encoding: Fix up support
> >for XYUV format
> >
> >== Series Details ==
> >
> >Series: lib/color_encoding: Fix up support for XYUV format
> >URL   : https://patchwork.freedesktop.org/series/72636/
> >State : failure
> >
> >== Summary ==
> >
> >CI Bug Log - changes from CI_DRM_7826_full -> IGTPW_4011_full
> >====================================================
> >
> >Summary
> >-------
> >
> >  **FAILURE**
> >
> >  Serious unknown changes coming with IGTPW_4011_full absolutely need
> > to be  verified manually.
> >
> >  If you think the reported changes have nothing to do with the changes
> > introduced in IGTPW_4011_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_4011/index.html
> >
> >Possible new issues
> >-------------------
> >
> >  Here are the unknown changes that may have been introduced in
> >IGTPW_4011_full:
> >
> >### IGT changes ###
> >
> >#### Possible regressions ####
> >
> >  * igt@gem_partial_pwrite_pread@reads:
> >    - shard-hsw:          [PASS][1] -> [FAIL][2]
> >   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >hsw5/igt@gem_partial_pwrite_pread@reads.html
> >   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >hsw7/igt@gem_partial_pwrite_pread@reads.html
> >
> >
> >Known issues
> >------------
> >
> >  Here are the changes found in IGTPW_4011_full that come from known issues:
> >
> >### IGT changes ###
> >
> >#### Issues hit ####
> >
> >  * igt@gem_caching@read-writes:
> >    - shard-hsw:          [PASS][3] -> [FAIL][4] ([i915#694])
> >   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >hsw7/igt@gem_caching@read-writes.html
> >   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >hsw8/igt@gem_caching@read-writes.html
> >
> >  * igt@gem_ctx_persistence@vcs1-queued:
> >    - shard-iclb:         [PASS][5] -> [SKIP][6] ([fdo#109276] / [fdo#112080]) +3
> >similar issues
> >   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >iclb2/igt@gem_ctx_persistence@vcs1-queued.html
> >   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >iclb3/igt@gem_ctx_persistence@vcs1-queued.html
> >
> >  * igt@gem_ctx_shared@exec-shared-gtt-bsd1:
> >    - shard-tglb:         [PASS][7] -> [FAIL][8] ([i915#616])
> >   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >tglb5/igt@gem_ctx_shared@exec-shared-gtt-bsd1.html
> >   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >tglb8/igt@gem_ctx_shared@exec-shared-gtt-bsd1.html
> >
> >  * igt@gem_ctx_shared@exec-single-timeline-bsd:
> >    - shard-iclb:         [PASS][9] -> [SKIP][10] ([fdo#110841])
> >   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >iclb7/igt@gem_ctx_shared@exec-single-timeline-bsd.html
> >   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >iclb2/igt@gem_ctx_shared@exec-single-timeline-bsd.html
> >
> >  * igt@gem_exec_create@forked:
> >    - shard-glk:          [PASS][11] -> [INCOMPLETE][12] ([i915#58] /
> >[k.org#198133]) +1 similar issue
> >   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >glk4/igt@gem_exec_create@forked.html
> >   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >glk8/igt@gem_exec_create@forked.html
> >
> >  * igt@gem_exec_schedule@out-order-bsd2:
> >    - shard-iclb:         [PASS][13] -> [SKIP][14] ([fdo#109276]) +15 similar issues
> >   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >iclb1/igt@gem_exec_schedule@out-order-bsd2.html
> >   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >iclb3/igt@gem_exec_schedule@out-order-bsd2.html
> >
> >  * igt@gem_exec_schedule@pi-common-bsd:
> >    - shard-iclb:         [PASS][15] -> [SKIP][16] ([i915#677]) +1 similar issue
> >   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >iclb8/igt@gem_exec_schedule@pi-common-bsd.html
> >   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >iclb4/igt@gem_exec_schedule@pi-common-bsd.html
> >
> >  * igt@gem_exec_schedule@reorder-wide-bsd:
> >    - shard-iclb:         [PASS][17] -> [SKIP][18] ([fdo#112146]) +4 similar issues
> >   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >iclb7/igt@gem_exec_schedule@reorder-wide-bsd.html
> >   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >iclb1/igt@gem_exec_schedule@reorder-wide-bsd.html
> >
> >  * igt@gem_userptr_blits@sync-unmap-after-close:
> >    - shard-apl:          [PASS][19] -> [DMESG-WARN][20] ([fdo#111870] /
> >[i915#211] / [i915#836])
> >   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >apl1/igt@gem_userptr_blits@sync-unmap-after-close.html
> >   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >apl4/igt@gem_userptr_blits@sync-unmap-after-close.html
> >
> >  * igt@i915_pm_dc@dc6-dpms:
> >    - shard-iclb:         [PASS][21] -> [FAIL][22] ([i915#454])
> >   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >iclb1/igt@i915_pm_dc@dc6-dpms.html
> >   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >iclb8/igt@i915_pm_dc@dc6-dpms.html
> >
> >  * igt@i915_suspend@forcewake:
> >    - shard-apl:          [PASS][23] -> [DMESG-WARN][24] ([i915#180])
> >   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >apl4/igt@i915_suspend@forcewake.html
> >   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >apl4/igt@i915_suspend@forcewake.html
> >
> >  * igt@kms_frontbuffer_tracking@fbc-suspend:
> >    - shard-kbl:          [PASS][25] -> [DMESG-WARN][26] ([i915#180]) +4 similar
> >issues
> >   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >kbl7/igt@kms_frontbuffer_tracking@fbc-suspend.html
> >   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >kbl2/igt@kms_frontbuffer_tracking@fbc-suspend.html
> >
> >  * igt@kms_psr@no_drrs:
> >    - shard-tglb:         [PASS][27] -> [SKIP][28] ([i915#668]) +5 similar issues
> >   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >tglb3/igt@kms_psr@no_drrs.html
> >   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >tglb1/igt@kms_psr@no_drrs.html
> >
> >  * igt@kms_psr@psr2_sprite_mmap_gtt:
> >    - shard-iclb:         [PASS][29] -> [SKIP][30] ([fdo#109441]) +2 similar issues
> >   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html
> >   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >iclb3/igt@kms_psr@psr2_sprite_mmap_gtt.html
> >
> >  * igt@perf@short-reads:
> >    - shard-apl:          [PASS][31] -> [TIMEOUT][32] ([fdo#112271] / [i915#51])
> >   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >apl3/igt@perf@short-reads.html
> >   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >apl4/igt@perf@short-reads.html
> >
> >  * igt@perf_pmu@busy-no-semaphores-vcs1:
> >    - shard-iclb:         [PASS][33] -> [SKIP][34] ([fdo#112080]) +12 similar issues
> >   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >iclb4/igt@perf_pmu@busy-no-semaphores-vcs1.html
> >   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >iclb7/igt@perf_pmu@busy-no-semaphores-vcs1.html
> >
> >
> >#### Possible fixes ####
> >
> >  * igt@gem_caching@reads:
> >    - shard-hsw:          [FAIL][35] ([i915#694]) -> [PASS][36]
> >   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >hsw2/igt@gem_caching@reads.html
> >   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >hsw4/igt@gem_caching@reads.html
> >
> >  * igt@gem_ctx_isolation@rcs0-s3:
> >    - shard-kbl:          [DMESG-WARN][37] ([i915#180]) -> [PASS][38] +5 similar
> >issues
> >   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >kbl7/igt@gem_ctx_isolation@rcs0-s3.html
> >   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >kbl7/igt@gem_ctx_isolation@rcs0-s3.html
> >
> >  * igt@gem_ctx_persistence@vcs1-hostile-preempt:
> >    - shard-iclb:         [SKIP][39] ([fdo#109276] / [fdo#112080]) -> [PASS][40] +1
> >similar issue
> >   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >iclb5/igt@gem_ctx_persistence@vcs1-hostile-preempt.html
> >   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >iclb4/igt@gem_ctx_persistence@vcs1-hostile-preempt.html
> >
> >  * igt@gem_exec_balancer@smoke:
> >    - shard-iclb:         [SKIP][41] ([fdo#110854]) -> [PASS][42]
> >   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >iclb3/igt@gem_exec_balancer@smoke.html
> >   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >iclb2/igt@gem_exec_balancer@smoke.html
> >
> >  * igt@gem_exec_schedule@pi-shared-iova-bsd:
> >    - shard-iclb:         [SKIP][43] ([i915#677]) -> [PASS][44]
> >   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >iclb1/igt@gem_exec_schedule@pi-shared-iova-bsd.html
> >   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >iclb6/igt@gem_exec_schedule@pi-shared-iova-bsd.html
> >
> >  * igt@gem_exec_schedule@preemptive-hang-bsd:
> >    - shard-iclb:         [SKIP][45] ([fdo#112146]) -> [PASS][46] +6 similar issues
> >   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >iclb1/igt@gem_exec_schedule@preemptive-hang-bsd.html
> >   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >iclb5/igt@gem_exec_schedule@preemptive-hang-bsd.html
> >
> >  * igt@gem_ppgtt@flink-and-close-vma-leak:
> >    - shard-tglb:         [FAIL][47] ([i915#644]) -> [PASS][48]
> >   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >tglb3/igt@gem_ppgtt@flink-and-close-vma-leak.html
> >   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >tglb4/igt@gem_ppgtt@flink-and-close-vma-leak.html
> >
> >  * igt@gem_userptr_blits@dmabuf-unsync:
> >    - shard-snb:          [DMESG-WARN][49] ([fdo#111870] / [i915#478]) ->
> >[PASS][50]
> >   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >snb2/igt@gem_userptr_blits@dmabuf-unsync.html
> >   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >snb6/igt@gem_userptr_blits@dmabuf-unsync.html
> >
> >  * igt@kms_color@pipe-c-ctm-0-5:
> >    - shard-hsw:          [DMESG-WARN][51] ([i915#44]) -> [PASS][52]
> >   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >hsw5/igt@kms_color@pipe-c-ctm-0-5.html
> >   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >hsw2/igt@kms_color@pipe-c-ctm-0-5.html
> >
> >  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
> >    - shard-hsw:          [FAIL][53] ([i915#96]) -> [PASS][54]
> >   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >hsw4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
> >   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >hsw5/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
> >
> >  * igt@kms_flip@flip-vs-suspend-interruptible:
> >    - shard-apl:          [DMESG-WARN][55] ([i915#180]) -> [PASS][56] +3 similar
> >issues
> >   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >apl6/igt@kms_flip@flip-vs-suspend-interruptible.html
> >   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >apl7/igt@kms_flip@flip-vs-suspend-interruptible.html
> >
> >  * igt@kms_psr2_su@frontbuffer:
> >    - shard-iclb:         [SKIP][57] ([fdo#109642] / [fdo#111068]) -> [PASS][58]
> >   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >iclb7/igt@kms_psr2_su@frontbuffer.html
> >   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >iclb2/igt@kms_psr2_su@frontbuffer.html
> >
> >  * igt@kms_psr@psr2_cursor_render:
> >    - shard-iclb:         [SKIP][59] ([fdo#109441]) -> [PASS][60] +1 similar issue
> >   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >iclb5/igt@kms_psr@psr2_cursor_render.html
> >   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >iclb2/igt@kms_psr@psr2_cursor_render.html
> >
> >  * igt@perf_pmu@busy-check-all-vcs1:
> >    - shard-iclb:         [SKIP][61] ([fdo#112080]) -> [PASS][62] +7 similar issues
> >   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >iclb5/igt@perf_pmu@busy-check-all-vcs1.html
> >   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >iclb1/igt@perf_pmu@busy-check-all-vcs1.html
> >
> >  * igt@prime_busy@hang-bsd2:
> >    - shard-iclb:         [SKIP][63] ([fdo#109276]) -> [PASS][64] +15 similar issues
> >   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >iclb7/igt@prime_busy@hang-bsd2.html
> >   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >iclb1/igt@prime_busy@hang-bsd2.html
> >
> >
> >#### Warnings ####
> >
> >  * igt@gem_ctx_isolation@vcs1-nonpriv:
> >    - shard-iclb:         [FAIL][65] ([IGT#28]) -> [SKIP][66] ([fdo#109276] /
> >[fdo#112080])
> >   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >iclb1/igt@gem_ctx_isolation@vcs1-nonpriv.html
> >   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >iclb6/igt@gem_ctx_isolation@vcs1-nonpriv.html
> >
> >  * igt@gem_tiled_blits@interruptible:
> >    - shard-hsw:          [FAIL][67] ([i915#694]) -> [FAIL][68] ([i915#818])
> >   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >hsw1/igt@gem_tiled_blits@interruptible.html
> >   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >hsw8/igt@gem_tiled_blits@interruptible.html
> >
> >  * igt@gem_userptr_blits@sync-unmap-after-close:
> >    - shard-snb:          [DMESG-WARN][69] ([fdo#110789] / [fdo#111870] /
> >[i915#478]) -> [DMESG-WARN][70] ([fdo#111870] / [i915#478])
> >   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >snb6/igt@gem_userptr_blits@sync-unmap-after-close.html
> >   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >snb4/igt@gem_userptr_blits@sync-unmap-after-close.html
> >
> >  * igt@i915_selftest@live_blt:
> >    - shard-hsw:          [DMESG-FAIL][71] ([i915#770]) -> [DMESG-FAIL][72]
> >([i915#553] / [i915#725])
> >   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7826/shard-
> >hsw1/igt@i915_selftest@live_blt.html
> >   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/shard-
> >hsw1/igt@i915_selftest@live_blt.html
> >
> >
> >  [IGT#28]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/28
> >  [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#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789
> >  [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841
> >  [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854
> >  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
> >  [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
> >  [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
> >  [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
> >  [fdo#112271]: https://bugs.freedesktop.org/show_bug.cgi?id=112271
> >  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
> >  [i915#211]: https://gitlab.freedesktop.org/drm/intel/issues/211
> >  [i915#44]: https://gitlab.freedesktop.org/drm/intel/issues/44
> >  [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
> >  [i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478
> >  [i915#51]: https://gitlab.freedesktop.org/drm/intel/issues/51
> >  [i915#553]: https://gitlab.freedesktop.org/drm/intel/issues/553
> >  [i915#58]: https://gitlab.freedesktop.org/drm/intel/issues/58
> >  [i915#616]: https://gitlab.freedesktop.org/drm/intel/issues/616
> >  [i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644
> >  [i915#668]: https://gitlab.freedesktop.org/drm/intel/issues/668
> >  [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677
> >  [i915#694]: https://gitlab.freedesktop.org/drm/intel/issues/694
> >  [i915#725]: https://gitlab.freedesktop.org/drm/intel/issues/725
> >  [i915#770]: https://gitlab.freedesktop.org/drm/intel/issues/770
> >  [i915#818]: https://gitlab.freedesktop.org/drm/intel/issues/818
> >  [i915#836]: https://gitlab.freedesktop.org/drm/intel/issues/836
> >  [i915#96]: https://gitlab.freedesktop.org/drm/intel/issues/96
> >  [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133
> >
> >
> >Participating hosts (10 -> 8)
> >------------------------------
> >
> >  Missing    (2): pig-skl-6260u pig-glk-j5005
> >
> >
> >Build changes
> >-------------
> >
> >  * CI: CI-20190529 -> None
> >  * IGT: IGT_5389 -> IGTPW_4011
> >  * Piglit: piglit_4509 -> None
> >
> >  CI-20190529: 20190529
> >  CI_DRM_7826: 04d0421c09d70ea76da8a3685347740df9f84aaf @
> >git://anongit.freedesktop.org/gfx-ci/linux
> >  IGTPW_4011:
> >https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4011/index.html
> >  IGT_5389: 966c58649dee31bb5bf2fad92f75ffd365968b81 @
> >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_4011/index.html
> _______________________________________________
> igt-dev mailing list
> igt-dev@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/igt-dev
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

end of thread, other threads:[~2020-01-29 13:30 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-27 19:28 [Intel-gfx] [PATCH i-g-t] lib/color_encoding: Fix up support for XYUV format Bob Paauwe
2020-01-27 19:28 ` [igt-dev] " Bob Paauwe
2020-01-27 20:26 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2020-01-27 20:28 ` [igt-dev] ✗ GitLab.Pipeline: warning " Patchwork
2020-01-28 15:41 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2020-01-28 16:40   ` Paauwe, Bob J
2020-01-29 13:29     ` Shankar, Uma

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.