* [igt-dev] [PATCH] lib/igt_amd: return negative if PSR state debugfs open fails
@ 2022-04-04 16:19 David Zhang
2022-04-04 17:07 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: David Zhang @ 2022-04-04 16:19 UTC (permalink / raw)
To: igt-dev
[why & how]
The PSR state read helper should return an integer which is not
the same as PSR state enumeration item for the case of debugfs
interface opening fail. Currently it return false which is casted
to 0 that is the same as PSR_STATE0, this is incorrect.
Instead of returning 0, a negative (e.g. -1) value is returned
when debugfs interface of PSR state opening fails. And adding the
check of such negative value in amd_psr test case as well.
Cc: Rodrigo Siqueira <rodrigo.siqueira@amd.com>
Cc: Harry Wentland <harry.wentland@amd.com>
Cc: Leo Li <sunpeng.li@amd.com>
Cc: Aurabindo Pillai <aurabindo.pillai@amd.com>
Cc: Wayne Lin <wayne.lin@amd.com>
Signed-off-by: David Zhang <dingchen.zhang@amd.com>
---
lib/igt_amd.c | 2 +-
tests/amdgpu/amd_psr.c | 2 ++
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/lib/igt_amd.c b/lib/igt_amd.c
index 888da44a..664602da 100644
--- a/lib/igt_amd.c
+++ b/lib/igt_amd.c
@@ -1064,7 +1064,7 @@ int igt_amd_read_psr_state(int drm_fd, char *connector_name)
fd = igt_debugfs_connector_dir(drm_fd, connector_name, O_RDONLY);
if (fd < 0) {
igt_info("Couldn't open connector %s debugfs directory\n", connector_name);
- return false;
+ return -1;
}
ret = igt_debugfs_simple_read(fd, DEBUGFS_EDP_PSR_STATE, buf, sizeof(buf));
diff --git a/tests/amdgpu/amd_psr.c b/tests/amdgpu/amd_psr.c
index b9d8a53b..d21d41e3 100644
--- a/tests/amdgpu/amd_psr.c
+++ b/tests/amdgpu/amd_psr.c
@@ -179,6 +179,7 @@ static void run_check_psr(data_t *data, bool test_null_crtc) {
continue;
psr_state = igt_amd_read_psr_state(data->fd, output->name);
+ igt_fail_on_f(psr_state < 0, "Open PSR state debugfs failed\n");
igt_fail_on_f(psr_state < 1, "PSR was not enabled for connector %s\n", output->name);
igt_fail_on_f(psr_state == 0xff, "PSR is invalid for connector %s\n", output->name);
igt_fail_on_f(psr_state != 5, "PSR state is expected to be at 5 on a "
@@ -295,6 +296,7 @@ static void run_check_psr_su_mpo(data_t *data)
/* check PSR state */
if (i > PSR_SETTLE_DELAY * frame_rate) {
psr_state = igt_amd_read_psr_state(data->fd, data->output->name);
+ igt_fail_on_f(psr_state < 0, "Open PSR state debugfs failed\n");
igt_fail_on_f(psr_state == PSR_STATE0,
"PSR was not enabled for connector %s\n", data->output->name);
igt_fail_on_f(psr_state == PSR_STATE_INVALID,
--
2.25.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [igt-dev] ✗ GitLab.Pipeline: warning for lib/igt_amd: return negative if PSR state debugfs open fails
2022-04-04 16:19 [igt-dev] [PATCH] lib/igt_amd: return negative if PSR state debugfs open fails David Zhang
@ 2022-04-04 17:07 ` Patchwork
2022-04-04 19:29 ` Zhang, Dingchen (David)
2022-04-04 17:32 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
` (2 subsequent siblings)
3 siblings, 1 reply; 8+ messages in thread
From: Patchwork @ 2022-04-04 17:07 UTC (permalink / raw)
To: David Zhang; +Cc: igt-dev
== Series Details ==
Series: lib/igt_amd: return negative if PSR state debugfs open fails
URL : https://patchwork.freedesktop.org/series/102150/
State : warning
== Summary ==
Pipeline status: FAILED.
see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/550105 for the overview.
test:ninja-test-arm64 has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/20690552):
Ok: 22
Expected Fail: 3
Fail: 287
Unexpected Pass: 0
Skipped: 0
Timeout: 0
Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt
section_end:1649091792:step_script
section_start:1649091792:upload_artifacts_on_failure
Uploading artifacts for failed job
Uploading artifacts...
build: found 1712 matching files and directories
Uploading artifacts as "archive" to coordinator... 201 Created id=20690552 responseStatus=201 Created token=dHuLD6M5
section_end:1649091802:upload_artifacts_on_failure
section_start:1649091802:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1649091803:cleanup_file_variables
ERROR: Job failed: exit code 1
test:ninja-test-armhf has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/20690551):
Ok: 22
Expected Fail: 3
Fail: 287
Unexpected Pass: 0
Skipped: 0
Timeout: 0
Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt
section_end:1649091767:step_script
section_start:1649091767:upload_artifacts_on_failure
Uploading artifacts for failed job
Uploading artifacts...
build: found 1712 matching files and directories
Uploading artifacts as "archive" to coordinator... 201 Created id=20690551 responseStatus=201 Created token=2Yhfy_y9
section_end:1649091777:upload_artifacts_on_failure
section_start:1649091777:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1649091779:cleanup_file_variables
ERROR: Job failed: exit code 1
== Logs ==
For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/550105
^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_amd: return negative if PSR state debugfs open fails
2022-04-04 16:19 [igt-dev] [PATCH] lib/igt_amd: return negative if PSR state debugfs open fails David Zhang
2022-04-04 17:07 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork
@ 2022-04-04 17:32 ` Patchwork
2022-04-04 18:05 ` [igt-dev] [PATCH] " Rodrigo Siqueira Jordao
2022-04-04 22:33 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork
3 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2022-04-04 17:32 UTC (permalink / raw)
To: David Zhang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5034 bytes --]
== Series Details ==
Series: lib/igt_amd: return negative if PSR state debugfs open fails
URL : https://patchwork.freedesktop.org/series/102150/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_11449 -> IGTPW_6869
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/index.html
Participating hosts (47 -> 44)
------------------------------
Missing (3): fi-bsw-cyan fi-bdw-samus bat-dg1-5
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_6869:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@gem_exec_basic@basic@vecs1-lmem0:
- {bat-dg2-9}: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11449/bat-dg2-9/igt@gem_exec_basic@basic@vecs1-lmem0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/bat-dg2-9/igt@gem_exec_basic@basic@vecs1-lmem0.html
Known issues
------------
Here are the changes found in IGTPW_6869 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@amdgpu/amd_cs_nop@fork-gfx0:
- fi-bsw-n3050: NOTRUN -> [SKIP][3] ([fdo#109271]) +17 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/fi-bsw-n3050/igt@amdgpu/amd_cs_nop@fork-gfx0.html
* igt@i915_selftest@live@hangcheck:
- bat-dg1-6: NOTRUN -> [DMESG-FAIL][4] ([i915#4494] / [i915#4957])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/bat-dg1-6/igt@i915_selftest@live@hangcheck.html
* igt@kms_flip@basic-flip-vs-dpms@a-edp1:
- fi-tgl-u2: [PASS][5] -> [DMESG-WARN][6] ([i915#402]) +1 similar issue
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11449/fi-tgl-u2/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/fi-tgl-u2/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html
#### Possible fixes ####
* igt@i915_selftest@live@active:
- fi-bsw-n3050: [DMESG-FAIL][7] ([i915#2927]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11449/fi-bsw-n3050/igt@i915_selftest@live@active.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/fi-bsw-n3050/igt@i915_selftest@live@active.html
* igt@i915_selftest@live@gt_engines:
- bat-dg1-6: [INCOMPLETE][9] ([i915#4418]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11449/bat-dg1-6/igt@i915_selftest@live@gt_engines.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/bat-dg1-6/igt@i915_selftest@live@gt_engines.html
* igt@i915_selftest@live@migrate:
- fi-bsw-n3050: [DMESG-WARN][11] -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11449/fi-bsw-n3050/igt@i915_selftest@live@migrate.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/fi-bsw-n3050/igt@i915_selftest@live@migrate.html
* igt@kms_flip@basic-flip-vs-modeset@a-edp1:
- fi-tgl-u2: [DMESG-WARN][13] ([i915#402]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11449/fi-tgl-u2/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/fi-tgl-u2/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html
- {bat-adlp-6}: [DMESG-WARN][15] ([i915#3576]) -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11449/bat-adlp-6/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/bat-adlp-6/igt@kms_flip@basic-flip-vs-modeset@a-edp1.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#2927]: https://gitlab.freedesktop.org/drm/intel/issues/2927
[i915#3576]: https://gitlab.freedesktop.org/drm/intel/issues/3576
[i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4418]: https://gitlab.freedesktop.org/drm/intel/issues/4418
[i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494
[i915#4897]: https://gitlab.freedesktop.org/drm/intel/issues/4897
[i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_6409 -> IGTPW_6869
CI-20190529: 20190529
CI_DRM_11449: 7f954433d09e65d55ca3ba81e1eb5eced93d4203 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_6869: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/index.html
IGT_6409: 13700f4a3ffaac3a825fe59b014c7c6c48a0a5f1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/index.html
[-- Attachment #2: Type: text/html, Size: 5788 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH] lib/igt_amd: return negative if PSR state debugfs open fails
2022-04-04 16:19 [igt-dev] [PATCH] lib/igt_amd: return negative if PSR state debugfs open fails David Zhang
2022-04-04 17:07 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork
2022-04-04 17:32 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2022-04-04 18:05 ` Rodrigo Siqueira Jordao
2022-04-04 22:33 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork
3 siblings, 0 replies; 8+ messages in thread
From: Rodrigo Siqueira Jordao @ 2022-04-04 18:05 UTC (permalink / raw)
To: David Zhang, igt-dev
On 2022-04-04 12:19, David Zhang wrote:
> [why & how]
> The PSR state read helper should return an integer which is not
> the same as PSR state enumeration item for the case of debugfs
> interface opening fail. Currently it return false which is casted
> to 0 that is the same as PSR_STATE0, this is incorrect.
>
> Instead of returning 0, a negative (e.g. -1) value is returned
> when debugfs interface of PSR state opening fails. And adding the
> check of such negative value in amd_psr test case as well.
>
> Cc: Rodrigo Siqueira <rodrigo.siqueira@amd.com>
> Cc: Harry Wentland <harry.wentland@amd.com>
> Cc: Leo Li <sunpeng.li@amd.com>
> Cc: Aurabindo Pillai <aurabindo.pillai@amd.com>
> Cc: Wayne Lin <wayne.lin@amd.com>
>
> Signed-off-by: David Zhang <dingchen.zhang@amd.com>
> ---
> lib/igt_amd.c | 2 +-
> tests/amdgpu/amd_psr.c | 2 ++
> 2 files changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/lib/igt_amd.c b/lib/igt_amd.c
> index 888da44a..664602da 100644
> --- a/lib/igt_amd.c
> +++ b/lib/igt_amd.c
> @@ -1064,7 +1064,7 @@ int igt_amd_read_psr_state(int drm_fd, char *connector_name)
> fd = igt_debugfs_connector_dir(drm_fd, connector_name, O_RDONLY);
> if (fd < 0) {
> igt_info("Couldn't open connector %s debugfs directory\n", connector_name);
> - return false;
> + return -1;
> }
>
> ret = igt_debugfs_simple_read(fd, DEBUGFS_EDP_PSR_STATE, buf, sizeof(buf));
> diff --git a/tests/amdgpu/amd_psr.c b/tests/amdgpu/amd_psr.c
> index b9d8a53b..d21d41e3 100644
> --- a/tests/amdgpu/amd_psr.c
> +++ b/tests/amdgpu/amd_psr.c
> @@ -179,6 +179,7 @@ static void run_check_psr(data_t *data, bool test_null_crtc) {
> continue;
>
> psr_state = igt_amd_read_psr_state(data->fd, output->name);
> + igt_fail_on_f(psr_state < 0, "Open PSR state debugfs failed\n");
> igt_fail_on_f(psr_state < 1, "PSR was not enabled for connector %s\n", output->name);
> igt_fail_on_f(psr_state == 0xff, "PSR is invalid for connector %s\n", output->name);
> igt_fail_on_f(psr_state != 5, "PSR state is expected to be at 5 on a "
> @@ -295,6 +296,7 @@ static void run_check_psr_su_mpo(data_t *data)
> /* check PSR state */
> if (i > PSR_SETTLE_DELAY * frame_rate) {
> psr_state = igt_amd_read_psr_state(data->fd, data->output->name);
> + igt_fail_on_f(psr_state < 0, "Open PSR state debugfs failed\n");
> igt_fail_on_f(psr_state == PSR_STATE0,
> "PSR was not enabled for connector %s\n", data->output->name);
> igt_fail_on_f(psr_state == PSR_STATE_INVALID,
Reviewed-by: Rodrigo Siqueria <Rodrigo.Siqueira@amd.com>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] ✗ GitLab.Pipeline: warning for lib/igt_amd: return negative if PSR state debugfs open fails
2022-04-04 17:07 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork
@ 2022-04-04 19:29 ` Zhang, Dingchen (David)
2022-04-04 19:52 ` Vudum, Lakshminarayana
0 siblings, 1 reply; 8+ messages in thread
From: Zhang, Dingchen (David) @ 2022-04-04 19:29 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org, Vudum, Lakshminarayana
[-- Attachment #1: Type: text/plain, Size: 4812 bytes --]
[AMD Official Use Only]
Hi Lakshmi,
I think this is a negative-false as well which hits the ARM CI failure. Could you help take a look to clean the gitlab.pipeline warning for below patch?
https://patchwork.freedesktop.org/series/102150/
Thanks
David
________________________________
From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Monday, April 4, 2022 1:07 PM
To: Zhang, Dingchen (David) <Dingchen.Zhang@amd.com>
Cc: igt-dev@lists.freedesktop.org <igt-dev@lists.freedesktop.org>
Subject: ✗ GitLab.Pipeline: warning for lib/igt_amd: return negative if PSR state debugfs open fails
== Series Details ==
Series: lib/igt_amd: return negative if PSR state debugfs open fails
URL : https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fpatchwork.freedesktop.org%2Fseries%2F102150%2F&data=04%7C01%7Cdingchen.zhang%40amd.com%7Caded41f6ea5e40831e6c08da165d9840%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846889543704031%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=cDT1%2B9RcwnXFlvQ7C2X9KPY7tOpAwIU5JIfiqXTxWNQ%3D&reserved=0
State : warning
== Summary ==
Pipeline status: FAILED.
see https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgitlab.freedesktop.org%2Fgfx-ci%2Figt-ci-tags%2F-%2Fpipelines%2F550105&data=04%7C01%7Cdingchen.zhang%40amd.com%7Caded41f6ea5e40831e6c08da165d9840%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846889543704031%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=gKNsjzBiakwaASbPdPH%2F0zLm9HumwfbxHzWjor25CfU%3D&reserved=0 for the overview.
test:ninja-test-arm64 has failed (https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgitlab.freedesktop.org%2Fgfx-ci%2Figt-ci-tags%2F-%2Fjobs%2F20690552&data=04%7C01%7Cdingchen.zhang%40amd.com%7Caded41f6ea5e40831e6c08da165d9840%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846889543704031%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=qcZfuljXRkF8MaLbwi%2Brac%2F7i%2FNMVUcsJpjd0yvJ%2FTE%3D&reserved=0):
Ok: 22
Expected Fail: 3
Fail: 287
Unexpected Pass: 0
Skipped: 0
Timeout: 0
Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt
section_end:1649091792:step_script
section_start:1649091792:upload_artifacts_on_failure
Uploading artifacts for failed job
Uploading artifacts...
build: found 1712 matching files and directories
Uploading artifacts as "archive" to coordinator... 201 Created id=20690552 responseStatus=201 Created token=dHuLD6M5
section_end:1649091802:upload_artifacts_on_failure
section_start:1649091802:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1649091803:cleanup_file_variables
ERROR: Job failed: exit code 1
test:ninja-test-armhf has failed (https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgitlab.freedesktop.org%2Fgfx-ci%2Figt-ci-tags%2F-%2Fjobs%2F20690551&data=04%7C01%7Cdingchen.zhang%40amd.com%7Caded41f6ea5e40831e6c08da165d9840%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846889543704031%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=hFpmQ52%2BVC0yChBF3UqSGti28283A4Y3hmCOMJXeWuw%3D&reserved=0):
Ok: 22
Expected Fail: 3
Fail: 287
Unexpected Pass: 0
Skipped: 0
Timeout: 0
Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt
section_end:1649091767:step_script
section_start:1649091767:upload_artifacts_on_failure
Uploading artifacts for failed job
Uploading artifacts...
build: found 1712 matching files and directories
Uploading artifacts as "archive" to coordinator... 201 Created id=20690551 responseStatus=201 Created token=2Yhfy_y9
section_end:1649091777:upload_artifacts_on_failure
section_start:1649091777:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1649091779:cleanup_file_variables
ERROR: Job failed: exit code 1
== Logs ==
For more details see: https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgitlab.freedesktop.org%2Fgfx-ci%2Figt-ci-tags%2F-%2Fpipelines%2F550105&data=04%7C01%7Cdingchen.zhang%40amd.com%7Caded41f6ea5e40831e6c08da165d9840%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846889543704031%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=gKNsjzBiakwaASbPdPH%2F0zLm9HumwfbxHzWjor25CfU%3D&reserved=0
[-- Attachment #2: Type: text/html, Size: 10073 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] ✗ GitLab.Pipeline: warning for lib/igt_amd: return negative if PSR state debugfs open fails
2022-04-04 19:29 ` Zhang, Dingchen (David)
@ 2022-04-04 19:52 ` Vudum, Lakshminarayana
2022-04-04 22:02 ` Zhang, Dingchen (David)
0 siblings, 1 reply; 8+ messages in thread
From: Vudum, Lakshminarayana @ 2022-04-04 19:52 UTC (permalink / raw)
To: Zhang, Dingchen (David), igt-dev@lists.freedesktop.org
[-- Attachment #1: Type: text/plain, Size: 5320 bytes --]
David, I don’t see any regressions over here.
Lakshmi.
From: Zhang, Dingchen (David) <Dingchen.Zhang@amd.com>
Sent: Monday, April 4, 2022 12:29 PM
To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Subject: Re: ✗ GitLab.Pipeline: warning for lib/igt_amd: return negative if PSR state debugfs open fails
[AMD Official Use Only]
Hi Lakshmi,
I think this is a negative-false as well which hits the ARM CI failure. Could you help take a look to clean the gitlab.pipeline warning for below patch?
https://patchwork.freedesktop.org/series/102150/
Thanks
David
________________________________
From: Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>>
Sent: Monday, April 4, 2022 1:07 PM
To: Zhang, Dingchen (David) <Dingchen.Zhang@amd.com<mailto:Dingchen.Zhang@amd.com>>
Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org> <igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>>
Subject: ✗ GitLab.Pipeline: warning for lib/igt_amd: return negative if PSR state debugfs open fails
== Series Details ==
Series: lib/igt_amd: return negative if PSR state debugfs open fails
URL : https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fpatchwork.freedesktop.org%2Fseries%2F102150%2F&data=04%7C01%7Cdingchen.zhang%40amd.com%7Caded41f6ea5e40831e6c08da165d9840%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846889543704031%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=cDT1%2B9RcwnXFlvQ7C2X9KPY7tOpAwIU5JIfiqXTxWNQ%3D&reserved=0
State : warning
== Summary ==
Pipeline status: FAILED.
see https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgitlab.freedesktop.org%2Fgfx-ci%2Figt-ci-tags%2F-%2Fpipelines%2F550105&data=04%7C01%7Cdingchen.zhang%40amd.com%7Caded41f6ea5e40831e6c08da165d9840%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846889543704031%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=gKNsjzBiakwaASbPdPH%2F0zLm9HumwfbxHzWjor25CfU%3D&reserved=0 for the overview.
test:ninja-test-arm64 has failed (https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgitlab.freedesktop.org%2Fgfx-ci%2Figt-ci-tags%2F-%2Fjobs%2F20690552&data=04%7C01%7Cdingchen.zhang%40amd.com%7Caded41f6ea5e40831e6c08da165d9840%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846889543704031%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=qcZfuljXRkF8MaLbwi%2Brac%2F7i%2FNMVUcsJpjd0yvJ%2FTE%3D&reserved=0):
Ok: 22
Expected Fail: 3
Fail: 287
Unexpected Pass: 0
Skipped: 0
Timeout: 0
Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt
section_end:1649091792:step_script
section_start:1649091792:upload_artifacts_on_failure
Uploading artifacts for failed job
Uploading artifacts...
build: found 1712 matching files and directories
Uploading artifacts as "archive" to coordinator... 201 Created id=20690552 responseStatus=201 Created token=dHuLD6M5
section_end:1649091802:upload_artifacts_on_failure
section_start:1649091802:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1649091803:cleanup_file_variables
ERROR: Job failed: exit code 1
test:ninja-test-armhf has failed (https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgitlab.freedesktop.org%2Fgfx-ci%2Figt-ci-tags%2F-%2Fjobs%2F20690551&data=04%7C01%7Cdingchen.zhang%40amd.com%7Caded41f6ea5e40831e6c08da165d9840%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846889543704031%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=hFpmQ52%2BVC0yChBF3UqSGti28283A4Y3hmCOMJXeWuw%3D&reserved=0):
Ok: 22
Expected Fail: 3
Fail: 287
Unexpected Pass: 0
Skipped: 0
Timeout: 0
Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt
section_end:1649091767:step_script
section_start:1649091767:upload_artifacts_on_failure
Uploading artifacts for failed job
Uploading artifacts...
build: found 1712 matching files and directories
Uploading artifacts as "archive" to coordinator... 201 Created id=20690551 responseStatus=201 Created token=2Yhfy_y9
section_end:1649091777:upload_artifacts_on_failure
section_start:1649091777:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1649091779:cleanup_file_variables
ERROR: Job failed: exit code 1
== Logs ==
For more details see: https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgitlab.freedesktop.org%2Fgfx-ci%2Figt-ci-tags%2F-%2Fpipelines%2F550105&data=04%7C01%7Cdingchen.zhang%40amd.com%7Caded41f6ea5e40831e6c08da165d9840%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846889543704031%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=gKNsjzBiakwaASbPdPH%2F0zLm9HumwfbxHzWjor25CfU%3D&reserved=0
[-- Attachment #2: Type: text/html, Size: 12711 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] ✗ GitLab.Pipeline: warning for lib/igt_amd: return negative if PSR state debugfs open fails
2022-04-04 19:52 ` Vudum, Lakshminarayana
@ 2022-04-04 22:02 ` Zhang, Dingchen (David)
0 siblings, 0 replies; 8+ messages in thread
From: Zhang, Dingchen (David) @ 2022-04-04 22:02 UTC (permalink / raw)
To: Vudum, Lakshminarayana, igt-dev@lists.freedesktop.org
[-- Attachment #1.1: Type: text/plain, Size: 8610 bytes --]
[AMD Official Use Only]
Hi Lakshmi,
Thanks for the double confirmation. What I saw is the warning hit due to failure on ARM as below. If that does not matter, then please ignore my reply
[cid:b5e2002f-8b7f-4cbb-b657-05cdd064aff9]
Thanks
David
________________________________
From: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Sent: Monday, April 4, 2022 3:52 PM
To: Zhang, Dingchen (David) <Dingchen.Zhang@amd.com>; igt-dev@lists.freedesktop.org <igt-dev@lists.freedesktop.org>
Subject: RE: ✗ GitLab.Pipeline: warning for lib/igt_amd: return negative if PSR state debugfs open fails
[AMD Official Use Only]
David, I don’t see any regressions over here.
Lakshmi.
From: Zhang, Dingchen (David) <Dingchen.Zhang@amd.com>
Sent: Monday, April 4, 2022 12:29 PM
To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Subject: Re: ✗ GitLab.Pipeline: warning for lib/igt_amd: return negative if PSR state debugfs open fails
[AMD Official Use Only]
Hi Lakshmi,
I think this is a negative-false as well which hits the ARM CI failure. Could you help take a look to clean the gitlab.pipeline warning for below patch?
https://patchwork.freedesktop.org/series/102150/<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fpatchwork.freedesktop.org%2Fseries%2F102150%2F&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cc096c4d85cfb4328f05208da1674996c%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846987286829071%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=lybRK8cHRlVpzrrL%2BG3JJ%2FbvAnjNt%2FmtdWRChl%2FV%2FiU%3D&reserved=0>
Thanks
David
________________________________
From: Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>>
Sent: Monday, April 4, 2022 1:07 PM
To: Zhang, Dingchen (David) <Dingchen.Zhang@amd.com<mailto:Dingchen.Zhang@amd.com>>
Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org> <igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>>
Subject: ✗ GitLab.Pipeline: warning for lib/igt_amd: return negative if PSR state debugfs open fails
== Series Details ==
Series: lib/igt_amd: return negative if PSR state debugfs open fails
URL : https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fpatchwork.freedesktop.org%2Fseries%2F102150%2F&data=04%7C01%7Cdingchen.zhang%40amd.com%7Caded41f6ea5e40831e6c08da165d9840%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846889543704031%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=cDT1%2B9RcwnXFlvQ7C2X9KPY7tOpAwIU5JIfiqXTxWNQ%3D&reserved=0<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fpatchwork.freedesktop.org%2Fseries%2F102150%2F&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cc096c4d85cfb4328f05208da1674996c%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846987286829071%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=lybRK8cHRlVpzrrL%2BG3JJ%2FbvAnjNt%2FmtdWRChl%2FV%2FiU%3D&reserved=0>
State : warning
== Summary ==
Pipeline status: FAILED.
see https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgitlab.freedesktop.org%2Fgfx-ci%2Figt-ci-tags%2F-%2Fpipelines%2F550105&data=04%7C01%7Cdingchen.zhang%40amd.com%7Caded41f6ea5e40831e6c08da165d9840%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846889543704031%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=gKNsjzBiakwaASbPdPH%2F0zLm9HumwfbxHzWjor25CfU%3D&reserved=0<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgitlab.freedesktop.org%2Fgfx-ci%2Figt-ci-tags%2F-%2Fpipelines%2F550105&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cc096c4d85cfb4328f05208da1674996c%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846987286829071%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=kypSf5jifNrSvCCYRLGDLlWPP%2BCrTevYK3%2F6aihfnjk%3D&reserved=0> for the overview.
test:ninja-test-arm64 has failed (https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgitlab.freedesktop.org%2Fgfx-ci%2Figt-ci-tags%2F-%2Fjobs%2F20690552&data=04%7C01%7Cdingchen.zhang%40amd.com%7Caded41f6ea5e40831e6c08da165d9840%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846889543704031%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=qcZfuljXRkF8MaLbwi%2Brac%2F7i%2FNMVUcsJpjd0yvJ%2FTE%3D&reserved=0<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgitlab.freedesktop.org%2Fgfx-ci%2Figt-ci-tags%2F-%2Fjobs%2F20690552&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cc096c4d85cfb4328f05208da1674996c%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846987286829071%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=aQYXi4PBxiLbX%2FoOWxGZp1EZJQejsJNdqgGElBI1YJw%3D&reserved=0>):
Ok: 22
Expected Fail: 3
Fail: 287
Unexpected Pass: 0
Skipped: 0
Timeout: 0
Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt
section_end:1649091792:step_script
section_start:1649091792:upload_artifacts_on_failure
Uploading artifacts for failed job
Uploading artifacts...
build: found 1712 matching files and directories
Uploading artifacts as "archive" to coordinator... 201 Created id=20690552 responseStatus=201 Created token=dHuLD6M5
section_end:1649091802:upload_artifacts_on_failure
section_start:1649091802:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1649091803:cleanup_file_variables
ERROR: Job failed: exit code 1
test:ninja-test-armhf has failed (https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgitlab.freedesktop.org%2Fgfx-ci%2Figt-ci-tags%2F-%2Fjobs%2F20690551&data=04%7C01%7Cdingchen.zhang%40amd.com%7Caded41f6ea5e40831e6c08da165d9840%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846889543704031%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=hFpmQ52%2BVC0yChBF3UqSGti28283A4Y3hmCOMJXeWuw%3D&reserved=0<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgitlab.freedesktop.org%2Fgfx-ci%2Figt-ci-tags%2F-%2Fjobs%2F20690551&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cc096c4d85cfb4328f05208da1674996c%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846987286829071%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=K7ypvr4tElfOKLsx7OeBuR36RIr6lerONZTitSjIhQ0%3D&reserved=0>):
Ok: 22
Expected Fail: 3
Fail: 287
Unexpected Pass: 0
Skipped: 0
Timeout: 0
Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt
section_end:1649091767:step_script
section_start:1649091767:upload_artifacts_on_failure
Uploading artifacts for failed job
Uploading artifacts...
build: found 1712 matching files and directories
Uploading artifacts as "archive" to coordinator... 201 Created id=20690551 responseStatus=201 Created token=2Yhfy_y9
section_end:1649091777:upload_artifacts_on_failure
section_start:1649091777:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1649091779:cleanup_file_variables
ERROR: Job failed: exit code 1
== Logs ==
For more details see: https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgitlab.freedesktop.org%2Fgfx-ci%2Figt-ci-tags%2F-%2Fpipelines%2F550105&data=04%7C01%7Cdingchen.zhang%40amd.com%7Caded41f6ea5e40831e6c08da165d9840%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846889543704031%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=gKNsjzBiakwaASbPdPH%2F0zLm9HumwfbxHzWjor25CfU%3D&reserved=0<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgitlab.freedesktop.org%2Fgfx-ci%2Figt-ci-tags%2F-%2Fpipelines%2F550105&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cc096c4d85cfb4328f05208da1674996c%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846987286829071%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=kypSf5jifNrSvCCYRLGDLlWPP%2BCrTevYK3%2F6aihfnjk%3D&reserved=0>
[-- Attachment #1.2: Type: text/html, Size: 15792 bytes --]
[-- Attachment #2: image.png --]
[-- Type: image/png, Size: 83285 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for lib/igt_amd: return negative if PSR state debugfs open fails
2022-04-04 16:19 [igt-dev] [PATCH] lib/igt_amd: return negative if PSR state debugfs open fails David Zhang
` (2 preceding siblings ...)
2022-04-04 18:05 ` [igt-dev] [PATCH] " Rodrigo Siqueira Jordao
@ 2022-04-04 22:33 ` Patchwork
3 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2022-04-04 22:33 UTC (permalink / raw)
To: Zhang, Dingchen (David); +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 30274 bytes --]
== Series Details ==
Series: lib/igt_amd: return negative if PSR state debugfs open fails
URL : https://patchwork.freedesktop.org/series/102150/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_11449_full -> IGTPW_6869_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/index.html
Participating hosts (13 -> 9)
------------------------------
Missing (4): pig-skl-6260u shard-skl pig-kbl-iris pig-glk-j5005
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_6869_full:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@i915_suspend@system-suspend-without-i915}:
- shard-snb: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11449/shard-snb2/igt@i915_suspend@system-suspend-without-i915.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-snb2/igt@i915_suspend@system-suspend-without-i915.html
Known issues
------------
Here are the changes found in IGTPW_6869_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@feature_discovery@display-4x:
- shard-tglb: NOTRUN -> [SKIP][3] ([i915#1839])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb2/igt@feature_discovery@display-4x.html
* igt@gem_ccs@block-copy-inplace:
- shard-iclb: NOTRUN -> [SKIP][4] ([i915#5327])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb1/igt@gem_ccs@block-copy-inplace.html
- shard-tglb: NOTRUN -> [SKIP][5] ([i915#3555] / [i915#5325])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb1/igt@gem_ccs@block-copy-inplace.html
* igt@gem_create@create-massive:
- shard-apl: NOTRUN -> [DMESG-WARN][6] ([i915#4991])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-apl6/igt@gem_create@create-massive.html
* igt@gem_ctx_persistence@engines-mixed:
- shard-snb: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#1099]) +3 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-snb2/igt@gem_ctx_persistence@engines-mixed.html
* igt@gem_ctx_persistence@many-contexts:
- shard-tglb: [PASS][8] -> [FAIL][9] ([i915#2410])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11449/shard-tglb6/igt@gem_ctx_persistence@many-contexts.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb1/igt@gem_ctx_persistence@many-contexts.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-iclb: NOTRUN -> [SKIP][10] ([i915#4525])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb8/igt@gem_exec_balancer@parallel-keep-submit-fence.html
- shard-tglb: NOTRUN -> [DMESG-WARN][11] ([i915#5076])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb3/igt@gem_exec_balancer@parallel-keep-submit-fence.html
- shard-kbl: NOTRUN -> [DMESG-WARN][12] ([i915#5076])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-kbl4/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_fair@basic-deadline:
- shard-kbl: [PASS][13] -> [FAIL][14] ([i915#2846])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11449/shard-kbl4/igt@gem_exec_fair@basic-deadline.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-kbl6/igt@gem_exec_fair@basic-deadline.html
- shard-glk: [PASS][15] -> [FAIL][16] ([i915#2846])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11449/shard-glk4/igt@gem_exec_fair@basic-deadline.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-glk5/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-kbl: NOTRUN -> [FAIL][17] ([i915#2842])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-kbl7/igt@gem_exec_fair@basic-none-solo@rcs0.html
- shard-apl: [PASS][18] -> [FAIL][19] ([i915#2842])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11449/shard-apl8/igt@gem_exec_fair@basic-none-solo@rcs0.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_params@no-blt:
- shard-tglb: NOTRUN -> [SKIP][20] ([fdo#109283])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb1/igt@gem_exec_params@no-blt.html
* igt@gem_exec_params@secure-non-master:
- shard-tglb: NOTRUN -> [SKIP][21] ([fdo#112283])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb5/igt@gem_exec_params@secure-non-master.html
- shard-iclb: NOTRUN -> [SKIP][22] ([fdo#112283])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb5/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_suspend@basic-s3@smem:
- shard-kbl: [PASS][23] -> [DMESG-WARN][24] ([i915#180]) +2 similar issues
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11449/shard-kbl7/igt@gem_exec_suspend@basic-s3@smem.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-kbl6/igt@gem_exec_suspend@basic-s3@smem.html
* igt@gem_exec_whisper@basic-queues-forked-all:
- shard-iclb: [PASS][25] -> [INCOMPLETE][26] ([i915#1895] / [i915#5304])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11449/shard-iclb4/igt@gem_exec_whisper@basic-queues-forked-all.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb4/igt@gem_exec_whisper@basic-queues-forked-all.html
* igt@gem_huc_copy@huc-copy:
- shard-tglb: NOTRUN -> [SKIP][27] ([i915#2190])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb7/igt@gem_huc_copy@huc-copy.html
- shard-glk: NOTRUN -> [SKIP][28] ([fdo#109271] / [i915#2190])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-glk2/igt@gem_huc_copy@huc-copy.html
- shard-iclb: NOTRUN -> [SKIP][29] ([i915#2190])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb2/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-random:
- shard-iclb: NOTRUN -> [SKIP][30] ([i915#4613]) +1 similar issue
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb8/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-apl: NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#4613])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-apl8/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-kbl: NOTRUN -> [SKIP][32] ([fdo#109271] / [i915#4613]) +3 similar issues
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-kbl1/igt@gem_lmem_swapping@heavy-verify-random.html
- shard-tglb: NOTRUN -> [SKIP][33] ([i915#4613]) +2 similar issues
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb6/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_media_vme:
- shard-tglb: NOTRUN -> [SKIP][34] ([i915#284])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb3/igt@gem_media_vme.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-tglb: NOTRUN -> [SKIP][35] ([i915#4270]) +2 similar issues
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb7/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-iclb: NOTRUN -> [SKIP][36] ([i915#4270]) +1 similar issue
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb8/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
- shard-kbl: NOTRUN -> [SKIP][37] ([fdo#109271]) +313 similar issues
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-kbl3/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
- shard-iclb: NOTRUN -> [SKIP][38] ([i915#768]) +1 similar issue
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb1/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
* igt@gem_softpin@allocator-evict-all-engines:
- shard-glk: [PASS][39] -> [FAIL][40] ([i915#4171])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11449/shard-glk7/igt@gem_softpin@allocator-evict-all-engines.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-glk7/igt@gem_softpin@allocator-evict-all-engines.html
* igt@gem_userptr_blits@access-control:
- shard-tglb: NOTRUN -> [SKIP][41] ([i915#3297]) +1 similar issue
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb1/igt@gem_userptr_blits@access-control.html
- shard-iclb: NOTRUN -> [SKIP][42] ([i915#3297]) +1 similar issue
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb3/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-kbl: NOTRUN -> [SKIP][43] ([fdo#109271] / [i915#3323])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-kbl4/igt@gem_userptr_blits@dmabuf-sync.html
- shard-tglb: NOTRUN -> [SKIP][44] ([i915#3323])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb2/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@input-checking:
- shard-tglb: NOTRUN -> [DMESG-WARN][45] ([i915#4991])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb6/igt@gem_userptr_blits@input-checking.html
- shard-iclb: NOTRUN -> [DMESG-WARN][46] ([i915#4991])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb4/igt@gem_userptr_blits@input-checking.html
* igt@gen9_exec_parse@allowed-single:
- shard-tglb: NOTRUN -> [SKIP][47] ([i915#2527] / [i915#2856]) +3 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb5/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@unaligned-access:
- shard-iclb: NOTRUN -> [SKIP][48] ([i915#2856]) +2 similar issues
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb6/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_pm_dc@dc3co-vpb-simulation:
- shard-tglb: NOTRUN -> [SKIP][49] ([i915#1904])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb6/igt@i915_pm_dc@dc3co-vpb-simulation.html
- shard-glk: NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#658])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-glk8/igt@i915_pm_dc@dc3co-vpb-simulation.html
- shard-apl: NOTRUN -> [SKIP][51] ([fdo#109271] / [i915#658])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-apl1/igt@i915_pm_dc@dc3co-vpb-simulation.html
- shard-iclb: NOTRUN -> [SKIP][52] ([i915#658])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb4/igt@i915_pm_dc@dc3co-vpb-simulation.html
* igt@i915_pm_dc@dc9-dpms:
- shard-tglb: NOTRUN -> [SKIP][53] ([i915#4281])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb3/igt@i915_pm_dc@dc9-dpms.html
- shard-iclb: NOTRUN -> [SKIP][54] ([i915#4281])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb3/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-tglb: NOTRUN -> [SKIP][55] ([fdo#109303])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb6/igt@i915_query@query-topology-known-pci-ids.html
- shard-iclb: NOTRUN -> [SKIP][56] ([fdo#109303])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb7/igt@i915_query@query-topology-known-pci-ids.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-iclb: NOTRUN -> [SKIP][57] ([i915#5286]) +3 similar issues
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb2/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-tglb: NOTRUN -> [SKIP][58] ([i915#5286]) +3 similar issues
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-tglb: NOTRUN -> [SKIP][59] ([fdo#111614]) +2 similar issues
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb5/igt@kms_big_fb@linear-8bpp-rotate-90.html
- shard-iclb: NOTRUN -> [SKIP][60] ([fdo#110725] / [fdo#111614]) +1 similar issue
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb2/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-tglb: [PASS][61] -> [FAIL][62] ([i915#3743])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11449/shard-tglb6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
- shard-glk: [PASS][63] -> [DMESG-WARN][64] ([i915#118]) +2 similar issues
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11449/shard-glk5/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-glk7/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-kbl: NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#3777]) +5 similar issues
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-kbl4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-apl: NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#3777]) +1 similar issue
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-apl8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
- shard-tglb: NOTRUN -> [SKIP][67] ([fdo#111615]) +4 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb5/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-iclb: NOTRUN -> [SKIP][68] ([fdo#110723]) +2 similar issues
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_joiner@2x-modeset:
- shard-iclb: NOTRUN -> [SKIP][69] ([i915#2705])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb5/igt@kms_big_joiner@2x-modeset.html
- shard-tglb: NOTRUN -> [SKIP][70] ([i915#2705])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb1/igt@kms_big_joiner@2x-modeset.html
* igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc:
- shard-iclb: NOTRUN -> [SKIP][71] ([fdo#109278] / [i915#3886]) +5 similar issues
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb7/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
- shard-glk: NOTRUN -> [SKIP][72] ([fdo#109271] / [i915#3886]) +5 similar issues
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-glk9/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
- shard-tglb: NOTRUN -> [SKIP][73] ([i915#3689] / [i915#3886]) +4 similar issues
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb3/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
- shard-apl: NOTRUN -> [SKIP][74] ([fdo#109271] / [i915#3886]) +10 similar issues
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-apl6/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc:
- shard-kbl: NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#3886]) +17 similar issues
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-kbl4/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-d-bad-rotation-90-yf_tiled_ccs:
- shard-tglb: NOTRUN -> [SKIP][76] ([fdo#111615] / [i915#3689]) +8 similar issues
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb1/igt@kms_ccs@pipe-d-bad-rotation-90-yf_tiled_ccs.html
* igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs:
- shard-tglb: NOTRUN -> [SKIP][77] ([i915#3689]) +4 similar issues
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb2/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html
* igt@kms_chamelium@dp-hpd-fast:
- shard-snb: NOTRUN -> [SKIP][78] ([fdo#109271] / [fdo#111827]) +9 similar issues
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-snb2/igt@kms_chamelium@dp-hpd-fast.html
* igt@kms_chamelium@hdmi-audio:
- shard-iclb: NOTRUN -> [SKIP][79] ([fdo#109284] / [fdo#111827]) +6 similar issues
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb7/igt@kms_chamelium@hdmi-audio.html
* igt@kms_chamelium@hdmi-edid-read:
- shard-tglb: NOTRUN -> [SKIP][80] ([fdo#109284] / [fdo#111827]) +12 similar issues
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb1/igt@kms_chamelium@hdmi-edid-read.html
* igt@kms_chamelium@hdmi-hpd:
- shard-glk: NOTRUN -> [SKIP][81] ([fdo#109271] / [fdo#111827]) +3 similar issues
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-glk5/igt@kms_chamelium@hdmi-hpd.html
* igt@kms_color@pipe-d-ctm-red-to-blue:
- shard-iclb: NOTRUN -> [SKIP][82] ([fdo#109278] / [i915#1149])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb4/igt@kms_color@pipe-d-ctm-red-to-blue.html
* igt@kms_color_chamelium@pipe-a-ctm-blue-to-red:
- shard-kbl: NOTRUN -> [SKIP][83] ([fdo#109271] / [fdo#111827]) +21 similar issues
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-kbl3/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html
* igt@kms_color_chamelium@pipe-b-ctm-0-5:
- shard-apl: NOTRUN -> [SKIP][84] ([fdo#109271] / [fdo#111827]) +12 similar issues
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-apl2/igt@kms_color_chamelium@pipe-b-ctm-0-5.html
* igt@kms_color_chamelium@pipe-d-gamma:
- shard-iclb: NOTRUN -> [SKIP][85] ([fdo#109278] / [fdo#109284] / [fdo#111827])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb4/igt@kms_color_chamelium@pipe-d-gamma.html
* igt@kms_content_protection@atomic:
- shard-kbl: NOTRUN -> [TIMEOUT][86] ([i915#1319])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-kbl3/igt@kms_content_protection@atomic.html
- shard-iclb: NOTRUN -> [SKIP][87] ([fdo#109300] / [fdo#111066])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb3/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-tglb: NOTRUN -> [SKIP][88] ([i915#3116] / [i915#3299]) +1 similar issue
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb1/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-iclb: NOTRUN -> [SKIP][89] ([i915#3116])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb5/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic:
- shard-apl: NOTRUN -> [TIMEOUT][90] ([i915#1319]) +1 similar issue
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-apl8/igt@kms_content_protection@lic.html
* igt@kms_content_protection@mei_interface:
- shard-tglb: NOTRUN -> [SKIP][91] ([i915#1063])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb2/igt@kms_content_protection@mei_interface.html
* igt@kms_content_protection@uevent:
- shard-kbl: NOTRUN -> [FAIL][92] ([i915#2105])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-kbl6/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen:
- shard-iclb: NOTRUN -> [SKIP][93] ([fdo#109278] / [fdo#109279]) +1 similar issue
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb4/igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen.html
* igt@kms_cursor_crc@pipe-c-cursor-512x512-random:
- shard-tglb: NOTRUN -> [SKIP][94] ([fdo#109279] / [i915#3359]) +4 similar issues
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb5/igt@kms_cursor_crc@pipe-c-cursor-512x512-random.html
* igt@kms_cursor_crc@pipe-d-cursor-32x32-onscreen:
- shard-iclb: NOTRUN -> [SKIP][95] ([fdo#109278]) +22 similar issues
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb7/igt@kms_cursor_crc@pipe-d-cursor-32x32-onscreen.html
- shard-tglb: NOTRUN -> [SKIP][96] ([i915#3319]) +1 similar issue
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb7/igt@kms_cursor_crc@pipe-d-cursor-32x32-onscreen.html
* igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement:
- shard-tglb: NOTRUN -> [SKIP][97] ([i915#3359]) +3 similar issues
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb1/igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement.html
* igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge:
- shard-snb: NOTRUN -> [SKIP][98] ([fdo#109271]) +192 similar issues
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-snb5/igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-iclb: NOTRUN -> [SKIP][99] ([fdo#109274] / [fdo#109278]) +4 similar issues
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: NOTRUN -> [FAIL][100] ([i915#2346])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@pipe-d-single-bo:
- shard-kbl: NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#533])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-kbl4/igt@kms_cursor_legacy@pipe-d-single-bo.html
* igt@kms_draw_crc@draw-method-rgb565-mmap-cpu-4tiled:
- shard-tglb: NOTRUN -> [SKIP][102] ([i915#5287]) +2 similar issues
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb5/igt@kms_draw_crc@draw-method-rgb565-mmap-cpu-4tiled.html
- shard-iclb: NOTRUN -> [SKIP][103] ([i915#5287])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb5/igt@kms_draw_crc@draw-method-rgb565-mmap-cpu-4tiled.html
* igt@kms_dsc@xrgb8888-dsc-compression:
- shard-tglb: NOTRUN -> [SKIP][104] ([i915#3828])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb2/igt@kms_dsc@xrgb8888-dsc-compression.html
- shard-iclb: NOTRUN -> [SKIP][105] ([i915#3828])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb8/igt@kms_dsc@xrgb8888-dsc-compression.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglb: NOTRUN -> [SKIP][106] ([fdo#109274] / [fdo#111825]) +9 similar issues
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb2/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][107] -> [FAIL][108] ([i915#2122]) +1 similar issue
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11449/shard-glk8/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-hdmi-a1-hdmi-a2.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-glk5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
- shard-kbl: NOTRUN -> [DMESG-WARN][109] ([i915#180]) +4 similar issues
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-kbl1/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-iclb: [PASS][110] -> [SKIP][111] ([i915#3701])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11449/shard-iclb3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-glk: [PASS][112] -> [FAIL][113] ([i915#4911])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11449/shard-glk4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-glk8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-tglb: NOTRUN -> [SKIP][114] ([fdo#109285])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb2/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt:
- shard-tglb: NOTRUN -> [SKIP][115] ([fdo#109280] / [fdo#111825]) +34 similar issues
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
- shard-iclb: NOTRUN -> [SKIP][116] ([fdo#109280]) +20 similar issues
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_hdr@static-toggle-dpms:
- shard-tglb: NOTRUN -> [SKIP][117] ([i915#3555]) +2 similar issues
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb7/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_invalid_mode@clock-too-high:
- shard-tglb: NOTRUN -> [SKIP][118] ([i915#4278])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb7/igt@kms_invalid_mode@clock-too-high.html
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
- shard-iclb: NOTRUN -> [SKIP][119] ([fdo#109289])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb6/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes:
- shard-apl: [PASS][120] -> [DMESG-WARN][121] ([i915#180]) +4 similar issues
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11449/shard-apl1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-apl2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
* igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
- shard-apl: NOTRUN -> [FAIL][122] ([fdo#108145] / [i915#265])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-apl7/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@pipe-b-alpha-basic:
- shard-kbl: NOTRUN -> [FAIL][123] ([fdo#108145] / [i915#265]) +1 similar issue
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-kbl4/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html
* igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
- shard-apl: NOTRUN -> [FAIL][124] ([i915#265]) +2 similar issues
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-apl1/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:
- shard-kbl: NOTRUN -> [FAIL][125] ([i915#265]) +2 similar issues
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-kbl4/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html
* igt@kms_plane_lowres@pipe-b-tiling-yf:
- shard-tglb: NOTRUN -> [SKIP][126] ([fdo#111615] / [fdo#112054]) +1 similar issue
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb5/igt@kms_plane_lowres@pipe-b-tiling-yf.html
* igt@kms_plane_lowres@pipe-c-tiling-x:
- shard-tglb: NOTRUN -> [SKIP][127] ([i915#3536])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-tglb5/igt@kms_plane_lowres@pipe-c-tiling-x.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-iclb: NOTRUN -> [SKIP][128] ([fdo#109274]) +4 similar issues
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-edp-1-planes-upscale-downscale:
- shard-iclb: NOTRUN -> [SKIP][129] ([i915#5235]) +2 similar issues
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/shard-iclb3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-edp-1-planes-upscale-downscale.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2-planes-upscale-downscale:
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6869/index.html
[-- Attachment #2: Type: text/html, Size: 33893 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2022-04-04 22:33 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-04 16:19 [igt-dev] [PATCH] lib/igt_amd: return negative if PSR state debugfs open fails David Zhang
2022-04-04 17:07 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork
2022-04-04 19:29 ` Zhang, Dingchen (David)
2022-04-04 19:52 ` Vudum, Lakshminarayana
2022-04-04 22:02 ` Zhang, Dingchen (David)
2022-04-04 17:32 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2022-04-04 18:05 ` [igt-dev] [PATCH] " Rodrigo Siqueira Jordao
2022-04-04 22:33 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.