On Thu, Dec 18, 2014 at 05:14:17PM +0100, Przemyslaw Marczak wrote:

> The present fat implementation ignores FAT16 long name
> directory entries which aren't placed in a single sector.
> 
> This was becouse of the buffer was always filled by the
> two sectors, and the loop was made also for two sectors.
> 
> If some file long name entries are stored in two sectors,
> the we have two cases:
> 
> Case 1:
> Both of sectors are in the buffer - all required data
> for long file name is in the buffer.
> - Read OK!
> 
> Case 2:
> The current directory entry is placed at the end of the
> second buffered sector. And the next entries are placed
> in a sector which is not buffered yet. Then two next
> sectors are buffered and the mentioned entry is ignored.
> - Read fail!
> 
> This commit fixes this issue by:
> - read two sectors after loop on each single is done
> - keep the last used sector as a first in the buffer
>   before the read of two next
> 
> The commit doesn't affects the fat32 imlementation,
> which works good as previous.
> 
> Signed-off-by: Przemyslaw Marczak <p.marc...@samsung.com>
> Cc: Mikhail Zolotaryov <le...@lebon.org.ua>
> Cc: Tom Rini <tr...@ti.com>
> Cc: Stephen Warren <swar...@nvidia.com>
> Cc: Simon Glass <s...@chromium.org>
> Cc: Suriyan Ramasami <suriya...@gmail.com>
> Cc: Lukasz Majewski <l.majew...@samsung.com>
> Cc: Wolfgang Denk <w...@denx.de>
> Tested-by: Simon Glass <s...@chomium.org>

Applied to u-boot/master, thanks!

-- 
Tom

Attachment: signature.asc
Description: Digital signature

_______________________________________________
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot

Reply via email to