Re: [U-Boot] [PATCH] Do not copy to same address

2011-04-13 Thread Albert ARIBAUD
Hi Matthias, Le 12/04/2011 09:49, Matthias Weißer a écrit : > Well, as the patch is only slightly related to my original one I thought > it is better to start a new patch as I had to change the subject also. > The only relation between them would be the reference in the mail > header. Maybe Wolfg

Re: [U-Boot] [PATCH] Do not copy to same address

2011-04-12 Thread Matthias Weißer
Am 12.04.2011 09:27, schrieb Albert ARIBAUD: > Hi Matthias, > > Le 12/04/2011 09:13, Matthias Weißer a écrit : >> Am 12.04.2011 09:06, schrieb Albert ARIBAUD: >>> Hi Matthias, >>> >>> Le 12/04/2011 08:58, Matthias Weisser a écrit : In some cases (e.g. bootm with a elf payload) there is a in pl

Re: [U-Boot] [PATCH] Do not copy to same address

2011-04-12 Thread Albert ARIBAUD
Hi Matthias, Le 12/04/2011 09:13, Matthias Weißer a écrit : > Am 12.04.2011 09:06, schrieb Albert ARIBAUD: >> Hi Matthias, >> >> Le 12/04/2011 08:58, Matthias Weisser a écrit : >>> In some cases (e.g. bootm with a elf payload) there is a in place >>> copy of >>> data to the same address. Catching

Re: [U-Boot] [PATCH] Do not copy to same address

2011-04-12 Thread Matthias Weißer
Am 12.04.2011 09:05, schrieb Mike Frysinger: > this summary is kind of weak. please prefix it with something like "string:" > or "memcpy/memmove:". keep in mind that the summary needs to quickly pick out > what the changeset is doing from every other changeset in the tree based only > on that. o

Re: [U-Boot] [PATCH] Do not copy to same address

2011-04-12 Thread Matthias Weißer
Am 12.04.2011 09:06, schrieb Albert ARIBAUD: > Hi Matthias, > > Le 12/04/2011 08:58, Matthias Weisser a écrit : >> In some cases (e.g. bootm with a elf payload) there is a in place copy of >> data to the same address. Catching this saves some ms while booting. >> >> Signed-off-by: Matthias Weisser

Re: [U-Boot] [PATCH] Do not copy to same address

2011-04-12 Thread Albert ARIBAUD
Hi Matthias, Le 12/04/2011 08:58, Matthias Weisser a écrit : > In some cases (e.g. bootm with a elf payload) there is a in place copy of > data to the same address. Catching this saves some ms while booting. > > Signed-off-by: Matthias Weisser > --- > lib/string.c |9 + > 1 files ch

Re: [U-Boot] [PATCH] Do not copy to same address

2011-04-12 Thread Mike Frysinger
this summary is kind of weak. please prefix it with something like "string:" or "memcpy/memmove:". keep in mind that the summary needs to quickly pick out what the changeset is doing from every other changeset in the tree based only on that. or at least give a pretty good idea. side note, i

[U-Boot] [PATCH] Do not copy to same address

2011-04-11 Thread Matthias Weisser
In some cases (e.g. bootm with a elf payload) there is a in place copy of data to the same address. Catching this saves some ms while booting. Signed-off-by: Matthias Weisser --- lib/string.c |9 + 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/lib/string.c b/lib/stri