* [PATCH v2 0/3] drm: fix and enable warnings on unused static inlines
@ 2024-12-05 15:02 Jani Nikula
2024-12-05 15:02 ` [PATCH v2 1/3] drm/bridge: dw-hdmi-i2s: annotate hdmi_read() with __maybe_unused Jani Nikula
` (6 more replies)
0 siblings, 7 replies; 10+ messages in thread
From: Jani Nikula @ 2024-12-05 15:02 UTC (permalink / raw)
To: dri-devel; +Cc: intel-gfx, jani.nikula
v2 of [1]. Dropped the parts that have already been fixed. No other
changes. Hoping to get this merged soon.
BR,
Jani.
[1] https://lore.kernel.org/r/cover.1725962479.git.jani.nikula@intel.com
Jani Nikula (3):
drm/bridge: dw-hdmi-i2s: annotate hdmi_read() with __maybe_unused
drm: renesas: rcar-du: annotate rcar_cmm_read() with __maybe_unused
drm: enable warnings on unused static inlines
drivers/gpu/drm/Makefile | 3 +++
drivers/gpu/drm/bridge/synopsys/dw-hdmi-i2s-audio.c | 2 +-
drivers/gpu/drm/renesas/rcar-du/rcar_cmm.c | 2 +-
3 files changed, 5 insertions(+), 2 deletions(-)
--
2.39.5
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v2 1/3] drm/bridge: dw-hdmi-i2s: annotate hdmi_read() with __maybe_unused
2024-12-05 15:02 [PATCH v2 0/3] drm: fix and enable warnings on unused static inlines Jani Nikula
@ 2024-12-05 15:02 ` Jani Nikula
2024-12-05 15:03 ` [PATCH v2 2/3] drm: renesas: rcar-du: annotate rcar_cmm_read() " Jani Nikula
` (5 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Jani Nikula @ 2024-12-05 15:02 UTC (permalink / raw)
To: dri-devel
Cc: intel-gfx, jani.nikula, Andrzej Hajda, Neil Armstrong,
Robert Foss, Laurent Pinchart, Jonas Karlman, Jernej Skrabec,
Nathan Chancellor
Building with clang and and W=1 leads to warning about unused
hdmi_read(). Fix by annotating it with __maybe_unused.
See also commit 6863f5643dd7 ("kbuild: allow Clang to find unused static
inline functions for W=1 build").
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
Cc: Andrzej Hajda <andrzej.hajda@intel.com>
Cc: Neil Armstrong <neil.armstrong@linaro.org>
Cc: Robert Foss <rfoss@kernel.org>
Cc: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
Cc: Jonas Karlman <jonas@kwiboo.se>
Cc: Jernej Skrabec <jernej.skrabec@gmail.com>
Cc: Nathan Chancellor <nathan@kernel.org>
---
drivers/gpu/drm/bridge/synopsys/dw-hdmi-i2s-audio.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/bridge/synopsys/dw-hdmi-i2s-audio.c b/drivers/gpu/drm/bridge/synopsys/dw-hdmi-i2s-audio.c
index 26c187d20d97..4377f9d89a82 100644
--- a/drivers/gpu/drm/bridge/synopsys/dw-hdmi-i2s-audio.c
+++ b/drivers/gpu/drm/bridge/synopsys/dw-hdmi-i2s-audio.c
@@ -27,7 +27,7 @@ static inline void hdmi_write(struct dw_hdmi_i2s_audio_data *audio,
audio->write(hdmi, val, offset);
}
-static inline u8 hdmi_read(struct dw_hdmi_i2s_audio_data *audio, int offset)
+static inline __maybe_unused u8 hdmi_read(struct dw_hdmi_i2s_audio_data *audio, int offset)
{
struct dw_hdmi *hdmi = audio->hdmi;
--
2.39.5
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH v2 2/3] drm: renesas: rcar-du: annotate rcar_cmm_read() with __maybe_unused
2024-12-05 15:02 [PATCH v2 0/3] drm: fix and enable warnings on unused static inlines Jani Nikula
2024-12-05 15:02 ` [PATCH v2 1/3] drm/bridge: dw-hdmi-i2s: annotate hdmi_read() with __maybe_unused Jani Nikula
@ 2024-12-05 15:03 ` Jani Nikula
2024-12-05 16:02 ` Laurent Pinchart
2024-12-05 15:03 ` [PATCH v2 3/3] drm: enable warnings on unused static inlines Jani Nikula
` (4 subsequent siblings)
6 siblings, 1 reply; 10+ messages in thread
From: Jani Nikula @ 2024-12-05 15:03 UTC (permalink / raw)
To: dri-devel
Cc: intel-gfx, jani.nikula, Laurent Pinchart, Kieran Bingham,
linux-renesas-soc, Nathan Chancellor
Building with clang and and W=1 leads to warning about unused
rcar_cmm_read(). Fix by annotating it with __maybe_unused.
See also commit 6863f5643dd7 ("kbuild: allow Clang to find unused static
inline functions for W=1 build").
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
Cc: linux-renesas-soc@vger.kernel.org
Cc: Nathan Chancellor <nathan@kernel.org>
---
drivers/gpu/drm/renesas/rcar-du/rcar_cmm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/renesas/rcar-du/rcar_cmm.c b/drivers/gpu/drm/renesas/rcar-du/rcar_cmm.c
index 26a2f5ad8ee5..ea52b0af9226 100644
--- a/drivers/gpu/drm/renesas/rcar-du/rcar_cmm.c
+++ b/drivers/gpu/drm/renesas/rcar-du/rcar_cmm.c
@@ -32,7 +32,7 @@ struct rcar_cmm {
} lut;
};
-static inline int rcar_cmm_read(struct rcar_cmm *rcmm, u32 reg)
+static inline __maybe_unused int rcar_cmm_read(struct rcar_cmm *rcmm, u32 reg)
{
return ioread32(rcmm->base + reg);
}
--
2.39.5
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH v2 3/3] drm: enable warnings on unused static inlines
2024-12-05 15:02 [PATCH v2 0/3] drm: fix and enable warnings on unused static inlines Jani Nikula
2024-12-05 15:02 ` [PATCH v2 1/3] drm/bridge: dw-hdmi-i2s: annotate hdmi_read() with __maybe_unused Jani Nikula
2024-12-05 15:03 ` [PATCH v2 2/3] drm: renesas: rcar-du: annotate rcar_cmm_read() " Jani Nikula
@ 2024-12-05 15:03 ` Jani Nikula
2024-12-05 21:18 ` ✗ Fi.CI.CHECKPATCH: warning for drm: fix and enable warnings on unused static inlines (rev2) Patchwork
` (3 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Jani Nikula @ 2024-12-05 15:03 UTC (permalink / raw)
To: dri-devel; +Cc: intel-gfx, jani.nikula, Nathan Chancellor
We enable most W=1 warnings by default subsystem wide. Also enable
warnings on unused static inlines when building with clang.
See also commit 6863f5643dd7 ("kbuild: allow Clang to find unused static
inline functions for W=1 build").
Cc: Nathan Chancellor <nathan@kernel.org>
Tested-by: Nathan Chancellor <nathan@kernel.org> # build
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/Makefile | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/gpu/drm/Makefile b/drivers/gpu/drm/Makefile
index 1677c1f335fb..73b3b3dbc27e 100644
--- a/drivers/gpu/drm/Makefile
+++ b/drivers/gpu/drm/Makefile
@@ -19,6 +19,9 @@ subdir-ccflags-y += $(call cc-option, -Wformat-overflow)
# FIXME: fix -Wformat-truncation warnings and uncomment
#subdir-ccflags-y += $(call cc-option, -Wformat-truncation)
subdir-ccflags-y += $(call cc-option, -Wstringop-truncation)
+
+subdir-ccflags-y += -DKBUILD_EXTRA_WARN1
+
# The following turn off the warnings enabled by -Wextra
ifeq ($(findstring 2, $(KBUILD_EXTRA_WARN)),)
subdir-ccflags-y += -Wno-missing-field-initializers
--
2.39.5
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH v2 2/3] drm: renesas: rcar-du: annotate rcar_cmm_read() with __maybe_unused
2024-12-05 15:03 ` [PATCH v2 2/3] drm: renesas: rcar-du: annotate rcar_cmm_read() " Jani Nikula
@ 2024-12-05 16:02 ` Laurent Pinchart
2025-01-09 12:42 ` Jani Nikula
0 siblings, 1 reply; 10+ messages in thread
From: Laurent Pinchart @ 2024-12-05 16:02 UTC (permalink / raw)
To: Jani Nikula
Cc: dri-devel, intel-gfx, Kieran Bingham, linux-renesas-soc,
Nathan Chancellor
On Thu, Dec 05, 2024 at 05:03:00PM +0200, Jani Nikula wrote:
> Building with clang and and W=1 leads to warning about unused
> rcar_cmm_read(). Fix by annotating it with __maybe_unused.
>
> See also commit 6863f5643dd7 ("kbuild: allow Clang to find unused static
> inline functions for W=1 build").
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
https://lore.kernel.org/r/20240911095113.GB4470@pendragon.ideasonboard.com
I wonder if Dave and Sima are starting to ignore my pull request in the
hope I'll switch to using drm-misc :-S I'll send another one.
> ---
>
> Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> Cc: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
> Cc: linux-renesas-soc@vger.kernel.org
> Cc: Nathan Chancellor <nathan@kernel.org>
> ---
> drivers/gpu/drm/renesas/rcar-du/rcar_cmm.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/renesas/rcar-du/rcar_cmm.c b/drivers/gpu/drm/renesas/rcar-du/rcar_cmm.c
> index 26a2f5ad8ee5..ea52b0af9226 100644
> --- a/drivers/gpu/drm/renesas/rcar-du/rcar_cmm.c
> +++ b/drivers/gpu/drm/renesas/rcar-du/rcar_cmm.c
> @@ -32,7 +32,7 @@ struct rcar_cmm {
> } lut;
> };
>
> -static inline int rcar_cmm_read(struct rcar_cmm *rcmm, u32 reg)
> +static inline __maybe_unused int rcar_cmm_read(struct rcar_cmm *rcmm, u32 reg)
> {
> return ioread32(rcmm->base + reg);
> }
--
Regards,
Laurent Pinchart
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Fi.CI.CHECKPATCH: warning for drm: fix and enable warnings on unused static inlines (rev2)
2024-12-05 15:02 [PATCH v2 0/3] drm: fix and enable warnings on unused static inlines Jani Nikula
` (2 preceding siblings ...)
2024-12-05 15:03 ` [PATCH v2 3/3] drm: enable warnings on unused static inlines Jani Nikula
@ 2024-12-05 21:18 ` Patchwork
2024-12-05 21:18 ` ✗ Fi.CI.SPARSE: " Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-12-05 21:18 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
== Series Details ==
Series: drm: fix and enable warnings on unused static inlines (rev2)
URL : https://patchwork.freedesktop.org/series/138460/
State : warning
== Summary ==
Error: dim checkpatch failed
dc99fb0a4943 drm/bridge: dw-hdmi-i2s: annotate hdmi_read() with __maybe_unused
-:7: WARNING:REPEATED_WORD: Possible repeated word: 'and'
#7:
Building with clang and and W=1 leads to warning about unused
total: 0 errors, 1 warnings, 0 checks, 8 lines checked
e3994671b5b8 drm: renesas: rcar-du: annotate rcar_cmm_read() with __maybe_unused
-:7: WARNING:REPEATED_WORD: Possible repeated word: 'and'
#7:
Building with clang and and W=1 leads to warning about unused
total: 0 errors, 1 warnings, 0 checks, 8 lines checked
004ed9e0f32f drm: enable warnings on unused static inlines
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Fi.CI.SPARSE: warning for drm: fix and enable warnings on unused static inlines (rev2)
2024-12-05 15:02 [PATCH v2 0/3] drm: fix and enable warnings on unused static inlines Jani Nikula
` (3 preceding siblings ...)
2024-12-05 21:18 ` ✗ Fi.CI.CHECKPATCH: warning for drm: fix and enable warnings on unused static inlines (rev2) Patchwork
@ 2024-12-05 21:18 ` Patchwork
2024-12-05 21:35 ` ✓ i915.CI.BAT: success " Patchwork
2024-12-05 22:45 ` ✓ i915.CI.Full: " Patchwork
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-12-05 21:18 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
== Series Details ==
Series: drm: fix and enable warnings on unused static inlines (rev2)
URL : https://patchwork.freedesktop.org/series/138460/
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] 10+ messages in thread
* ✓ i915.CI.BAT: success for drm: fix and enable warnings on unused static inlines (rev2)
2024-12-05 15:02 [PATCH v2 0/3] drm: fix and enable warnings on unused static inlines Jani Nikula
` (4 preceding siblings ...)
2024-12-05 21:18 ` ✗ Fi.CI.SPARSE: " Patchwork
@ 2024-12-05 21:35 ` Patchwork
2024-12-05 22:45 ` ✓ i915.CI.Full: " Patchwork
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-12-05 21:35 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
== Series Details ==
Series: drm: fix and enable warnings on unused static inlines (rev2)
URL : https://patchwork.freedesktop.org/series/138460/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15796 -> Patchwork_138460v2
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/index.html
Participating hosts (44 -> 43)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_138460v2 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests@dma_fence_chain:
- fi-bsw-nick: [PASS][1] -> [INCOMPLETE][2] ([i915#12904]) +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15796/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
* igt@i915_selftest@live@gt_mocs:
- bat-twl-2: [PASS][3] -> [ABORT][4] ([i915#12919]) +1 other test abort
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15796/bat-twl-2/igt@i915_selftest@live@gt_mocs.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/bat-twl-2/igt@i915_selftest@live@gt_mocs.html
#### Possible fixes ####
* igt@i915_module_load@load:
- {bat-mtlp-9}: [DMESG-WARN][5] -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15796/bat-mtlp-9/igt@i915_module_load@load.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/bat-mtlp-9/igt@i915_module_load@load.html
* igt@i915_module_load@reload:
- bat-jsl-3: [DMESG-WARN][7] ([i915#1982]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15796/bat-jsl-3/igt@i915_module_load@reload.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/bat-jsl-3/igt@i915_module_load@reload.html
* igt@i915_selftest@live:
- bat-mtlp-8: [ABORT][9] ([i915#12061]) -> [PASS][10] +1 other test pass
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15796/bat-mtlp-8/igt@i915_selftest@live.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/bat-mtlp-8/igt@i915_selftest@live.html
- bat-adlp-6: [ABORT][11] ([i915#9413]) -> [PASS][12] +1 other test pass
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15796/bat-adlp-6/igt@i915_selftest@live.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/bat-adlp-6/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- {bat-arls-6}: [ABORT][13] ([i915#12061]) -> [PASS][14] +1 other test pass
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15796/bat-arls-6/igt@i915_selftest@live@workarounds.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/bat-arls-6/igt@i915_selftest@live@workarounds.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- bat-dg2-13: [DMESG-WARN][15] ([i915#12253]) -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15796/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_pipe_crc_basic@hang-read-crc:
- fi-cfl-8109u: [DMESG-WARN][17] ([i915#12914]) -> [PASS][18] +1 other test pass
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15796/fi-cfl-8109u/igt@kms_pipe_crc_basic@hang-read-crc.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/fi-cfl-8109u/igt@kms_pipe_crc_basic@hang-read-crc.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12253]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12253
[i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
[i915#12914]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12914
[i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413
Build changes
-------------
* Linux: CI_DRM_15796 -> Patchwork_138460v2
CI-20190529: 20190529
CI_DRM_15796: 1b7746f770882ce40dacae683e8e65657c40c2b7 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8138: 8138
Patchwork_138460v2: 1b7746f770882ce40dacae683e8e65657c40c2b7 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/index.html
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ i915.CI.Full: success for drm: fix and enable warnings on unused static inlines (rev2)
2024-12-05 15:02 [PATCH v2 0/3] drm: fix and enable warnings on unused static inlines Jani Nikula
` (5 preceding siblings ...)
2024-12-05 21:35 ` ✓ i915.CI.BAT: success " Patchwork
@ 2024-12-05 22:45 ` Patchwork
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-12-05 22:45 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 28522 bytes --]
== Series Details ==
Series: drm: fix and enable warnings on unused static inlines (rev2)
URL : https://patchwork.freedesktop.org/series/138460/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15796_full -> Patchwork_138460v2_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 10)
------------------------------
Additional (1): pig-kbl-iris
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_138460v2_full:
### Piglit changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-b-dp-1:
- pig-kbl-iris: NOTRUN -> [{DMESG-WARN}][1] +4 other tests {dmesg-warn}
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/pig-kbl-iris/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-b-dp-1.html
Known issues
------------
Here are the changes found in Patchwork_138460v2_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@drm_fdinfo@virtual-busy-all:
- shard-dg2: NOTRUN -> [SKIP][2] ([i915#8414]) +8 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg2-4/igt@drm_fdinfo@virtual-busy-all.html
* igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][3] -> [INCOMPLETE][4] ([i915#12392] / [i915#7297])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15796/shard-dg2-11/igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-smem-lmem0.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg2-10/igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-smem-lmem0.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt:
- shard-dg2: NOTRUN -> [SKIP][5] ([i915#5882]) +7 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg2-3/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html
* igt@gem_ctx_sseu@engines:
- shard-dg1: NOTRUN -> [SKIP][6] ([i915#280])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg1-13/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#280])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg2-4/igt@gem_ctx_sseu@invalid-sseu.html
- shard-tglu: NOTRUN -> [SKIP][8] ([i915#280])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-tglu-10/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-tglu-1: NOTRUN -> [ABORT][9] ([i915#13218]) +1 other test abort
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-tglu-1/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#4525])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-tglu-10/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_fence@submit67:
- shard-dg2: NOTRUN -> [SKIP][11] ([i915#4812])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg2-4/igt@gem_exec_fence@submit67.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#4860])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg2-4/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu-1: NOTRUN -> [SKIP][13] ([i915#4613])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-tglu-1/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [PASS][14] -> [TIMEOUT][15] ([i915#5493]) +1 other test timeout
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15796/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_mmap_gtt@basic-write-read:
- shard-dg1: NOTRUN -> [SKIP][16] ([i915#4077])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg1-13/igt@gem_mmap_gtt@basic-write-read.html
* igt@gem_mmap_gtt@cpuset-big-copy-xy:
- shard-dg2: NOTRUN -> [SKIP][17] ([i915#4077])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg2-4/igt@gem_mmap_gtt@cpuset-big-copy-xy.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#3282])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg2-3/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#4270])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg1-13/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#3297])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg1-17/igt@gem_userptr_blits@coherency-sync.html
- shard-tglu: NOTRUN -> [SKIP][21] ([i915#3297])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-tglu-2/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#3297])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg2-3/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#2856])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg2-4/igt@gen9_exec_parse@bb-start-far.html
- shard-tglu: NOTRUN -> [SKIP][24] ([i915#2527] / [i915#2856])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-tglu-10/igt@gen9_exec_parse@bb-start-far.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-dg2: NOTRUN -> [SKIP][25]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg2-4/igt@i915_query@query-topology-known-pci-ids.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#4212])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg1-13/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg1: NOTRUN -> [SKIP][27] ([i915#1769] / [i915#3555])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][28] -> [FAIL][29] ([i915#11808]) +1 other test fail
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15796/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-tglu-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#4538] / [i915#5190])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg2-4/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#6095]) +37 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg1-12/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-3.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#10307] / [i915#6095]) +44 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][33] ([i915#6095]) +14 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-tglu-2/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][34] ([i915#6095]) +19 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-rkl-2/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#7828])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg1-13/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#7828])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg2-3/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#7118] / [i915#9424])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg2-3/igt@kms_content_protection@atomic-dpms.html
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [DMESG-WARN][38] ([i915#12964]) +1 other test dmesg-warn
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-tglu-1: NOTRUN -> [SKIP][39] ([i915#3555])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-tglu-1: NOTRUN -> [SKIP][40] +5 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-tglu-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#5354]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg2-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions:
- shard-glk: [PASS][42] -> [FAIL][43] ([i915#2346])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15796/shard-glk4/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-glk8/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#9337])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg2-4/igt@kms_feature_discovery@dp-mst.html
- shard-tglu: NOTRUN -> [SKIP][45] ([i915#9337])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-tglu-10/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#9934])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg2-4/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
- shard-tglu: NOTRUN -> [SKIP][47] ([i915#3637]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-tglu-10/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#9934]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg1-17/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][49] ([i915#2672] / [i915#3555])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][50] ([i915#2587] / [i915#2672])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][51] +4 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][52] +12 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#8708]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#3458])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#3458])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#8708])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglu: NOTRUN -> [SKIP][57] ([i915#1839])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-tglu-10/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pm_dc@dc5-dpms:
- shard-rkl: [PASS][58] -> [DMESG-WARN][59] ([i915#12964])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15796/shard-rkl-5/igt@kms_pm_dc@dc5-dpms.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-rkl-3/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][60] ([i915#11520]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-tglu-10/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#11520]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg1-13/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-pr-primary-blt:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#1072] / [i915#9732]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg1-13/igt@kms_psr@fbc-pr-primary-blt.html
* igt@kms_psr@fbc-psr-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#1072] / [i915#9732])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg2-4/igt@kms_psr@fbc-psr-primary-mmap-gtt.html
- shard-tglu: NOTRUN -> [SKIP][64] ([i915#9732])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-tglu-10/igt@kms_psr@fbc-psr-primary-mmap-gtt.html
* igt@kms_psr@fbc-psr2-sprite-blt:
- shard-tglu-1: NOTRUN -> [SKIP][65] ([i915#9732])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-tglu-1/igt@kms_psr@fbc-psr2-sprite-blt.html
* igt@kms_selftest@drm_framebuffer:
- shard-tglu-1: NOTRUN -> [ABORT][66] ([i915#13179]) +1 other test abort
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@basic:
- shard-dg1: [PASS][67] -> [FAIL][68] ([i915#5465]) +2 other tests fail
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15796/shard-dg1-18/igt@kms_setmode@basic.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg1-17/igt@kms_setmode@basic.html
- shard-tglu: [PASS][69] -> [FAIL][70] ([i915#5465]) +2 other tests fail
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15796/shard-tglu-7/igt@kms_setmode@basic.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-tglu-5/igt@kms_setmode@basic.html
- shard-rkl: [PASS][71] -> [FAIL][72] ([i915#5465])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15796/shard-rkl-4/igt@kms_setmode@basic.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-rkl-1/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][73] ([i915#5465]) +1 other test fail
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-rkl-1/igt@kms_setmode@basic@pipe-b-hdmi-a-2.html
* igt@perf@polling-parameterized:
- shard-dg1: NOTRUN -> [ABORT][74] ([i915#13218]) +1 other test abort
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg1-17/igt@perf@polling-parameterized.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-tglu: NOTRUN -> [ABORT][75] ([i915#13218]) +2 other tests abort
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-tglu-10/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@init-busy@rcs0:
- shard-dg2: NOTRUN -> [ABORT][76] ([i915#13218]) +3 other tests abort
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg2-3/igt@perf_pmu@init-busy@rcs0.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#9917])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg2-4/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1:
- shard-tglu: NOTRUN -> [FAIL][78] ([i915#12910]) +9 other tests fail
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-tglu-10/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
#### Possible fixes ####
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: [FAIL][79] ([i915#3591]) -> [PASS][80]
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15796/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@kms_flip@flip-vs-blocking-wf-vblank:
- shard-rkl: [FAIL][81] ([i915#11989] / [i915#13152]) -> [PASS][82]
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15796/shard-rkl-7/igt@kms_flip@flip-vs-blocking-wf-vblank.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-rkl-7/igt@kms_flip@flip-vs-blocking-wf-vblank.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1:
- shard-rkl: [FAIL][83] ([i915#13152]) -> [PASS][84]
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15796/shard-rkl-7/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-rkl-7/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html
#### Warnings ####
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk: [INCOMPLETE][85] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][86] ([i915#12745] / [i915#1982] / [i915#4839])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15796/shard-glk3/igt@kms_flip@2x-flip-vs-suspend.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-glk5/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
- shard-glk: [INCOMPLETE][87] ([i915#4839]) -> [INCOMPLETE][88] ([i915#1982] / [i915#4839])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15796/shard-glk3/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-glk5/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][89] ([i915#10433] / [i915#3458]) -> [SKIP][90] ([i915#3458]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15796/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2: [SKIP][91] -> [SKIP][92] ([i915#12713])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15796/shard-dg2-10/igt@kms_hdr@brightness-with-hdr.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-dg2-1/igt@kms_hdr@brightness-with-hdr.html
- shard-rkl: [SKIP][93] ([i915#1187] / [i915#12713]) -> [SKIP][94] ([i915#12713])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15796/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-rkl-5/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][95] ([i915#4816]) -> [SKIP][96] ([i915#4070] / [i915#4816])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15796/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138460v2/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
### Piglit changes ###
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12920
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13152
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13218]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13218
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[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#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7297
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[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_15796 -> Patchwork_138460v2
CI-20190529: 20190529
CI_DRM_15796: 1b7746f770882ce40dacae683e8e65657c40c2b7 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8138: 8138
Patchwork_138460v2: 1b7746f770882ce40dacae683e8e65657c40c2b7 @ 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_138460v2/index.html
[-- Attachment #2: Type: text/html, Size: 33314 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 2/3] drm: renesas: rcar-du: annotate rcar_cmm_read() with __maybe_unused
2024-12-05 16:02 ` Laurent Pinchart
@ 2025-01-09 12:42 ` Jani Nikula
0 siblings, 0 replies; 10+ messages in thread
From: Jani Nikula @ 2025-01-09 12:42 UTC (permalink / raw)
To: Laurent Pinchart
Cc: dri-devel, intel-gfx, Kieran Bingham, linux-renesas-soc,
Nathan Chancellor
On Thu, 05 Dec 2024, Laurent Pinchart <laurent.pinchart@ideasonboard.com> wrote:
> On Thu, Dec 05, 2024 at 05:03:00PM +0200, Jani Nikula wrote:
>> Building with clang and and W=1 leads to warning about unused
>> rcar_cmm_read(). Fix by annotating it with __maybe_unused.
>>
>> See also commit 6863f5643dd7 ("kbuild: allow Clang to find unused static
>> inline functions for W=1 build").
>>
>> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>
> https://lore.kernel.org/r/20240911095113.GB4470@pendragon.ideasonboard.com
>
> I wonder if Dave and Sima are starting to ignore my pull request in the
> hope I'll switch to using drm-misc :-S I'll send another one.
Have you sent the pull request again? I haven't seen one.
BR,
Jani.
>
>> ---
>>
>> Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
>> Cc: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
>> Cc: linux-renesas-soc@vger.kernel.org
>> Cc: Nathan Chancellor <nathan@kernel.org>
>> ---
>> drivers/gpu/drm/renesas/rcar-du/rcar_cmm.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/renesas/rcar-du/rcar_cmm.c b/drivers/gpu/drm/renesas/rcar-du/rcar_cmm.c
>> index 26a2f5ad8ee5..ea52b0af9226 100644
>> --- a/drivers/gpu/drm/renesas/rcar-du/rcar_cmm.c
>> +++ b/drivers/gpu/drm/renesas/rcar-du/rcar_cmm.c
>> @@ -32,7 +32,7 @@ struct rcar_cmm {
>> } lut;
>> };
>>
>> -static inline int rcar_cmm_read(struct rcar_cmm *rcmm, u32 reg)
>> +static inline __maybe_unused int rcar_cmm_read(struct rcar_cmm *rcmm, u32 reg)
>> {
>> return ioread32(rcmm->base + reg);
>> }
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2025-01-09 12:42 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-05 15:02 [PATCH v2 0/3] drm: fix and enable warnings on unused static inlines Jani Nikula
2024-12-05 15:02 ` [PATCH v2 1/3] drm/bridge: dw-hdmi-i2s: annotate hdmi_read() with __maybe_unused Jani Nikula
2024-12-05 15:03 ` [PATCH v2 2/3] drm: renesas: rcar-du: annotate rcar_cmm_read() " Jani Nikula
2024-12-05 16:02 ` Laurent Pinchart
2025-01-09 12:42 ` Jani Nikula
2024-12-05 15:03 ` [PATCH v2 3/3] drm: enable warnings on unused static inlines Jani Nikula
2024-12-05 21:18 ` ✗ Fi.CI.CHECKPATCH: warning for drm: fix and enable warnings on unused static inlines (rev2) Patchwork
2024-12-05 21:18 ` ✗ Fi.CI.SPARSE: " Patchwork
2024-12-05 21:35 ` ✓ i915.CI.BAT: success " Patchwork
2024-12-05 22:45 ` ✓ i915.CI.Full: " 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).