Re: [U-Boot] [PATCH] fs: fat: Fix cache align error message in fatwrite to use USB media

2014-04-07 Thread Nobuhiro Iwamatsu
Hi! 2014-04-07 23:19 GMT+09:00 Hector Palacios : > Hello, > > > On 04/03/2014 06:44 AM, Nobuhiro Iwamatsu wrote: >> >> Use of malloc of do_fat_write() from USB media causes cache error on > > > I would remove 'from USB media' from the commit log as it doesn't really > matter where you read from.

Re: [U-Boot] [PATCH] fs: fat: Fix cache align error message in fatwrite to use USB media

2014-04-07 Thread Hector Palacios
Hello, On 04/03/2014 06:44 AM, Nobuhiro Iwamatsu wrote: Use of malloc of do_fat_write() from USB media causes cache error on I would remove 'from USB media' from the commit log as it doesn't really matter where you read from. ARM v7 platforms. Perhaps, the same problem will occur at any ot

[U-Boot] [PATCH] fs: fat: Fix cache align error message in fatwrite to use USB media

2014-04-02 Thread Nobuhiro Iwamatsu
Use of malloc of do_fat_write() from USB media causes cache error on ARM v7 platforms. Perhaps, the same problem will occur at any other CPUs. This replaces malloc with memalign to fix cache buffer alignment. Signed-off-by: Nobuhiro Iwamatsu Signed-off-by: Yoshiyuki Ito --- fs/fat/fat_write.c |