Re: [PATCH] Beaglebone: fix missing clobber in inline assembly.

2015-09-10 Thread Joel Sherrill
Marco, This looks fine and I will apply it but I want to put it on 4.11 and master. Can you file a quick ticket on it? Thanks. --joel On 9/10/2015 10:20 AM, Marcos Diaz wrote: flush_data_cache uses R0 directly but doesn't list it as a clobbered register. Compiling with -O3 made this code

[PATCH] Beaglebone: fix missing clobber in inline assembly.

2015-09-10 Thread Marcos Diaz
flush_data_cache uses R0 directly but doesn't list it as a clobbered register. Compiling with -O3 made this code break, since the function that calls flush_data_cache already uses r0. --- c/src/lib/libbsp/arm/beagle/include/bsp.h | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff

Re: [PATCH] Beaglebone: fix missing clobber in inline assembly.

2015-09-10 Thread Marcos Díaz
Ticket #2416 https://devel.rtems.org/ticket/2416 Please let me know if this is ok and if I need to submit something else. Greetings On Thu, Sep 10, 2015 at 12:48 PM, Joel Sherrill wrote: > Marco, > > This looks fine and I will apply it but I want to put it on 4.11 >

Re: [PATCH] Beaglebone: fix missing clobber in inline assembly.

2015-09-10 Thread Joel Sherrill
Thanks. Should be committed now to 4.11 and master. On 9/10/2015 1:08 PM, Marcos Díaz wrote: Ticket #2416 https://devel.rtems.org/ticket/2416 Please let me know if this is ok and if I need to submit something else. Greetings On Thu, Sep 10, 2015 at 12:48 PM, Joel Sherrill