* [PATCH 00/22] drm: fix headers, add header test facility
@ 2024-03-06 18:31 Jani Nikula
2024-03-06 18:31 ` [PATCH 01/22] drm/crtc: make drm_crtc_internal.h self-contained Jani Nikula
` (30 more replies)
0 siblings, 31 replies; 47+ messages in thread
From: Jani Nikula @ 2024-03-06 18:31 UTC (permalink / raw)
To: dri-devel
Cc: intel-gfx, intel-xe, jani.nikula, David Airlie, Daniel Vetter,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann,
Masahiro Yamada
First, fix a bunch of issues in drm headers, uncovered with the last
patch. A few kernel-doc warnings are just brushed under the carpet for
now, with a FIXME comment. Otherwise, pretty straightforward stuff.
Second, add a header test facility to catch issues at build time when
CONFIG_DRM_HEADER_TEST=y. This is the last patch, and I think needs
Masahiro's ack.
BR,
Jani.
Cc: David Airlie <airlied@gmail.com>
Cc: Daniel Vetter <daniel@ffwll.ch>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Cc: Maxime Ripard <mripard@kernel.org>
Cc: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Masahiro Yamada <masahiroy@kernel.org>
Jani Nikula (22):
drm/crtc: make drm_crtc_internal.h self-contained
drm: add missing header guards to drm_internal.h
drm/kunit: fix drm_kunit_helpers.h kernel-doc
drm/amdgpu: make amd_asic_type.h self-contained
drm: bridge: samsung-dsim: make samsung-dsim.h self-contained
drm/dp_mst: fix drm_dp_mst_helper.h kernel-doc
drm/crc: make drm_debugfs_crc.h self-contained and fix kernel-doc
drm/encoder: silence drm_encoder_slave.h kernel-doc
drm: fix drm_format_helper.h kernel-doc warnings
drm/lease: make drm_lease.h self-contained
drm: fix drm_gem_vram_helper.h kernel-doc
drm/of: make drm_of.h self-contained
drm/i2c: silence ch7006.h and sil164.h kernel-doc warnings
drm/suballoc: fix drm_suballoc.h kernel-doc
drm/i915: fix i915_gsc_proxy_mei_interface.h kernel-doc
drm/i915/hdcp: fix i915_hdcp_interface.h kernel-doc warnings
drm/i915/pxp: fix i915_pxp_tee_interface.h kernel-doc warnings
drm/ttm: fix ttm_bo.h kernel-doc warnings
drm/ttm: make ttm_caching.h self-contained
drm/ttm: fix ttm_execbuf_util.h kernel-doc warnings
drm/ttm: fix ttm_kmap_iter.h kernel-doc warnings
drm: ensure drm headers are self-contained and pass kernel-doc
Kbuild | 1 +
drivers/gpu/drm/Kconfig | 11 +++++++++++
drivers/gpu/drm/Makefile | 18 ++++++++++++++++++
drivers/gpu/drm/drm_crtc_internal.h | 1 +
drivers/gpu/drm/drm_internal.h | 5 +++++
include/Kbuild | 1 +
include/drm/Makefile | 18 ++++++++++++++++++
include/drm/amd_asic_type.h | 3 +++
include/drm/bridge/samsung-dsim.h | 4 +++-
include/drm/display/drm_dp_mst_helper.h | 1 -
include/drm/drm_debugfs_crc.h | 8 +++++++-
include/drm/drm_encoder_slave.h | 3 +++
include/drm/drm_format_helper.h | 1 +
include/drm/drm_gem_vram_helper.h | 1 -
include/drm/drm_kunit_helpers.h | 2 +-
include/drm/drm_lease.h | 2 ++
include/drm/drm_of.h | 1 +
include/drm/drm_suballoc.h | 2 +-
include/drm/i2c/ch7006.h | 1 +
include/drm/i2c/sil164.h | 1 +
include/drm/i915_gsc_proxy_mei_interface.h | 4 ++--
include/drm/i915_hdcp_interface.h | 18 +++++++++++++-----
include/drm/i915_pxp_tee_interface.h | 19 ++++++++++++-------
include/drm/ttm/ttm_bo.h | 18 ++++++++++++------
include/drm/ttm/ttm_caching.h | 2 ++
include/drm/ttm/ttm_execbuf_util.h | 7 +++----
include/drm/ttm/ttm_kmap_iter.h | 4 ++--
27 files changed, 125 insertions(+), 32 deletions(-)
create mode 100644 include/Kbuild
create mode 100644 include/drm/Makefile
--
2.39.2
^ permalink raw reply [flat|nested] 47+ messages in thread
* [PATCH 01/22] drm/crtc: make drm_crtc_internal.h self-contained
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
@ 2024-03-06 18:31 ` Jani Nikula
2024-03-07 8:34 ` [PATCH v2] " Jani Nikula
2024-03-06 18:31 ` [PATCH 02/22] drm: add missing header guards to drm_internal.h Jani Nikula
` (29 subsequent siblings)
30 siblings, 1 reply; 47+ messages in thread
From: Jani Nikula @ 2024-03-06 18:31 UTC (permalink / raw)
To: dri-devel; +Cc: intel-gfx, intel-xe, jani.nikula
Forward declare struct drm_printer.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/drm_crtc_internal.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/gpu/drm/drm_crtc_internal.h b/drivers/gpu/drm/drm_crtc_internal.h
index a514d5207e41..72c26f996b3b 100644
--- a/drivers/gpu/drm/drm_crtc_internal.h
+++ b/drivers/gpu/drm/drm_crtc_internal.h
@@ -54,6 +54,7 @@ struct drm_mode_object;
struct drm_mode_set;
struct drm_plane;
struct drm_plane_state;
+struct drm_printer;
struct drm_property;
struct edid;
struct fwnode_handle;
--
2.39.2
^ permalink raw reply related [flat|nested] 47+ messages in thread
* [PATCH 02/22] drm: add missing header guards to drm_internal.h
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
2024-03-06 18:31 ` [PATCH 01/22] drm/crtc: make drm_crtc_internal.h self-contained Jani Nikula
@ 2024-03-06 18:31 ` Jani Nikula
2024-03-06 18:31 ` [PATCH 03/22] drm/kunit: fix drm_kunit_helpers.h kernel-doc Jani Nikula
` (28 subsequent siblings)
30 siblings, 0 replies; 47+ messages in thread
From: Jani Nikula @ 2024-03-06 18:31 UTC (permalink / raw)
To: dri-devel; +Cc: intel-gfx, intel-xe, jani.nikula
Including the file twice leads to errors.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/drm_internal.h | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/drivers/gpu/drm/drm_internal.h b/drivers/gpu/drm/drm_internal.h
index 8e4faf0a28e6..d69744c9ac15 100644
--- a/drivers/gpu/drm/drm_internal.h
+++ b/drivers/gpu/drm/drm_internal.h
@@ -21,6 +21,9 @@
* OTHER DEALINGS IN THE SOFTWARE.
*/
+#ifndef __DRM_INTERNAL_H__
+#define __DRM_INTERNAL_H__
+
#include <linux/kthread.h>
#include <linux/types.h>
@@ -276,3 +279,5 @@ void drm_framebuffer_debugfs_init(struct drm_device *dev);
/* drm_edid.c */
void drm_edid_cta_sad_get(const struct cea_sad *cta_sad, u8 *sad);
void drm_edid_cta_sad_set(struct cea_sad *cta_sad, const u8 *sad);
+
+#endif /* __DRM_INTERNAL_H__ */
--
2.39.2
^ permalink raw reply related [flat|nested] 47+ messages in thread
* [PATCH 03/22] drm/kunit: fix drm_kunit_helpers.h kernel-doc
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
2024-03-06 18:31 ` [PATCH 01/22] drm/crtc: make drm_crtc_internal.h self-contained Jani Nikula
2024-03-06 18:31 ` [PATCH 02/22] drm: add missing header guards to drm_internal.h Jani Nikula
@ 2024-03-06 18:31 ` Jani Nikula
2024-03-06 18:31 ` [PATCH 04/22] drm/amdgpu: make amd_asic_type.h self-contained Jani Nikula
` (27 subsequent siblings)
30 siblings, 0 replies; 47+ messages in thread
From: Jani Nikula @ 2024-03-06 18:31 UTC (permalink / raw)
To: dri-devel; +Cc: intel-gfx, intel-xe, jani.nikula
s/_features/_feat/ to match code.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
include/drm/drm_kunit_helpers.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/drm/drm_kunit_helpers.h b/include/drm/drm_kunit_helpers.h
index 6e99627edf45..e7cc17ee4934 100644
--- a/include/drm/drm_kunit_helpers.h
+++ b/include/drm/drm_kunit_helpers.h
@@ -75,7 +75,7 @@ __drm_kunit_helper_alloc_drm_device(struct kunit *test,
* @_dev: The parent device object
* @_type: the type of the struct which contains struct &drm_device
* @_member: the name of the &drm_device within @_type.
- * @_features: Mocked DRM device driver features
+ * @_feat: Mocked DRM device driver features
*
* This function creates a struct &drm_driver and will create a struct
* &drm_device from @_dev and that driver.
--
2.39.2
^ permalink raw reply related [flat|nested] 47+ messages in thread
* [PATCH 04/22] drm/amdgpu: make amd_asic_type.h self-contained
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
` (2 preceding siblings ...)
2024-03-06 18:31 ` [PATCH 03/22] drm/kunit: fix drm_kunit_helpers.h kernel-doc Jani Nikula
@ 2024-03-06 18:31 ` Jani Nikula
2024-03-07 14:36 ` Alex Deucher
2024-03-06 18:31 ` [PATCH 05/22] drm: bridge: samsung-dsim: make samsung-dsim.h self-contained Jani Nikula
` (26 subsequent siblings)
30 siblings, 1 reply; 47+ messages in thread
From: Jani Nikula @ 2024-03-06 18:31 UTC (permalink / raw)
To: dri-devel; +Cc: intel-gfx, intel-xe, jani.nikula
Include <linux/types.h> for u8.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
include/drm/amd_asic_type.h | 3 +++
1 file changed, 3 insertions(+)
diff --git a/include/drm/amd_asic_type.h b/include/drm/amd_asic_type.h
index 724c45e3e9a7..9be85b821aa6 100644
--- a/include/drm/amd_asic_type.h
+++ b/include/drm/amd_asic_type.h
@@ -22,6 +22,9 @@
#ifndef __AMD_ASIC_TYPE_H__
#define __AMD_ASIC_TYPE_H__
+
+#include <linux/types.h>
+
/*
* Supported ASIC types
*/
--
2.39.2
^ permalink raw reply related [flat|nested] 47+ messages in thread
* [PATCH 05/22] drm: bridge: samsung-dsim: make samsung-dsim.h self-contained
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
` (3 preceding siblings ...)
2024-03-06 18:31 ` [PATCH 04/22] drm/amdgpu: make amd_asic_type.h self-contained Jani Nikula
@ 2024-03-06 18:31 ` Jani Nikula
2024-03-06 18:31 ` [PATCH 06/22] drm/dp_mst: fix drm_dp_mst_helper.h kernel-doc Jani Nikula
` (25 subsequent siblings)
30 siblings, 0 replies; 47+ messages in thread
From: Jani Nikula @ 2024-03-06 18:31 UTC (permalink / raw)
To: dri-devel; +Cc: intel-gfx, intel-xe, jani.nikula
Include <drm/drm_bridge.h> and forward declare struct platform device.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
include/drm/bridge/samsung-dsim.h | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/include/drm/bridge/samsung-dsim.h b/include/drm/bridge/samsung-dsim.h
index e0c105051246..9764d6eb5beb 100644
--- a/include/drm/bridge/samsung-dsim.h
+++ b/include/drm/bridge/samsung-dsim.h
@@ -11,9 +11,11 @@
#include <linux/regulator/consumer.h>
#include <drm/drm_atomic_helper.h>
-#include <drm/drm_of.h>
+#include <drm/drm_bridge.h>
#include <drm/drm_mipi_dsi.h>
+#include <drm/drm_of.h>
+struct platform_device;
struct samsung_dsim;
#define DSIM_STATE_ENABLED BIT(0)
--
2.39.2
^ permalink raw reply related [flat|nested] 47+ messages in thread
* [PATCH 06/22] drm/dp_mst: fix drm_dp_mst_helper.h kernel-doc
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
` (4 preceding siblings ...)
2024-03-06 18:31 ` [PATCH 05/22] drm: bridge: samsung-dsim: make samsung-dsim.h self-contained Jani Nikula
@ 2024-03-06 18:31 ` Jani Nikula
2024-03-06 18:31 ` [PATCH 07/22] drm/crc: make drm_debugfs_crc.h self-contained and fix kernel-doc Jani Nikula
` (24 subsequent siblings)
30 siblings, 0 replies; 47+ messages in thread
From: Jani Nikula @ 2024-03-06 18:31 UTC (permalink / raw)
To: dri-devel; +Cc: intel-gfx, intel-xe, jani.nikula
Drop excess vcpi member documentation.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
include/drm/display/drm_dp_mst_helper.h | 1 -
1 file changed, 1 deletion(-)
diff --git a/include/drm/display/drm_dp_mst_helper.h b/include/drm/display/drm_dp_mst_helper.h
index 9b19d8bd520a..3ae88a383a41 100644
--- a/include/drm/display/drm_dp_mst_helper.h
+++ b/include/drm/display/drm_dp_mst_helper.h
@@ -83,7 +83,6 @@ struct drm_dp_mst_branch;
* @passthrough_aux: parent aux to which DSC pass-through requests should be
* sent, only set if DSC pass-through is possible.
* @parent: branch device parent of this port
- * @vcpi: Virtual Channel Payload info for this port.
* @connector: DRM connector this port is connected to. Protected by
* &drm_dp_mst_topology_mgr.base.lock.
* @mgr: topology manager this port lives under.
--
2.39.2
^ permalink raw reply related [flat|nested] 47+ messages in thread
* [PATCH 07/22] drm/crc: make drm_debugfs_crc.h self-contained and fix kernel-doc
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
` (5 preceding siblings ...)
2024-03-06 18:31 ` [PATCH 06/22] drm/dp_mst: fix drm_dp_mst_helper.h kernel-doc Jani Nikula
@ 2024-03-06 18:31 ` Jani Nikula
2024-03-06 18:31 ` [PATCH 08/22] drm/encoder: silence drm_encoder_slave.h kernel-doc Jani Nikula
` (23 subsequent siblings)
30 siblings, 0 replies; 47+ messages in thread
From: Jani Nikula @ 2024-03-06 18:31 UTC (permalink / raw)
To: dri-devel; +Cc: intel-gfx, intel-xe, jani.nikula
Add a number of require includes and forward declare struct
drm_crtc. s/crc/crcs/ kernel-doc to match code.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
include/drm/drm_debugfs_crc.h | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/include/drm/drm_debugfs_crc.h b/include/drm/drm_debugfs_crc.h
index b225eeb30d05..1b4c98c2f838 100644
--- a/include/drm/drm_debugfs_crc.h
+++ b/include/drm/drm_debugfs_crc.h
@@ -22,13 +22,19 @@
#ifndef __DRM_DEBUGFS_CRC_H__
#define __DRM_DEBUGFS_CRC_H__
+#include <linux/spinlock_types.h>
+#include <linux/types.h>
+#include <linux/wait.h>
+
+struct drm_crtc;
+
#define DRM_MAX_CRC_NR 10
/**
* struct drm_crtc_crc_entry - entry describing a frame's content
* @has_frame_counter: whether the source was able to provide a frame number
* @frame: number of the frame this CRC is about, if @has_frame_counter is true
- * @crc: array of values that characterize the frame
+ * @crcs: array of values that characterize the frame
*/
struct drm_crtc_crc_entry {
bool has_frame_counter;
--
2.39.2
^ permalink raw reply related [flat|nested] 47+ messages in thread
* [PATCH 08/22] drm/encoder: silence drm_encoder_slave.h kernel-doc
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
` (6 preceding siblings ...)
2024-03-06 18:31 ` [PATCH 07/22] drm/crc: make drm_debugfs_crc.h self-contained and fix kernel-doc Jani Nikula
@ 2024-03-06 18:31 ` Jani Nikula
2024-03-06 18:31 ` [PATCH 09/22] drm: fix drm_format_helper.h kernel-doc warnings Jani Nikula
` (22 subsequent siblings)
30 siblings, 0 replies; 47+ messages in thread
From: Jani Nikula @ 2024-03-06 18:31 UTC (permalink / raw)
To: dri-devel; +Cc: intel-gfx, intel-xe, jani.nikula
Mark some parts private to silence kernel-doc warnings, and add FIXME.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
include/drm/drm_encoder_slave.h | 3 +++
1 file changed, 3 insertions(+)
diff --git a/include/drm/drm_encoder_slave.h b/include/drm/drm_encoder_slave.h
index 7214101fd731..7f0ee97bb3a5 100644
--- a/include/drm/drm_encoder_slave.h
+++ b/include/drm/drm_encoder_slave.h
@@ -51,6 +51,7 @@ struct drm_encoder_slave_funcs {
void (*set_config)(struct drm_encoder *encoder,
void *params);
+ /* private: FIXME: document the hooks */
void (*destroy)(struct drm_encoder *encoder);
void (*dpms)(struct drm_encoder *encoder, int mode);
void (*save)(struct drm_encoder *encoder);
@@ -120,6 +121,7 @@ int drm_i2c_encoder_init(struct drm_device *dev,
* @slave_priv members of @encoder.
*/
struct drm_i2c_encoder_driver {
+ /* private: FIXME: document the members */
struct i2c_driver i2c_driver;
int (*encoder_init)(struct i2c_client *client,
@@ -133,6 +135,7 @@ struct drm_i2c_encoder_driver {
/**
* drm_i2c_encoder_get_client - Get the I2C client corresponding to an encoder
+ * @encoder: The encoder
*/
static inline struct i2c_client *drm_i2c_encoder_get_client(struct drm_encoder *encoder)
{
--
2.39.2
^ permalink raw reply related [flat|nested] 47+ messages in thread
* [PATCH 09/22] drm: fix drm_format_helper.h kernel-doc warnings
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
` (7 preceding siblings ...)
2024-03-06 18:31 ` [PATCH 08/22] drm/encoder: silence drm_encoder_slave.h kernel-doc Jani Nikula
@ 2024-03-06 18:31 ` Jani Nikula
2024-03-06 18:31 ` [PATCH 10/22] drm/lease: make drm_lease.h self-contained Jani Nikula
` (21 subsequent siblings)
30 siblings, 0 replies; 47+ messages in thread
From: Jani Nikula @ 2024-03-06 18:31 UTC (permalink / raw)
To: dri-devel; +Cc: intel-gfx, intel-xe, jani.nikula
As the documentation says, all the fields are considered private. Mark
them private also for kernel-doc to silence warnings.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
include/drm/drm_format_helper.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/include/drm/drm_format_helper.h b/include/drm/drm_format_helper.h
index f13b34e0b752..428d81afe215 100644
--- a/include/drm/drm_format_helper.h
+++ b/include/drm/drm_format_helper.h
@@ -25,6 +25,7 @@ struct iosys_map;
* All fields are considered private.
*/
struct drm_format_conv_state {
+ /* private: */
struct {
void *mem;
size_t size;
--
2.39.2
^ permalink raw reply related [flat|nested] 47+ messages in thread
* [PATCH 10/22] drm/lease: make drm_lease.h self-contained
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
` (8 preceding siblings ...)
2024-03-06 18:31 ` [PATCH 09/22] drm: fix drm_format_helper.h kernel-doc warnings Jani Nikula
@ 2024-03-06 18:31 ` Jani Nikula
2024-03-06 18:31 ` [PATCH 11/22] drm: fix drm_gem_vram_helper.h kernel-doc Jani Nikula
` (20 subsequent siblings)
30 siblings, 0 replies; 47+ messages in thread
From: Jani Nikula @ 2024-03-06 18:31 UTC (permalink / raw)
To: dri-devel; +Cc: intel-gfx, intel-xe, jani.nikula
Include <linux/types.h> for types used.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
include/drm/drm_lease.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/include/drm/drm_lease.h b/include/drm/drm_lease.h
index 5c9ef6a2aeae..53545b4ca9ef 100644
--- a/include/drm/drm_lease.h
+++ b/include/drm/drm_lease.h
@@ -6,6 +6,8 @@
#ifndef _DRM_LEASE_H_
#define _DRM_LEASE_H_
+#include <linux/types.h>
+
struct drm_file;
struct drm_device;
struct drm_master;
--
2.39.2
^ permalink raw reply related [flat|nested] 47+ messages in thread
* [PATCH 11/22] drm: fix drm_gem_vram_helper.h kernel-doc
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
` (9 preceding siblings ...)
2024-03-06 18:31 ` [PATCH 10/22] drm/lease: make drm_lease.h self-contained Jani Nikula
@ 2024-03-06 18:31 ` Jani Nikula
2024-03-06 18:31 ` [PATCH 12/22] drm/of: make drm_of.h self-contained Jani Nikula
` (19 subsequent siblings)
30 siblings, 0 replies; 47+ messages in thread
From: Jani Nikula @ 2024-03-06 18:31 UTC (permalink / raw)
To: dri-devel; +Cc: intel-gfx, intel-xe, jani.nikula
Remove excess funcs kernel-doc.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
include/drm/drm_gem_vram_helper.h | 1 -
1 file changed, 1 deletion(-)
diff --git a/include/drm/drm_gem_vram_helper.h b/include/drm/drm_gem_vram_helper.h
index e18429f09e53..c89c9bafeb44 100644
--- a/include/drm/drm_gem_vram_helper.h
+++ b/include/drm/drm_gem_vram_helper.h
@@ -170,7 +170,6 @@ void drm_gem_vram_simple_display_pipe_cleanup_fb(
* @vram_base: Base address of the managed video memory
* @vram_size: Size of the managed video memory in bytes
* @bdev: The TTM BO device.
- * @funcs: TTM BO functions
*
* The fields &struct drm_vram_mm.vram_base and
* &struct drm_vram_mm.vrm_size are managed by VRAM MM, but are
--
2.39.2
^ permalink raw reply related [flat|nested] 47+ messages in thread
* [PATCH 12/22] drm/of: make drm_of.h self-contained
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
` (10 preceding siblings ...)
2024-03-06 18:31 ` [PATCH 11/22] drm: fix drm_gem_vram_helper.h kernel-doc Jani Nikula
@ 2024-03-06 18:31 ` Jani Nikula
2024-03-06 18:31 ` [PATCH 13/22] drm/i2c: silence ch7006.h and sil164.h kernel-doc warnings Jani Nikula
` (18 subsequent siblings)
30 siblings, 0 replies; 47+ messages in thread
From: Jani Nikula @ 2024-03-06 18:31 UTC (permalink / raw)
To: dri-devel; +Cc: intel-gfx, intel-xe, jani.nikula
Include <linux/err.h> for ERR_PTR.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
include/drm/drm_of.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/include/drm/drm_of.h b/include/drm/drm_of.h
index 082a6e980d01..02d1cdd7f798 100644
--- a/include/drm/drm_of.h
+++ b/include/drm/drm_of.h
@@ -2,6 +2,7 @@
#ifndef __DRM_OF_H__
#define __DRM_OF_H__
+#include <linux/err.h>
#include <linux/of_graph.h>
#if IS_ENABLED(CONFIG_OF) && IS_ENABLED(CONFIG_DRM_PANEL_BRIDGE)
#include <drm/drm_bridge.h>
--
2.39.2
^ permalink raw reply related [flat|nested] 47+ messages in thread
* [PATCH 13/22] drm/i2c: silence ch7006.h and sil164.h kernel-doc warnings
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
` (11 preceding siblings ...)
2024-03-06 18:31 ` [PATCH 12/22] drm/of: make drm_of.h self-contained Jani Nikula
@ 2024-03-06 18:31 ` Jani Nikula
2024-03-06 18:31 ` [PATCH 14/22] drm/suballoc: fix drm_suballoc.h kernel-doc Jani Nikula
` (17 subsequent siblings)
30 siblings, 0 replies; 47+ messages in thread
From: Jani Nikula @ 2024-03-06 18:31 UTC (permalink / raw)
To: dri-devel; +Cc: intel-gfx, intel-xe, jani.nikula
Mark some members private to silence kernel-doc warnings, and add FIXME
comments.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
include/drm/i2c/ch7006.h | 1 +
include/drm/i2c/sil164.h | 1 +
2 files changed, 2 insertions(+)
diff --git a/include/drm/i2c/ch7006.h b/include/drm/i2c/ch7006.h
index 8390b437a1f8..5305b9797f93 100644
--- a/include/drm/i2c/ch7006.h
+++ b/include/drm/i2c/ch7006.h
@@ -37,6 +37,7 @@
* meaning.
*/
struct ch7006_encoder_params {
+ /* private: FIXME: document the members */
enum {
CH7006_FORMAT_RGB16 = 0,
CH7006_FORMAT_YCrCb24m16,
diff --git a/include/drm/i2c/sil164.h b/include/drm/i2c/sil164.h
index 205e27384c83..ddf248693c8b 100644
--- a/include/drm/i2c/sil164.h
+++ b/include/drm/i2c/sil164.h
@@ -36,6 +36,7 @@
* See "http://www.siliconimage.com/docs/SiI-DS-0021-E-164.pdf".
*/
struct sil164_encoder_params {
+ /* private: FIXME: document the members */
enum {
SIL164_INPUT_EDGE_FALLING = 0,
SIL164_INPUT_EDGE_RISING
--
2.39.2
^ permalink raw reply related [flat|nested] 47+ messages in thread
* [PATCH 14/22] drm/suballoc: fix drm_suballoc.h kernel-doc
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
` (12 preceding siblings ...)
2024-03-06 18:31 ` [PATCH 13/22] drm/i2c: silence ch7006.h and sil164.h kernel-doc warnings Jani Nikula
@ 2024-03-06 18:31 ` Jani Nikula
2024-03-06 18:31 ` [PATCH 15/22] drm/i915: fix i915_gsc_proxy_mei_interface.h kernel-doc Jani Nikula
` (16 subsequent siblings)
30 siblings, 0 replies; 47+ messages in thread
From: Jani Nikula @ 2024-03-06 18:31 UTC (permalink / raw)
To: dri-devel; +Cc: intel-gfx, intel-xe, jani.nikula
Rename dma_fence to fence to match code.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
include/drm/drm_suballoc.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/drm/drm_suballoc.h b/include/drm/drm_suballoc.h
index c2188bb0b157..7ba72a81a808 100644
--- a/include/drm/drm_suballoc.h
+++ b/include/drm/drm_suballoc.h
@@ -37,7 +37,7 @@ struct drm_suballoc_manager {
* @manager: The drm_suballoc_manager.
* @soffset: Start offset.
* @eoffset: End offset + 1 so that @eoffset - @soffset = size.
- * @dma_fence: The fence protecting the allocation.
+ * @fence: The fence protecting the allocation.
*/
struct drm_suballoc {
struct list_head olist;
--
2.39.2
^ permalink raw reply related [flat|nested] 47+ messages in thread
* [PATCH 15/22] drm/i915: fix i915_gsc_proxy_mei_interface.h kernel-doc
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
` (13 preceding siblings ...)
2024-03-06 18:31 ` [PATCH 14/22] drm/suballoc: fix drm_suballoc.h kernel-doc Jani Nikula
@ 2024-03-06 18:31 ` Jani Nikula
2024-03-07 17:56 ` Lucas De Marchi
2024-03-06 18:31 ` [PATCH 16/22] drm/i915/hdcp: fix i915_hdcp_interface.h kernel-doc warnings Jani Nikula
` (15 subsequent siblings)
30 siblings, 1 reply; 47+ messages in thread
From: Jani Nikula @ 2024-03-06 18:31 UTC (permalink / raw)
To: dri-devel; +Cc: intel-gfx, intel-xe, jani.nikula
There's no proper way to document function pointer members, but at least
silence the warnings.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
include/drm/i915_gsc_proxy_mei_interface.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/drm/i915_gsc_proxy_mei_interface.h b/include/drm/i915_gsc_proxy_mei_interface.h
index 9462341d3ae1..850dfbf40607 100644
--- a/include/drm/i915_gsc_proxy_mei_interface.h
+++ b/include/drm/i915_gsc_proxy_mei_interface.h
@@ -21,7 +21,7 @@ struct i915_gsc_proxy_component_ops {
struct module *owner;
/**
- * send - Sends a proxy message to ME FW.
+ * @send: Sends a proxy message to ME FW.
* @dev: device struct corresponding to the mei device
* @buf: message buffer to send
* @size: size of the message
@@ -30,7 +30,7 @@ struct i915_gsc_proxy_component_ops {
int (*send)(struct device *dev, const void *buf, size_t size);
/**
- * recv - Receives a proxy message from ME FW.
+ * @recv: Receives a proxy message from ME FW.
* @dev: device struct corresponding to the mei device
* @buf: message buffer to contain the received message
* @size: size of the buffer
--
2.39.2
^ permalink raw reply related [flat|nested] 47+ messages in thread
* [PATCH 16/22] drm/i915/hdcp: fix i915_hdcp_interface.h kernel-doc warnings
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
` (14 preceding siblings ...)
2024-03-06 18:31 ` [PATCH 15/22] drm/i915: fix i915_gsc_proxy_mei_interface.h kernel-doc Jani Nikula
@ 2024-03-06 18:31 ` Jani Nikula
2024-03-07 18:00 ` Lucas De Marchi
2024-03-06 18:31 ` [PATCH 17/22] drm/i915/pxp: fix i915_pxp_tee_interface.h " Jani Nikula
` (14 subsequent siblings)
30 siblings, 1 reply; 47+ messages in thread
From: Jani Nikula @ 2024-03-06 18:31 UTC (permalink / raw)
To: dri-devel; +Cc: intel-gfx, intel-xe, jani.nikula
Make the documentation match code.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
include/drm/i915_hdcp_interface.h | 18 +++++++++++++-----
1 file changed, 13 insertions(+), 5 deletions(-)
diff --git a/include/drm/i915_hdcp_interface.h b/include/drm/i915_hdcp_interface.h
index 4c9c8167c2d5..a9f2ee576de8 100644
--- a/include/drm/i915_hdcp_interface.h
+++ b/include/drm/i915_hdcp_interface.h
@@ -54,7 +54,7 @@ enum hdcp_ddi {
};
/**
- * enum hdcp_tc - ME/GSC Firmware defined index for transcoders
+ * enum hdcp_transcoder - ME/GSC Firmware defined index for transcoders
* @HDCP_INVALID_TRANSCODER: Index for Invalid transcoder
* @HDCP_TRANSCODER_EDP: Index for EDP Transcoder
* @HDCP_TRANSCODER_DSI0: Index for DSI0 Transcoder
@@ -106,7 +106,7 @@ struct hdcp_port_data {
* And Prepare AKE_Init.
* @verify_receiver_cert_prepare_km: Verify the Receiver Certificate
* AKE_Send_Cert and prepare
- AKE_Stored_Km/AKE_No_Stored_Km
+ * AKE_Stored_Km/AKE_No_Stored_Km
* @verify_hprime: Verify AKE_Send_H_prime
* @store_pairing_info: Store pairing info received
* @initiate_locality_check: Prepare LC_Init
@@ -170,14 +170,22 @@ struct i915_hdcp_ops {
/**
* struct i915_hdcp_arbiter - Used for communication between i915
* and hdcp drivers for the HDCP2.2 services
- * @hdcp_dev: device that provide the HDCP2.2 service from MEI Bus.
- * @hdcp_ops: Ops implemented by hdcp driver or intel_hdcp_gsc , used by i915 driver.
*/
struct i915_hdcp_arbiter {
+ /**
+ * @hdcp_dev: device that provide the HDCP2.2 service from MEI Bus.
+ */
struct device *hdcp_dev;
+
+ /**
+ * @ops: Ops implemented by hdcp driver or intel_hdcp_gsc , used by i915
+ * driver.
+ */
const struct i915_hdcp_ops *ops;
- /* To protect the above members. */
+ /**
+ * @mutex: To protect the above members.
+ */
struct mutex mutex;
};
--
2.39.2
^ permalink raw reply related [flat|nested] 47+ messages in thread
* [PATCH 17/22] drm/i915/pxp: fix i915_pxp_tee_interface.h kernel-doc warnings
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
` (15 preceding siblings ...)
2024-03-06 18:31 ` [PATCH 16/22] drm/i915/hdcp: fix i915_hdcp_interface.h kernel-doc warnings Jani Nikula
@ 2024-03-06 18:31 ` Jani Nikula
2024-03-07 18:02 ` Lucas De Marchi
2024-03-06 18:31 ` [PATCH 18/22] drm/ttm: fix ttm_bo.h " Jani Nikula
` (13 subsequent siblings)
30 siblings, 1 reply; 47+ messages in thread
From: Jani Nikula @ 2024-03-06 18:31 UTC (permalink / raw)
To: dri-devel; +Cc: intel-gfx, intel-xe, jani.nikula
Make documentation match code.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
include/drm/i915_pxp_tee_interface.h | 19 ++++++++++++-------
1 file changed, 12 insertions(+), 7 deletions(-)
diff --git a/include/drm/i915_pxp_tee_interface.h b/include/drm/i915_pxp_tee_interface.h
index 7d96985f2d05..653e85d6e32b 100644
--- a/include/drm/i915_pxp_tee_interface.h
+++ b/include/drm/i915_pxp_tee_interface.h
@@ -14,12 +14,10 @@ struct scatterlist;
* struct i915_pxp_component_ops - ops for PXP services.
* @owner: Module providing the ops
* @send: sends data to PXP
- * @receive: receives data from PXP
+ * @recv: receives data from PXP
+ * @gsc_command: send gsc command
*/
struct i915_pxp_component_ops {
- /**
- * @owner: owner of the module provding the ops
- */
struct module *owner;
int (*send)(struct device *dev, const void *message, size_t size,
@@ -35,14 +33,21 @@ struct i915_pxp_component_ops {
/**
* struct i915_pxp_component - Used for communication between i915 and TEE
* drivers for the PXP services
- * @tee_dev: device that provide the PXP service from TEE Bus.
- * @pxp_ops: Ops implemented by TEE driver, used by i915 driver.
*/
struct i915_pxp_component {
+ /**
+ * @tee_dev: device that provide the PXP service from TEE Bus.
+ */
struct device *tee_dev;
+
+ /**
+ * @ops: Ops implemented by TEE driver, used by i915 driver.
+ */
const struct i915_pxp_component_ops *ops;
- /* To protect the above members. */
+ /**
+ * @mutex: To protect the above members.
+ */
struct mutex mutex;
};
--
2.39.2
^ permalink raw reply related [flat|nested] 47+ messages in thread
* [PATCH 18/22] drm/ttm: fix ttm_bo.h kernel-doc warnings
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
` (16 preceding siblings ...)
2024-03-06 18:31 ` [PATCH 17/22] drm/i915/pxp: fix i915_pxp_tee_interface.h " Jani Nikula
@ 2024-03-06 18:31 ` Jani Nikula
2024-03-06 18:31 ` [PATCH 19/22] drm/ttm: make ttm_caching.h self-contained Jani Nikula
` (12 subsequent siblings)
30 siblings, 0 replies; 47+ messages in thread
From: Jani Nikula @ 2024-03-06 18:31 UTC (permalink / raw)
To: dri-devel; +Cc: intel-gfx, intel-xe, jani.nikula
Some renames, some formatting fixes, add some as FIXME.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
include/drm/ttm/ttm_bo.h | 18 ++++++++++++------
1 file changed, 12 insertions(+), 6 deletions(-)
diff --git a/include/drm/ttm/ttm_bo.h b/include/drm/ttm/ttm_bo.h
index 0223a41a64b2..8b1eb6828f0a 100644
--- a/include/drm/ttm/ttm_bo.h
+++ b/include/drm/ttm/ttm_bo.h
@@ -83,6 +83,9 @@ enum ttm_bo_type {
* @resource: structure describing current placement.
* @ttm: TTM structure holding system pages.
* @deleted: True if the object is only a zombie and already deleted.
+ * @bulk_move: FIXME
+ * @priority: FIXME
+ * @pin_count: FIXME
*
* Base class for TTM buffer object, that deals with data placement and CPU
* mappings. GPU mappings are really up to the driver, but for simpler GPUs
@@ -128,26 +131,28 @@ struct ttm_buffer_object {
struct work_struct delayed_delete;
/**
- * Special members that are protected by the reserve lock
- * and the bo::lock when written to. Can be read with
- * either of these locks held.
+ * @sg: Special members that are protected by the reserve lock and the
+ * bo::lock when written to. Can be read with either of these locks
+ * held.
*/
struct sg_table *sg;
};
+#define TTM_BO_MAP_IOMEM_MASK 0x80
+
/**
* struct ttm_bo_kmap_obj
*
* @virtual: The current kernel virtual address.
* @page: The page when kmap'ing a single page.
* @bo_kmap_type: Type of bo_kmap.
+ * @bo: FIXME
*
* Object describing a kernel mapping. Since a TTM bo may be located
* in various memory types with various caching policies, the
* mapping can either be an ioremap, a vmap, a kmap or part of a
* premapped region.
*/
-#define TTM_BO_MAP_IOMEM_MASK 0x80
struct ttm_bo_kmap_obj {
void *virtual;
struct page *page;
@@ -171,6 +176,7 @@ struct ttm_bo_kmap_obj {
* @force_alloc: Don't check the memory account during suspend or CPU page
* faults. Should only be used by TTM internally.
* @resv: Reservation object to allow reserved evictions with.
+ * @bytes_moved: FIXME
*
* Context for TTM operations like changing buffer placement or general memory
* allocation.
@@ -264,7 +270,7 @@ static inline int ttm_bo_reserve(struct ttm_buffer_object *bo,
* ttm_bo_reserve_slowpath:
* @bo: A pointer to a struct ttm_buffer_object.
* @interruptible: Sleep interruptible if waiting.
- * @sequence: Set (@bo)->sequence to this value after lock
+ * @ticket: FIXME
*
* This is called after ttm_bo_reserve returns -EAGAIN and we backed off
* from all our other reservations. Because there are no other reservations
@@ -303,7 +309,7 @@ static inline void ttm_bo_assign_mem(struct ttm_buffer_object *bo,
}
/**
- * ttm_bo_move_null = assign memory for a buffer object.
+ * ttm_bo_move_null - assign memory for a buffer object.
* @bo: The bo to assign the memory to
* @new_mem: The memory to be assigned.
*
--
2.39.2
^ permalink raw reply related [flat|nested] 47+ messages in thread
* [PATCH 19/22] drm/ttm: make ttm_caching.h self-contained
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
` (17 preceding siblings ...)
2024-03-06 18:31 ` [PATCH 18/22] drm/ttm: fix ttm_bo.h " Jani Nikula
@ 2024-03-06 18:31 ` Jani Nikula
2024-03-06 18:31 ` [PATCH 20/22] drm/ttm: fix ttm_execbuf_util.h kernel-doc warnings Jani Nikula
` (11 subsequent siblings)
30 siblings, 0 replies; 47+ messages in thread
From: Jani Nikula @ 2024-03-06 18:31 UTC (permalink / raw)
To: dri-devel; +Cc: intel-gfx, intel-xe, jani.nikula
Include <linux/pgtable.h> for pgprot_t.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
include/drm/ttm/ttm_caching.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/include/drm/ttm/ttm_caching.h b/include/drm/ttm/ttm_caching.h
index 235a743d90e1..a18f43e93aba 100644
--- a/include/drm/ttm/ttm_caching.h
+++ b/include/drm/ttm/ttm_caching.h
@@ -25,6 +25,8 @@
#ifndef _TTM_CACHING_H_
#define _TTM_CACHING_H_
+#include <linux/pgtable.h>
+
#define TTM_NUM_CACHING_TYPES 3
/**
--
2.39.2
^ permalink raw reply related [flat|nested] 47+ messages in thread
* [PATCH 20/22] drm/ttm: fix ttm_execbuf_util.h kernel-doc warnings
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
` (18 preceding siblings ...)
2024-03-06 18:31 ` [PATCH 19/22] drm/ttm: make ttm_caching.h self-contained Jani Nikula
@ 2024-03-06 18:31 ` Jani Nikula
2024-03-06 18:31 ` [PATCH 21/22] drm/ttm: fix ttm_kmap_iter.h " Jani Nikula
` (10 subsequent siblings)
30 siblings, 0 replies; 47+ messages in thread
From: Jani Nikula @ 2024-03-06 18:31 UTC (permalink / raw)
To: dri-devel; +Cc: intel-gfx, intel-xe, jani.nikula
Fix some formatting errors and excess documentation.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
include/drm/ttm/ttm_execbuf_util.h | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/include/drm/ttm/ttm_execbuf_util.h b/include/drm/ttm/ttm_execbuf_util.h
index 03aca29d3ce4..fac1e3e57ebd 100644
--- a/include/drm/ttm/ttm_execbuf_util.h
+++ b/include/drm/ttm/ttm_execbuf_util.h
@@ -52,7 +52,7 @@ struct ttm_validate_buffer {
};
/**
- * function ttm_eu_backoff_reservation
+ * ttm_eu_backoff_reservation
*
* @ticket: ww_acquire_ctx from reserve call
* @list: thread private list of ttm_validate_buffer structs.
@@ -64,14 +64,13 @@ void ttm_eu_backoff_reservation(struct ww_acquire_ctx *ticket,
struct list_head *list);
/**
- * function ttm_eu_reserve_buffers
+ * ttm_eu_reserve_buffers
*
* @ticket: [out] ww_acquire_ctx filled in by call, or NULL if only
* non-blocking reserves should be tried.
* @list: thread private list of ttm_validate_buffer structs.
* @intr: should the wait be interruptible
* @dups: [out] optional list of duplicates.
- * @del_lru: true if BOs should be removed from the LRU.
*
* Tries to reserve bos pointed to by the list entries for validation.
* If the function returns 0, all buffers are marked as "unfenced",
@@ -102,7 +101,7 @@ int ttm_eu_reserve_buffers(struct ww_acquire_ctx *ticket,
struct list_head *dups);
/**
- * function ttm_eu_fence_buffer_objects.
+ * ttm_eu_fence_buffer_objects
*
* @ticket: ww_acquire_ctx from reserve call
* @list: thread private list of ttm_validate_buffer structs.
--
2.39.2
^ permalink raw reply related [flat|nested] 47+ messages in thread
* [PATCH 21/22] drm/ttm: fix ttm_kmap_iter.h kernel-doc warnings
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
` (19 preceding siblings ...)
2024-03-06 18:31 ` [PATCH 20/22] drm/ttm: fix ttm_execbuf_util.h kernel-doc warnings Jani Nikula
@ 2024-03-06 18:31 ` Jani Nikula
2024-03-06 18:31 ` [PATCH 22/22] drm: ensure drm headers are self-contained and pass kernel-doc Jani Nikula
` (9 subsequent siblings)
30 siblings, 0 replies; 47+ messages in thread
From: Jani Nikula @ 2024-03-06 18:31 UTC (permalink / raw)
To: dri-devel; +Cc: intel-gfx, intel-xe, jani.nikula
There's no proper way to document function pointer members, but at least
silence the warnings.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
include/drm/ttm/ttm_kmap_iter.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/drm/ttm/ttm_kmap_iter.h b/include/drm/ttm/ttm_kmap_iter.h
index cc5c09a211b4..fe72631a6e93 100644
--- a/include/drm/ttm/ttm_kmap_iter.h
+++ b/include/drm/ttm/ttm_kmap_iter.h
@@ -20,7 +20,7 @@ struct iosys_map;
*/
struct ttm_kmap_iter_ops {
/**
- * kmap_local() - Map a PAGE_SIZE part of the resource using
+ * @map_local: Map a PAGE_SIZE part of the resource using
* kmap_local semantics.
* @res_iter: Pointer to the struct ttm_kmap_iter representing
* the resource.
@@ -31,7 +31,7 @@ struct ttm_kmap_iter_ops {
void (*map_local)(struct ttm_kmap_iter *res_iter,
struct iosys_map *dmap, pgoff_t i);
/**
- * unmap_local() - Unmap a PAGE_SIZE part of the resource previously
+ * @unmap_local: Unmap a PAGE_SIZE part of the resource previously
* mapped using kmap_local.
* @res_iter: Pointer to the struct ttm_kmap_iter representing
* the resource.
--
2.39.2
^ permalink raw reply related [flat|nested] 47+ messages in thread
* [PATCH 22/22] drm: ensure drm headers are self-contained and pass kernel-doc
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
` (20 preceding siblings ...)
2024-03-06 18:31 ` [PATCH 21/22] drm/ttm: fix ttm_kmap_iter.h " Jani Nikula
@ 2024-03-06 18:31 ` Jani Nikula
2024-03-07 5:06 ` kernel test robot
` (2 more replies)
2024-03-07 0:47 ` ✗ Fi.CI.CHECKPATCH: warning for drm: fix headers, add header test facility Patchwork
` (8 subsequent siblings)
30 siblings, 3 replies; 47+ messages in thread
From: Jani Nikula @ 2024-03-06 18:31 UTC (permalink / raw)
To: dri-devel
Cc: intel-gfx, intel-xe, jani.nikula, Daniel Vetter, David Airlie,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann,
Masahiro Yamada
Ensure drm headers build, are self-contained, have header guards, and
have no kernel-doc warnings, when CONFIG_DRM_HEADER_TEST=y.
The mechanism follows similar patters used in i915, xe, and usr/include.
To cover include/drm, we need to recurse there using the top level
Kbuild and the new include/Kbuild files.
Suggested-by: Daniel Vetter <daniel@ffwll.ch>
Cc: David Airlie <airlied@gmail.com>
Cc: Daniel Vetter <daniel@ffwll.ch>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Cc: Maxime Ripard <mripard@kernel.org>
Cc: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
Kbuild | 1 +
drivers/gpu/drm/Kconfig | 11 +++++++++++
drivers/gpu/drm/Makefile | 18 ++++++++++++++++++
include/Kbuild | 1 +
include/drm/Makefile | 18 ++++++++++++++++++
5 files changed, 49 insertions(+)
create mode 100644 include/Kbuild
create mode 100644 include/drm/Makefile
diff --git a/Kbuild b/Kbuild
index 464b34a08f51..f327ca86990c 100644
--- a/Kbuild
+++ b/Kbuild
@@ -97,3 +97,4 @@ obj-$(CONFIG_SAMPLES) += samples/
obj-$(CONFIG_NET) += net/
obj-y += virt/
obj-y += $(ARCH_DRIVERS)
+obj-$(CONFIG_DRM_HEADER_TEST) += include/
diff --git a/drivers/gpu/drm/Kconfig b/drivers/gpu/drm/Kconfig
index c08e18108c2a..dd17685ef6e7 100644
--- a/drivers/gpu/drm/Kconfig
+++ b/drivers/gpu/drm/Kconfig
@@ -429,3 +429,14 @@ config DRM_WERROR
this config option is disabled by default.
If in doubt, say N.
+
+config DRM_HEADER_TEST
+ bool "Ensure DRM headers are self-contained and pass kernel-doc"
+ depends on EXPERT
+ default n
+ help
+ Ensure the DRM subsystem headers both under drivers/gpu/drm and
+ include/drm compile, are self-contained, have header guards, and have
+ no kernel-doc warnings.
+
+ If in doubt, say N.
diff --git a/drivers/gpu/drm/Makefile b/drivers/gpu/drm/Makefile
index a73c04d2d7a3..6605d5686d01 100644
--- a/drivers/gpu/drm/Makefile
+++ b/drivers/gpu/drm/Makefile
@@ -218,3 +218,21 @@ obj-y += solomon/
obj-$(CONFIG_DRM_SPRD) += sprd/
obj-$(CONFIG_DRM_LOONGSON) += loongson/
obj-$(CONFIG_DRM_POWERVR) += imagination/
+
+# Ensure drm headers are self-contained and pass kernel-doc
+hdrtest-files := \
+ $(shell cd $(srctree)/$(src) && find . -maxdepth 1 -name 'drm_*.h') \
+ $(shell cd $(srctree)/$(src) && find display lib -name '*.h')
+
+always-$(CONFIG_DRM_HEADER_TEST) += \
+ $(patsubst %.h,%.hdrtest, $(hdrtest-files))
+
+# Include the header twice to detect missing include guard.
+quiet_cmd_hdrtest = HDRTEST $(patsubst %.hdrtest,%.h,$@)
+ cmd_hdrtest = \
+ $(CC) $(c_flags) -fsyntax-only -x c /dev/null -include $< -include $<; \
+ $(srctree)/scripts/kernel-doc -none $(if $(CONFIG_DRM_WERROR),-Werror) $<; \
+ touch $@
+
+$(obj)/%.hdrtest: $(src)/%.h FORCE
+ $(call if_changed_dep,hdrtest)
diff --git a/include/Kbuild b/include/Kbuild
new file mode 100644
index 000000000000..5e76a599e2dd
--- /dev/null
+++ b/include/Kbuild
@@ -0,0 +1 @@
+obj-$(CONFIG_DRM_HEADER_TEST) += drm/
diff --git a/include/drm/Makefile b/include/drm/Makefile
new file mode 100644
index 000000000000..b9f391d7aadd
--- /dev/null
+++ b/include/drm/Makefile
@@ -0,0 +1,18 @@
+# SPDX-License-Identifier: GPL-2.0
+
+# Ensure drm headers are self-contained and pass kernel-doc
+hdrtest-files := \
+ $(shell cd $(srctree)/$(src) && find * -name '*.h' 2>/dev/null)
+
+always-$(CONFIG_DRM_HEADER_TEST) += \
+ $(patsubst %.h,%.hdrtest, $(hdrtest-files))
+
+# Include the header twice to detect missing include guard.
+quiet_cmd_hdrtest = HDRTEST $(patsubst %.hdrtest,%.h,$@)
+ cmd_hdrtest = \
+ $(CC) $(c_flags) -fsyntax-only -x c /dev/null -include $< -include $<; \
+ $(srctree)/scripts/kernel-doc -none $(if $(CONFIG_DRM_WERROR),-Werror) $<; \
+ touch $@
+
+$(obj)/%.hdrtest: $(src)/%.h FORCE
+ $(call if_changed_dep,hdrtest)
--
2.39.2
^ permalink raw reply related [flat|nested] 47+ messages in thread
* ✗ Fi.CI.CHECKPATCH: warning for drm: fix headers, add header test facility
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
` (21 preceding siblings ...)
2024-03-06 18:31 ` [PATCH 22/22] drm: ensure drm headers are self-contained and pass kernel-doc Jani Nikula
@ 2024-03-07 0:47 ` Patchwork
2024-03-07 0:47 ` ✗ Fi.CI.SPARSE: " Patchwork
` (7 subsequent siblings)
30 siblings, 0 replies; 47+ messages in thread
From: Patchwork @ 2024-03-07 0:47 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
== Series Details ==
Series: drm: fix headers, add header test facility
URL : https://patchwork.freedesktop.org/series/130822/
State : warning
== Summary ==
Error: dim checkpatch failed
7caa1d7414d8 drm/crtc: make drm_crtc_internal.h self-contained
ff01e9a4a385 drm: add missing header guards to drm_internal.h
484ccce02868 drm/kunit: fix drm_kunit_helpers.h kernel-doc
c67cf26f7073 drm/amdgpu: make amd_asic_type.h self-contained
af8d06d5eb2a drm: bridge: samsung-dsim: make samsung-dsim.h self-contained
2e91dc9893a3 drm/dp_mst: fix drm_dp_mst_helper.h kernel-doc
b3dd137d7dab drm/crc: make drm_debugfs_crc.h self-contained and fix kernel-doc
3550e9bcfa9e drm/encoder: silence drm_encoder_slave.h kernel-doc
289e2b1ac5ae drm: fix drm_format_helper.h kernel-doc warnings
b74a77ec4c32 drm/lease: make drm_lease.h self-contained
8a9a4a19fbb8 drm: fix drm_gem_vram_helper.h kernel-doc
5fbbba2bbe57 drm/of: make drm_of.h self-contained
a38f277c44d1 drm/i2c: silence ch7006.h and sil164.h kernel-doc warnings
26ecd5d71303 drm/suballoc: fix drm_suballoc.h kernel-doc
e864912c9fc2 drm/i915: fix i915_gsc_proxy_mei_interface.h kernel-doc
bebf12a4424f drm/i915/hdcp: fix i915_hdcp_interface.h kernel-doc warnings
3ca71e65fa25 drm/i915/pxp: fix i915_pxp_tee_interface.h kernel-doc warnings
469555e5f56b drm/ttm: fix ttm_bo.h kernel-doc warnings
f47400d36bc9 drm/ttm: make ttm_caching.h self-contained
5c2973e678f8 drm/ttm: fix ttm_execbuf_util.h kernel-doc warnings
1bccfd5835f9 drm/ttm: fix ttm_kmap_iter.h kernel-doc warnings
187a5ae6df10 drm: ensure drm headers are self-contained and pass kernel-doc
Traceback (most recent call last):
File "scripts/spdxcheck.py", line 6, in <module>
from ply import lex, yacc
ModuleNotFoundError: No module named 'ply'
-:79: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#79:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 58 lines checked
^ permalink raw reply [flat|nested] 47+ messages in thread
* ✗ Fi.CI.SPARSE: warning for drm: fix headers, add header test facility
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
` (22 preceding siblings ...)
2024-03-07 0:47 ` ✗ Fi.CI.CHECKPATCH: warning for drm: fix headers, add header test facility Patchwork
@ 2024-03-07 0:47 ` Patchwork
2024-03-07 1:06 ` ✗ Fi.CI.BAT: failure " Patchwork
` (6 subsequent siblings)
30 siblings, 0 replies; 47+ messages in thread
From: Patchwork @ 2024-03-07 0:47 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
== Series Details ==
Series: drm: fix headers, add header test facility
URL : https://patchwork.freedesktop.org/series/130822/
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] 47+ messages in thread
* ✗ Fi.CI.BAT: failure for drm: fix headers, add header test facility
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
` (23 preceding siblings ...)
2024-03-07 0:47 ` ✗ Fi.CI.SPARSE: " Patchwork
@ 2024-03-07 1:06 ` Patchwork
2024-03-07 8:35 ` [PATCH] drm: add missing header guards to drm_crtc_internal.h Jani Nikula
` (5 subsequent siblings)
30 siblings, 0 replies; 47+ messages in thread
From: Patchwork @ 2024-03-07 1:06 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 10713 bytes --]
== Series Details ==
Series: drm: fix headers, add header test facility
URL : https://patchwork.freedesktop.org/series/130822/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14399 -> Patchwork_130822v1
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_130822v1 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_130822v1, 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_130822v1/index.html
Participating hosts (41 -> 40)
------------------------------
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_130822v1:
### IGT changes ###
#### Possible regressions ####
* igt@vgem_basic@unload:
- bat-arls-2: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14399/bat-arls-2/igt@vgem_basic@unload.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v1/bat-arls-2/igt@vgem_basic@unload.html
Known issues
------------
Here are the changes found in Patchwork_130822v1 that come from known issues:
### CI changes ###
#### Issues hit ####
* boot:
- bat-arls-3: [PASS][3] -> [FAIL][4] ([i915#10234])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14399/bat-arls-3/boot.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v1/bat-arls-3/boot.html
- bat-jsl-1: [PASS][5] -> [FAIL][6] ([i915#8293])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14399/bat-jsl-1/boot.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v1/bat-jsl-1/boot.html
- fi-apl-guc: [PASS][7] -> [FAIL][8] ([i915#8293])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14399/fi-apl-guc/boot.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v1/fi-apl-guc/boot.html
### IGT changes ###
#### Issues hit ####
* igt@gem_lmem_swapping@basic@lmem0:
- bat-dg2-11: [PASS][9] -> [FAIL][10] ([i915#10378])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14399/bat-dg2-11/igt@gem_lmem_swapping@basic@lmem0.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v1/bat-dg2-11/igt@gem_lmem_swapping@basic@lmem0.html
* igt@gem_mmap@basic:
- bat-atsm-1: NOTRUN -> [SKIP][11] ([i915#4083])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v1/bat-atsm-1/igt@gem_mmap@basic.html
* igt@gem_tiled_pread_basic:
- bat-atsm-1: NOTRUN -> [SKIP][12] ([i915#4079]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v1/bat-atsm-1/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-atsm-1: NOTRUN -> [SKIP][13] ([i915#6621])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v1/bat-atsm-1/igt@i915_pm_rps@basic-api.html
- bat-dg2-8: NOTRUN -> [SKIP][14] ([i915#6621])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v1/bat-dg2-8/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@late_gt_pm:
- bat-dg2-9: [PASS][15] -> [ABORT][16] ([i915#10366])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14399/bat-dg2-9/igt@i915_selftest@live@late_gt_pm.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v1/bat-dg2-9/igt@i915_selftest@live@late_gt_pm.html
* igt@kms_addfb_basic@size-max:
- bat-atsm-1: NOTRUN -> [SKIP][17] ([i915#6077]) +37 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v1/bat-atsm-1/igt@kms_addfb_basic@size-max.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
- bat-atsm-1: NOTRUN -> [SKIP][18] ([i915#6078]) +22 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v1/bat-atsm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-atsm-1: NOTRUN -> [SKIP][19] ([i915#6093]) +4 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v1/bat-atsm-1/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24:
- bat-atsm-1: NOTRUN -> [SKIP][20] ([i915#1836]) +6 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v1/bat-atsm-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html
* igt@kms_prop_blob@basic:
- bat-atsm-1: NOTRUN -> [SKIP][21] ([i915#7357])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v1/bat-atsm-1/igt@kms_prop_blob@basic.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-dg2-8: NOTRUN -> [SKIP][22] ([i915#9673] / [i915#9732]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v1/bat-dg2-8/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-atsm-1: NOTRUN -> [SKIP][23] ([i915#6094])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v1/bat-atsm-1/igt@kms_setmode@basic-clone-single-crtc.html
- bat-dg2-8: NOTRUN -> [SKIP][24] ([i915#3555])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v1/bat-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-8: NOTRUN -> [SKIP][25] ([i915#3708])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v1/bat-dg2-8/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-atsm-1: NOTRUN -> [SKIP][26] ([i915#4077]) +4 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v1/bat-atsm-1/igt@prime_vgem@basic-fence-mmap.html
- bat-dg2-8: NOTRUN -> [SKIP][27] ([i915#3708] / [i915#4077]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v1/bat-dg2-8/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- bat-atsm-1: NOTRUN -> [SKIP][28] +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v1/bat-atsm-1/igt@prime_vgem@basic-write.html
- bat-dg2-8: NOTRUN -> [SKIP][29] ([i915#3291] / [i915#3708]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v1/bat-dg2-8/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@gem_exec_fence@basic-await@ccs3:
- bat-atsm-1: [DMESG-WARN][30] -> [PASS][31]
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14399/bat-atsm-1/igt@gem_exec_fence@basic-await@ccs3.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v1/bat-atsm-1/igt@gem_exec_fence@basic-await@ccs3.html
* igt@kms_pm_rpm@basic-rte:
- bat-dg2-8: [ABORT][32] ([i915#10367]) -> [PASS][33]
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14399/bat-dg2-8/igt@kms_pm_rpm@basic-rte.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v1/bat-dg2-8/igt@kms_pm_rpm@basic-rte.html
[i915#10234]: https://gitlab.freedesktop.org/drm/intel/issues/10234
[i915#10366]: https://gitlab.freedesktop.org/drm/intel/issues/10366
[i915#10367]: https://gitlab.freedesktop.org/drm/intel/issues/10367
[i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378
[i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#6077]: https://gitlab.freedesktop.org/drm/intel/issues/6077
[i915#6078]: https://gitlab.freedesktop.org/drm/intel/issues/6078
[i915#6093]: https://gitlab.freedesktop.org/drm/intel/issues/6093
[i915#6094]: https://gitlab.freedesktop.org/drm/intel/issues/6094
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#7357]: https://gitlab.freedesktop.org/drm/intel/issues/7357
[i915#8293]: https://gitlab.freedesktop.org/drm/intel/issues/8293
[i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
Build changes
-------------
* Linux: CI_DRM_14399 -> Patchwork_130822v1
CI-20190529: 20190529
CI_DRM_14399: ba2149e0e3add9f607c6d41e20479d85ceb0769d @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7749: 2fd91b8c3cf9aa2b0bb78537a6b5e2bc3de50e0e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_130822v1: ba2149e0e3add9f607c6d41e20479d85ceb0769d @ git://anongit.freedesktop.org/gfx-ci/linux
### Linux commits
cf1126633496 drm: ensure drm headers are self-contained and pass kernel-doc
0350353ea5a7 drm/ttm: fix ttm_kmap_iter.h kernel-doc warnings
c8c35e7be124 drm/ttm: fix ttm_execbuf_util.h kernel-doc warnings
55e74256c39c drm/ttm: make ttm_caching.h self-contained
aa67ddeede44 drm/ttm: fix ttm_bo.h kernel-doc warnings
e71abf733aab drm/i915/pxp: fix i915_pxp_tee_interface.h kernel-doc warnings
378438c769c1 drm/i915/hdcp: fix i915_hdcp_interface.h kernel-doc warnings
eaac1c856fb2 drm/i915: fix i915_gsc_proxy_mei_interface.h kernel-doc
a3f942150377 drm/suballoc: fix drm_suballoc.h kernel-doc
3d78de4ca733 drm/i2c: silence ch7006.h and sil164.h kernel-doc warnings
1d88a2e73104 drm/of: make drm_of.h self-contained
098d11300f9c drm: fix drm_gem_vram_helper.h kernel-doc
f841905bfd68 drm/lease: make drm_lease.h self-contained
87da3f1eb2ff drm: fix drm_format_helper.h kernel-doc warnings
d02dc59fa23b drm/encoder: silence drm_encoder_slave.h kernel-doc
b5bccd660ded drm/crc: make drm_debugfs_crc.h self-contained and fix kernel-doc
1b9dc885b9da drm/dp_mst: fix drm_dp_mst_helper.h kernel-doc
a23fb1e4dba6 drm: bridge: samsung-dsim: make samsung-dsim.h self-contained
686fe63b6fc3 drm/amdgpu: make amd_asic_type.h self-contained
7b0fbf508293 drm/kunit: fix drm_kunit_helpers.h kernel-doc
af12fb11b9c2 drm: add missing header guards to drm_internal.h
d594b3041421 drm/crtc: make drm_crtc_internal.h self-contained
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v1/index.html
[-- Attachment #2: Type: text/html, Size: 12277 bytes --]
^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: [PATCH 22/22] drm: ensure drm headers are self-contained and pass kernel-doc
2024-03-06 18:31 ` [PATCH 22/22] drm: ensure drm headers are self-contained and pass kernel-doc Jani Nikula
@ 2024-03-07 5:06 ` kernel test robot
2024-03-07 5:28 ` kernel test robot
2024-03-07 14:49 ` kernel test robot
2 siblings, 0 replies; 47+ messages in thread
From: kernel test robot @ 2024-03-07 5:06 UTC (permalink / raw)
To: Jani Nikula, dri-devel
Cc: oe-kbuild-all, intel-gfx, intel-xe, jani.nikula, Daniel Vetter,
David Airlie, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann,
Masahiro Yamada
Hi Jani,
kernel test robot noticed the following build errors:
[auto build test ERROR on drm-misc/drm-misc-next]
[cannot apply to drm/drm-next drm-intel/for-linux-next drm-intel/for-linux-next-fixes linus/master v6.8-rc7 next-20240306]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Jani-Nikula/drm-crtc-make-drm_crtc_internal-h-self-contained/20240307-023603
base: git://anongit.freedesktop.org/drm/drm-misc drm-misc-next
patch link: https://lore.kernel.org/r/e22ab28836ee1689ea4781ed53fd2e4e4f84728e.1709749576.git.jani.nikula%40intel.com
patch subject: [PATCH 22/22] drm: ensure drm headers are self-contained and pass kernel-doc
config: sh-allmodconfig (https://download.01.org/0day-ci/archive/20240307/202403071204.gJtMneoq-lkp@intel.com/config)
compiler: sh4-linux-gcc (GCC) 13.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240307/202403071204.gJtMneoq-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202403071204.gJtMneoq-lkp@intel.com/
All errors (new ones prefixed by >>):
In file included from <command-line>:
drivers/gpu/drm/./drm_crtc_internal.h: In function 'drm_edid_load_firmware':
>> drivers/gpu/drm/./drm_crtc_internal.h:304:16: error: implicit declaration of function 'ERR_PTR' [-Werror=implicit-function-declaration]
304 | return ERR_PTR(-ENOENT);
| ^~~~~~~
>> drivers/gpu/drm/./drm_crtc_internal.h:304:25: error: 'ENOENT' undeclared (first use in this function)
304 | return ERR_PTR(-ENOENT);
| ^~~~~~
drivers/gpu/drm/./drm_crtc_internal.h:304:25: note: each undeclared identifier is reported only once for each function it appears in
In file included from <command-line>:
drivers/gpu/drm/./drm_crtc_internal.h: At top level:
>> drivers/gpu/drm/./drm_crtc_internal.h:302:1: error: redefinition of 'drm_edid_load_firmware'
302 | drm_edid_load_firmware(struct drm_connector *connector)
| ^~~~~~~~~~~~~~~~~~~~~~
drivers/gpu/drm/./drm_crtc_internal.h:302:1: note: previous definition of 'drm_edid_load_firmware' with type 'const struct drm_edid *(struct drm_connector *)'
302 | drm_edid_load_firmware(struct drm_connector *connector)
| ^~~~~~~~~~~~~~~~~~~~~~
drivers/gpu/drm/./drm_crtc_internal.h: In function 'drm_edid_load_firmware':
>> drivers/gpu/drm/./drm_crtc_internal.h:304:25: error: 'ENOENT' undeclared (first use in this function)
304 | return ERR_PTR(-ENOENT);
| ^~~~~~
cc1: all warnings being treated as errors
vim +/ERR_PTR +304 drivers/gpu/drm/./drm_crtc_internal.h
5f2d0ed49036a0 Jani Nikula 2022-10-24 296
5f2d0ed49036a0 Jani Nikula 2022-10-24 297 /* drm_edid_load.c */
5f2d0ed49036a0 Jani Nikula 2022-10-24 298 #ifdef CONFIG_DRM_LOAD_EDID_FIRMWARE
5f2d0ed49036a0 Jani Nikula 2022-10-24 299 const struct drm_edid *drm_edid_load_firmware(struct drm_connector *connector);
5f2d0ed49036a0 Jani Nikula 2022-10-24 300 #else
5f2d0ed49036a0 Jani Nikula 2022-10-24 301 static inline const struct drm_edid *
5f2d0ed49036a0 Jani Nikula 2022-10-24 @302 drm_edid_load_firmware(struct drm_connector *connector)
5f2d0ed49036a0 Jani Nikula 2022-10-24 303 {
5f2d0ed49036a0 Jani Nikula 2022-10-24 @304 return ERR_PTR(-ENOENT);
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: [PATCH 22/22] drm: ensure drm headers are self-contained and pass kernel-doc
2024-03-06 18:31 ` [PATCH 22/22] drm: ensure drm headers are self-contained and pass kernel-doc Jani Nikula
2024-03-07 5:06 ` kernel test robot
@ 2024-03-07 5:28 ` kernel test robot
2024-03-07 8:44 ` Jani Nikula
2024-03-07 14:49 ` kernel test robot
2 siblings, 1 reply; 47+ messages in thread
From: kernel test robot @ 2024-03-07 5:28 UTC (permalink / raw)
To: Jani Nikula, dri-devel
Cc: oe-kbuild-all, intel-gfx, intel-xe, jani.nikula, Daniel Vetter,
David Airlie, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann,
Masahiro Yamada
Hi Jani,
kernel test robot noticed the following build errors:
[auto build test ERROR on drm-misc/drm-misc-next]
[cannot apply to drm/drm-next drm-intel/for-linux-next drm-intel/for-linux-next-fixes linus/master v6.8-rc7 next-20240306]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Jani-Nikula/drm-crtc-make-drm_crtc_internal-h-self-contained/20240307-023603
base: git://anongit.freedesktop.org/drm/drm-misc drm-misc-next
patch link: https://lore.kernel.org/r/e22ab28836ee1689ea4781ed53fd2e4e4f84728e.1709749576.git.jani.nikula%40intel.com
patch subject: [PATCH 22/22] drm: ensure drm headers are self-contained and pass kernel-doc
config: m68k-allmodconfig (https://download.01.org/0day-ci/archive/20240307/202403071317.uoW18ZR3-lkp@intel.com/config)
compiler: m68k-linux-gcc (GCC) 13.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240307/202403071317.uoW18ZR3-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202403071317.uoW18ZR3-lkp@intel.com/
All error/warnings (new ones prefixed by >>):
In file included from include/asm-generic/pgtable-nopud.h:7,
from arch/m68k/include/asm/pgtable_mm.h:9,
from arch/m68k/include/asm/pgtable.h:8,
from include/linux/pgtable.h:6,
from include/drm/ttm/ttm_caching.h:28,
from <command-line>:
>> include/asm-generic/pgtable-nop4d.h:9:18: error: unknown type name 'pgd_t'
9 | typedef struct { pgd_t pgd; } p4d_t;
| ^~~~~
include/asm-generic/pgtable-nop4d.h:21:28: error: unknown type name 'pgd_t'; did you mean 'p4d_t'?
21 | static inline int pgd_none(pgd_t pgd) { return 0; }
| ^~~~~
| p4d_t
include/asm-generic/pgtable-nop4d.h:22:27: error: unknown type name 'pgd_t'; did you mean 'p4d_t'?
22 | static inline int pgd_bad(pgd_t pgd) { return 0; }
| ^~~~~
| p4d_t
include/asm-generic/pgtable-nop4d.h:23:31: error: unknown type name 'pgd_t'; did you mean 'p4d_t'?
23 | static inline int pgd_present(pgd_t pgd) { return 1; }
| ^~~~~
| p4d_t
include/asm-generic/pgtable-nop4d.h:24:30: error: unknown type name 'pgd_t'; did you mean 'p4d_t'?
24 | static inline void pgd_clear(pgd_t *pgd) { }
| ^~~~~
| p4d_t
include/asm-generic/pgtable-nop4d.h:35:33: error: unknown type name 'pgd_t'; did you mean 'p4d_t'?
35 | static inline p4d_t *p4d_offset(pgd_t *pgd, unsigned long address)
| ^~~~~
| p4d_t
In file included from arch/m68k/include/asm/thread_info.h:6,
from include/linux/thread_info.h:60,
from include/asm-generic/preempt.h:5,
from ./arch/m68k/include/generated/asm/preempt.h:1,
from include/linux/preempt.h:79,
from arch/m68k/include/asm/processor.h:11,
from arch/m68k/include/asm/pgtable_mm.h:15:
arch/m68k/include/asm/motorola_pgtable.h: In function 'pud_set':
>> arch/m68k/include/asm/page.h:46:29: error: request for member 'pgd' in something not a structure or union
46 | #define pgd_val(x) ((x).pgd)
| ^
include/asm-generic/pgtable-nop4d.h:40:50: note: in expansion of macro 'pgd_val'
40 | #define p4d_val(x) (pgd_val((x).pgd))
| ^~~~~~~
include/asm-generic/pgtable-nopud.h:48:50: note: in expansion of macro 'p4d_val'
48 | #define pud_val(x) (p4d_val((x).p4d))
| ^~~~~~~
arch/m68k/include/asm/motorola_pgtable.h:103:9: note: in expansion of macro 'pud_val'
103 | pud_val(*pudp) = _PAGE_TABLE | _PAGE_ACCESSED | __pa(pmdp);
| ^~~~~~~
include/linux/pgtable.h: In function 'pmd_offset':
>> arch/m68k/include/asm/page.h:46:29: error: request for member 'pgd' in something not a structure or union
46 | #define pgd_val(x) ((x).pgd)
| ^
include/asm-generic/pgtable-nop4d.h:40:50: note: in expansion of macro 'pgd_val'
40 | #define p4d_val(x) (pgd_val((x).pgd))
| ^~~~~~~
include/asm-generic/pgtable-nopud.h:48:50: note: in expansion of macro 'p4d_val'
48 | #define pud_val(x) (p4d_val((x).p4d))
| ^~~~~~~
arch/m68k/include/asm/motorola_pgtable.h:108:41: note: in expansion of macro 'pud_val'
108 | #define pud_pgtable(pud) ((pmd_t *)__va(pud_val(pud) & _TABLE_MASK))
| ^~~~~~~
include/linux/pgtable.h:123:16: note: in expansion of macro 'pud_pgtable'
123 | return pud_pgtable(*pud) + pmd_index(address);
| ^~~~~~~~~~~
include/linux/pgtable.h: In function 'pmd_off':
>> include/linux/pgtable.h:165:38: error: implicit declaration of function 'p4d_offset'; did you mean 'pmd_offset'? [-Werror=implicit-function-declaration]
165 | return pmd_offset(pud_offset(p4d_offset(pgd_offset(mm, va), va), va), va);
| ^~~~~~~~~~
| pmd_offset
>> include/linux/pgtable.h:165:38: warning: passing argument 1 of 'pud_offset' makes pointer from integer without a cast [-Wint-conversion]
165 | return pmd_offset(pud_offset(p4d_offset(pgd_offset(mm, va), va), va), va);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| |
| int
include/asm-generic/pgtable-nopud.h:42:40: note: expected 'p4d_t *' but argument is of type 'int'
42 | static inline pud_t *pud_offset(p4d_t *p4d, unsigned long address)
| ~~~~~~~^~~
include/linux/pgtable.h: In function 'pmd_off_k':
include/linux/pgtable.h:170:38: warning: passing argument 1 of 'pud_offset' makes pointer from integer without a cast [-Wint-conversion]
170 | return pmd_offset(pud_offset(p4d_offset(pgd_offset_k(va), va), va), va);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| |
| int
include/asm-generic/pgtable-nopud.h:42:40: note: expected 'p4d_t *' but argument is of type 'int'
42 | static inline pud_t *pud_offset(p4d_t *p4d, unsigned long address)
| ~~~~~~~^~~
include/linux/pgtable.h: In function 'pud_same':
>> arch/m68k/include/asm/page.h:46:29: error: request for member 'pgd' in something not a structure or union
46 | #define pgd_val(x) ((x).pgd)
| ^
include/asm-generic/pgtable-nop4d.h:40:50: note: in expansion of macro 'pgd_val'
40 | #define p4d_val(x) (pgd_val((x).pgd))
| ^~~~~~~
include/asm-generic/pgtable-nopud.h:48:50: note: in expansion of macro 'p4d_val'
48 | #define pud_val(x) (p4d_val((x).p4d))
| ^~~~~~~
include/linux/pgtable.h:829:16: note: in expansion of macro 'pud_val'
829 | return pud_val(pud_a) == pud_val(pud_b);
| ^~~~~~~
>> arch/m68k/include/asm/page.h:46:29: error: request for member 'pgd' in something not a structure or union
46 | #define pgd_val(x) ((x).pgd)
| ^
include/asm-generic/pgtable-nop4d.h:40:50: note: in expansion of macro 'pgd_val'
40 | #define p4d_val(x) (pgd_val((x).pgd))
| ^~~~~~~
include/asm-generic/pgtable-nopud.h:48:50: note: in expansion of macro 'p4d_val'
48 | #define pud_val(x) (p4d_val((x).p4d))
| ^~~~~~~
include/linux/pgtable.h:829:34: note: in expansion of macro 'pud_val'
829 | return pud_val(pud_a) == pud_val(pud_b);
| ^~~~~~~
>> include/linux/pgtable.h:827:34: warning: parameter 'pud_a' set but not used [-Wunused-but-set-parameter]
827 | static inline int pud_same(pud_t pud_a, pud_t pud_b)
| ~~~~~~^~~~~
>> include/linux/pgtable.h:827:47: warning: parameter 'pud_b' set but not used [-Wunused-but-set-parameter]
827 | static inline int pud_same(pud_t pud_a, pud_t pud_b)
| ~~~~~~^~~~~
include/linux/pgtable.h: In function 'p4d_same':
>> arch/m68k/include/asm/page.h:46:29: error: request for member 'pgd' in something not a structure or union
46 | #define pgd_val(x) ((x).pgd)
| ^
include/asm-generic/pgtable-nop4d.h:40:50: note: in expansion of macro 'pgd_val'
40 | #define p4d_val(x) (pgd_val((x).pgd))
| ^~~~~~~
include/linux/pgtable.h:837:16: note: in expansion of macro 'p4d_val'
837 | return p4d_val(p4d_a) == p4d_val(p4d_b);
| ^~~~~~~
>> arch/m68k/include/asm/page.h:46:29: error: request for member 'pgd' in something not a structure or union
46 | #define pgd_val(x) ((x).pgd)
| ^
include/asm-generic/pgtable-nop4d.h:40:50: note: in expansion of macro 'pgd_val'
40 | #define p4d_val(x) (pgd_val((x).pgd))
| ^~~~~~~
include/linux/pgtable.h:837:34: note: in expansion of macro 'p4d_val'
837 | return p4d_val(p4d_a) == p4d_val(p4d_b);
| ^~~~~~~
>> include/linux/pgtable.h:835:34: warning: parameter 'p4d_a' set but not used [-Wunused-but-set-parameter]
835 | static inline int p4d_same(p4d_t p4d_a, p4d_t p4d_b)
| ~~~~~~^~~~~
>> include/linux/pgtable.h:835:47: warning: parameter 'p4d_b' set but not used [-Wunused-but-set-parameter]
835 | static inline int p4d_same(p4d_t p4d_a, p4d_t p4d_b)
| ~~~~~~^~~~~
include/linux/pgtable.h: In function 'pgd_none_or_clear_bad':
>> include/linux/pgtable.h:1021:13: error: implicit declaration of function 'pgd_none'; did you mean 'p4d_none'? [-Werror=implicit-function-declaration]
1021 | if (pgd_none(*pgd))
| ^~~~~~~~
| p4d_none
In file included from include/linux/export.h:5,
from include/linux/linkage.h:7,
from include/linux/preempt.h:10:
>> include/linux/pgtable.h:1023:22: error: implicit declaration of function 'pgd_bad'; did you mean 'p4d_bad'? [-Werror=implicit-function-declaration]
1023 | if (unlikely(pgd_bad(*pgd))) {
| ^~~~~~~
include/linux/compiler.h:77:45: note: in definition of macro 'unlikely'
77 | # define unlikely(x) __builtin_expect(!!(x), 0)
| ^
include/linux/pgtable.h: In function 'pud_none_or_clear_bad':
>> arch/m68k/include/asm/page.h:46:29: error: request for member 'pgd' in something not a structure or union
46 | #define pgd_val(x) ((x).pgd)
| ^
include/asm-generic/pgtable-nop4d.h:40:50: note: in expansion of macro 'pgd_val'
40 | #define p4d_val(x) (pgd_val((x).pgd))
| ^~~~~~~
include/asm-generic/pgtable-nopud.h:48:50: note: in expansion of macro 'p4d_val'
48 | #define pud_val(x) (p4d_val((x).p4d))
| ^~~~~~~
arch/m68k/include/asm/motorola_pgtable.h:134:35: note: in expansion of macro 'pud_val'
134 | #define pud_none(pud) (!pud_val(pud))
| ^~~~~~~
include/linux/pgtable.h:1043:13: note: in expansion of macro 'pud_none'
1043 | if (pud_none(*pud))
| ^~~~~~~~
>> arch/m68k/include/asm/page.h:46:29: error: request for member 'pgd' in something not a structure or union
46 | #define pgd_val(x) ((x).pgd)
| ^
include/linux/compiler.h:77:45: note: in definition of macro 'unlikely'
77 | # define unlikely(x) __builtin_expect(!!(x), 0)
| ^
include/asm-generic/pgtable-nop4d.h:40:50: note: in expansion of macro 'pgd_val'
40 | #define p4d_val(x) (pgd_val((x).pgd))
| ^~~~~~~
include/asm-generic/pgtable-nopud.h:48:50: note: in expansion of macro 'p4d_val'
48 | #define pud_val(x) (p4d_val((x).p4d))
| ^~~~~~~
arch/m68k/include/asm/motorola_pgtable.h:135:35: note: in expansion of macro 'pud_val'
135 | #define pud_bad(pud) ((pud_val(pud) & _DESCTYPE_MASK) != _PAGE_TABLE)
| ^~~~~~~
include/linux/pgtable.h:1045:22: note: in expansion of macro 'pud_bad'
1045 | if (unlikely(pud_bad(*pud))) {
| ^~~~~~~
cc1: some warnings being treated as errors
vim +/pgd_t +9 include/asm-generic/pgtable-nop4d.h
048456dcf2c56a Kirill A. Shutemov 2017-03-09 8
048456dcf2c56a Kirill A. Shutemov 2017-03-09 @9 typedef struct { pgd_t pgd; } p4d_t;
048456dcf2c56a Kirill A. Shutemov 2017-03-09 10
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 47+ messages in thread
* [PATCH v2] drm/crtc: make drm_crtc_internal.h self-contained
2024-03-06 18:31 ` [PATCH 01/22] drm/crtc: make drm_crtc_internal.h self-contained Jani Nikula
@ 2024-03-07 8:34 ` Jani Nikula
0 siblings, 0 replies; 47+ messages in thread
From: Jani Nikula @ 2024-03-07 8:34 UTC (permalink / raw)
To: Jani Nikula, dri-devel; +Cc: intel-gfx, intel-xe
Forward declare struct drm_printer and include <linux/err.h>.
v2: Include <linux/err.h> (kernel test robot)
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/drm_crtc_internal.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/gpu/drm/drm_crtc_internal.h b/drivers/gpu/drm/drm_crtc_internal.h
index a514d5207e41..c0c5d79ed4c9 100644
--- a/drivers/gpu/drm/drm_crtc_internal.h
+++ b/drivers/gpu/drm/drm_crtc_internal.h
@@ -32,6 +32,7 @@
* and are not exported to drivers.
*/
+#include <linux/err.h>
#include <linux/types.h>
enum drm_color_encoding;
@@ -54,6 +55,7 @@ struct drm_mode_object;
struct drm_mode_set;
struct drm_plane;
struct drm_plane_state;
+struct drm_printer;
struct drm_property;
struct edid;
struct fwnode_handle;
--
2.39.2
^ permalink raw reply related [flat|nested] 47+ messages in thread
* [PATCH] drm: add missing header guards to drm_crtc_internal.h
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
` (24 preceding siblings ...)
2024-03-07 1:06 ` ✗ Fi.CI.BAT: failure " Patchwork
@ 2024-03-07 8:35 ` Jani Nikula
2024-03-07 8:55 ` [PATCH 00/22] drm: fix headers, add header test facility Thomas Zimmermann
` (4 subsequent siblings)
30 siblings, 0 replies; 47+ messages in thread
From: Jani Nikula @ 2024-03-07 8:35 UTC (permalink / raw)
To: Jani Nikula, dri-devel; +Cc: intel-gfx, intel-xe
Including the file twice can lead to errors.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/drm_crtc_internal.h | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/drivers/gpu/drm/drm_crtc_internal.h b/drivers/gpu/drm/drm_crtc_internal.h
index c0c5d79ed4c9..0c693229a1c9 100644
--- a/drivers/gpu/drm/drm_crtc_internal.h
+++ b/drivers/gpu/drm/drm_crtc_internal.h
@@ -32,6 +32,9 @@
* and are not exported to drivers.
*/
+#ifndef __DRM_CRTC_INTERNAL_H__
+#define __DRM_CRTC_INTERNAL_H__
+
#include <linux/err.h>
#include <linux/types.h>
@@ -305,3 +308,5 @@ drm_edid_load_firmware(struct drm_connector *connector)
return ERR_PTR(-ENOENT);
}
#endif
+
+#endif /* __DRM_CRTC_INTERNAL_H__ */
--
2.39.2
^ permalink raw reply related [flat|nested] 47+ messages in thread
* Re: [PATCH 22/22] drm: ensure drm headers are self-contained and pass kernel-doc
2024-03-07 5:28 ` kernel test robot
@ 2024-03-07 8:44 ` Jani Nikula
2024-03-07 9:36 ` Geert Uytterhoeven
0 siblings, 1 reply; 47+ messages in thread
From: Jani Nikula @ 2024-03-07 8:44 UTC (permalink / raw)
To: kernel test robot, dri-devel
Cc: oe-kbuild-all, intel-gfx, intel-xe, Daniel Vetter, David Airlie,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann,
Masahiro Yamada, Thomas Hellström, Geert Uytterhoeven
On Thu, 07 Mar 2024, kernel test robot <lkp@intel.com> wrote:
> Hi Jani,
>
> kernel test robot noticed the following build errors:
So I'm trying to make include/drm/ttm/ttm_caching.h self-contained by
including <linux/pgtable.h> with [1], but it fails like below.
Cc: Thomas and Geert, better ideas for the include there? Looks like
include/asm-generic/pgtable-nop4d.h isn't self-contained on m68k.
BR,
Jani.
[1] https://lore.kernel.org/r/c35ce1a59d0796da32b32e4c8f59464de35f200a.1709749576.git.jani.nikula@intel.com
>
> [auto build test ERROR on drm-misc/drm-misc-next]
> [cannot apply to drm/drm-next drm-intel/for-linux-next drm-intel/for-linux-next-fixes linus/master v6.8-rc7 next-20240306]
> [If your patch is applied to the wrong git tree, kindly drop us a note.
> And when submitting patch, we suggest to use '--base' as documented in
> https://git-scm.com/docs/git-format-patch#_base_tree_information]
>
> url: https://github.com/intel-lab-lkp/linux/commits/Jani-Nikula/drm-crtc-make-drm_crtc_internal-h-self-contained/20240307-023603
> base: git://anongit.freedesktop.org/drm/drm-misc drm-misc-next
> patch link: https://lore.kernel.org/r/e22ab28836ee1689ea4781ed53fd2e4e4f84728e.1709749576.git.jani.nikula%40intel.com
> patch subject: [PATCH 22/22] drm: ensure drm headers are self-contained and pass kernel-doc
> config: m68k-allmodconfig (https://download.01.org/0day-ci/archive/20240307/202403071317.uoW18ZR3-lkp@intel.com/config)
> compiler: m68k-linux-gcc (GCC) 13.2.0
> reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240307/202403071317.uoW18ZR3-lkp@intel.com/reproduce)
>
> If you fix the issue in a separate patch/commit (i.e. not just a new version of
> the same patch/commit), kindly add following tags
> | Reported-by: kernel test robot <lkp@intel.com>
> | Closes: https://lore.kernel.org/oe-kbuild-all/202403071317.uoW18ZR3-lkp@intel.com/
>
> All error/warnings (new ones prefixed by >>):
>
> In file included from include/asm-generic/pgtable-nopud.h:7,
> from arch/m68k/include/asm/pgtable_mm.h:9,
> from arch/m68k/include/asm/pgtable.h:8,
> from include/linux/pgtable.h:6,
> from include/drm/ttm/ttm_caching.h:28,
> from <command-line>:
>>> include/asm-generic/pgtable-nop4d.h:9:18: error: unknown type name 'pgd_t'
> 9 | typedef struct { pgd_t pgd; } p4d_t;
> | ^~~~~
> include/asm-generic/pgtable-nop4d.h:21:28: error: unknown type name 'pgd_t'; did you mean 'p4d_t'?
> 21 | static inline int pgd_none(pgd_t pgd) { return 0; }
> | ^~~~~
> | p4d_t
> include/asm-generic/pgtable-nop4d.h:22:27: error: unknown type name 'pgd_t'; did you mean 'p4d_t'?
> 22 | static inline int pgd_bad(pgd_t pgd) { return 0; }
> | ^~~~~
> | p4d_t
> include/asm-generic/pgtable-nop4d.h:23:31: error: unknown type name 'pgd_t'; did you mean 'p4d_t'?
> 23 | static inline int pgd_present(pgd_t pgd) { return 1; }
> | ^~~~~
> | p4d_t
> include/asm-generic/pgtable-nop4d.h:24:30: error: unknown type name 'pgd_t'; did you mean 'p4d_t'?
> 24 | static inline void pgd_clear(pgd_t *pgd) { }
> | ^~~~~
> | p4d_t
> include/asm-generic/pgtable-nop4d.h:35:33: error: unknown type name 'pgd_t'; did you mean 'p4d_t'?
> 35 | static inline p4d_t *p4d_offset(pgd_t *pgd, unsigned long address)
> | ^~~~~
> | p4d_t
> In file included from arch/m68k/include/asm/thread_info.h:6,
> from include/linux/thread_info.h:60,
> from include/asm-generic/preempt.h:5,
> from ./arch/m68k/include/generated/asm/preempt.h:1,
> from include/linux/preempt.h:79,
> from arch/m68k/include/asm/processor.h:11,
> from arch/m68k/include/asm/pgtable_mm.h:15:
> arch/m68k/include/asm/motorola_pgtable.h: In function 'pud_set':
>>> arch/m68k/include/asm/page.h:46:29: error: request for member 'pgd' in something not a structure or union
> 46 | #define pgd_val(x) ((x).pgd)
> | ^
> include/asm-generic/pgtable-nop4d.h:40:50: note: in expansion of macro 'pgd_val'
> 40 | #define p4d_val(x) (pgd_val((x).pgd))
> | ^~~~~~~
> include/asm-generic/pgtable-nopud.h:48:50: note: in expansion of macro 'p4d_val'
> 48 | #define pud_val(x) (p4d_val((x).p4d))
> | ^~~~~~~
> arch/m68k/include/asm/motorola_pgtable.h:103:9: note: in expansion of macro 'pud_val'
> 103 | pud_val(*pudp) = _PAGE_TABLE | _PAGE_ACCESSED | __pa(pmdp);
> | ^~~~~~~
> include/linux/pgtable.h: In function 'pmd_offset':
>>> arch/m68k/include/asm/page.h:46:29: error: request for member 'pgd' in something not a structure or union
> 46 | #define pgd_val(x) ((x).pgd)
> | ^
> include/asm-generic/pgtable-nop4d.h:40:50: note: in expansion of macro 'pgd_val'
> 40 | #define p4d_val(x) (pgd_val((x).pgd))
> | ^~~~~~~
> include/asm-generic/pgtable-nopud.h:48:50: note: in expansion of macro 'p4d_val'
> 48 | #define pud_val(x) (p4d_val((x).p4d))
> | ^~~~~~~
> arch/m68k/include/asm/motorola_pgtable.h:108:41: note: in expansion of macro 'pud_val'
> 108 | #define pud_pgtable(pud) ((pmd_t *)__va(pud_val(pud) & _TABLE_MASK))
> | ^~~~~~~
> include/linux/pgtable.h:123:16: note: in expansion of macro 'pud_pgtable'
> 123 | return pud_pgtable(*pud) + pmd_index(address);
> | ^~~~~~~~~~~
> include/linux/pgtable.h: In function 'pmd_off':
>>> include/linux/pgtable.h:165:38: error: implicit declaration of function 'p4d_offset'; did you mean 'pmd_offset'? [-Werror=implicit-function-declaration]
> 165 | return pmd_offset(pud_offset(p4d_offset(pgd_offset(mm, va), va), va), va);
> | ^~~~~~~~~~
> | pmd_offset
>>> include/linux/pgtable.h:165:38: warning: passing argument 1 of 'pud_offset' makes pointer from integer without a cast [-Wint-conversion]
> 165 | return pmd_offset(pud_offset(p4d_offset(pgd_offset(mm, va), va), va), va);
> | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> | |
> | int
> include/asm-generic/pgtable-nopud.h:42:40: note: expected 'p4d_t *' but argument is of type 'int'
> 42 | static inline pud_t *pud_offset(p4d_t *p4d, unsigned long address)
> | ~~~~~~~^~~
> include/linux/pgtable.h: In function 'pmd_off_k':
> include/linux/pgtable.h:170:38: warning: passing argument 1 of 'pud_offset' makes pointer from integer without a cast [-Wint-conversion]
> 170 | return pmd_offset(pud_offset(p4d_offset(pgd_offset_k(va), va), va), va);
> | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> | |
> | int
> include/asm-generic/pgtable-nopud.h:42:40: note: expected 'p4d_t *' but argument is of type 'int'
> 42 | static inline pud_t *pud_offset(p4d_t *p4d, unsigned long address)
> | ~~~~~~~^~~
> include/linux/pgtable.h: In function 'pud_same':
>>> arch/m68k/include/asm/page.h:46:29: error: request for member 'pgd' in something not a structure or union
> 46 | #define pgd_val(x) ((x).pgd)
> | ^
> include/asm-generic/pgtable-nop4d.h:40:50: note: in expansion of macro 'pgd_val'
> 40 | #define p4d_val(x) (pgd_val((x).pgd))
> | ^~~~~~~
> include/asm-generic/pgtable-nopud.h:48:50: note: in expansion of macro 'p4d_val'
> 48 | #define pud_val(x) (p4d_val((x).p4d))
> | ^~~~~~~
> include/linux/pgtable.h:829:16: note: in expansion of macro 'pud_val'
> 829 | return pud_val(pud_a) == pud_val(pud_b);
> | ^~~~~~~
>>> arch/m68k/include/asm/page.h:46:29: error: request for member 'pgd' in something not a structure or union
> 46 | #define pgd_val(x) ((x).pgd)
> | ^
> include/asm-generic/pgtable-nop4d.h:40:50: note: in expansion of macro 'pgd_val'
> 40 | #define p4d_val(x) (pgd_val((x).pgd))
> | ^~~~~~~
> include/asm-generic/pgtable-nopud.h:48:50: note: in expansion of macro 'p4d_val'
> 48 | #define pud_val(x) (p4d_val((x).p4d))
> | ^~~~~~~
> include/linux/pgtable.h:829:34: note: in expansion of macro 'pud_val'
> 829 | return pud_val(pud_a) == pud_val(pud_b);
> | ^~~~~~~
>>> include/linux/pgtable.h:827:34: warning: parameter 'pud_a' set but not used [-Wunused-but-set-parameter]
> 827 | static inline int pud_same(pud_t pud_a, pud_t pud_b)
> | ~~~~~~^~~~~
>>> include/linux/pgtable.h:827:47: warning: parameter 'pud_b' set but not used [-Wunused-but-set-parameter]
> 827 | static inline int pud_same(pud_t pud_a, pud_t pud_b)
> | ~~~~~~^~~~~
> include/linux/pgtable.h: In function 'p4d_same':
>>> arch/m68k/include/asm/page.h:46:29: error: request for member 'pgd' in something not a structure or union
> 46 | #define pgd_val(x) ((x).pgd)
> | ^
> include/asm-generic/pgtable-nop4d.h:40:50: note: in expansion of macro 'pgd_val'
> 40 | #define p4d_val(x) (pgd_val((x).pgd))
> | ^~~~~~~
> include/linux/pgtable.h:837:16: note: in expansion of macro 'p4d_val'
> 837 | return p4d_val(p4d_a) == p4d_val(p4d_b);
> | ^~~~~~~
>>> arch/m68k/include/asm/page.h:46:29: error: request for member 'pgd' in something not a structure or union
> 46 | #define pgd_val(x) ((x).pgd)
> | ^
> include/asm-generic/pgtable-nop4d.h:40:50: note: in expansion of macro 'pgd_val'
> 40 | #define p4d_val(x) (pgd_val((x).pgd))
> | ^~~~~~~
> include/linux/pgtable.h:837:34: note: in expansion of macro 'p4d_val'
> 837 | return p4d_val(p4d_a) == p4d_val(p4d_b);
> | ^~~~~~~
>>> include/linux/pgtable.h:835:34: warning: parameter 'p4d_a' set but not used [-Wunused-but-set-parameter]
> 835 | static inline int p4d_same(p4d_t p4d_a, p4d_t p4d_b)
> | ~~~~~~^~~~~
>>> include/linux/pgtable.h:835:47: warning: parameter 'p4d_b' set but not used [-Wunused-but-set-parameter]
> 835 | static inline int p4d_same(p4d_t p4d_a, p4d_t p4d_b)
> | ~~~~~~^~~~~
> include/linux/pgtable.h: In function 'pgd_none_or_clear_bad':
>>> include/linux/pgtable.h:1021:13: error: implicit declaration of function 'pgd_none'; did you mean 'p4d_none'? [-Werror=implicit-function-declaration]
> 1021 | if (pgd_none(*pgd))
> | ^~~~~~~~
> | p4d_none
> In file included from include/linux/export.h:5,
> from include/linux/linkage.h:7,
> from include/linux/preempt.h:10:
>>> include/linux/pgtable.h:1023:22: error: implicit declaration of function 'pgd_bad'; did you mean 'p4d_bad'? [-Werror=implicit-function-declaration]
> 1023 | if (unlikely(pgd_bad(*pgd))) {
> | ^~~~~~~
> include/linux/compiler.h:77:45: note: in definition of macro 'unlikely'
> 77 | # define unlikely(x) __builtin_expect(!!(x), 0)
> | ^
> include/linux/pgtable.h: In function 'pud_none_or_clear_bad':
>>> arch/m68k/include/asm/page.h:46:29: error: request for member 'pgd' in something not a structure or union
> 46 | #define pgd_val(x) ((x).pgd)
> | ^
> include/asm-generic/pgtable-nop4d.h:40:50: note: in expansion of macro 'pgd_val'
> 40 | #define p4d_val(x) (pgd_val((x).pgd))
> | ^~~~~~~
> include/asm-generic/pgtable-nopud.h:48:50: note: in expansion of macro 'p4d_val'
> 48 | #define pud_val(x) (p4d_val((x).p4d))
> | ^~~~~~~
> arch/m68k/include/asm/motorola_pgtable.h:134:35: note: in expansion of macro 'pud_val'
> 134 | #define pud_none(pud) (!pud_val(pud))
> | ^~~~~~~
> include/linux/pgtable.h:1043:13: note: in expansion of macro 'pud_none'
> 1043 | if (pud_none(*pud))
> | ^~~~~~~~
>>> arch/m68k/include/asm/page.h:46:29: error: request for member 'pgd' in something not a structure or union
> 46 | #define pgd_val(x) ((x).pgd)
> | ^
> include/linux/compiler.h:77:45: note: in definition of macro 'unlikely'
> 77 | # define unlikely(x) __builtin_expect(!!(x), 0)
> | ^
> include/asm-generic/pgtable-nop4d.h:40:50: note: in expansion of macro 'pgd_val'
> 40 | #define p4d_val(x) (pgd_val((x).pgd))
> | ^~~~~~~
> include/asm-generic/pgtable-nopud.h:48:50: note: in expansion of macro 'p4d_val'
> 48 | #define pud_val(x) (p4d_val((x).p4d))
> | ^~~~~~~
> arch/m68k/include/asm/motorola_pgtable.h:135:35: note: in expansion of macro 'pud_val'
> 135 | #define pud_bad(pud) ((pud_val(pud) & _DESCTYPE_MASK) != _PAGE_TABLE)
> | ^~~~~~~
> include/linux/pgtable.h:1045:22: note: in expansion of macro 'pud_bad'
> 1045 | if (unlikely(pud_bad(*pud))) {
> | ^~~~~~~
> cc1: some warnings being treated as errors
>
>
> vim +/pgd_t +9 include/asm-generic/pgtable-nop4d.h
>
> 048456dcf2c56a Kirill A. Shutemov 2017-03-09 8
> 048456dcf2c56a Kirill A. Shutemov 2017-03-09 @9 typedef struct { pgd_t pgd; } p4d_t;
> 048456dcf2c56a Kirill A. Shutemov 2017-03-09 10
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: [PATCH 00/22] drm: fix headers, add header test facility
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
` (25 preceding siblings ...)
2024-03-07 8:35 ` [PATCH] drm: add missing header guards to drm_crtc_internal.h Jani Nikula
@ 2024-03-07 8:55 ` Thomas Zimmermann
2024-03-07 9:04 ` Jani Nikula
2024-03-07 15:23 ` Jani Nikula
2024-03-07 9:38 ` ✗ Fi.CI.CHECKPATCH: warning for drm: add missing header guards to drm_crtc_internal.h (rev2) Patchwork
` (3 subsequent siblings)
30 siblings, 2 replies; 47+ messages in thread
From: Thomas Zimmermann @ 2024-03-07 8:55 UTC (permalink / raw)
To: Jani Nikula, dri-devel
Cc: intel-gfx, intel-xe, David Airlie, Daniel Vetter,
Maarten Lankhorst, Maxime Ripard, Masahiro Yamada
Hi
Am 06.03.24 um 19:31 schrieb Jani Nikula:
> First, fix a bunch of issues in drm headers, uncovered with the last
> patch. A few kernel-doc warnings are just brushed under the carpet for
> now, with a FIXME comment. Otherwise, pretty straightforward stuff.
Nice, thanks a lot. For the FIXME comments, maybe maintainers can
provide the docs to include in your patchset. But that wouldn't be a
blocker IMHO. The /* private: */ comments make kernel-doc ignore the
rest of the structure, right?
With the required fixes applied, for patches 1 to 14:
Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de>
For patches 15 to 22:
Acked-by: Thomas Zimmermann <tzimmermann@suse.de>
Best regards
Thomas
>
> Second, add a header test facility to catch issues at build time when
> CONFIG_DRM_HEADER_TEST=y. This is the last patch, and I think needs
> Masahiro's ack.
>
> BR,
> Jani.
>
>
> Cc: David Airlie <airlied@gmail.com>
> Cc: Daniel Vetter <daniel@ffwll.ch>
> Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
> Cc: Maxime Ripard <mripard@kernel.org>
> Cc: Thomas Zimmermann <tzimmermann@suse.de>
> Cc: Masahiro Yamada <masahiroy@kernel.org>
>
> Jani Nikula (22):
> drm/crtc: make drm_crtc_internal.h self-contained
> drm: add missing header guards to drm_internal.h
> drm/kunit: fix drm_kunit_helpers.h kernel-doc
> drm/amdgpu: make amd_asic_type.h self-contained
> drm: bridge: samsung-dsim: make samsung-dsim.h self-contained
> drm/dp_mst: fix drm_dp_mst_helper.h kernel-doc
> drm/crc: make drm_debugfs_crc.h self-contained and fix kernel-doc
> drm/encoder: silence drm_encoder_slave.h kernel-doc
> drm: fix drm_format_helper.h kernel-doc warnings
> drm/lease: make drm_lease.h self-contained
> drm: fix drm_gem_vram_helper.h kernel-doc
> drm/of: make drm_of.h self-contained
> drm/i2c: silence ch7006.h and sil164.h kernel-doc warnings
> drm/suballoc: fix drm_suballoc.h kernel-doc
> drm/i915: fix i915_gsc_proxy_mei_interface.h kernel-doc
> drm/i915/hdcp: fix i915_hdcp_interface.h kernel-doc warnings
> drm/i915/pxp: fix i915_pxp_tee_interface.h kernel-doc warnings
> drm/ttm: fix ttm_bo.h kernel-doc warnings
> drm/ttm: make ttm_caching.h self-contained
> drm/ttm: fix ttm_execbuf_util.h kernel-doc warnings
> drm/ttm: fix ttm_kmap_iter.h kernel-doc warnings
> drm: ensure drm headers are self-contained and pass kernel-doc
>
> Kbuild | 1 +
> drivers/gpu/drm/Kconfig | 11 +++++++++++
> drivers/gpu/drm/Makefile | 18 ++++++++++++++++++
> drivers/gpu/drm/drm_crtc_internal.h | 1 +
> drivers/gpu/drm/drm_internal.h | 5 +++++
> include/Kbuild | 1 +
> include/drm/Makefile | 18 ++++++++++++++++++
> include/drm/amd_asic_type.h | 3 +++
> include/drm/bridge/samsung-dsim.h | 4 +++-
> include/drm/display/drm_dp_mst_helper.h | 1 -
> include/drm/drm_debugfs_crc.h | 8 +++++++-
> include/drm/drm_encoder_slave.h | 3 +++
> include/drm/drm_format_helper.h | 1 +
> include/drm/drm_gem_vram_helper.h | 1 -
> include/drm/drm_kunit_helpers.h | 2 +-
> include/drm/drm_lease.h | 2 ++
> include/drm/drm_of.h | 1 +
> include/drm/drm_suballoc.h | 2 +-
> include/drm/i2c/ch7006.h | 1 +
> include/drm/i2c/sil164.h | 1 +
> include/drm/i915_gsc_proxy_mei_interface.h | 4 ++--
> include/drm/i915_hdcp_interface.h | 18 +++++++++++++-----
> include/drm/i915_pxp_tee_interface.h | 19 ++++++++++++-------
> include/drm/ttm/ttm_bo.h | 18 ++++++++++++------
> include/drm/ttm/ttm_caching.h | 2 ++
> include/drm/ttm/ttm_execbuf_util.h | 7 +++----
> include/drm/ttm/ttm_kmap_iter.h | 4 ++--
> 27 files changed, 125 insertions(+), 32 deletions(-)
> create mode 100644 include/Kbuild
> create mode 100644 include/drm/Makefile
>
--
--
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Frankenstrasse 146, 90461 Nuernberg, Germany
GF: Ivo Totev, Andrew Myers, Andrew McDonald, Boudien Moerman
HRB 36809 (AG Nuernberg)
^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: [PATCH 00/22] drm: fix headers, add header test facility
2024-03-07 8:55 ` [PATCH 00/22] drm: fix headers, add header test facility Thomas Zimmermann
@ 2024-03-07 9:04 ` Jani Nikula
2024-03-07 15:23 ` Jani Nikula
1 sibling, 0 replies; 47+ messages in thread
From: Jani Nikula @ 2024-03-07 9:04 UTC (permalink / raw)
To: Thomas Zimmermann, dri-devel
Cc: intel-gfx, intel-xe, David Airlie, Daniel Vetter,
Maarten Lankhorst, Maxime Ripard, Masahiro Yamada
On Thu, 07 Mar 2024, Thomas Zimmermann <tzimmermann@suse.de> wrote:
> Hi
>
> Am 06.03.24 um 19:31 schrieb Jani Nikula:
>> First, fix a bunch of issues in drm headers, uncovered with the last
>> patch. A few kernel-doc warnings are just brushed under the carpet for
>> now, with a FIXME comment. Otherwise, pretty straightforward stuff.
>
> Nice, thanks a lot. For the FIXME comments, maybe maintainers can
> provide the docs to include in your patchset. But that wouldn't be a
> blocker IMHO. The /* private: */ comments make kernel-doc ignore the
> rest of the structure, right?
That's right. In some cases it's the appropriate thing to do, like patch
9/22 where the members of struct drm_format_conv_state should be
private.
>
> With the required fixes applied, for patches 1 to 14:
>
> Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de>
>
> For patches 15 to 22:
>
> Acked-by: Thomas Zimmermann <tzimmermann@suse.de>
Thanks!
BR,
Jani.
>
> Best regards
> Thomas
>
>>
>> Second, add a header test facility to catch issues at build time when
>> CONFIG_DRM_HEADER_TEST=y. This is the last patch, and I think needs
>> Masahiro's ack.
>>
>> BR,
>> Jani.
>>
>>
>> Cc: David Airlie <airlied@gmail.com>
>> Cc: Daniel Vetter <daniel@ffwll.ch>
>> Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
>> Cc: Maxime Ripard <mripard@kernel.org>
>> Cc: Thomas Zimmermann <tzimmermann@suse.de>
>> Cc: Masahiro Yamada <masahiroy@kernel.org>
>>
>> Jani Nikula (22):
>> drm/crtc: make drm_crtc_internal.h self-contained
>> drm: add missing header guards to drm_internal.h
>> drm/kunit: fix drm_kunit_helpers.h kernel-doc
>> drm/amdgpu: make amd_asic_type.h self-contained
>> drm: bridge: samsung-dsim: make samsung-dsim.h self-contained
>> drm/dp_mst: fix drm_dp_mst_helper.h kernel-doc
>> drm/crc: make drm_debugfs_crc.h self-contained and fix kernel-doc
>> drm/encoder: silence drm_encoder_slave.h kernel-doc
>> drm: fix drm_format_helper.h kernel-doc warnings
>> drm/lease: make drm_lease.h self-contained
>> drm: fix drm_gem_vram_helper.h kernel-doc
>> drm/of: make drm_of.h self-contained
>> drm/i2c: silence ch7006.h and sil164.h kernel-doc warnings
>> drm/suballoc: fix drm_suballoc.h kernel-doc
>> drm/i915: fix i915_gsc_proxy_mei_interface.h kernel-doc
>> drm/i915/hdcp: fix i915_hdcp_interface.h kernel-doc warnings
>> drm/i915/pxp: fix i915_pxp_tee_interface.h kernel-doc warnings
>> drm/ttm: fix ttm_bo.h kernel-doc warnings
>> drm/ttm: make ttm_caching.h self-contained
>> drm/ttm: fix ttm_execbuf_util.h kernel-doc warnings
>> drm/ttm: fix ttm_kmap_iter.h kernel-doc warnings
>> drm: ensure drm headers are self-contained and pass kernel-doc
>>
>> Kbuild | 1 +
>> drivers/gpu/drm/Kconfig | 11 +++++++++++
>> drivers/gpu/drm/Makefile | 18 ++++++++++++++++++
>> drivers/gpu/drm/drm_crtc_internal.h | 1 +
>> drivers/gpu/drm/drm_internal.h | 5 +++++
>> include/Kbuild | 1 +
>> include/drm/Makefile | 18 ++++++++++++++++++
>> include/drm/amd_asic_type.h | 3 +++
>> include/drm/bridge/samsung-dsim.h | 4 +++-
>> include/drm/display/drm_dp_mst_helper.h | 1 -
>> include/drm/drm_debugfs_crc.h | 8 +++++++-
>> include/drm/drm_encoder_slave.h | 3 +++
>> include/drm/drm_format_helper.h | 1 +
>> include/drm/drm_gem_vram_helper.h | 1 -
>> include/drm/drm_kunit_helpers.h | 2 +-
>> include/drm/drm_lease.h | 2 ++
>> include/drm/drm_of.h | 1 +
>> include/drm/drm_suballoc.h | 2 +-
>> include/drm/i2c/ch7006.h | 1 +
>> include/drm/i2c/sil164.h | 1 +
>> include/drm/i915_gsc_proxy_mei_interface.h | 4 ++--
>> include/drm/i915_hdcp_interface.h | 18 +++++++++++++-----
>> include/drm/i915_pxp_tee_interface.h | 19 ++++++++++++-------
>> include/drm/ttm/ttm_bo.h | 18 ++++++++++++------
>> include/drm/ttm/ttm_caching.h | 2 ++
>> include/drm/ttm/ttm_execbuf_util.h | 7 +++----
>> include/drm/ttm/ttm_kmap_iter.h | 4 ++--
>> 27 files changed, 125 insertions(+), 32 deletions(-)
>> create mode 100644 include/Kbuild
>> create mode 100644 include/drm/Makefile
>>
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: [PATCH 22/22] drm: ensure drm headers are self-contained and pass kernel-doc
2024-03-07 8:44 ` Jani Nikula
@ 2024-03-07 9:36 ` Geert Uytterhoeven
2024-03-07 15:43 ` Jani Nikula
0 siblings, 1 reply; 47+ messages in thread
From: Geert Uytterhoeven @ 2024-03-07 9:36 UTC (permalink / raw)
To: Jani Nikula
Cc: kernel test robot, dri-devel, oe-kbuild-all, intel-gfx, intel-xe,
Daniel Vetter, David Airlie, Maarten Lankhorst, Maxime Ripard,
Thomas Zimmermann, Masahiro Yamada, Thomas Hellström
Hi Jani,
On Thu, Mar 7, 2024 at 9:44 AM Jani Nikula <jani.nikula@intel.com> wrote:
> On Thu, 07 Mar 2024, kernel test robot <lkp@intel.com> wrote:
> > kernel test robot noticed the following build errors:
>
> So I'm trying to make include/drm/ttm/ttm_caching.h self-contained by
> including <linux/pgtable.h> with [1], but it fails like below.
>
> Cc: Thomas and Geert, better ideas for the include there? Looks like
> include/asm-generic/pgtable-nop4d.h isn't self-contained on m68k.
I have sent a fix
https://lore.kernel.org/r/ba359be013f379ff10f3afcea13e2f78dd9717be.1709804021.git.geert@linux-m68k.org
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
^ permalink raw reply [flat|nested] 47+ messages in thread
* ✗ Fi.CI.CHECKPATCH: warning for drm: add missing header guards to drm_crtc_internal.h (rev2)
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
` (26 preceding siblings ...)
2024-03-07 8:55 ` [PATCH 00/22] drm: fix headers, add header test facility Thomas Zimmermann
@ 2024-03-07 9:38 ` Patchwork
2024-03-07 9:38 ` ✗ Fi.CI.SPARSE: " Patchwork
` (2 subsequent siblings)
30 siblings, 0 replies; 47+ messages in thread
From: Patchwork @ 2024-03-07 9:38 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
== Series Details ==
Series: drm: add missing header guards to drm_crtc_internal.h (rev2)
URL : https://patchwork.freedesktop.org/series/130822/
State : warning
== Summary ==
Error: dim checkpatch failed
6394cb645816 drm/crtc: make drm_crtc_internal.h self-contained
4cb3460431f8 drm: add missing header guards to drm_internal.h
3f954fa07b03 drm/kunit: fix drm_kunit_helpers.h kernel-doc
5be8ac36f46e drm/amdgpu: make amd_asic_type.h self-contained
1ae8c19e8c79 drm: bridge: samsung-dsim: make samsung-dsim.h self-contained
80b03dd3b097 drm/dp_mst: fix drm_dp_mst_helper.h kernel-doc
216f77633704 drm/crc: make drm_debugfs_crc.h self-contained and fix kernel-doc
284b74d93245 drm/encoder: silence drm_encoder_slave.h kernel-doc
9089631058e7 drm: fix drm_format_helper.h kernel-doc warnings
1f6860a8eab1 drm/lease: make drm_lease.h self-contained
cb5bde9a1eb6 drm: fix drm_gem_vram_helper.h kernel-doc
b38b83148335 drm/of: make drm_of.h self-contained
938d6af9200c drm/i2c: silence ch7006.h and sil164.h kernel-doc warnings
3c80c2d926a3 drm/suballoc: fix drm_suballoc.h kernel-doc
9662bb932024 drm/i915: fix i915_gsc_proxy_mei_interface.h kernel-doc
83b44e084b06 drm/i915/hdcp: fix i915_hdcp_interface.h kernel-doc warnings
fd68c807f8dc drm/i915/pxp: fix i915_pxp_tee_interface.h kernel-doc warnings
92d41eb32533 drm/ttm: fix ttm_bo.h kernel-doc warnings
2c974eab6508 drm/ttm: make ttm_caching.h self-contained
83c3a112a66e drm/ttm: fix ttm_execbuf_util.h kernel-doc warnings
9c6acd9ee15a drm/ttm: fix ttm_kmap_iter.h kernel-doc warnings
2bc4cf88a51e drm: ensure drm headers are self-contained and pass kernel-doc
Traceback (most recent call last):
File "scripts/spdxcheck.py", line 6, in <module>
from ply import lex, yacc
ModuleNotFoundError: No module named 'ply'
-:79: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#79:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 58 lines checked
^ permalink raw reply [flat|nested] 47+ messages in thread
* ✗ Fi.CI.SPARSE: warning for drm: add missing header guards to drm_crtc_internal.h (rev2)
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
` (27 preceding siblings ...)
2024-03-07 9:38 ` ✗ Fi.CI.CHECKPATCH: warning for drm: add missing header guards to drm_crtc_internal.h (rev2) Patchwork
@ 2024-03-07 9:38 ` Patchwork
2024-03-07 9:55 ` ✓ Fi.CI.BAT: success " Patchwork
2024-03-07 18:27 ` ✗ Fi.CI.IGT: failure " Patchwork
30 siblings, 0 replies; 47+ messages in thread
From: Patchwork @ 2024-03-07 9:38 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
== Series Details ==
Series: drm: add missing header guards to drm_crtc_internal.h (rev2)
URL : https://patchwork.freedesktop.org/series/130822/
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] 47+ messages in thread
* ✓ Fi.CI.BAT: success for drm: add missing header guards to drm_crtc_internal.h (rev2)
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
` (28 preceding siblings ...)
2024-03-07 9:38 ` ✗ Fi.CI.SPARSE: " Patchwork
@ 2024-03-07 9:55 ` Patchwork
2024-03-07 18:27 ` ✗ Fi.CI.IGT: failure " Patchwork
30 siblings, 0 replies; 47+ messages in thread
From: Patchwork @ 2024-03-07 9:55 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 3882 bytes --]
== Series Details ==
Series: drm: add missing header guards to drm_crtc_internal.h (rev2)
URL : https://patchwork.freedesktop.org/series/130822/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14401 -> Patchwork_130822v2
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/index.html
Participating hosts (41 -> 38)
------------------------------
Missing (3): bat-dg1-7 bat-kbl-2 fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_130822v2 that come from known issues:
### CI changes ###
#### Issues hit ####
* boot:
- bat-jsl-1: [PASS][1] -> [FAIL][2] ([i915#8293])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/bat-jsl-1/boot.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/bat-jsl-1/boot.html
- fi-apl-guc: [PASS][3] -> [FAIL][4] ([i915#8293])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/fi-apl-guc/boot.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/fi-apl-guc/boot.html
### IGT changes ###
#### Issues hit ####
* igt@kms_pm_rpm@basic-pci-d3-state:
- bat-dg2-14: [PASS][5] -> [ABORT][6] ([i915#10367])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/bat-dg2-14/igt@kms_pm_rpm@basic-pci-d3-state.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/bat-dg2-14/igt@kms_pm_rpm@basic-pci-d3-state.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10367]: https://gitlab.freedesktop.org/drm/intel/issues/10367
[i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
[i915#8293]: https://gitlab.freedesktop.org/drm/intel/issues/8293
Build changes
-------------
* Linux: CI_DRM_14401 -> Patchwork_130822v2
CI-20190529: 20190529
CI_DRM_14401: 2e45ab4961e343a99fdef900be1e33234b8f3b73 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7749: 2fd91b8c3cf9aa2b0bb78537a6b5e2bc3de50e0e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_130822v2: 2e45ab4961e343a99fdef900be1e33234b8f3b73 @ git://anongit.freedesktop.org/gfx-ci/linux
### Linux commits
5945fc1e4f09 drm: ensure drm headers are self-contained and pass kernel-doc
82f2e1611bad drm/ttm: fix ttm_kmap_iter.h kernel-doc warnings
360f69a3a9f8 drm/ttm: fix ttm_execbuf_util.h kernel-doc warnings
ce042b6acd70 drm/ttm: make ttm_caching.h self-contained
76e59bc84049 drm/ttm: fix ttm_bo.h kernel-doc warnings
093a0c3bc992 drm/i915/pxp: fix i915_pxp_tee_interface.h kernel-doc warnings
a13eb5b827de drm/i915/hdcp: fix i915_hdcp_interface.h kernel-doc warnings
e0f5d49639ce drm/i915: fix i915_gsc_proxy_mei_interface.h kernel-doc
0d7381cd3f18 drm/suballoc: fix drm_suballoc.h kernel-doc
e7ecd4b0b248 drm/i2c: silence ch7006.h and sil164.h kernel-doc warnings
07d1752581c2 drm/of: make drm_of.h self-contained
a1ed7ed132fd drm: fix drm_gem_vram_helper.h kernel-doc
a981da3a54e7 drm/lease: make drm_lease.h self-contained
83e69ddc2609 drm: fix drm_format_helper.h kernel-doc warnings
144744b35632 drm/encoder: silence drm_encoder_slave.h kernel-doc
f67320f1e874 drm/crc: make drm_debugfs_crc.h self-contained and fix kernel-doc
ab19506067b4 drm/dp_mst: fix drm_dp_mst_helper.h kernel-doc
92300d1569e4 drm: bridge: samsung-dsim: make samsung-dsim.h self-contained
c2fd46d7bab2 drm/amdgpu: make amd_asic_type.h self-contained
f1b195153d5f drm/kunit: fix drm_kunit_helpers.h kernel-doc
e86f18e9bdd6 drm: add missing header guards to drm_internal.h
ce95506e53cb drm/crtc: make drm_crtc_internal.h self-contained
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/index.html
[-- Attachment #2: Type: text/html, Size: 4642 bytes --]
^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: [PATCH 04/22] drm/amdgpu: make amd_asic_type.h self-contained
2024-03-06 18:31 ` [PATCH 04/22] drm/amdgpu: make amd_asic_type.h self-contained Jani Nikula
@ 2024-03-07 14:36 ` Alex Deucher
2024-03-07 15:02 ` Jani Nikula
0 siblings, 1 reply; 47+ messages in thread
From: Alex Deucher @ 2024-03-07 14:36 UTC (permalink / raw)
To: Jani Nikula; +Cc: dri-devel, intel-gfx, intel-xe
On Wed, Mar 6, 2024 at 1:43 PM Jani Nikula <jani.nikula@intel.com> wrote:
>
> Include <linux/types.h> for u8.
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
Do you want me to pick this up? Otherwise, feel free to take it via
whatever tree makes sense.
Alex
> ---
> include/drm/amd_asic_type.h | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/include/drm/amd_asic_type.h b/include/drm/amd_asic_type.h
> index 724c45e3e9a7..9be85b821aa6 100644
> --- a/include/drm/amd_asic_type.h
> +++ b/include/drm/amd_asic_type.h
> @@ -22,6 +22,9 @@
>
> #ifndef __AMD_ASIC_TYPE_H__
> #define __AMD_ASIC_TYPE_H__
> +
> +#include <linux/types.h>
> +
> /*
> * Supported ASIC types
> */
> --
> 2.39.2
>
^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: [PATCH 22/22] drm: ensure drm headers are self-contained and pass kernel-doc
2024-03-06 18:31 ` [PATCH 22/22] drm: ensure drm headers are self-contained and pass kernel-doc Jani Nikula
2024-03-07 5:06 ` kernel test robot
2024-03-07 5:28 ` kernel test robot
@ 2024-03-07 14:49 ` kernel test robot
2 siblings, 0 replies; 47+ messages in thread
From: kernel test robot @ 2024-03-07 14:49 UTC (permalink / raw)
To: Jani Nikula, dri-devel
Cc: llvm, oe-kbuild-all, intel-gfx, intel-xe, jani.nikula,
Daniel Vetter, David Airlie, Maarten Lankhorst, Maxime Ripard,
Thomas Zimmermann, Masahiro Yamada
Hi Jani,
kernel test robot noticed the following build warnings:
[auto build test WARNING on drm-misc/drm-misc-next]
[cannot apply to drm/drm-next drm-intel/for-linux-next drm-intel/for-linux-next-fixes linus/master v6.8-rc7 next-20240307]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Jani-Nikula/drm-crtc-make-drm_crtc_internal-h-self-contained/20240307-023603
base: git://anongit.freedesktop.org/drm/drm-misc drm-misc-next
patch link: https://lore.kernel.org/r/e22ab28836ee1689ea4781ed53fd2e4e4f84728e.1709749576.git.jani.nikula%40intel.com
patch subject: [PATCH 22/22] drm: ensure drm headers are self-contained and pass kernel-doc
config: hexagon-allmodconfig (https://download.01.org/0day-ci/archive/20240307/202403072259.EEC2Vf1X-lkp@intel.com/config)
compiler: clang version 19.0.0git (https://github.com/llvm/llvm-project 325f51237252e6dab8e4e1ea1fa7acbb4faee1cd)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240307/202403072259.EEC2Vf1X-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202403072259.EEC2Vf1X-lkp@intel.com/
All warnings (new ones prefixed by >>):
In file included from <built-in>:4:
>> include/drm/ttm/ttm_pool.h:89:52: warning: declaration of 'struct seq_file' will not be visible outside of this function [-Wvisibility]
89 | int ttm_pool_debugfs(struct ttm_pool *pool, struct seq_file *m);
| ^
1 warning generated.
vim +89 include/drm/ttm/ttm_pool.h
d099fc8f540add Christian König 2020-10-22 88
d099fc8f540add Christian König 2020-10-22 @89 int ttm_pool_debugfs(struct ttm_pool *pool, struct seq_file *m);
d099fc8f540add Christian König 2020-10-22 90
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: [PATCH 04/22] drm/amdgpu: make amd_asic_type.h self-contained
2024-03-07 14:36 ` Alex Deucher
@ 2024-03-07 15:02 ` Jani Nikula
0 siblings, 0 replies; 47+ messages in thread
From: Jani Nikula @ 2024-03-07 15:02 UTC (permalink / raw)
To: Alex Deucher; +Cc: dri-devel, intel-gfx, intel-xe
On Thu, 07 Mar 2024, Alex Deucher <alexdeucher@gmail.com> wrote:
> On Wed, Mar 6, 2024 at 1:43 PM Jani Nikula <jani.nikula@intel.com> wrote:
>>
>> Include <linux/types.h> for u8.
>>
>> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>
> Acked-by: Alex Deucher <alexander.deucher@amd.com>
>
> Do you want me to pick this up? Otherwise, feel free to take it via
> whatever tree makes sense.
Thanks, I'd like to take it along with the rest via drm-misc-next.
BR,
Jani.
>
> Alex
>
>> ---
>> include/drm/amd_asic_type.h | 3 +++
>> 1 file changed, 3 insertions(+)
>>
>> diff --git a/include/drm/amd_asic_type.h b/include/drm/amd_asic_type.h
>> index 724c45e3e9a7..9be85b821aa6 100644
>> --- a/include/drm/amd_asic_type.h
>> +++ b/include/drm/amd_asic_type.h
>> @@ -22,6 +22,9 @@
>>
>> #ifndef __AMD_ASIC_TYPE_H__
>> #define __AMD_ASIC_TYPE_H__
>> +
>> +#include <linux/types.h>
>> +
>> /*
>> * Supported ASIC types
>> */
>> --
>> 2.39.2
>>
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: [PATCH 00/22] drm: fix headers, add header test facility
2024-03-07 8:55 ` [PATCH 00/22] drm: fix headers, add header test facility Thomas Zimmermann
2024-03-07 9:04 ` Jani Nikula
@ 2024-03-07 15:23 ` Jani Nikula
1 sibling, 0 replies; 47+ messages in thread
From: Jani Nikula @ 2024-03-07 15:23 UTC (permalink / raw)
To: Thomas Zimmermann, dri-devel, Alex Deucher
Cc: intel-gfx, intel-xe, David Airlie, Daniel Vetter,
Maarten Lankhorst, Maxime Ripard, Masahiro Yamada
On Thu, 07 Mar 2024, Thomas Zimmermann <tzimmermann@suse.de> wrote:
> Hi
>
> Am 06.03.24 um 19:31 schrieb Jani Nikula:
>> First, fix a bunch of issues in drm headers, uncovered with the last
>> patch. A few kernel-doc warnings are just brushed under the carpet for
>> now, with a FIXME comment. Otherwise, pretty straightforward stuff.
>
> Nice, thanks a lot. For the FIXME comments, maybe maintainers can
> provide the docs to include in your patchset. But that wouldn't be a
> blocker IMHO. The /* private: */ comments make kernel-doc ignore the
> rest of the structure, right?
>
> With the required fixes applied, for patches 1 to 14:
>
> Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de>
Thanks for the review, I started off with pushing patches 1-7, 9-12, and
14 to drm-misc-next, with Alex's ack on patch 4.
Patches 8 and 13 have fixmes, so skipped those for now.
BR,
Jani.
>
> For patches 15 to 22:
>
> Acked-by: Thomas Zimmermann <tzimmermann@suse.de>
>
> Best regards
> Thomas
>
>>
>> Second, add a header test facility to catch issues at build time when
>> CONFIG_DRM_HEADER_TEST=y. This is the last patch, and I think needs
>> Masahiro's ack.
>>
>> BR,
>> Jani.
>>
>>
>> Cc: David Airlie <airlied@gmail.com>
>> Cc: Daniel Vetter <daniel@ffwll.ch>
>> Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
>> Cc: Maxime Ripard <mripard@kernel.org>
>> Cc: Thomas Zimmermann <tzimmermann@suse.de>
>> Cc: Masahiro Yamada <masahiroy@kernel.org>
>>
>> Jani Nikula (22):
>> drm/crtc: make drm_crtc_internal.h self-contained
>> drm: add missing header guards to drm_internal.h
>> drm/kunit: fix drm_kunit_helpers.h kernel-doc
>> drm/amdgpu: make amd_asic_type.h self-contained
>> drm: bridge: samsung-dsim: make samsung-dsim.h self-contained
>> drm/dp_mst: fix drm_dp_mst_helper.h kernel-doc
>> drm/crc: make drm_debugfs_crc.h self-contained and fix kernel-doc
>> drm/encoder: silence drm_encoder_slave.h kernel-doc
>> drm: fix drm_format_helper.h kernel-doc warnings
>> drm/lease: make drm_lease.h self-contained
>> drm: fix drm_gem_vram_helper.h kernel-doc
>> drm/of: make drm_of.h self-contained
>> drm/i2c: silence ch7006.h and sil164.h kernel-doc warnings
>> drm/suballoc: fix drm_suballoc.h kernel-doc
>> drm/i915: fix i915_gsc_proxy_mei_interface.h kernel-doc
>> drm/i915/hdcp: fix i915_hdcp_interface.h kernel-doc warnings
>> drm/i915/pxp: fix i915_pxp_tee_interface.h kernel-doc warnings
>> drm/ttm: fix ttm_bo.h kernel-doc warnings
>> drm/ttm: make ttm_caching.h self-contained
>> drm/ttm: fix ttm_execbuf_util.h kernel-doc warnings
>> drm/ttm: fix ttm_kmap_iter.h kernel-doc warnings
>> drm: ensure drm headers are self-contained and pass kernel-doc
>>
>> Kbuild | 1 +
>> drivers/gpu/drm/Kconfig | 11 +++++++++++
>> drivers/gpu/drm/Makefile | 18 ++++++++++++++++++
>> drivers/gpu/drm/drm_crtc_internal.h | 1 +
>> drivers/gpu/drm/drm_internal.h | 5 +++++
>> include/Kbuild | 1 +
>> include/drm/Makefile | 18 ++++++++++++++++++
>> include/drm/amd_asic_type.h | 3 +++
>> include/drm/bridge/samsung-dsim.h | 4 +++-
>> include/drm/display/drm_dp_mst_helper.h | 1 -
>> include/drm/drm_debugfs_crc.h | 8 +++++++-
>> include/drm/drm_encoder_slave.h | 3 +++
>> include/drm/drm_format_helper.h | 1 +
>> include/drm/drm_gem_vram_helper.h | 1 -
>> include/drm/drm_kunit_helpers.h | 2 +-
>> include/drm/drm_lease.h | 2 ++
>> include/drm/drm_of.h | 1 +
>> include/drm/drm_suballoc.h | 2 +-
>> include/drm/i2c/ch7006.h | 1 +
>> include/drm/i2c/sil164.h | 1 +
>> include/drm/i915_gsc_proxy_mei_interface.h | 4 ++--
>> include/drm/i915_hdcp_interface.h | 18 +++++++++++++-----
>> include/drm/i915_pxp_tee_interface.h | 19 ++++++++++++-------
>> include/drm/ttm/ttm_bo.h | 18 ++++++++++++------
>> include/drm/ttm/ttm_caching.h | 2 ++
>> include/drm/ttm/ttm_execbuf_util.h | 7 +++----
>> include/drm/ttm/ttm_kmap_iter.h | 4 ++--
>> 27 files changed, 125 insertions(+), 32 deletions(-)
>> create mode 100644 include/Kbuild
>> create mode 100644 include/drm/Makefile
>>
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: [PATCH 22/22] drm: ensure drm headers are self-contained and pass kernel-doc
2024-03-07 9:36 ` Geert Uytterhoeven
@ 2024-03-07 15:43 ` Jani Nikula
0 siblings, 0 replies; 47+ messages in thread
From: Jani Nikula @ 2024-03-07 15:43 UTC (permalink / raw)
To: Geert Uytterhoeven
Cc: kernel test robot, dri-devel, oe-kbuild-all, intel-gfx, intel-xe,
Daniel Vetter, David Airlie, Maarten Lankhorst, Maxime Ripard,
Thomas Zimmermann, Masahiro Yamada, Thomas Hellström
On Thu, 07 Mar 2024, Geert Uytterhoeven <geert@linux-m68k.org> wrote:
> Hi Jani,
>
> On Thu, Mar 7, 2024 at 9:44 AM Jani Nikula <jani.nikula@intel.com> wrote:
>> On Thu, 07 Mar 2024, kernel test robot <lkp@intel.com> wrote:
>> > kernel test robot noticed the following build errors:
>>
>> So I'm trying to make include/drm/ttm/ttm_caching.h self-contained by
>> including <linux/pgtable.h> with [1], but it fails like below.
>>
>> Cc: Thomas and Geert, better ideas for the include there? Looks like
>> include/asm-generic/pgtable-nop4d.h isn't self-contained on m68k.
>
> I have sent a fix
>
> https://lore.kernel.org/r/ba359be013f379ff10f3afcea13e2f78dd9717be.1709804021.git.geert@linux-m68k.org
Thanks! I've picked this up as part of my series, and will include it
with the other remaining patches when I post a v2, aiming to merge all
of them via drm-misc-next.
BR,
Jani.
>
> Gr{oetje,eeting}s,
>
> Geert
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: [PATCH 15/22] drm/i915: fix i915_gsc_proxy_mei_interface.h kernel-doc
2024-03-06 18:31 ` [PATCH 15/22] drm/i915: fix i915_gsc_proxy_mei_interface.h kernel-doc Jani Nikula
@ 2024-03-07 17:56 ` Lucas De Marchi
0 siblings, 0 replies; 47+ messages in thread
From: Lucas De Marchi @ 2024-03-07 17:56 UTC (permalink / raw)
To: Jani Nikula; +Cc: dri-devel, intel-gfx, intel-xe
On Wed, Mar 06, 2024 at 08:31:20PM +0200, Jani Nikula wrote:
>There's no proper way to document function pointer members, but at least
>silence the warnings.
>
>Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
Lucas De Marchi
^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: [PATCH 16/22] drm/i915/hdcp: fix i915_hdcp_interface.h kernel-doc warnings
2024-03-06 18:31 ` [PATCH 16/22] drm/i915/hdcp: fix i915_hdcp_interface.h kernel-doc warnings Jani Nikula
@ 2024-03-07 18:00 ` Lucas De Marchi
0 siblings, 0 replies; 47+ messages in thread
From: Lucas De Marchi @ 2024-03-07 18:00 UTC (permalink / raw)
To: Jani Nikula; +Cc: dri-devel, intel-gfx, intel-xe
On Wed, Mar 06, 2024 at 08:31:21PM +0200, Jani Nikula wrote:
>Make the documentation match code.
>
>Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>---
> include/drm/i915_hdcp_interface.h | 18 +++++++++++++-----
> 1 file changed, 13 insertions(+), 5 deletions(-)
>
>diff --git a/include/drm/i915_hdcp_interface.h b/include/drm/i915_hdcp_interface.h
>index 4c9c8167c2d5..a9f2ee576de8 100644
>--- a/include/drm/i915_hdcp_interface.h
>+++ b/include/drm/i915_hdcp_interface.h
>@@ -54,7 +54,7 @@ enum hdcp_ddi {
> };
>
> /**
>- * enum hdcp_tc - ME/GSC Firmware defined index for transcoders
>+ * enum hdcp_transcoder - ME/GSC Firmware defined index for transcoders
> * @HDCP_INVALID_TRANSCODER: Index for Invalid transcoder
> * @HDCP_TRANSCODER_EDP: Index for EDP Transcoder
> * @HDCP_TRANSCODER_DSI0: Index for DSI0 Transcoder
>@@ -106,7 +106,7 @@ struct hdcp_port_data {
> * And Prepare AKE_Init.
> * @verify_receiver_cert_prepare_km: Verify the Receiver Certificate
> * AKE_Send_Cert and prepare
>- AKE_Stored_Km/AKE_No_Stored_Km
>+ * AKE_Stored_Km/AKE_No_Stored_Km
> * @verify_hprime: Verify AKE_Send_H_prime
> * @store_pairing_info: Store pairing info received
> * @initiate_locality_check: Prepare LC_Init
>@@ -170,14 +170,22 @@ struct i915_hdcp_ops {
> /**
> * struct i915_hdcp_arbiter - Used for communication between i915
> * and hdcp drivers for the HDCP2.2 services
>- * @hdcp_dev: device that provide the HDCP2.2 service from MEI Bus.
>- * @hdcp_ops: Ops implemented by hdcp driver or intel_hdcp_gsc , used by i915 driver.
you are just moving what was already there, but may be a good
opportunity for small fixups?
> */
> struct i915_hdcp_arbiter {
>+ /**
>+ * @hdcp_dev: device that provide the HDCP2.2 service from MEI Bus.
^provides
>+ */
> struct device *hdcp_dev;
>+
>+ /**
>+ * @ops: Ops implemented by hdcp driver or intel_hdcp_gsc , used by i915
extra space before ","
anyway,
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
Lucas De Marchi
>+ * driver.
>+ */
> const struct i915_hdcp_ops *ops;
>
>- /* To protect the above members. */
>+ /**
>+ * @mutex: To protect the above members.
>+ */
> struct mutex mutex;
> };
>
>--
>2.39.2
>
^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: [PATCH 17/22] drm/i915/pxp: fix i915_pxp_tee_interface.h kernel-doc warnings
2024-03-06 18:31 ` [PATCH 17/22] drm/i915/pxp: fix i915_pxp_tee_interface.h " Jani Nikula
@ 2024-03-07 18:02 ` Lucas De Marchi
2024-03-07 20:49 ` Jani Nikula
0 siblings, 1 reply; 47+ messages in thread
From: Lucas De Marchi @ 2024-03-07 18:02 UTC (permalink / raw)
To: Jani Nikula; +Cc: dri-devel, intel-gfx, intel-xe
On Wed, Mar 06, 2024 at 08:31:22PM +0200, Jani Nikula wrote:
>Make documentation match code.
>
>Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>---
> include/drm/i915_pxp_tee_interface.h | 19 ++++++++++++-------
> 1 file changed, 12 insertions(+), 7 deletions(-)
>
>diff --git a/include/drm/i915_pxp_tee_interface.h b/include/drm/i915_pxp_tee_interface.h
>index 7d96985f2d05..653e85d6e32b 100644
>--- a/include/drm/i915_pxp_tee_interface.h
>+++ b/include/drm/i915_pxp_tee_interface.h
>@@ -14,12 +14,10 @@ struct scatterlist;
> * struct i915_pxp_component_ops - ops for PXP services.
> * @owner: Module providing the ops
> * @send: sends data to PXP
>- * @receive: receives data from PXP
>+ * @recv: receives data from PXP
>+ * @gsc_command: send gsc command
> */
> struct i915_pxp_component_ops {
>- /**
>- * @owner: owner of the module provding the ops
>- */
isn't the other way around the more common one? i.e. document the
struct members closer to their declaration.
> struct module *owner;
>
> int (*send)(struct device *dev, const void *message, size_t size,
>@@ -35,14 +33,21 @@ struct i915_pxp_component_ops {
> /**
> * struct i915_pxp_component - Used for communication between i915 and TEE
> * drivers for the PXP services
>- * @tee_dev: device that provide the PXP service from TEE Bus.
>- * @pxp_ops: Ops implemented by TEE driver, used by i915 driver.
> */
... which you follow here.
Lucas De Marchi
> struct i915_pxp_component {
>+ /**
>+ * @tee_dev: device that provide the PXP service from TEE Bus.
>+ */
> struct device *tee_dev;
>+
>+ /**
>+ * @ops: Ops implemented by TEE driver, used by i915 driver.
>+ */
> const struct i915_pxp_component_ops *ops;
>
>- /* To protect the above members. */
>+ /**
>+ * @mutex: To protect the above members.
>+ */
> struct mutex mutex;
> };
>
>--
>2.39.2
>
^ permalink raw reply [flat|nested] 47+ messages in thread
* ✗ Fi.CI.IGT: failure for drm: add missing header guards to drm_crtc_internal.h (rev2)
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
` (29 preceding siblings ...)
2024-03-07 9:55 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2024-03-07 18:27 ` Patchwork
30 siblings, 0 replies; 47+ messages in thread
From: Patchwork @ 2024-03-07 18:27 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 78568 bytes --]
== Series Details ==
Series: drm: add missing header guards to drm_crtc_internal.h (rev2)
URL : https://patchwork.freedesktop.org/series/130822/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14401_full -> Patchwork_130822v2_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_130822v2_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_130822v2_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.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_130822v2_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
- shard-dg2: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-dg2-2/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-10/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
* igt@gem_mmap_gtt@cpuset-big-copy:
- shard-glk: NOTRUN -> [INCOMPLETE][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-glk8/igt@gem_mmap_gtt@cpuset-big-copy.html
Known issues
------------
Here are the changes found in Patchwork_130822v2_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][4] ([i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-13/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#6230])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-7/igt@api_intel_bb@crc32.html
* igt@debugfs_test@basic-hwmon:
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#9318])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@cold-reset-bound:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#7701])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-7/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@isolation@vecs0:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414]) +15 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-17/igt@drm_fdinfo@isolation@vecs0.html
* igt@drm_fdinfo@most-busy-check-all@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8414]) +6 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@drm_fdinfo@most-busy-check-all@vcs0.html
* igt@gem_basic@multigpu-create-close:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#7697]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-16/igt@gem_basic@multigpu-create-close.html
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#7697])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@gem_basic@multigpu-create-close.html
* igt@gem_busy@semaphore:
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#3936])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@gem_busy@semaphore.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-13/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_compute@compute-square:
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#9310])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-1/igt@gem_compute@compute-square.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: [PASS][15] -> [FAIL][16] ([i915#6268])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html
- shard-tglu: [PASS][17] -> [FAIL][18] ([i915#6268])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-tglu-6/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#8555])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-many.html
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#8555])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#5882]) +9 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-10/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#5882]) +5 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-1/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs0.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#4771])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-2/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg1: NOTRUN -> [SKIP][24] ([i915#4812]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-13/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#4771]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-17/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_capture@capture@vecs0-smem:
- shard-mtlp: NOTRUN -> [FAIL][26] ([i915#10386])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@gem_exec_capture@capture@vecs0-smem.html
* igt@gem_exec_capture@many-4k-zero:
- shard-dg1: NOTRUN -> [FAIL][27] ([i915#9606])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-17/igt@gem_exec_capture@many-4k-zero.html
- shard-dg2: NOTRUN -> [FAIL][28] ([i915#9606])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-1/igt@gem_exec_capture@many-4k-zero.html
- shard-rkl: NOTRUN -> [FAIL][29] ([i915#9606])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-2/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglu: [PASS][30] -> [FAIL][31] ([i915#2842]) +1 other test fail
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-tglu-8/igt@gem_exec_fair@basic-none-share@rcs0.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-tglu-2/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none-solo:
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4473])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-6/igt@gem_exec_fair@basic-none-solo.html
* igt@gem_exec_fair@basic-none@vecs0:
- shard-rkl: [PASS][33] -> [FAIL][34] ([i915#2842]) +1 other test fail
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-rkl-2/igt@gem_exec_fair@basic-none@vecs0.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-4/igt@gem_exec_fair@basic-none@vecs0.html
* igt@gem_exec_fair@basic-pace:
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#3539]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-17/igt@gem_exec_fair@basic-pace.html
* igt@gem_exec_fair@basic-pace-share:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-10/igt@gem_exec_fair@basic-pace-share.html
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4473] / [i915#4771]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-1/igt@gem_exec_fair@basic-pace-share.html
* igt@gem_exec_fence@submit67:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4812])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-1/igt@gem_exec_fence@submit67.html
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#4812])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-10/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +5 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-13/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_reloc@basic-cpu-gtt:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#3281]) +7 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-10/igt@gem_exec_reloc@basic-cpu-gtt.html
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#3281]) +6 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
* igt@gem_exec_reloc@basic-gtt-read-active:
- shard-rkl: NOTRUN -> [SKIP][43] ([i915#3281]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-read-active.html
* igt@gem_exec_reloc@basic-wc-read:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#3281]) +10 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-17/igt@gem_exec_reloc@basic-wc-read.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4537] / [i915#4812])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#4537] / [i915#4812]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-2/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-rkl: NOTRUN -> [ABORT][47] ([i915#7975] / [i915#8213])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-7/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4860])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-1/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#4860]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-17/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_swapping@heavy-verify-multi@lmem0:
- shard-dg1: NOTRUN -> [FAIL][50] ([i915#10378]) +1 other test fail
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-19/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
* igt@gem_lmem_swapping@smem-oom:
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#4613])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-2/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4613]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4565])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-16/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_mmap@bad-size:
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4083]) +5 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-1/igt@gem_mmap@bad-size.html
* igt@gem_mmap_gtt@basic-write-read-distinct:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4077]) +9 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@gem_mmap_gtt@basic-write-read-distinct.html
* igt@gem_mmap_gtt@medium-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#4077]) +12 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-17/igt@gem_mmap_gtt@medium-copy-odd.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4077]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-10/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_mmap_wc@fault-concurrent:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4083]) +4 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-10/igt@gem_mmap_wc@fault-concurrent.html
* igt@gem_mmap_wc@read:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#4083]) +5 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-17/igt@gem_mmap_wc@read.html
* igt@gem_pread@self:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#3282]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-1/igt@gem_pread@self.html
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#3282]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-2/igt@gem_pread@self.html
* igt@gem_pwrite@basic-exhaustion:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#3282]) +9 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-17/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#4270]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-12/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4270]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_readwrite@write-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#3282]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@gem_readwrite@write-bad-handle.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#8428]) +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#5190]) +8 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-1/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4079]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-17/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4885])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-13/igt@gem_softpin@evict-snoop.html
* igt@gem_tiled_pread_basic:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4079])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@gem_tiled_pread_basic.html
* igt@gem_unfence_active_buffers:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4879])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-13/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#3297]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-17/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@mmap-offset-banned@gtt:
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#3297]) +3 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@gem_userptr_blits@mmap-offset-banned@gtt.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#3297])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-10/igt@gem_userptr_blits@unsync-unmap.html
* igt@gen9_exec_parse@batch-without-end:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#2856]) +3 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#2527]) +5 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-12/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@secure-batches:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#2527])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-2/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@valid-registers:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#2856]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-10/igt@gen9_exec_parse@valid-registers.html
* igt@i915_module_load@load:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#6227])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-13/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [PASS][80] -> [ABORT][81] ([i915#9820])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html
- shard-snb: [PASS][82] -> [INCOMPLETE][83] ([i915#9849])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#6621])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-13/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#8925]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-17/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#6245])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-12/igt@i915_query@hwconfig_table.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [PASS][87] -> [FAIL][88] ([i915#10031])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-rkl-5/igt@i915_suspend@basic-s3-without-i915.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-5/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#4212]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-1/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#4215] / [i915#5190])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-10/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#4212]) +3 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-19/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1:
- shard-glk: [PASS][92] -> [FAIL][93] ([i915#2521])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-glk9/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-glk3/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-snb: NOTRUN -> [SKIP][94] +3 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-snb2/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [PASS][95] -> [FAIL][96] ([i915#5138])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-mtlp-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][97] ([i915#5286])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-2/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#4538] / [i915#5286]) +9 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#3638]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-12/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: [PASS][100] -> [FAIL][101] ([i915#3743])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#4538] / [i915#5190]) +2 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-10/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#4538]) +7 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-18/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-mtlp: NOTRUN -> [SKIP][104] ([i915#6187]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-1/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#7213] / [i915#9010]) +3 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_cdclk@plane-scaling:
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#3742]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-12/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#4087]) +3 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#7828]) +3 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-10/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#7828])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-2/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#7828]) +11 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-16/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-mtlp: NOTRUN -> [SKIP][111] ([i915#7828]) +7 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][112] ([i915#7173])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-4.html
* igt@kms_content_protection@content-type-change:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#9424])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-1/igt@kms_content_protection@content-type-change.html
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#9424])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-2/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#3299]) +2 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-13/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@legacy:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#7118] / [i915#9424])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-10/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-mtlp: NOTRUN -> [SKIP][117] ([i915#6944] / [i915#9424]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@kms_content_protection@lic-type-0.html
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#9424]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-16/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@uevent:
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#7116] / [i915#9424])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-13/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#3555]) +2 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-2/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#3555] / [i915#8814]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-1/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#8814]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#3555])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-2/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#3359])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#3359]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-16/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#3359])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#4103] / [i915#4213]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-mtlp: NOTRUN -> [SKIP][128] ([i915#9809]) +4 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][129] +16 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-rkl: NOTRUN -> [SKIP][130] +7 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#4103] / [i915#4213])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#9723])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-16/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#9833])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#9227])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#8588])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-10/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#8588])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-1/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#3804])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#8812])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-19/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#3555] / [i915#3840])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-1/igt@kms_dsc@dsc-basic.html
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#3555] / [i915#3840])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-2/igt@kms_dsc@dsc-basic.html
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#3555] / [i915#3840])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-17/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg1: NOTRUN -> [SKIP][142] ([i915#3840])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-17/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#3840] / [i915#9053])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-19/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg1: NOTRUN -> [SKIP][144] ([i915#9337])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-13/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#658])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-10/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#8381])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-16/igt@kms_flip@2x-flip-vs-fences.html
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#8381])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#3637]) +4 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-1/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#9934]) +6 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-19/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-dg2: NOTRUN -> [SKIP][150] +8 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-10/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#2672])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#2587] / [i915#2672]) +6 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][153] ([i915#2672] / [i915#3555]) +2 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#2672]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#2672])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-glk: NOTRUN -> [SKIP][156] +56 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-glk6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: [PASS][157] -> [FAIL][158] ([i915#6880])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite.html
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][159] ([i915#1825]) +23 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#5354]) +20 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#1825]) +10 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#8708]) +10 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#3458]) +19 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#5439])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#10055])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#10055])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#3023]) +5 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#3458]) +6 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#8708]) +5 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#8708]) +25 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_hdr@static-swap:
- shard-dg1: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#8228]) +3 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-17/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#8228])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-2/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-dpms:
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#3555] / [i915#8228])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-6/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#6301])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-12/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#8821])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-1/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#8821])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-10/igt@kms_plane_lowres@tiling-yf.html
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#8821])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-1/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#9423]) +7 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#9423]) +9 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#5176]) +3 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][181] ([i915#9423]) +15 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-19/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#5176] / [i915#9423]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#5235]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#5235]) +3 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-16/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#5235]) +5 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#5235] / [i915#9423]) +11 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg1: NOTRUN -> [SKIP][187] ([i915#5354])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-17/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc6-psr:
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#10139])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-1/igt@kms_pm_dc@dc6-psr.html
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#9685]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-10/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg1: NOTRUN -> [SKIP][190] ([i915#8430])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-13/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#9519])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-1/igt@kms_pm_rpm@dpms-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#9519])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-17/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [PASS][193] -> [SKIP][194] ([i915#9519]) +2 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#6524])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-19/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][196] +68 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-16/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area@psr2-pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][197] ([i915#9808]) +4 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area@psr2-pipe-b-edp-1.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#4348])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#9683]) +2 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-12/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#9732]) +11 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-10/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@pr-cursor-blt:
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#9688]) +8 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-1/igt@kms_psr@pr-cursor-blt.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#9732]) +5 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-2/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_psr@psr2-primary-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#4077] / [i915#9688])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@kms_psr@psr2-primary-mmap-gtt@edp-1.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#9732]) +30 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-17/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#9685])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg1: NOTRUN -> [SKIP][206] ([i915#9685]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-17/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#4884])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-13/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#4235]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#5289])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#5289]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#3555]) +9 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-17/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][212] -> [FAIL][213] ([i915#9196])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
* igt@kms_vrr@max-min:
- shard-dg1: NOTRUN -> [SKIP][214] ([i915#9906])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-12/igt@kms_vrr@max-min.html
* igt@kms_writeback@writeback-check-output:
- shard-mtlp: NOTRUN -> [SKIP][215] ([i915#2437])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#2437] / [i915#9412])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-1/igt@kms_writeback@writeback-pixel-formats.html
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#2437] / [i915#9412])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-2/igt@kms_writeback@writeback-pixel-formats.html
- shard-dg1: NOTRUN -> [SKIP][218] ([i915#2437] / [i915#9412])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-17/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf_pmu@module-unload:
- shard-dg2: NOTRUN -> [FAIL][219] ([i915#5793])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-10/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6@runtime-pm-gt0:
- shard-dg1: [PASS][220] -> [ABORT][221] ([i915#9853])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-dg1-16/igt@perf_pmu@rc6@runtime-pm-gt0.html
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-18/igt@perf_pmu@rc6@runtime-pm-gt0.html
* igt@prime_vgem@fence-read-hang:
- shard-mtlp: NOTRUN -> [SKIP][222] ([i915#3708]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@prime_vgem@fence-read-hang.html
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#3708]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-16/igt@prime_vgem@fence-read-hang.html
* igt@runner@aborted:
- shard-glk: NOTRUN -> [FAIL][224] ([i915#10291])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-glk1/igt@runner@aborted.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#9917]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-17/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#9917])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#9917])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@v3d/v3d_perfmon@get-values-invalid-perfmon:
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#2575]) +15 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-16/igt@v3d/v3d_perfmon@get-values-invalid-perfmon.html
* igt@v3d/v3d_submit_csd@bad-pad:
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#2575]) +9 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-1/igt@v3d/v3d_submit_csd@bad-pad.html
* igt@v3d/v3d_wait_bo@map-bo-1ns:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#2575]) +5 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-1/igt@v3d/v3d_wait_bo@map-bo-1ns.html
* igt@vc4/vc4_mmap@mmap-bad-handle:
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#7711]) +9 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-16/igt@vc4/vc4_mmap@mmap-bad-handle.html
* igt@vc4/vc4_perfmon@create-perfmon-exceed:
- shard-mtlp: NOTRUN -> [SKIP][232] ([i915#7711]) +4 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-1/igt@vc4/vc4_perfmon@create-perfmon-exceed.html
* igt@vc4/vc4_wait_bo@bad-pad:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#7711]) +4 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-1/igt@vc4/vc4_wait_bo@bad-pad.html
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#7711]) +2 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-2/igt@vc4/vc4_wait_bo@bad-pad.html
#### Possible fixes ####
* igt@gem_ctx_exec@basic-norecovery:
- shard-dg1: [ABORT][235] -> [PASS][236]
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-dg1-17/igt@gem_ctx_exec@basic-norecovery.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-17/igt@gem_ctx_exec@basic-norecovery.html
* igt@gem_eio@reset-stress:
- shard-dg1: [FAIL][237] ([i915#5784]) -> [PASS][238]
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-dg1-19/igt@gem_eio@reset-stress.html
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-15/igt@gem_eio@reset-stress.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-rkl: [FAIL][239] ([i915#2842]) -> [PASS][240] +2 other tests pass
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-rkl-2/igt@gem_exec_fair@basic-none@vcs0.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-4/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-tglu: [FAIL][241] ([i915#2842]) -> [PASS][242] +1 other test pass
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-tglu-9/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-tglu-8/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- shard-dg2: [FAIL][243] ([i915#10378]) -> [PASS][244]
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-dg2-6/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-5/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [INCOMPLETE][245] ([i915#9849]) -> [PASS][246]
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [ABORT][247] ([i915#10131] / [i915#9820]) -> [PASS][248]
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rps@reset:
- shard-snb: [INCOMPLETE][249] ([i915#7790]) -> [PASS][250]
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-snb6/igt@i915_pm_rps@reset.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-snb2/igt@i915_pm_rps@reset.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: [FAIL][251] ([i915#5138]) -> [PASS][252]
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [FAIL][253] ([i915#3743]) -> [PASS][254]
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2: [TIMEOUT][255] -> [PASS][256]
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-dg2-11/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a4:
- shard-dg1: [FAIL][257] ([i915#79]) -> [PASS][258]
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-dg1-18/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a4.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-18/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a4.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a4:
- shard-dg1: [INCOMPLETE][259] -> [PASS][260]
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-dg1-18/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a4.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-18/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a4.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt:
- shard-dg2: [FAIL][261] ([i915#6880]) -> [PASS][262]
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [SKIP][263] ([i915#9519]) -> [PASS][264] +1 other test pass
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html
- shard-rkl: [SKIP][265] ([i915#9519]) -> [PASS][266]
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
- shard-tglu: [FAIL][267] ([i915#9196]) -> [PASS][268]
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-c-edp-1:
- shard-mtlp: [INCOMPLETE][269] -> [PASS][270]
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-mtlp-2/igt@kms_universal_plane@disable-primary-vs-flip@pipe-c-edp-1.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-mtlp-6/igt@kms_universal_plane@disable-primary-vs-flip@pipe-c-edp-1.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [FAIL][271] ([i915#4349]) -> [PASS][272] +3 other tests pass
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-dg2-10/igt@perf_pmu@busy-double-start@vecs1.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@rc6@runtime-pm-long-gt0:
- shard-dg2: [ABORT][273] ([i915#9853]) -> [PASS][274]
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-dg2-2/igt@perf_pmu@rc6@runtime-pm-long-gt0.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-6/igt@perf_pmu@rc6@runtime-pm-long-gt0.html
#### Warnings ####
* igt@device_reset@unbind-reset-rebind:
- shard-dg2: [INCOMPLETE][275] ([i915#1982] / [i915#5507]) -> [INCOMPLETE][276] ([i915#5507])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-dg2-10/igt@device_reset@unbind-reset-rebind.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-5/igt@device_reset@unbind-reset-rebind.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
- shard-tglu: [FAIL][277] ([i915#3591]) -> [WARN][278] ([i915#2681]) +1 other test warn
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][279] ([i915#9433]) -> [SKIP][280] ([i915#9424])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-dg1-12/igt@kms_content_protection@mei-interface.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg1-19/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][281] ([i915#7118] / [i915#9424]) -> [SKIP][282] ([i915#7118] / [i915#7162] / [i915#9424])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-dg2-5/igt@kms_content_protection@type1.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-11/igt@kms_content_protection@type1.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2: [TIMEOUT][283] -> [SKIP][284] ([i915#5354])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][285] ([i915#4816]) -> [SKIP][286] ([i915#4070] / [i915#4816])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-dg2: [SKIP][287] ([i915#9673] / [i915#9732]) -> [SKIP][288] ([i915#9732]) +12 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-dg2-11/igt@kms_psr@fbc-psr-primary-page-flip.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-10/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2: [SKIP][289] ([i915#9732]) -> [SKIP][290] ([i915#9673] / [i915#9732]) +20 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14401/shard-dg2-6/igt@kms_psr@psr2-cursor-blt.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130822v2/shard-dg2-11/igt@kms_psr@psr2-cursor-blt.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10031]: https://gitlab.freedesktop.org/drm/intel/issues/10031
[i915#10055]: https://gitlab.freedesktop.org/drm/intel/issues/10055
[i915#10131]: https://gitlab.freedesktop.org/drm/intel/issues/10131
[i915#10139]: https://gitlab.freedesktop.org/drm/intel/issues/10139
[i915#10278]: https://gitlab.freedesktop.org/drm/intel/issues/10278
[i915#10291]: https://gitlab.freedesktop.org/drm/intel/issues/10291
[i915#10307]: https://gitlab.freedesktop.org/drm/intel/issues/10307
[i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378
[i915#10386]: https://gitlab.freedesktop.org/drm/intel/issues/10386
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
[i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5507]: https://gitlab.freedesktop.org/drm/intel/issues/5507
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793
[i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
[i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010
[i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227
[i915#9310]: https://gitlab.freedesktop.org/drm/intel/issues/9310
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809
[i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820
[i915#9833]: https://gitlab.freedesktop.org/drm/intel/issues/9833
[i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849
[i915#9853]: https://gitlab.freedesktop.org/drm/intel/issues/9853
[i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934
Build changes
-------------
* Linux: CI_DRM_14401 -> Patchwork_130822v2
CI-20190529: 20190529
CI_DRM_14401: 2e45ab4961e343a99fdef900be1e33234b8f3b73 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7749: 2fd91b8c3cf9aa2b0bb78537a6b5e2bc3de50e0e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_130822v2: 2e45ab4961e343a99fdef900be1e33234b8f3b73 @ 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_130822v2/index.html
[-- Attachment #2: Type: text/html, Size: 93938 bytes --]
^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: [PATCH 17/22] drm/i915/pxp: fix i915_pxp_tee_interface.h kernel-doc warnings
2024-03-07 18:02 ` Lucas De Marchi
@ 2024-03-07 20:49 ` Jani Nikula
0 siblings, 0 replies; 47+ messages in thread
From: Jani Nikula @ 2024-03-07 20:49 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: dri-devel, intel-gfx, intel-xe
On Thu, 07 Mar 2024, Lucas De Marchi <lucas.demarchi@intel.com> wrote:
> On Wed, Mar 06, 2024 at 08:31:22PM +0200, Jani Nikula wrote:
>>Make documentation match code.
>>
>>Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>>---
>> include/drm/i915_pxp_tee_interface.h | 19 ++++++++++++-------
>> 1 file changed, 12 insertions(+), 7 deletions(-)
>>
>>diff --git a/include/drm/i915_pxp_tee_interface.h b/include/drm/i915_pxp_tee_interface.h
>>index 7d96985f2d05..653e85d6e32b 100644
>>--- a/include/drm/i915_pxp_tee_interface.h
>>+++ b/include/drm/i915_pxp_tee_interface.h
>>@@ -14,12 +14,10 @@ struct scatterlist;
>> * struct i915_pxp_component_ops - ops for PXP services.
>> * @owner: Module providing the ops
>> * @send: sends data to PXP
>>- * @receive: receives data from PXP
>>+ * @recv: receives data from PXP
>>+ * @gsc_command: send gsc command
>> */
>> struct i915_pxp_component_ops {
>>- /**
>>- * @owner: owner of the module provding the ops
>>- */
>
>
> isn't the other way around the more common one? i.e. document the
> struct members closer to their declaration.
>
>> struct module *owner;
>>
>> int (*send)(struct device *dev, const void *message, size_t size,
>>@@ -35,14 +33,21 @@ struct i915_pxp_component_ops {
>> /**
>> * struct i915_pxp_component - Used for communication between i915 and TEE
>> * drivers for the PXP services
>>- * @tee_dev: device that provide the PXP service from TEE Bus.
>>- * @pxp_ops: Ops implemented by TEE driver, used by i915 driver.
>> */
>
> ... which you follow here.
Yeah, fixed locally, ditto for previous patch. Thanks for the reviews.
BR,
Jani.
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 47+ messages in thread
end of thread, other threads:[~2024-03-07 20:49 UTC | newest]
Thread overview: 47+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-06 18:31 [PATCH 00/22] drm: fix headers, add header test facility Jani Nikula
2024-03-06 18:31 ` [PATCH 01/22] drm/crtc: make drm_crtc_internal.h self-contained Jani Nikula
2024-03-07 8:34 ` [PATCH v2] " Jani Nikula
2024-03-06 18:31 ` [PATCH 02/22] drm: add missing header guards to drm_internal.h Jani Nikula
2024-03-06 18:31 ` [PATCH 03/22] drm/kunit: fix drm_kunit_helpers.h kernel-doc Jani Nikula
2024-03-06 18:31 ` [PATCH 04/22] drm/amdgpu: make amd_asic_type.h self-contained Jani Nikula
2024-03-07 14:36 ` Alex Deucher
2024-03-07 15:02 ` Jani Nikula
2024-03-06 18:31 ` [PATCH 05/22] drm: bridge: samsung-dsim: make samsung-dsim.h self-contained Jani Nikula
2024-03-06 18:31 ` [PATCH 06/22] drm/dp_mst: fix drm_dp_mst_helper.h kernel-doc Jani Nikula
2024-03-06 18:31 ` [PATCH 07/22] drm/crc: make drm_debugfs_crc.h self-contained and fix kernel-doc Jani Nikula
2024-03-06 18:31 ` [PATCH 08/22] drm/encoder: silence drm_encoder_slave.h kernel-doc Jani Nikula
2024-03-06 18:31 ` [PATCH 09/22] drm: fix drm_format_helper.h kernel-doc warnings Jani Nikula
2024-03-06 18:31 ` [PATCH 10/22] drm/lease: make drm_lease.h self-contained Jani Nikula
2024-03-06 18:31 ` [PATCH 11/22] drm: fix drm_gem_vram_helper.h kernel-doc Jani Nikula
2024-03-06 18:31 ` [PATCH 12/22] drm/of: make drm_of.h self-contained Jani Nikula
2024-03-06 18:31 ` [PATCH 13/22] drm/i2c: silence ch7006.h and sil164.h kernel-doc warnings Jani Nikula
2024-03-06 18:31 ` [PATCH 14/22] drm/suballoc: fix drm_suballoc.h kernel-doc Jani Nikula
2024-03-06 18:31 ` [PATCH 15/22] drm/i915: fix i915_gsc_proxy_mei_interface.h kernel-doc Jani Nikula
2024-03-07 17:56 ` Lucas De Marchi
2024-03-06 18:31 ` [PATCH 16/22] drm/i915/hdcp: fix i915_hdcp_interface.h kernel-doc warnings Jani Nikula
2024-03-07 18:00 ` Lucas De Marchi
2024-03-06 18:31 ` [PATCH 17/22] drm/i915/pxp: fix i915_pxp_tee_interface.h " Jani Nikula
2024-03-07 18:02 ` Lucas De Marchi
2024-03-07 20:49 ` Jani Nikula
2024-03-06 18:31 ` [PATCH 18/22] drm/ttm: fix ttm_bo.h " Jani Nikula
2024-03-06 18:31 ` [PATCH 19/22] drm/ttm: make ttm_caching.h self-contained Jani Nikula
2024-03-06 18:31 ` [PATCH 20/22] drm/ttm: fix ttm_execbuf_util.h kernel-doc warnings Jani Nikula
2024-03-06 18:31 ` [PATCH 21/22] drm/ttm: fix ttm_kmap_iter.h " Jani Nikula
2024-03-06 18:31 ` [PATCH 22/22] drm: ensure drm headers are self-contained and pass kernel-doc Jani Nikula
2024-03-07 5:06 ` kernel test robot
2024-03-07 5:28 ` kernel test robot
2024-03-07 8:44 ` Jani Nikula
2024-03-07 9:36 ` Geert Uytterhoeven
2024-03-07 15:43 ` Jani Nikula
2024-03-07 14:49 ` kernel test robot
2024-03-07 0:47 ` ✗ Fi.CI.CHECKPATCH: warning for drm: fix headers, add header test facility Patchwork
2024-03-07 0:47 ` ✗ Fi.CI.SPARSE: " Patchwork
2024-03-07 1:06 ` ✗ Fi.CI.BAT: failure " Patchwork
2024-03-07 8:35 ` [PATCH] drm: add missing header guards to drm_crtc_internal.h Jani Nikula
2024-03-07 8:55 ` [PATCH 00/22] drm: fix headers, add header test facility Thomas Zimmermann
2024-03-07 9:04 ` Jani Nikula
2024-03-07 15:23 ` Jani Nikula
2024-03-07 9:38 ` ✗ Fi.CI.CHECKPATCH: warning for drm: add missing header guards to drm_crtc_internal.h (rev2) Patchwork
2024-03-07 9:38 ` ✗ Fi.CI.SPARSE: " Patchwork
2024-03-07 9:55 ` ✓ Fi.CI.BAT: success " Patchwork
2024-03-07 18:27 ` ✗ 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).