Re: [U-Boot] [PATCH v4 6/6] iotrace: fix behaviour when buffer is full

2018-05-31 Thread Ramon Fried
Hi Tom. The below patch is depened on this one: https://patchwork.ozlabs.org/patch/922071/ Please wait with meging until the patch above is reviewed and mereged. Thanks, Ramon. On Thu, May 31, 2018 at 4:01 PM, Simon Glass wrote: > On 30 May 2018 at 14:10, Ramon Fried wrote: >> Don't continue up

Re: [U-Boot] [PATCH v4 6/6] iotrace: fix behaviour when buffer is full

2018-05-31 Thread Simon Glass
On 30 May 2018 at 14:10, Ramon Fried wrote: > Don't continue updating the offset when buffer is full. > When the buffer size exhausts and there's no space left to write > warn the user and update only the needed size and not both the > offset and needed size. > > Add needed buffer size information

[U-Boot] [PATCH v4 6/6] iotrace: fix behaviour when buffer is full

2018-05-30 Thread Ramon Fried
Don't continue updating the offset when buffer is full. When the buffer size exhausts and there's no space left to write warn the user and update only the needed size and not both the offset and needed size. Add needed buffer size information in the iotrace command. Signed-off-by: Ramon Fried -