From mboxrd@z Thu Jan 1 00:00:00 1970 From: koba Date: Fri, 29 Jun 2012 01:00:01 +0900 Subject: [U-Boot] [PATCH v2] arm: bugfix: save_boot_params_default accesses uninitalized stack when -O0 In-Reply-To: <4FEC70ED.5090200@ti.com> References: <4FE85CB5.6070505@kmckk.co.jp> <20120627174015.GC28055@bill-the-cat> <4FEBAFE2.4000906@kmckk.co.jp> <4FEC4195.1020400@kmckk.co.jp> <4FEC70ED.5090200@ti.com> Message-ID: <0F43C063-9197-4AFB-9682-FF49F7B526F8@kmckk.co.jp> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 2012/06/28, at 23:57, Tom Rini wrote: > On 06/28/2012 04:35 AM, Tetsuyuki Kobayashi wrote: >> save_boot_params_default() in cpu.c accesses uninitialized stack area >> when it compiled with -O0 (not optimized). >> >> Signed-off-by: Tetsuyuki Kobayashi >> --- >> Changes for v2: >> - include and use __naked instead of __attribute__((naked)) >> >> >> arch/arm/cpu/armv7/cpu.c | 4 ++++ >> 1 file changed, 4 insertions(+) >> >> diff --git a/arch/arm/cpu/armv7/cpu.c b/arch/arm/cpu/armv7/cpu.c >> index c6fa8ef..3e2a75c 100644 >> --- a/arch/arm/cpu/armv7/cpu.c >> +++ b/arch/arm/cpu/armv7/cpu.c >> @@ -36,9 +36,13 @@ >> #include >> #include >> #include >> +#include >> >> +__naked /* don't save anything to stack even if compiled with -O0 */ >> void save_boot_params_default(u32 r0, u32 r1, u32 r2, u32 r3) > > The usual form (here and kernel) is: > void __naked save_boot_params_default(...) > > Same for __weak and so on. Thanks! > Oh, I should grep __naked before posting this. I will try V3.