* [PATCH] video: fbdev: radeon: make const array post_divs static, reduces object code size
@ 2017-09-19 21:32 ` Colin King
2017-10-12 16:17 ` Bartlomiej Zolnierkiewicz
0 siblings, 1 reply; 4+ messages in thread
From: Colin King @ 2017-09-19 21:32 UTC (permalink / raw)
To: Benjamin Herrenschmidt, Bartlomiej Zolnierkiewicz, linux-fbdev
Cc: kernel-janitors, linux-kernel
From: Colin Ian King <colin.king@canonical.com>
Don't populate the read-only const array post_divs on the stack,
nstead make it static. Makes the object code smaller by 90 bytes:
Before:
text data bss dec hex filename
40231 8584 896 49711 c22f radeon_base.o
After:
text data bss dec hex filename
39914 8744 960 49618 c1d2 radeon_base.o
Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
drivers/video/fbdev/aty/radeon_base.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/video/fbdev/aty/radeon_base.c b/drivers/video/fbdev/aty/radeon_base.c
index 1e2ec360f8c1..8ad1643e7d1c 100644
--- a/drivers/video/fbdev/aty/radeon_base.c
+++ b/drivers/video/fbdev/aty/radeon_base.c
@@ -1534,7 +1534,7 @@ void radeon_write_mode (struct radeonfb_info *rinfo, struct radeon_regs *mode,
static void radeon_calc_pll_regs(struct radeonfb_info *rinfo, struct radeon_regs *regs,
unsigned long freq)
{
- const struct {
+ static const struct {
int divider;
int bitvalue;
} *post_div,
--
2.14.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] video: fbdev: radeon: make const array post_divs static, reduces object code size
2017-09-19 21:32 ` [PATCH] video: fbdev: radeon: make const array post_divs static, reduces object code size Colin King
@ 2017-10-12 16:17 ` Bartlomiej Zolnierkiewicz
2017-10-12 16:17 ` Colin Ian King
0 siblings, 1 reply; 4+ messages in thread
From: Bartlomiej Zolnierkiewicz @ 2017-10-12 16:17 UTC (permalink / raw)
To: Colin King; +Cc: linux-fbdev, kernel-janitors, linux-kernel, dri-devel
[ added dri-devel ML to cc: ]
On Tuesday, September 19, 2017 10:32:01 PM Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> Don't populate the read-only const array post_divs on the stack,
> nstead make it static. Makes the object code smaller by 90 bytes:
>
> Before:
> text data bss dec hex filename
> 40231 8584 896 49711 c22f radeon_base.o
>
> After:
> text data bss dec hex filename
> 39914 8744 960 49618 c1d2 radeon_base.o
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
Are these results obtained using the same compiler as the other patches
(gcc version 7.2.0, x86_64)?
Best regards,
--
Bartlomiej Zolnierkiewicz
Samsung R&D Institute Poland
Samsung Electronics
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] video: fbdev: radeon: make const array post_divs static, reduces object code size
2017-10-12 16:17 ` Bartlomiej Zolnierkiewicz
@ 2017-10-12 16:17 ` Colin Ian King
2017-10-12 16:30 ` Bartlomiej Zolnierkiewicz
0 siblings, 1 reply; 4+ messages in thread
From: Colin Ian King @ 2017-10-12 16:17 UTC (permalink / raw)
To: Bartlomiej Zolnierkiewicz
Cc: linux-fbdev, kernel-janitors, linux-kernel, dri-devel
On 12/10/17 17:17, Bartlomiej Zolnierkiewicz wrote:
>
> [ added dri-devel ML to cc: ]
>
> On Tuesday, September 19, 2017 10:32:01 PM Colin King wrote:
>> From: Colin Ian King <colin.king@canonical.com>
>>
>> Don't populate the read-only const array post_divs on the stack,
>> nstead make it static. Makes the object code smaller by 90 bytes:
>>
>> Before:
>> text data bss dec hex filename
>> 40231 8584 896 49711 c22f radeon_base.o
>>
>> After:
>> text data bss dec hex filename
>> 39914 8744 960 49618 c1d2 radeon_base.o
>>
>> Signed-off-by: Colin Ian King <colin.king@canonical.com>
>
> Are these results obtained using the same compiler as the other patches
> (gcc version 7.2.0, x86_64)?
Yes, I forgot to annotate it.
Colin
>
> Best regards,
> --
> Bartlomiej Zolnierkiewicz
> Samsung R&D Institute Poland
> Samsung Electronics
>
> --
> To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] video: fbdev: radeon: make const array post_divs static, reduces object code size
2017-10-12 16:17 ` Colin Ian King
@ 2017-10-12 16:30 ` Bartlomiej Zolnierkiewicz
0 siblings, 0 replies; 4+ messages in thread
From: Bartlomiej Zolnierkiewicz @ 2017-10-12 16:30 UTC (permalink / raw)
To: Colin Ian King; +Cc: linux-fbdev, kernel-janitors, linux-kernel, dri-devel
On Thursday, October 12, 2017 05:17:49 PM Colin Ian King wrote:
> On 12/10/17 17:17, Bartlomiej Zolnierkiewicz wrote:
> >
> > [ added dri-devel ML to cc: ]
> >
> > On Tuesday, September 19, 2017 10:32:01 PM Colin King wrote:
> >> From: Colin Ian King <colin.king@canonical.com>
> >>
> >> Don't populate the read-only const array post_divs on the stack,
> >> nstead make it static. Makes the object code smaller by 90 bytes:
> >>
> >> Before:
> >> text data bss dec hex filename
> >> 40231 8584 896 49711 c22f radeon_base.o
> >>
> >> After:
> >> text data bss dec hex filename
> >> 39914 8744 960 49618 c1d2 radeon_base.o
> >>
> >> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> >
> > Are these results obtained using the same compiler as the other patches
> > (gcc version 7.2.0, x86_64)?
>
> Yes, I forgot to annotate it.
Patch queued for 4.15 (with updated patch description), thanks.
Best regards,
--
Bartlomiej Zolnierkiewicz
Samsung R&D Institute Poland
Samsung Electronics
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-10-12 16:30 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <CGME20170919213206epcas2p3a2bea87468fa266cf1c94829444ab162@epcas2p3.samsung.com>
2017-09-19 21:32 ` [PATCH] video: fbdev: radeon: make const array post_divs static, reduces object code size Colin King
2017-10-12 16:17 ` Bartlomiej Zolnierkiewicz
2017-10-12 16:17 ` Colin Ian King
2017-10-12 16:30 ` Bartlomiej Zolnierkiewicz
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox