mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Harry Wentland <hwentlan@amd.com>
To: Colin King <colin.king@canonical.com>,
	"Wentland, Harry" <Harry.Wentland@amd.com>,
	"Li, Sun peng (Leo)" <Sunpeng.Li@amd.com>,
	"Deucher, Alexander" <Alexander.Deucher@amd.com>,
	"Koenig, Christian" <Christian.Koenig@amd.com>,
	"Zhou, David(ChunMing)" <David1.Zhou@amd.com>,
	David Airlie <airlied@linux.ie>, Daniel Vetter <daniel@ffwll.ch>,
	"amd-gfx@lists.freedesktop.org" <amd-gfx@lists.freedesktop.org>,
	"dri-devel@lists.freedesktop.org"
	<dri-devel@lists.freedesktop.org>
Cc: "kernel-janitors@vger.kernel.org"
	<kernel-janitors@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] drm/amdgpu/display: make various arrays static, makes object smaller
Date: Tue, 8 Oct 2019 13:56:00 +0000	[thread overview]
Message-ID: <9579bfae-1db5-d282-79ea-df1966f4c123@amd.com> (raw)
In-Reply-To: <20191007215857.14720-1-colin.king@canonical.com>

On 2019-10-07 5:58 p.m., Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> Don't populate the arrays on the stack but instead make them
> static. Makes the object code smaller by 158 bytes.
> 
> Before:
>    text	   data	    bss	    dec	    hex	filename
>   32468	   2072	      0	  34540	   86ec	display/dc/bios/bios_parser.o
>   22198	   1088	      0	  23286	   5af6	display/dc/bios/bios_parser2.o
>   22278	   1076	      0	  23354	   5b3a	display/dc/dce/dce_mem_input.o
> 
> 81180
> After:
>    text	   data	    bss	    dec	    hex	filename
>   32341	   2136	      0	  34477	   86ad	display/dc/bios/bios_parser.o
>   22070	   1184	      0	  23254	   5ad6	display/dc/bios/bios_parser2.o
>   22119	   1172	      0	  23291	   5afb	display/dc/dce/dce_mem_input.o
> 
> (gcc version 9.2.1, amd64)
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  drivers/gpu/drm/amd/display/dc/bios/bios_parser.c  | 2 +-
>  drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c | 2 +-
>  drivers/gpu/drm/amd/display/dc/dce/dce_mem_input.c | 2 +-
>  3 files changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/gpu/drm/amd/display/dc/bios/bios_parser.c b/drivers/gpu/drm/amd/display/dc/bios/bios_parser.c
> index 221e0f56389f..65ab225cf542 100644
> --- a/drivers/gpu/drm/amd/display/dc/bios/bios_parser.c
> +++ b/drivers/gpu/drm/amd/display/dc/bios/bios_parser.c
> @@ -2745,7 +2745,7 @@ static enum bp_result bios_get_board_layout_info(
>  	struct bios_parser *bp;
>  	enum bp_result record_result;
>  
> -	const unsigned int slot_index_to_vbios_id[MAX_BOARD_SLOTS] = {
> +	static const unsigned int slot_index_to_vbios_id[MAX_BOARD_SLOTS] = {

Won't this break the multi-GPU case where you'll have multiple driver
instances with different layout?

Harry

>  		GENERICOBJECT_BRACKET_LAYOUT_ENUM_ID1,
>  		GENERICOBJECT_BRACKET_LAYOUT_ENUM_ID2,
>  		0, 0
> diff --git a/drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c b/drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c
> index dff65c0fe82f..809c4a89b899 100644
> --- a/drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c
> +++ b/drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c
> @@ -1832,7 +1832,7 @@ static enum bp_result bios_get_board_layout_info(
>  	struct bios_parser *bp;
>  	enum bp_result record_result;
>  
> -	const unsigned int slot_index_to_vbios_id[MAX_BOARD_SLOTS] = {
> +	static const unsigned int slot_index_to_vbios_id[MAX_BOARD_SLOTS] = {
>  		GENERICOBJECT_BRACKET_LAYOUT_ENUM_ID1,
>  		GENERICOBJECT_BRACKET_LAYOUT_ENUM_ID2,
>  		0, 0
> diff --git a/drivers/gpu/drm/amd/display/dc/dce/dce_mem_input.c b/drivers/gpu/drm/amd/display/dc/dce/dce_mem_input.c
> index 8aa937f496c4..ed0031d5e021 100644
> --- a/drivers/gpu/drm/amd/display/dc/dce/dce_mem_input.c
> +++ b/drivers/gpu/drm/amd/display/dc/dce/dce_mem_input.c
> @@ -395,7 +395,7 @@ static void program_size_and_rotation(
>  {
>  	const struct rect *in_rect = &plane_size->surface_size;
>  	struct rect hw_rect = plane_size->surface_size;
> -	const uint32_t rotation_angles[ROTATION_ANGLE_COUNT] = {
> +	static const uint32_t rotation_angles[ROTATION_ANGLE_COUNT] = {
>  			[ROTATION_ANGLE_0] = 0,
>  			[ROTATION_ANGLE_90] = 1,
>  			[ROTATION_ANGLE_180] = 2,
> 

  reply	other threads:[~2019-10-08 13:56 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-07 21:58 Colin King
2019-10-08 13:56 ` Harry Wentland [this message]
2019-10-08 14:00   ` Joe Perches
2019-10-08 14:20     ` Harry Wentland

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=9579bfae-1db5-d282-79ea-df1966f4c123@amd.com \
    --to=hwentlan@amd.com \
    --cc=Alexander.Deucher@amd.com \
    --cc=Christian.Koenig@amd.com \
    --cc=David1.Zhou@amd.com \
    --cc=Harry.Wentland@amd.com \
    --cc=Sunpeng.Li@amd.com \
    --cc=airlied@linux.ie \
    --cc=amd-gfx@lists.freedesktop.org \
    --cc=colin.king@canonical.com \
    --cc=daniel@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=kernel-janitors@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®