Re: [U-Boot] [PATCH 0/8] fs/fat: cleanups + readdir implementation

2017-08-14 Thread Tom Rini
On Mon, Aug 14, 2017 at 08:48:47AM -0400, Rob Clark wrote: > On Sun, Aug 13, 2017 at 5:59 PM, Tom Rini wrote: > > On Sun, Aug 13, 2017 at 05:50:39PM -0400, Rob Clark wrote: > >> On Sun, Aug 13, 2017 at 5:13 PM, Tom Rini wrote: > >> > On Sun, Aug 13, 2017

Re: [U-Boot] [PATCH 0/8] fs/fat: cleanups + readdir implementation

2017-08-14 Thread Rob Clark
On Sun, Aug 13, 2017 at 5:59 PM, Tom Rini wrote: > On Sun, Aug 13, 2017 at 05:50:39PM -0400, Rob Clark wrote: >> On Sun, Aug 13, 2017 at 5:13 PM, Tom Rini wrote: >> > On Sun, Aug 13, 2017 at 06:45:20AM -0400, Rob Clark wrote: >> > >> >> Introduce directory

Re: [U-Boot] [PATCH 0/8] fs/fat: cleanups + readdir implementation

2017-08-13 Thread Tom Rini
On Sun, Aug 13, 2017 at 05:50:39PM -0400, Rob Clark wrote: > On Sun, Aug 13, 2017 at 5:13 PM, Tom Rini wrote: > > On Sun, Aug 13, 2017 at 06:45:20AM -0400, Rob Clark wrote: > > > >> Introduce directory traversal iterators, and implement fs_readdir() > >> which is needed by

Re: [U-Boot] [PATCH 0/8] fs/fat: cleanups + readdir implementation

2017-08-13 Thread Rob Clark
On Sun, Aug 13, 2017 at 5:13 PM, Tom Rini wrote: > On Sun, Aug 13, 2017 at 06:45:20AM -0400, Rob Clark wrote: > >> Introduce directory traversal iterators, and implement fs_readdir() >> which is needed by EFI_LOADER. >> >> The part re-working fat.c to use the directory

Re: [U-Boot] [PATCH 0/8] fs/fat: cleanups + readdir implementation

2017-08-13 Thread Tom Rini
On Sun, Aug 13, 2017 at 06:45:20AM -0400, Rob Clark wrote: > Introduce directory traversal iterators, and implement fs_readdir() > which is needed by EFI_LOADER. > > The part re-working fat.c to use the directory iterators itself is > nearly a 2:1 negative diffstat, and a pretty big cleanup. I

Re: [U-Boot] [PATCH 0/8] fs/fat: cleanups + readdir implementation

2017-08-13 Thread Rob Clark
On Sun, Aug 13, 2017 at 7:28 AM, Heinrich Schuchardt wrote: > On 08/13/2017 12:45 PM, Rob Clark wrote: >> Introduce directory traversal iterators, and implement fs_readdir() >> which is needed by EFI_LOADER. >> >> The part re-working fat.c to use the directory iterators

Re: [U-Boot] [PATCH 0/8] fs/fat: cleanups + readdir implementation

2017-08-13 Thread Heinrich Schuchardt
On 08/13/2017 12:45 PM, Rob Clark wrote: > Introduce directory traversal iterators, and implement fs_readdir() > which is needed by EFI_LOADER. > > The part re-working fat.c to use the directory iterators itself is > nearly a 2:1 negative diffstat, and a pretty big cleanup. I fixed > one or two

[U-Boot] [PATCH 0/8] fs/fat: cleanups + readdir implementation

2017-08-13 Thread Rob Clark
Introduce directory traversal iterators, and implement fs_readdir() which is needed by EFI_LOADER. The part re-working fat.c to use the directory iterators itself is nearly a 2:1 negative diffstat, and a pretty big cleanup. I fixed one or two other small issues along the way. It hasn't really