* [PATCH 0/3] amd, i915, xe: drop redundant warnings from driver makefiles
@ 2024-05-23 13:37 Jani Nikula
2024-05-23 13:37 ` [PATCH 1/3] drm/i915: drop redundant W=1 warnings from Makefile Jani Nikula
` (5 more replies)
0 siblings, 6 replies; 11+ messages in thread
From: Jani Nikula @ 2024-05-23 13:37 UTC (permalink / raw)
To: intel-gfx, intel-xe, amd-gfx, dri-devel
Cc: Alex Deucher, Christian König, Pan Xinhui, Lucas De Marchi,
Thomas Hellström, Joonas Lahtinen, Rodrigo Vivi,
Tvrtko Ursulin, jani.nikula
I'm sending these together, as they're related, and almost identical,
but I expect them to be merged individually to each driver.
BR,
Jani.
Jani Nikula (3):
drm/i915: drop redundant W=1 warnings from Makefile
drm/xe: drop redundant W=1 warnings from Makefile
drm/amdgpu: drop redundant W=1 warnings from Makefile
drivers/gpu/drm/amd/amdgpu/Makefile | 18 +-----------------
drivers/gpu/drm/i915/Makefile | 25 +------------------------
drivers/gpu/drm/xe/Makefile | 25 +------------------------
3 files changed, 3 insertions(+), 65 deletions(-)
--
2.39.2
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 1/3] drm/i915: drop redundant W=1 warnings from Makefile
2024-05-23 13:37 [PATCH 0/3] amd, i915, xe: drop redundant warnings from driver makefiles Jani Nikula
@ 2024-05-23 13:37 ` Jani Nikula
2024-06-05 12:36 ` Jani Nikula
2024-05-23 13:37 ` [PATCH 2/3] drm/xe: " Jani Nikula
` (4 subsequent siblings)
5 siblings, 1 reply; 11+ messages in thread
From: Jani Nikula @ 2024-05-23 13:37 UTC (permalink / raw)
To: intel-gfx, intel-xe, amd-gfx, dri-devel
Cc: Alex Deucher, Christian König, Pan Xinhui, Lucas De Marchi,
Thomas Hellström, Joonas Lahtinen, Rodrigo Vivi,
Tvrtko Ursulin, jani.nikula
Since commit a61ddb4393ad ("drm: enable (most) W=1 warnings by default
across the subsystem"), most of the extra warnings in the driver
Makefile are redundant. Remove them.
Note that -Wmissing-declarations and -Wmissing-prototypes are always
enabled by default in scripts/Makefile.extrawarn.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/Makefile | 25 +------------------------
1 file changed, 1 insertion(+), 24 deletions(-)
diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile
index 7cad944b825c..a70d95a8fd7a 100644
--- a/drivers/gpu/drm/i915/Makefile
+++ b/drivers/gpu/drm/i915/Makefile
@@ -3,31 +3,8 @@
# Makefile for the drm device driver. This driver provides support for the
# Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher.
-# Unconditionally enable W=1 warnings locally
-# --- begin copy-paste W=1 warnings from scripts/Makefile.extrawarn
-subdir-ccflags-y += -Wextra -Wunused -Wno-unused-parameter
-subdir-ccflags-y += -Wmissing-declarations
-subdir-ccflags-y += $(call cc-option, -Wrestrict)
-subdir-ccflags-y += -Wmissing-format-attribute
-subdir-ccflags-y += -Wmissing-prototypes
-subdir-ccflags-y += -Wold-style-definition
-subdir-ccflags-y += -Wmissing-include-dirs
-subdir-ccflags-y += $(call cc-option, -Wunused-but-set-variable)
-subdir-ccflags-y += $(call cc-option, -Wunused-const-variable)
-subdir-ccflags-y += $(call cc-option, -Wpacked-not-aligned)
-subdir-ccflags-y += $(call cc-option, -Wformat-overflow)
+# Enable W=1 warnings not enabled in drm subsystem Makefile
subdir-ccflags-y += $(call cc-option, -Wformat-truncation)
-subdir-ccflags-y += $(call cc-option, -Wstringop-truncation)
-# The following turn off the warnings enabled by -Wextra
-ifeq ($(findstring 2, $(KBUILD_EXTRA_WARN)),)
-subdir-ccflags-y += -Wno-missing-field-initializers
-subdir-ccflags-y += -Wno-type-limits
-subdir-ccflags-y += -Wno-shift-negative-value
-endif
-ifeq ($(findstring 3, $(KBUILD_EXTRA_WARN)),)
-subdir-ccflags-y += -Wno-sign-compare
-endif
-# --- end copy-paste
# Enable -Werror in CI and development
subdir-ccflags-$(CONFIG_DRM_I915_WERROR) += -Werror
--
2.39.2
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 2/3] drm/xe: drop redundant W=1 warnings from Makefile
2024-05-23 13:37 [PATCH 0/3] amd, i915, xe: drop redundant warnings from driver makefiles Jani Nikula
2024-05-23 13:37 ` [PATCH 1/3] drm/i915: drop redundant W=1 warnings from Makefile Jani Nikula
@ 2024-05-23 13:37 ` Jani Nikula
2024-06-05 12:40 ` Jani Nikula
2024-05-23 13:37 ` [PATCH 3/3] drm/amdgpu: " Jani Nikula
` (3 subsequent siblings)
5 siblings, 1 reply; 11+ messages in thread
From: Jani Nikula @ 2024-05-23 13:37 UTC (permalink / raw)
To: intel-gfx, intel-xe, amd-gfx, dri-devel
Cc: Alex Deucher, Christian König, Pan Xinhui, Lucas De Marchi,
Thomas Hellström, Joonas Lahtinen, Rodrigo Vivi,
Tvrtko Ursulin, jani.nikula
Since commit a61ddb4393ad ("drm: enable (most) W=1 warnings by default
across the subsystem"), most of the extra warnings in the driver
Makefile are redundant. Remove them.
Note that -Wmissing-declarations and -Wmissing-prototypes are always
enabled by default in scripts/Makefile.extrawarn.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/xe/Makefile | 25 +------------------------
1 file changed, 1 insertion(+), 24 deletions(-)
diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
index c9f067b8f54d..f4366cb958be 100644
--- a/drivers/gpu/drm/xe/Makefile
+++ b/drivers/gpu/drm/xe/Makefile
@@ -3,31 +3,8 @@
# Makefile for the drm device driver. This driver provides support for the
# Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher.
-# Unconditionally enable W=1 warnings locally
-# --- begin copy-paste W=1 warnings from scripts/Makefile.extrawarn
-subdir-ccflags-y += -Wextra -Wunused -Wno-unused-parameter
-subdir-ccflags-y += -Wmissing-declarations
-subdir-ccflags-y += $(call cc-option, -Wrestrict)
-subdir-ccflags-y += -Wmissing-format-attribute
-subdir-ccflags-y += -Wmissing-prototypes
-subdir-ccflags-y += -Wold-style-definition
-subdir-ccflags-y += -Wmissing-include-dirs
-subdir-ccflags-y += $(call cc-option, -Wunused-but-set-variable)
-subdir-ccflags-y += $(call cc-option, -Wunused-const-variable)
-subdir-ccflags-y += $(call cc-option, -Wpacked-not-aligned)
-subdir-ccflags-y += $(call cc-option, -Wformat-overflow)
+# Enable W=1 warnings not enabled in drm subsystem Makefile
subdir-ccflags-y += $(call cc-option, -Wformat-truncation)
-subdir-ccflags-y += $(call cc-option, -Wstringop-truncation)
-# The following turn off the warnings enabled by -Wextra
-ifeq ($(findstring 2, $(KBUILD_EXTRA_WARN)),)
-subdir-ccflags-y += -Wno-missing-field-initializers
-subdir-ccflags-y += -Wno-type-limits
-subdir-ccflags-y += -Wno-shift-negative-value
-endif
-ifeq ($(findstring 3, $(KBUILD_EXTRA_WARN)),)
-subdir-ccflags-y += -Wno-sign-compare
-endif
-# --- end copy-paste
# Enable -Werror in CI and development
subdir-ccflags-$(CONFIG_DRM_XE_WERROR) += -Werror
--
2.39.2
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 3/3] drm/amdgpu: drop redundant W=1 warnings from Makefile
2024-05-23 13:37 [PATCH 0/3] amd, i915, xe: drop redundant warnings from driver makefiles Jani Nikula
2024-05-23 13:37 ` [PATCH 1/3] drm/i915: drop redundant W=1 warnings from Makefile Jani Nikula
2024-05-23 13:37 ` [PATCH 2/3] drm/xe: " Jani Nikula
@ 2024-05-23 13:37 ` Jani Nikula
2024-06-05 12:41 ` Jani Nikula
2024-09-03 19:48 ` Hamza Mahfooz
2024-05-23 15:07 ` ✗ Fi.CI.SPARSE: warning for amd, i915, xe: drop redundant warnings from driver makefiles Patchwork
` (2 subsequent siblings)
5 siblings, 2 replies; 11+ messages in thread
From: Jani Nikula @ 2024-05-23 13:37 UTC (permalink / raw)
To: intel-gfx, intel-xe, amd-gfx, dri-devel
Cc: Alex Deucher, Christian König, Pan Xinhui, Lucas De Marchi,
Thomas Hellström, Joonas Lahtinen, Rodrigo Vivi,
Tvrtko Ursulin, jani.nikula
Since commit a61ddb4393ad ("drm: enable (most) W=1 warnings by default
across the subsystem"), most of the extra warnings in the driver
Makefile are redundant. Remove them.
Note that -Wmissing-declarations and -Wmissing-prototypes are always
enabled by default in scripts/Makefile.extrawarn.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/amd/amdgpu/Makefile | 18 +-----------------
1 file changed, 1 insertion(+), 17 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/Makefile b/drivers/gpu/drm/amd/amdgpu/Makefile
index 1f6b56ec99f6..9508d0b5708e 100644
--- a/drivers/gpu/drm/amd/amdgpu/Makefile
+++ b/drivers/gpu/drm/amd/amdgpu/Makefile
@@ -39,23 +39,7 @@ ccflags-y := -I$(FULL_AMD_PATH)/include/asic_reg \
-I$(FULL_AMD_DISPLAY_PATH)/amdgpu_dm \
-I$(FULL_AMD_PATH)/amdkfd
-subdir-ccflags-y := -Wextra
-subdir-ccflags-y += -Wunused
-subdir-ccflags-y += -Wmissing-prototypes
-subdir-ccflags-y += -Wmissing-declarations
-subdir-ccflags-y += -Wmissing-include-dirs
-subdir-ccflags-y += -Wold-style-definition
-subdir-ccflags-y += -Wmissing-format-attribute
-# Need this to avoid recursive variable evaluation issues
-cond-flags := $(call cc-option, -Wunused-but-set-variable) \
- $(call cc-option, -Wunused-const-variable) \
- $(call cc-option, -Wstringop-truncation) \
- $(call cc-option, -Wpacked-not-aligned)
-subdir-ccflags-y += $(cond-flags)
-subdir-ccflags-y += -Wno-unused-parameter
-subdir-ccflags-y += -Wno-type-limits
-subdir-ccflags-y += -Wno-sign-compare
-subdir-ccflags-y += -Wno-missing-field-initializers
+# Locally disable W=1 warnings enabled in drm subsystem Makefile
subdir-ccflags-y += -Wno-override-init
subdir-ccflags-$(CONFIG_DRM_AMDGPU_WERROR) += -Werror
--
2.39.2
^ permalink raw reply related [flat|nested] 11+ messages in thread
* ✗ Fi.CI.SPARSE: warning for amd, i915, xe: drop redundant warnings from driver makefiles
2024-05-23 13:37 [PATCH 0/3] amd, i915, xe: drop redundant warnings from driver makefiles Jani Nikula
` (2 preceding siblings ...)
2024-05-23 13:37 ` [PATCH 3/3] drm/amdgpu: " Jani Nikula
@ 2024-05-23 15:07 ` Patchwork
2024-05-23 15:15 ` ✓ Fi.CI.BAT: success " Patchwork
2024-05-24 7:47 ` ✗ Fi.CI.IGT: failure " Patchwork
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-05-23 15:07 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
== Series Details ==
Series: amd, i915, xe: drop redundant warnings from driver makefiles
URL : https://patchwork.freedesktop.org/series/133965/
State : warning
== Summary ==
Error: dim sparse failed
Sparse version: v0.6.2
Fast mode used, each commit won't be checked separately.
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Fi.CI.BAT: success for amd, i915, xe: drop redundant warnings from driver makefiles
2024-05-23 13:37 [PATCH 0/3] amd, i915, xe: drop redundant warnings from driver makefiles Jani Nikula
` (3 preceding siblings ...)
2024-05-23 15:07 ` ✗ Fi.CI.SPARSE: warning for amd, i915, xe: drop redundant warnings from driver makefiles Patchwork
@ 2024-05-23 15:15 ` Patchwork
2024-05-24 7:47 ` ✗ Fi.CI.IGT: failure " Patchwork
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-05-23 15:15 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 5919 bytes --]
== Series Details ==
Series: amd, i915, xe: drop redundant warnings from driver makefiles
URL : https://patchwork.freedesktop.org/series/133965/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14809 -> Patchwork_133965v1
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/index.html
Participating hosts (43 -> 39)
------------------------------
Additional (2): fi-glk-j4005 bat-jsl-3
Missing (6): fi-kbl-7567u fi-snb-2520m fi-kbl-8809g fi-cfl-8109u fi-elk-e7500 bat-arls-3
Known issues
------------
Here are the changes found in Patchwork_133965v1 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-jsl-3: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/bat-jsl-3/igt@debugfs_test@basic-hwmon.html
* igt@gem_huc_copy@huc-copy:
- bat-jsl-3: NOTRUN -> [SKIP][2] ([i915#2190])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/bat-jsl-3/igt@gem_huc_copy@huc-copy.html
- fi-glk-j4005: NOTRUN -> [SKIP][3] ([i915#2190])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- bat-jsl-3: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/bat-jsl-3/igt@gem_lmem_swapping@basic.html
- fi-glk-j4005: NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/fi-glk-j4005/igt@gem_lmem_swapping@basic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- fi-glk-j4005: NOTRUN -> [SKIP][6] +10 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/fi-glk-j4005/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-jsl-3: NOTRUN -> [SKIP][7] ([i915#4103]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/bat-jsl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-jsl-3: NOTRUN -> [SKIP][8] ([i915#3555] / [i915#9886])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/bat-jsl-3/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-jsl-3: NOTRUN -> [SKIP][9]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/bat-jsl-3/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-jsl-3: NOTRUN -> [SKIP][10] ([i915#3555])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/bat-jsl-3/igt@kms_setmode@basic-clone-single-crtc.html
#### Possible fixes ####
* igt@i915_module_load@load:
- bat-dg2-8: [DMESG-WARN][11] ([i915#10014]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/bat-dg2-8/igt@i915_module_load@load.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/bat-dg2-8/igt@i915_module_load@load.html
* igt@i915_pm_rpm@module-reload:
- {bat-mtlp-9}: [CRASH][13] ([i915#10911]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/bat-mtlp-9/igt@i915_pm_rpm@module-reload.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/bat-mtlp-9/igt@i915_pm_rpm@module-reload.html
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-dp-6:
- {bat-mtlp-9}: [DMESG-FAIL][15] ([i915#11009]) -> [PASS][16] +2 other tests pass
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/bat-mtlp-9/igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-dp-6.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/bat-mtlp-9/igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-dp-6.html
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-dp-6:
- {bat-mtlp-9}: [FAIL][17] -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/bat-mtlp-9/igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-dp-6.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/bat-mtlp-9/igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-dp-6.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10014]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10014
[i915#10911]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10911
[i915#11009]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11009
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#6121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6121
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886
Build changes
-------------
* Linux: CI_DRM_14809 -> Patchwork_133965v1
CI-20190529: 20190529
CI_DRM_14809: 8e768c3e813ab5519a85997b622edc9a2f79c083 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7869: e43892a30d594f8bcbcbd42ccffe298313479215 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_133965v1: 8e768c3e813ab5519a85997b622edc9a2f79c083 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/index.html
[-- Attachment #2: Type: text/html, Size: 6992 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Fi.CI.IGT: failure for amd, i915, xe: drop redundant warnings from driver makefiles
2024-05-23 13:37 [PATCH 0/3] amd, i915, xe: drop redundant warnings from driver makefiles Jani Nikula
` (4 preceding siblings ...)
2024-05-23 15:15 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2024-05-24 7:47 ` Patchwork
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-05-24 7:47 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 86622 bytes --]
== Series Details ==
Series: amd, i915, xe: drop redundant warnings from driver makefiles
URL : https://patchwork.freedesktop.org/series/133965/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14809_full -> Patchwork_133965v1_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_133965v1_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_133965v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) 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/Patchwork_133965v1/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_133965v1_full:
### IGT changes ###
#### Possible regressions ####
* igt@sysfs_timeslice_duration@duration@rcs0:
- shard-dg1: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-dg1-13/igt@sysfs_timeslice_duration@duration@rcs0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-16/igt@sysfs_timeslice_duration@duration@rcs0.html
New tests
---------
New tests have been introduced between CI_DRM_14809_full and Patchwork_133965v1_full:
### New IGT tests (22) ###
* igt@kms_flip@2x-blocking-absolute-wf_vblank@ab-hdmi-a1-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [10.74] s
* igt@kms_flip@2x-blocking-absolute-wf_vblank@ac-hdmi-a1-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [10.51] s
* igt@kms_flip@2x-blocking-absolute-wf_vblank@bc-hdmi-a1-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [10.49] s
* igt@kms_flip@2x-flip-vs-modeset-vs-hang@ac-hdmi-a1-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [13.95] s
* igt@kms_flip@2x-flip-vs-rmfb-interruptible@ab-hdmi-a1-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [10.62] s
* igt@kms_flip@2x-flip-vs-rmfb-interruptible@ac-hdmi-a1-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [10.57] s
* igt@kms_flip@2x-flip-vs-rmfb-interruptible@bc-hdmi-a1-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [10.58] s
* igt@kms_flip@2x-flip-vs-rmfb@ab-hdmi-a1-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [10.61] s
* igt@kms_flip@2x-flip-vs-rmfb@ac-hdmi-a1-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [10.51] s
* igt@kms_flip@2x-flip-vs-rmfb@bc-hdmi-a1-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [10.51] s
* igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [10.91] s
* igt@kms_flip@2x-plain-flip-ts-check-interruptible@ac-hdmi-a1-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [10.84] s
* igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [10.80] s
* igt@kms_flip@basic-plain-flip@c-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [0.65] s
* igt@kms_flip@dpms-off-confusion-interruptible@c-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [7.63] s
* igt@kms_flip@dpms-off-confusion@c-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [5.32] s
* igt@kms_flip@flip-vs-dpms-off-vs-modeset@c-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [0.75] s
* igt@kms_flip@flip-vs-rmfb-interruptible@c-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [7.63] s
* igt@kms_flip@flip-vs-rmfb@c-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [7.68] s
* igt@kms_flip@plain-flip-fb-recreate-interruptible@c-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [7.92] s
* igt@kms_flip@plain-flip-ts-check@a-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [15.51] s
* igt@kms_flip@plain-flip-ts-check@b-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [15.45] s
Known issues
------------
Here are the changes found in Patchwork_133965v1_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-mtlp: NOTRUN -> [SKIP][3] ([i915#8411])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-6/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][4] ([i915#8411]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-3/igt@api_intel_bb@object-reloc-keep-cache.html
- shard-dg1: NOTRUN -> [SKIP][5] ([i915#8411])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-18/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: NOTRUN -> [INCOMPLETE][6] ([i915#9408])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-18/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@busy-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +6 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-3/igt@drm_fdinfo@busy-check-all@vecs1.html
* igt@drm_fdinfo@busy-hang@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8414]) +11 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-3/igt@drm_fdinfo@busy-hang@rcs0.html
* igt@gem_bad_reloc@negative-reloc:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#3281]) +9 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@gem_bad_reloc@negative-reloc.html
* igt@gem_basic@multigpu-create-close:
- shard-mtlp: NOTRUN -> [SKIP][10] ([i915#7697])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-2/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-copy-compressed:
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-13/igt@gem_ccs@block-copy-compressed.html
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@gem_ccs@block-copy-compressed.html
* igt@gem_close_race@multigpu-basic-process:
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#7697])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-5/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [PASS][14] -> [FAIL][15] ([i915#6268])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#8555])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-3/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#8555])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_sseu@invalid-args:
- shard-rkl: NOTRUN -> [SKIP][18] ([i915#280])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@gem_ctx_sseu@invalid-args.html
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#280])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-6/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_eio@kms:
- shard-tglu: [PASS][20] -> [INCOMPLETE][21] ([i915#10513])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-tglu-5/igt@gem_eio@kms.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-tglu-9/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#4771])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-17/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#4812]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-3/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@noheartbeat:
- shard-mtlp: NOTRUN -> [SKIP][24] ([i915#8555])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-3/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#4525]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-mtlp: NOTRUN -> [SKIP][26] ([i915#6334])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-3/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg1: NOTRUN -> [FAIL][27] ([i915#10386]) +1 other test fail
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-17/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-glk: NOTRUN -> [FAIL][28] ([i915#9606])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-glk5/igt@gem_exec_capture@many-4k-incremental.html
- shard-rkl: NOTRUN -> [FAIL][29] ([i915#9606])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@gem_exec_capture@many-4k-incremental.html
- shard-dg1: NOTRUN -> [FAIL][30] ([i915#9606])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-13/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4473] / [i915#4771])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-2/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-glk: NOTRUN -> [FAIL][32] ([i915#2842])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-glk8/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglu: [PASS][33] -> [FAIL][34] ([i915#2842]) +2 other tests fail
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-tglu-8/igt@gem_exec_fair@basic-none-share@rcs0.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-tglu-6/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none-solo:
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4473])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-6/igt@gem_exec_fair@basic-none-solo.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-rkl: NOTRUN -> [FAIL][36] ([i915#2842])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-rkl: [PASS][37] -> [FAIL][38] ([i915#2842])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-rkl-1/igt@gem_exec_fair@basic-throttle@rcs0.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-6/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_fence@submit67:
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4812]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-3/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-18/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-3/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#3281]) +7 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-17/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#3281]) +3 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-3/igt@gem_exec_reloc@basic-gtt.html
* igt@gem_exec_reloc@basic-write-wc-active:
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#3281]) +6 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-6/igt@gem_exec_reloc@basic-write-wc-active.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4537] / [i915#4812])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-3/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4860])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-2/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#4860])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-13/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#2190])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#4613] / [i915#7582])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-5/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4613]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-3/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#4613]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@heavy-verify-random@lmem0:
- shard-dg1: NOTRUN -> [FAIL][52] ([i915#10378])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html
* igt@gem_lmem_swapping@smem-oom:
- shard-glk: NOTRUN -> [SKIP][53] ([i915#4613]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-glk8/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [PASS][54] -> [TIMEOUT][55] ([i915#5493])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#4565])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-18/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_mmap_gtt@cpuset-medium-copy-xy:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#4077]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-17/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html
* igt@gem_mmap_gtt@fault-concurrent-y:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4077]) +6 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-6/igt@gem_mmap_gtt@fault-concurrent-y.html
* igt@gem_mmap_wc@bad-size:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#4083]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-13/igt@gem_mmap_wc@bad-size.html
* igt@gem_mmap_wc@pf-nonblock:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4083]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-3/igt@gem_mmap_wc@pf-nonblock.html
* igt@gem_mmap_wc@set-cache-level:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4083]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-3/igt@gem_mmap_wc@set-cache-level.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#3282]) +4 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-3/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_pread@exhaustion:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#3282]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-17/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu: NOTRUN -> [WARN][64] ([i915#2658])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-tglu-8/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pwrite@basic-self:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#3282]) +7 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@gem_pwrite@basic-self.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#4270]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-17/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#4270]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4270])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-3/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4270]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-6/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_readwrite@read-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#3282]) +4 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-6/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@y-tiled-ccs-to-linear:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#5190] / [i915#8428]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-11/igt@gem_render_copy@y-tiled-ccs-to-linear.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#8428]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-6/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#4079])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-18/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4079])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-3/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4079])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-11/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#4885])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-3/igt@gem_softpin@evict-snoop.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#3282] / [i915#3297])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-18/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#3297]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#3297] / [i915#4880])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#3297] / [i915#4880])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#3297])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-17/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: NOTRUN -> [SKIP][82] ([i915#3297])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen9_exec_parse@batch-without-end:
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#2856]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-6/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@shadow-peek:
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#2527]) +3 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@gen9_exec_parse@shadow-peek.html
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#2527]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-13/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@valid-registers:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#2856]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-11/igt@gen9_exec_parse@valid-registers.html
- shard-tglu: NOTRUN -> [SKIP][87] ([i915#2527] / [i915#2856])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-tglu-8/igt@gen9_exec_parse@valid-registers.html
* igt@i915_fb_tiling:
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#4881])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-6/igt@i915_fb_tiling.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [PASS][89] -> [INCOMPLETE][90] ([i915#10047] / [i915#10887] / [i915#9820])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-tglu-6/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rpm@gem-mmap-type@gtt-smem0:
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#8431])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-2/igt@i915_pm_rpm@gem-mmap-type@gtt-smem0.html
* igt@i915_pm_rps@basic-api:
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#6621])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-18/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@reset:
- shard-snb: [PASS][93] -> [INCOMPLETE][94] ([i915#7790])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-snb4/igt@i915_pm_rps@reset.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-snb6/igt@i915_pm_rps@reset.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#4387])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-3/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][96] ([i915#5723])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-3/igt@i915_query@test-query-geometry-subslices.html
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#5723])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-18/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_suspend@fence-restore-untiled:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#4077]) +4 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-3/igt@i915_suspend@fence-restore-untiled.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#4212]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-6/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#4212])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-3/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#8709]) +11 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk: NOTRUN -> [SKIP][102] ([i915#1769])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-glk7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][103] ([i915#5286]) +5 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-3/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][104] ([i915#5286])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-tglu-8/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#4538] / [i915#5286]) +2 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-18/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#3638]) +2 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][107] ([i915#3638]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-13/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#4538] / [i915#5190]) +4 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][109] +41 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#4538]) +3 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-13/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][111] +16 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-3/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_joiner@invalid-modeset-force-joiner:
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#10656])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-3/igt@kms_big_joiner@invalid-modeset-force-joiner.html
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#10656])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-18/igt@kms_big_joiner@invalid-modeset-force-joiner.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#6095]) +53 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-1/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][116] ([i915#6095]) +27 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-6/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-b-edp-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#6095]) +67 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#10307] / [i915#6095]) +163 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-3/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#6095]) +15 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-tglu-8/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#3742])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-5/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#7213]) +3 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#7828]) +3 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-11/igt@kms_chamelium_hpd@dp-hpd-storm.html
- shard-tglu: NOTRUN -> [SKIP][123] ([i915#7828])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-tglu-8/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#7828]) +5 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-18/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#7828]) +7 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-6/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#7828]) +8 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-5/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#7118] / [i915#9424]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@kms_content_protection@atomic-dpms.html
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#7116] / [i915#9424])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-13/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#3299])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-3/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#3116])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@kms_content_protection@dp-mst-type-1.html
- shard-mtlp: NOTRUN -> [SKIP][131] ([i915#3299])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-6/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#9424])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-3/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#9424])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@kms_content_protection@mei-interface.html
- shard-mtlp: NOTRUN -> [SKIP][134] ([i915#8063] / [i915#9433])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-6/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#7116])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-17/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#7118] / [i915#9424])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-8/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#3359]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#8814]) +2 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#3359])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-17/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#3555] / [i915#8814])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#3555]) +7 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#3359]) +1 other test skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#9809]) +3 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-6/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#4103] / [i915#4213])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][145] ([i915#2346])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#9067])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#4213])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#9227])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-10/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#9723])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-3/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#9723])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-18/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#3555] / [i915#3840])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@kms_dsc@dsc-basic.html
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#3555] / [i915#3840])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-13/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#3840])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-17/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#3955])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#3469])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-17/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#1839])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-11/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#1839])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-2/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#658])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-18/igt@kms_feature_discovery@psr2.html
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#658])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-3/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][160] +10 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-11/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
- shard-tglu: NOTRUN -> [SKIP][161] ([i915#3637])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-tglu-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#8381])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-13/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-mtlp: NOTRUN -> [SKIP][163] ([i915#3637]) +6 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-2/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#9934]) +4 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-17/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#8381])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-11/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#2587] / [i915#2672]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#8810])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#2587] / [i915#2672])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#2672]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#2672]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#2672]) +2 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#5274])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-3/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#8708]) +8 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#5354]) +14 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#1825]) +21 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy:
- shard-tglu: NOTRUN -> [SKIP][176] +10 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#3023]) +22 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#10070])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-3/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#3458]) +11 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#3458]) +8 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#1825]) +31 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#8708]) +4 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#8708]) +16 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#8228]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-5/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#8228])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-3/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#8228]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-3/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg1: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#8228])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-13/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][188] ([i915#7862]) +1 other test fail
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-glk8/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#9423]) +7 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#9423]) +5 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][191] +249 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-glk5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#9423]) +11 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-17/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#5235]) +11 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#5235] / [i915#9423]) +7 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#5235] / [i915#9423] / [i915#9728]) +3 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#5235]) +5 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][197] ([i915#5235]) +2 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-edp-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#5235])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-edp-1.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#9293])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-3/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#9685]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#9685])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-13/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#9340])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][203] ([i915#9340])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-18/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#9519])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#9519])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#9519])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-tglu-8/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [PASS][207] -> [SKIP][208] ([i915#9519]) +2 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#9519])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#6524])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-5/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][211] +29 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-17/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area@psr2-pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#9808]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-3/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area@psr2-pipe-a-edp-1.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][213] ([i915#9683])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][214] ([i915#9683])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-13/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-cursor-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#1072] / [i915#9732]) +20 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@kms_psr@fbc-pr-cursor-mmap-cpu.html
* igt@kms_psr@fbc-pr-sprite-blt:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#1072] / [i915#9732]) +3 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-3/igt@kms_psr@fbc-pr-sprite-blt.html
* igt@kms_psr@fbc-pr-suspend:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#1072] / [i915#9673] / [i915#9732]) +5 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-11/igt@kms_psr@fbc-pr-suspend.html
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#9732]) +2 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-tglu-8/igt@kms_psr@fbc-pr-suspend.html
* igt@kms_psr@pr-primary-render:
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#9688]) +9 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-6/igt@kms_psr@pr-primary-render.html
* igt@kms_psr@pr-sprite-plane-onoff:
- shard-dg1: NOTRUN -> [SKIP][220] ([i915#1072] / [i915#9732]) +12 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-18/igt@kms_psr@pr-sprite-plane-onoff.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-mtlp: NOTRUN -> [SKIP][221] ([i915#5289])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#5289]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#5289])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#4235] / [i915#5190])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-11/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#4235])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-2/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#3555]) +6 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-13/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#3555])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-11/igt@kms_setmode@invalid-clone-single-crtc.html
- shard-tglu: NOTRUN -> [SKIP][228] ([i915#3555])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-tglu-8/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [PASS][229] -> [FAIL][230] ([IGT#2])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-dg2-11/igt@kms_sysfs_edid_timing.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-2/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-glk: NOTRUN -> [FAIL][231] ([i915#10959])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-glk6/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#9906])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-11/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@negative-basic:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#3555] / [i915#9906])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-3/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#9906]) +1 other test skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#8808] / [i915#9906])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-6/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-glk: NOTRUN -> [SKIP][236] ([i915#2437]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-glk6/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#2437] / [i915#9412])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#2437])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-3/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#2437] / [i915#9412])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-5/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#2436])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-5/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][241] ([i915#4349]) +3 other tests fail
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-3/igt@perf_pmu@busy-double-start@vecs1.html
* igt@prime_vgem@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#3708] / [i915#4077])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-3/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#3708])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-3/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#9917])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-3/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-dg1: NOTRUN -> [SKIP][245] ([i915#9917])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-18/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-glk: NOTRUN -> [FAIL][246] ([i915#9781])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-glk6/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-mtlp: NOTRUN -> [FAIL][247] ([i915#9779])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-6/igt@syncobj_wait@invalid-wait-zero-handles.html
- shard-rkl: NOTRUN -> [FAIL][248] ([i915#9779])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@syncobj_wait@invalid-wait-zero-handles.html
* igt@v3d/v3d_perfmon@get-values-invalid-pad:
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#2575]) +7 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-17/igt@v3d/v3d_perfmon@get-values-invalid-pad.html
* igt@v3d/v3d_submit_csd@bad-extension:
- shard-tglu: NOTRUN -> [SKIP][250] ([i915#2575]) +4 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-tglu-8/igt@v3d/v3d_submit_csd@bad-extension.html
* igt@v3d/v3d_submit_csd@bad-multisync-in-sync:
- shard-mtlp: NOTRUN -> [SKIP][251] ([i915#2575]) +7 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-3/igt@v3d/v3d_submit_csd@bad-multisync-in-sync.html
* igt@v3d/v3d_submit_csd@single-in-sync:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#2575]) +5 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-11/igt@v3d/v3d_submit_csd@single-in-sync.html
* igt@vc4/vc4_create_bo@create-bo-4096:
- shard-mtlp: NOTRUN -> [SKIP][253] ([i915#7711]) +6 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-2/igt@vc4/vc4_create_bo@create-bo-4096.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#7711]) +2 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-3/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged:
- shard-dg1: NOTRUN -> [SKIP][255] ([i915#7711]) +4 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-13/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged.html
* igt@vc4/vc4_wait_bo@bad-pad:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#7711]) +7 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@vc4/vc4_wait_bo@bad-pad.html
#### Possible fixes ####
* igt@gem_exec_fair@basic-none@vcs0:
- shard-rkl: [FAIL][257] ([i915#2842]) -> [PASS][258] +1 other test pass
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-rkl-5/igt@gem_exec_fair@basic-none@vcs0.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-4/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_lmem_swapping@basic@lmem0:
- shard-dg2: [FAIL][259] ([i915#10378]) -> [PASS][260] +1 other test pass
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-dg2-2/igt@gem_lmem_swapping@basic@lmem0.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-4/igt@gem_lmem_swapping@basic@lmem0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [TIMEOUT][261] ([i915#5493]) -> [PASS][262]
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][263] ([i915#5138]) -> [PASS][264]
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2:
- shard-glk: [FAIL][265] ([i915#79]) -> [PASS][266]
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-glk8/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-glk1/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2.html
* igt@kms_plane@pixel-format-source-clamping@pipe-a:
- shard-tglu: [INCOMPLETE][267] ([i915#10056]) -> [PASS][268]
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-tglu-10/igt@kms_plane@pixel-format-source-clamping@pipe-a.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-tglu-8/igt@kms_plane@pixel-format-source-clamping@pipe-a.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [SKIP][269] ([i915#4281]) -> [PASS][270]
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [SKIP][271] ([i915#9519]) -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [SKIP][273] ([i915#9519]) -> [PASS][274] +1 other test pass
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp-stress.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-2:
- shard-rkl: [FAIL][275] ([i915#9196]) -> [PASS][276]
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-rkl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-2.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-2.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
- shard-tglu: [FAIL][277] ([i915#9196]) -> [PASS][278] +1 other test pass
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
#### Warnings ####
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [INCOMPLETE][279] ([i915#9364]) -> [ABORT][280] ([i915#9846])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-8/igt@gem_create@create-ext-cpu-access-big.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][281] ([i915#10131] / [i915#9697]) -> [ABORT][282] ([i915#10131] / [i915#10887] / [i915#9820])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: [SKIP][283] ([i915#3458]) -> [SKIP][284] ([i915#10433] / [i915#3458])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-dg2: [SKIP][285] ([i915#10433] / [i915#3458]) -> [SKIP][286] ([i915#3458])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][287] ([i915#4816]) -> [SKIP][288] ([i915#4070] / [i915#4816])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [SKIP][289] ([i915#4281]) -> [SKIP][290] ([i915#3361])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-dg2: [SKIP][291] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][292] ([i915#1072] / [i915#9732]) +17 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-dg2-11/igt@kms_psr@fbc-psr-primary-page-flip.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-2/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_vrr@negative-basic:
- shard-rkl: [SKIP][293] ([i915#3555]) -> [SKIP][294] ([i915#3555] / [i915#9906])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-rkl-3/igt@kms_vrr@negative-basic.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-rkl-6/igt@kms_vrr@negative-basic.html
- shard-dg1: [SKIP][295] ([i915#3555]) -> [SKIP][296] ([i915#3555] / [i915#9906])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-dg1-18/igt@kms_vrr@negative-basic.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg1-18/igt@kms_vrr@negative-basic.html
- shard-tglu: [SKIP][297] ([i915#3555]) -> [SKIP][298] ([i915#3555] / [i915#9906])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-tglu-3/igt@kms_vrr@negative-basic.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-tglu-3/igt@kms_vrr@negative-basic.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [FAIL][299] ([i915#9100]) -> [FAIL][300] ([i915#7484])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14809/shard-dg2-6/igt@perf@non-zero-reason@0-rcs0.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/shard-dg2-3/igt@perf@non-zero-reason@0-rcs0.html
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[i915#10047]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10047
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10070
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378
[i915#10386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10386
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10513]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10513
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4473]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4473
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6268]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6268
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7484]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7484
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7711
[i915#7790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7790
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#79]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/79
[i915#8063]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8063
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8431]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8431
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9227
[i915#9293]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9293
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9364]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9364
[i915#9408]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9408
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9606]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9606
[i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9697
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9728]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9728
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9779]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9779
[i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9846
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* Linux: CI_DRM_14809 -> Patchwork_133965v1
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_14809: 8e768c3e813ab5519a85997b622edc9a2f79c083 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7869: e43892a30d594f8bcbcbd42ccffe298313479215 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_133965v1: 8e768c3e813ab5519a85997b622edc9a2f79c083 @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133965v1/index.html
[-- Attachment #2: Type: text/html, Size: 107840 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 1/3] drm/i915: drop redundant W=1 warnings from Makefile
2024-05-23 13:37 ` [PATCH 1/3] drm/i915: drop redundant W=1 warnings from Makefile Jani Nikula
@ 2024-06-05 12:36 ` Jani Nikula
0 siblings, 0 replies; 11+ messages in thread
From: Jani Nikula @ 2024-06-05 12:36 UTC (permalink / raw)
To: intel-gfx, intel-xe, amd-gfx, dri-devel
Cc: Alex Deucher, Christian König, Pan Xinhui, Lucas De Marchi,
Thomas Hellström, Joonas Lahtinen, Rodrigo Vivi,
Tvrtko Ursulin
On Thu, 23 May 2024, Jani Nikula <jani.nikula@intel.com> wrote:
> Since commit a61ddb4393ad ("drm: enable (most) W=1 warnings by default
> across the subsystem"), most of the extra warnings in the driver
> Makefile are redundant. Remove them.
>
> Note that -Wmissing-declarations and -Wmissing-prototypes are always
> enabled by default in scripts/Makefile.extrawarn.
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Pushed this patch to drm-intel-next with Lucas' irc ack.
BR,
Jani.
> ---
> drivers/gpu/drm/i915/Makefile | 25 +------------------------
> 1 file changed, 1 insertion(+), 24 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile
> index 7cad944b825c..a70d95a8fd7a 100644
> --- a/drivers/gpu/drm/i915/Makefile
> +++ b/drivers/gpu/drm/i915/Makefile
> @@ -3,31 +3,8 @@
> # Makefile for the drm device driver. This driver provides support for the
> # Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher.
>
> -# Unconditionally enable W=1 warnings locally
> -# --- begin copy-paste W=1 warnings from scripts/Makefile.extrawarn
> -subdir-ccflags-y += -Wextra -Wunused -Wno-unused-parameter
> -subdir-ccflags-y += -Wmissing-declarations
> -subdir-ccflags-y += $(call cc-option, -Wrestrict)
> -subdir-ccflags-y += -Wmissing-format-attribute
> -subdir-ccflags-y += -Wmissing-prototypes
> -subdir-ccflags-y += -Wold-style-definition
> -subdir-ccflags-y += -Wmissing-include-dirs
> -subdir-ccflags-y += $(call cc-option, -Wunused-but-set-variable)
> -subdir-ccflags-y += $(call cc-option, -Wunused-const-variable)
> -subdir-ccflags-y += $(call cc-option, -Wpacked-not-aligned)
> -subdir-ccflags-y += $(call cc-option, -Wformat-overflow)
> +# Enable W=1 warnings not enabled in drm subsystem Makefile
> subdir-ccflags-y += $(call cc-option, -Wformat-truncation)
> -subdir-ccflags-y += $(call cc-option, -Wstringop-truncation)
> -# The following turn off the warnings enabled by -Wextra
> -ifeq ($(findstring 2, $(KBUILD_EXTRA_WARN)),)
> -subdir-ccflags-y += -Wno-missing-field-initializers
> -subdir-ccflags-y += -Wno-type-limits
> -subdir-ccflags-y += -Wno-shift-negative-value
> -endif
> -ifeq ($(findstring 3, $(KBUILD_EXTRA_WARN)),)
> -subdir-ccflags-y += -Wno-sign-compare
> -endif
> -# --- end copy-paste
>
> # Enable -Werror in CI and development
> subdir-ccflags-$(CONFIG_DRM_I915_WERROR) += -Werror
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 2/3] drm/xe: drop redundant W=1 warnings from Makefile
2024-05-23 13:37 ` [PATCH 2/3] drm/xe: " Jani Nikula
@ 2024-06-05 12:40 ` Jani Nikula
0 siblings, 0 replies; 11+ messages in thread
From: Jani Nikula @ 2024-06-05 12:40 UTC (permalink / raw)
To: intel-gfx, intel-xe, amd-gfx, dri-devel
Cc: Alex Deucher, Christian König, Pan Xinhui, Lucas De Marchi,
Thomas Hellström, Joonas Lahtinen, Rodrigo Vivi,
Tvrtko Ursulin
On Thu, 23 May 2024, Jani Nikula <jani.nikula@intel.com> wrote:
> Since commit a61ddb4393ad ("drm: enable (most) W=1 warnings by default
> across the subsystem"), most of the extra warnings in the driver
> Makefile are redundant. Remove them.
>
> Note that -Wmissing-declarations and -Wmissing-prototypes are always
> enabled by default in scripts/Makefile.extrawarn.
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Pushed this patch to drm-xe-next with Lucas' irc ack.
BR,
Jani.
> ---
> drivers/gpu/drm/xe/Makefile | 25 +------------------------
> 1 file changed, 1 insertion(+), 24 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
> index c9f067b8f54d..f4366cb958be 100644
> --- a/drivers/gpu/drm/xe/Makefile
> +++ b/drivers/gpu/drm/xe/Makefile
> @@ -3,31 +3,8 @@
> # Makefile for the drm device driver. This driver provides support for the
> # Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher.
>
> -# Unconditionally enable W=1 warnings locally
> -# --- begin copy-paste W=1 warnings from scripts/Makefile.extrawarn
> -subdir-ccflags-y += -Wextra -Wunused -Wno-unused-parameter
> -subdir-ccflags-y += -Wmissing-declarations
> -subdir-ccflags-y += $(call cc-option, -Wrestrict)
> -subdir-ccflags-y += -Wmissing-format-attribute
> -subdir-ccflags-y += -Wmissing-prototypes
> -subdir-ccflags-y += -Wold-style-definition
> -subdir-ccflags-y += -Wmissing-include-dirs
> -subdir-ccflags-y += $(call cc-option, -Wunused-but-set-variable)
> -subdir-ccflags-y += $(call cc-option, -Wunused-const-variable)
> -subdir-ccflags-y += $(call cc-option, -Wpacked-not-aligned)
> -subdir-ccflags-y += $(call cc-option, -Wformat-overflow)
> +# Enable W=1 warnings not enabled in drm subsystem Makefile
> subdir-ccflags-y += $(call cc-option, -Wformat-truncation)
> -subdir-ccflags-y += $(call cc-option, -Wstringop-truncation)
> -# The following turn off the warnings enabled by -Wextra
> -ifeq ($(findstring 2, $(KBUILD_EXTRA_WARN)),)
> -subdir-ccflags-y += -Wno-missing-field-initializers
> -subdir-ccflags-y += -Wno-type-limits
> -subdir-ccflags-y += -Wno-shift-negative-value
> -endif
> -ifeq ($(findstring 3, $(KBUILD_EXTRA_WARN)),)
> -subdir-ccflags-y += -Wno-sign-compare
> -endif
> -# --- end copy-paste
>
> # Enable -Werror in CI and development
> subdir-ccflags-$(CONFIG_DRM_XE_WERROR) += -Werror
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 3/3] drm/amdgpu: drop redundant W=1 warnings from Makefile
2024-05-23 13:37 ` [PATCH 3/3] drm/amdgpu: " Jani Nikula
@ 2024-06-05 12:41 ` Jani Nikula
2024-09-03 19:48 ` Hamza Mahfooz
1 sibling, 0 replies; 11+ messages in thread
From: Jani Nikula @ 2024-06-05 12:41 UTC (permalink / raw)
To: intel-gfx, intel-xe, amd-gfx, dri-devel
Cc: Alex Deucher, Christian König, Pan Xinhui, Lucas De Marchi,
Thomas Hellström, Joonas Lahtinen, Rodrigo Vivi,
Tvrtko Ursulin
On Thu, 23 May 2024, Jani Nikula <jani.nikula@intel.com> wrote:
> Since commit a61ddb4393ad ("drm: enable (most) W=1 warnings by default
> across the subsystem"), most of the extra warnings in the driver
> Makefile are redundant. Remove them.
>
> Note that -Wmissing-declarations and -Wmissing-prototypes are always
> enabled by default in scripts/Makefile.extrawarn.
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Alex, this one's for you to do whatever you want. ;)
BR,
Jani.
> ---
> drivers/gpu/drm/amd/amdgpu/Makefile | 18 +-----------------
> 1 file changed, 1 insertion(+), 17 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/Makefile b/drivers/gpu/drm/amd/amdgpu/Makefile
> index 1f6b56ec99f6..9508d0b5708e 100644
> --- a/drivers/gpu/drm/amd/amdgpu/Makefile
> +++ b/drivers/gpu/drm/amd/amdgpu/Makefile
> @@ -39,23 +39,7 @@ ccflags-y := -I$(FULL_AMD_PATH)/include/asic_reg \
> -I$(FULL_AMD_DISPLAY_PATH)/amdgpu_dm \
> -I$(FULL_AMD_PATH)/amdkfd
>
> -subdir-ccflags-y := -Wextra
> -subdir-ccflags-y += -Wunused
> -subdir-ccflags-y += -Wmissing-prototypes
> -subdir-ccflags-y += -Wmissing-declarations
> -subdir-ccflags-y += -Wmissing-include-dirs
> -subdir-ccflags-y += -Wold-style-definition
> -subdir-ccflags-y += -Wmissing-format-attribute
> -# Need this to avoid recursive variable evaluation issues
> -cond-flags := $(call cc-option, -Wunused-but-set-variable) \
> - $(call cc-option, -Wunused-const-variable) \
> - $(call cc-option, -Wstringop-truncation) \
> - $(call cc-option, -Wpacked-not-aligned)
> -subdir-ccflags-y += $(cond-flags)
> -subdir-ccflags-y += -Wno-unused-parameter
> -subdir-ccflags-y += -Wno-type-limits
> -subdir-ccflags-y += -Wno-sign-compare
> -subdir-ccflags-y += -Wno-missing-field-initializers
> +# Locally disable W=1 warnings enabled in drm subsystem Makefile
> subdir-ccflags-y += -Wno-override-init
> subdir-ccflags-$(CONFIG_DRM_AMDGPU_WERROR) += -Werror
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 3/3] drm/amdgpu: drop redundant W=1 warnings from Makefile
2024-05-23 13:37 ` [PATCH 3/3] drm/amdgpu: " Jani Nikula
2024-06-05 12:41 ` Jani Nikula
@ 2024-09-03 19:48 ` Hamza Mahfooz
1 sibling, 0 replies; 11+ messages in thread
From: Hamza Mahfooz @ 2024-09-03 19:48 UTC (permalink / raw)
To: Jani Nikula, intel-gfx, intel-xe, amd-gfx, dri-devel
Cc: Alex Deucher, Christian König, Pan Xinhui, Lucas De Marchi,
Thomas Hellström, Joonas Lahtinen, Rodrigo Vivi,
Tvrtko Ursulin
On 5/23/24 09:37, Jani Nikula wrote:
> Since commit a61ddb4393ad ("drm: enable (most) W=1 warnings by default
> across the subsystem"), most of the extra warnings in the driver
> Makefile are redundant. Remove them.
>
> Note that -Wmissing-declarations and -Wmissing-prototypes are always
> enabled by default in scripts/Makefile.extrawarn.
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Sorry, it took me so long to get to this. But, I guess as they say,
better late than never.
Applied, thanks!
> ---
> drivers/gpu/drm/amd/amdgpu/Makefile | 18 +-----------------
> 1 file changed, 1 insertion(+), 17 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/Makefile b/drivers/gpu/drm/amd/amdgpu/Makefile
> index 1f6b56ec99f6..9508d0b5708e 100644
> --- a/drivers/gpu/drm/amd/amdgpu/Makefile
> +++ b/drivers/gpu/drm/amd/amdgpu/Makefile
> @@ -39,23 +39,7 @@ ccflags-y := -I$(FULL_AMD_PATH)/include/asic_reg \
> -I$(FULL_AMD_DISPLAY_PATH)/amdgpu_dm \
> -I$(FULL_AMD_PATH)/amdkfd
>
> -subdir-ccflags-y := -Wextra
> -subdir-ccflags-y += -Wunused
> -subdir-ccflags-y += -Wmissing-prototypes
> -subdir-ccflags-y += -Wmissing-declarations
> -subdir-ccflags-y += -Wmissing-include-dirs
> -subdir-ccflags-y += -Wold-style-definition
> -subdir-ccflags-y += -Wmissing-format-attribute
> -# Need this to avoid recursive variable evaluation issues
> -cond-flags := $(call cc-option, -Wunused-but-set-variable) \
> - $(call cc-option, -Wunused-const-variable) \
> - $(call cc-option, -Wstringop-truncation) \
> - $(call cc-option, -Wpacked-not-aligned)
> -subdir-ccflags-y += $(cond-flags)
> -subdir-ccflags-y += -Wno-unused-parameter
> -subdir-ccflags-y += -Wno-type-limits
> -subdir-ccflags-y += -Wno-sign-compare
> -subdir-ccflags-y += -Wno-missing-field-initializers
> +# Locally disable W=1 warnings enabled in drm subsystem Makefile
> subdir-ccflags-y += -Wno-override-init
> subdir-ccflags-$(CONFIG_DRM_AMDGPU_WERROR) += -Werror
>
--
Hamza
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-09-03 19:48 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-23 13:37 [PATCH 0/3] amd, i915, xe: drop redundant warnings from driver makefiles Jani Nikula
2024-05-23 13:37 ` [PATCH 1/3] drm/i915: drop redundant W=1 warnings from Makefile Jani Nikula
2024-06-05 12:36 ` Jani Nikula
2024-05-23 13:37 ` [PATCH 2/3] drm/xe: " Jani Nikula
2024-06-05 12:40 ` Jani Nikula
2024-05-23 13:37 ` [PATCH 3/3] drm/amdgpu: " Jani Nikula
2024-06-05 12:41 ` Jani Nikula
2024-09-03 19:48 ` Hamza Mahfooz
2024-05-23 15:07 ` ✗ Fi.CI.SPARSE: warning for amd, i915, xe: drop redundant warnings from driver makefiles Patchwork
2024-05-23 15:15 ` ✓ Fi.CI.BAT: success " Patchwork
2024-05-24 7:47 ` ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).