Re: [U-Boot] [PATCH v2 02/12] x86: Add an accelerated memmove() function

2016-10-12 Thread Simon Glass
Hi Bin, On 9 October 2016 at 20:05, Bin Meng wrote: > On Sat, Oct 8, 2016 at 1:53 PM, Bin Meng wrote: >> Hi Simon, >> >> On Sat, Oct 8, 2016 at 10:25 AM, Bin Meng wrote: >>> Hi Simon, >>> >>> On Thu, Oct 6, 2016 at 10:42 AM, Simon Glass wrote: Bring in a faster memmove() from Linux 4.7. T

Re: [U-Boot] [PATCH v2 02/12] x86: Add an accelerated memmove() function

2016-10-09 Thread Bin Meng
On Sat, Oct 8, 2016 at 1:53 PM, Bin Meng wrote: > Hi Simon, > > On Sat, Oct 8, 2016 at 10:25 AM, Bin Meng wrote: >> Hi Simon, >> >> On Thu, Oct 6, 2016 at 10:42 AM, Simon Glass wrote: >>> Bring in a faster memmove() from Linux 4.7. This speeds up scrolling on the >>> display. >>> >>> Signed-off-

Re: [U-Boot] [PATCH v2 02/12] x86: Add an accelerated memmove() function

2016-10-07 Thread Bin Meng
Hi Simon, On Sat, Oct 8, 2016 at 10:25 AM, Bin Meng wrote: > Hi Simon, > > On Thu, Oct 6, 2016 at 10:42 AM, Simon Glass wrote: >> Bring in a faster memmove() from Linux 4.7. This speeds up scrolling on the >> display. >> >> Signed-off-by: Simon Glass >> --- >> >> Changes in v2: >> - Move the co

Re: [U-Boot] [PATCH v2 02/12] x86: Add an accelerated memmove() function

2016-10-07 Thread Bin Meng
On Sat, Oct 8, 2016 at 10:25 AM, Bin Meng wrote: > Hi Simon, > > On Thu, Oct 6, 2016 at 10:42 AM, Simon Glass wrote: >> Bring in a faster memmove() from Linux 4.7. This speeds up scrolling on the >> display. >> >> Signed-off-by: Simon Glass >> --- >> >> Changes in v2: >> - Move the code into str

Re: [U-Boot] [PATCH v2 02/12] x86: Add an accelerated memmove() function

2016-10-07 Thread Bin Meng
Hi Simon, On Thu, Oct 6, 2016 at 10:42 AM, Simon Glass wrote: > Bring in a faster memmove() from Linux 4.7. This speeds up scrolling on the > display. > > Signed-off-by: Simon Glass > --- > > Changes in v2: > - Move the code into string.c > - Fix multi-line comments that should not be > > arch/

[U-Boot] [PATCH v2 02/12] x86: Add an accelerated memmove() function

2016-10-05 Thread Simon Glass
Bring in a faster memmove() from Linux 4.7. This speeds up scrolling on the display. Signed-off-by: Simon Glass --- Changes in v2: - Move the code into string.c - Fix multi-line comments that should not be arch/x86/include/asm/string.h | 2 +- arch/x86/lib/string.c | 161