* [PATCH v1 1/1] drm/amd/display: Fix too big frame size
@ 2024-06-02 14:21 Andy Shevchenko
2024-06-02 15:38 ` Andy Shevchenko
0 siblings, 1 reply; 2+ messages in thread
From: Andy Shevchenko @ 2024-06-02 14:21 UTC (permalink / raw)
To: Alex Deucher, Lewis Huang, amd-gfx, dri-devel, linux-kernel
Cc: Harry Wentland, Leo Li, Rodrigo Siqueira, Christian König,
Pan, Xinhui, David Airlie, Daniel Vetter, Andy Shevchenko
Compilation fails on arm with:
link_factory.c:743:1: error: the frame size of 1032 bytes is larger than 1024 bytes [-Werror=frame-larger-than=]
Fix the frame size by allocation one of the big structures.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
.../gpu/drm/amd/display/dc/link/link_factory.c | 15 ++++++++++-----
1 file changed, 10 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/amd/display/dc/link/link_factory.c b/drivers/gpu/drm/amd/display/dc/link/link_factory.c
index cf22b8f28ba6..78f1b2102839 100644
--- a/drivers/gpu/drm/amd/display/dc/link/link_factory.c
+++ b/drivers/gpu/drm/amd/display/dc/link/link_factory.c
@@ -456,10 +456,10 @@ static bool construct_phy(struct dc_link *link,
struct dc_context *dc_ctx = init_params->ctx;
struct encoder_init_data enc_init_data = { 0 };
struct panel_cntl_init_data panel_cntl_init_data = { 0 };
- struct integrated_info info = { 0 };
struct dc_bios *bios = init_params->dc->ctx->dc_bios;
const struct dc_vbios_funcs *bp_funcs = bios->funcs;
struct bp_disp_connector_caps_info disp_connect_caps_info = { 0 };
+ struct integrated_info *info;
DC_LOGGER_INIT(dc_ctx->logger);
@@ -672,12 +672,16 @@ static bool construct_phy(struct dc_link *link,
}
if (bios->integrated_info)
- info = *bios->integrated_info;
+ info = kmemdup(bios->integrated_info, sizeof(*info), GFP_KERNEL);
+ else
+ info = kzalloc(sizeof(*info), GFP_KERNEL);
+ if (!info)
+ goto device_tag_fail;
/* Look for channel mapping corresponding to connector and device tag */
for (i = 0; i < MAX_NUMBER_OF_EXT_DISPLAY_PATH; i++) {
struct external_display_path *path =
- &info.ext_disp_conn_info.path[i];
+ &info->ext_disp_conn_info.path[i];
if (path->device_connector_id.enum_id == link->link_id.enum_id &&
path->device_connector_id.id == link->link_id.id &&
@@ -698,14 +702,15 @@ static bool construct_phy(struct dc_link *link,
if (link->chip_caps & EXT_DISPLAY_PATH_CAPS__DP_FIXED_VS_EN) {
link->bios_forced_drive_settings.VOLTAGE_SWING =
- (info.ext_disp_conn_info.fixdpvoltageswing & 0x3);
+ info->ext_disp_conn_info.fixdpvoltageswing & 0x3;
link->bios_forced_drive_settings.PRE_EMPHASIS =
- ((info.ext_disp_conn_info.fixdpvoltageswing >> 2) & 0x3);
+ (info->ext_disp_conn_info.fixdpvoltageswing >> 2) & 0x3;
}
break;
}
}
+ kfree(info);
if (bios->funcs->get_atom_dc_golden_table)
bios->funcs->get_atom_dc_golden_table(bios);
--
2.43.0.rc1.1336.g36b5255a03ac
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH v1 1/1] drm/amd/display: Fix too big frame size
2024-06-02 14:21 [PATCH v1 1/1] drm/amd/display: Fix too big frame size Andy Shevchenko
@ 2024-06-02 15:38 ` Andy Shevchenko
0 siblings, 0 replies; 2+ messages in thread
From: Andy Shevchenko @ 2024-06-02 15:38 UTC (permalink / raw)
To: Alex Deucher, Lewis Huang, amd-gfx, dri-devel, linux-kernel
Cc: Harry Wentland, Leo Li, Rodrigo Siqueira, Christian König,
Pan, Xinhui, David Airlie, Daniel Vetter
On Sun, Jun 02, 2024 at 05:21:03PM +0300, Andy Shevchenko wrote:
> Compilation fails on arm with:
>
> link_factory.c:743:1: error: the frame size of 1032 bytes is larger than 1024 bytes [-Werror=frame-larger-than=]
>
> Fix the frame size by allocation one of the big structures.
Fixed even in better way in 0b6dc64b4e22 ("drm/amd/display: Refactor
construct_phy function in dc/link/link_factory.c").
--
With Best Regards,
Andy Shevchenko
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-06-02 15:38 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-02 14:21 [PATCH v1 1/1] drm/amd/display: Fix too big frame size Andy Shevchenko
2024-06-02 15:38 ` Andy Shevchenko
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox