* [PATCH] drm: Link drm_rect.o into DRM core module
@ 2024-09-19 18:53 Thomas Zimmermann
2024-09-20 10:12 ` Ville Syrjälä
0 siblings, 1 reply; 3+ messages in thread
From: Thomas Zimmermann @ 2024-09-19 18:53 UTC (permalink / raw)
To: ville.syrjala, maarten.lankhorst, mripard, airlied, simona
Cc: dri-devel, Thomas Zimmermann
Several places in drm.ko use struct drm_rect and its helpers. This
only works as the called interfaces are declared as static inline in
the header file. Fix the issue by linking drm_rect.o into drm.ko.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Suggested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/Makefile b/drivers/gpu/drm/Makefile
index 784229d4504d..fc061fd424ed 100644
--- a/drivers/gpu/drm/Makefile
+++ b/drivers/gpu/drm/Makefile
@@ -68,6 +68,7 @@ drm-y := \
drm_prime.o \
drm_print.o \
drm_property.o \
+ drm_rect.o \
drm_syncobj.o \
drm_sysfs.o \
drm_trace_points.o \
@@ -140,7 +141,6 @@ drm_kms_helper-y := \
drm_modeset_helper.o \
drm_plane_helper.o \
drm_probe_helper.o \
- drm_rect.o \
drm_self_refresh_helper.o \
drm_simple_kms_helper.o
drm_kms_helper-$(CONFIG_DRM_PANEL_BRIDGE) += bridge/panel.o
--
2.46.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] drm: Link drm_rect.o into DRM core module
2024-09-19 18:53 [PATCH] drm: Link drm_rect.o into DRM core module Thomas Zimmermann
@ 2024-09-20 10:12 ` Ville Syrjälä
2024-09-23 7:50 ` Thomas Zimmermann
0 siblings, 1 reply; 3+ messages in thread
From: Ville Syrjälä @ 2024-09-20 10:12 UTC (permalink / raw)
To: Thomas Zimmermann; +Cc: maarten.lankhorst, mripard, airlied, simona, dri-devel
On Thu, Sep 19, 2024 at 08:53:43PM +0200, Thomas Zimmermann wrote:
> Several places in drm.ko use struct drm_rect and its helpers. This
> only works as the called interfaces are declared as static inline in
> the header file. Fix the issue by linking drm_rect.o into drm.ko.
Seems reasonable.
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
PS when grepping for drm_rect I noticed drm_atomic_plane_set_property()
is using it as the format of the fb_damage_clips blob. That
can't be right as drm_rect is an internal thing and should
not be used in the uapi.
>
> Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
> Suggested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/Makefile | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/Makefile b/drivers/gpu/drm/Makefile
> index 784229d4504d..fc061fd424ed 100644
> --- a/drivers/gpu/drm/Makefile
> +++ b/drivers/gpu/drm/Makefile
> @@ -68,6 +68,7 @@ drm-y := \
> drm_prime.o \
> drm_print.o \
> drm_property.o \
> + drm_rect.o \
> drm_syncobj.o \
> drm_sysfs.o \
> drm_trace_points.o \
> @@ -140,7 +141,6 @@ drm_kms_helper-y := \
> drm_modeset_helper.o \
> drm_plane_helper.o \
> drm_probe_helper.o \
> - drm_rect.o \
> drm_self_refresh_helper.o \
> drm_simple_kms_helper.o
> drm_kms_helper-$(CONFIG_DRM_PANEL_BRIDGE) += bridge/panel.o
> --
> 2.46.0
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] drm: Link drm_rect.o into DRM core module
2024-09-20 10:12 ` Ville Syrjälä
@ 2024-09-23 7:50 ` Thomas Zimmermann
0 siblings, 0 replies; 3+ messages in thread
From: Thomas Zimmermann @ 2024-09-23 7:50 UTC (permalink / raw)
To: Ville Syrjälä
Cc: maarten.lankhorst, mripard, airlied, simona, dri-devel
Hi
Am 20.09.24 um 12:12 schrieb Ville Syrjälä:
> On Thu, Sep 19, 2024 at 08:53:43PM +0200, Thomas Zimmermann wrote:
>> Several places in drm.ko use struct drm_rect and its helpers. This
>> only works as the called interfaces are declared as static inline in
>> the header file. Fix the issue by linking drm_rect.o into drm.ko.
> Seems reasonable.
> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> PS when grepping for drm_rect I noticed drm_atomic_plane_set_property()
> is using it as the format of the fb_damage_clips blob. That
> can't be right as drm_rect is an internal thing and should
> not be used in the uapi.
Yes, indeed. The correct type is struct drm_mode_rect according to [1].
I'll send out a patch. The userspace side doesn't look super careful
either with pixman_box32_t. [2]
Best regards
Thomas
[1]
https://elixir.bootlin.com/linux/v6.11/source/drivers/gpu/drm/drm_plane.c#L1657
[2]
https://gitlab.freedesktop.org/wayland/weston/-/blob/60d777803d5b451d4ca17b4ca8795b903cee8c8c/libweston/backend-drm/drm.c#L470
>
>> Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
>> Suggested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
>> ---
>> drivers/gpu/drm/Makefile | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/Makefile b/drivers/gpu/drm/Makefile
>> index 784229d4504d..fc061fd424ed 100644
>> --- a/drivers/gpu/drm/Makefile
>> +++ b/drivers/gpu/drm/Makefile
>> @@ -68,6 +68,7 @@ drm-y := \
>> drm_prime.o \
>> drm_print.o \
>> drm_property.o \
>> + drm_rect.o \
>> drm_syncobj.o \
>> drm_sysfs.o \
>> drm_trace_points.o \
>> @@ -140,7 +141,6 @@ drm_kms_helper-y := \
>> drm_modeset_helper.o \
>> drm_plane_helper.o \
>> drm_probe_helper.o \
>> - drm_rect.o \
>> drm_self_refresh_helper.o \
>> drm_simple_kms_helper.o
>> drm_kms_helper-$(CONFIG_DRM_PANEL_BRIDGE) += bridge/panel.o
>> --
>> 2.46.0
--
--
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] 3+ messages in thread
end of thread, other threads:[~2024-09-23 7:50 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-19 18:53 [PATCH] drm: Link drm_rect.o into DRM core module Thomas Zimmermann
2024-09-20 10:12 ` Ville Syrjälä
2024-09-23 7:50 ` Thomas Zimmermann
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.