Re: [U-Boot] [PATCH 2/2] fs/fat: Optimizes memory size with single global variable instead of 3

2016-09-09 Thread Benoît Thébaudeau
Hi, On Fri, Sep 9, 2016 at 6:34 PM, Brüns, Stefan wrote: > On Sonntag, 14. August 2016 00:57:38 CEST Benoît Thébaudeau wrote: >> On Tue, Aug 2, 2016 at 9:35 PM, Benoît Thébaudeau >> >> wrote: >> > On Tue, Aug 2, 2016 at 8:53 PM,

Re: [U-Boot] [PATCH 2/2] fs/fat: Optimizes memory size with single global variable instead of 3

2016-09-09 Thread Brüns , Stefan
On Sonntag, 14. August 2016 00:57:38 CEST Benoît Thébaudeau wrote: > Hi, > > On Tue, Aug 2, 2016 at 9:35 PM, Benoît Thébaudeau > > wrote: > > On Tue, Aug 2, 2016 at 8:53 PM, Stephen Warren wrote: > >> On 07/28/2016 12:11 AM, Tien Fong

Re: [U-Boot] [PATCH 2/2] fs/fat: Optimizes memory size with single global variable instead of 3

2016-08-17 Thread Stephen Warren
On 08/17/2016 09:04 AM, Tom Rini wrote: On Mon, Aug 15, 2016 at 10:08:37AM -0600, Stephen Warren wrote: On 08/13/2016 04:57 PM, Benoît Thébaudeau wrote: Hi, On Tue, Aug 2, 2016 at 9:35 PM, Benoît Thébaudeau wrote: On Tue, Aug 2, 2016 at 8:53 PM, Stephen

Re: [U-Boot] [PATCH 2/2] fs/fat: Optimizes memory size with single global variable instead of 3

2016-08-17 Thread Tom Rini
On Mon, Aug 15, 2016 at 10:08:37AM -0600, Stephen Warren wrote: > On 08/13/2016 04:57 PM, Benoît Thébaudeau wrote: > >Hi, > > > >On Tue, Aug 2, 2016 at 9:35 PM, Benoît Thébaudeau > > wrote: > >>On Tue, Aug 2, 2016 at 8:53 PM, Stephen Warren

Re: [U-Boot] [PATCH 2/2] fs/fat: Optimizes memory size with single global variable instead of 3

2016-08-15 Thread Stephen Warren
On 08/13/2016 04:57 PM, Benoît Thébaudeau wrote: Hi, On Tue, Aug 2, 2016 at 9:35 PM, Benoît Thébaudeau wrote: On Tue, Aug 2, 2016 at 8:53 PM, Stephen Warren wrote: On 07/28/2016 12:11 AM, Tien Fong Chee wrote: Single 64KB

Re: [U-Boot] [PATCH 2/2] fs/fat: Optimizes memory size with single global variable instead of 3

2016-08-14 Thread Benoît Thébaudeau
Hi, On Tue, Aug 2, 2016 at 9:35 PM, Benoît Thébaudeau wrote: > On Tue, Aug 2, 2016 at 8:53 PM, Stephen Warren wrote: >> On 07/28/2016 12:11 AM, Tien Fong Chee wrote: >>> >>> Single 64KB get_contents_vfatname_block global variable would be

Re: [U-Boot] [PATCH 2/2] fs/fat: Optimizes memory size with single global variable instead of 3

2016-08-02 Thread Benoît Thébaudeau
Hi, On Tue, Aug 2, 2016 at 8:53 PM, Stephen Warren wrote: > On 07/28/2016 12:11 AM, Tien Fong Chee wrote: >> >> Single 64KB get_contents_vfatname_block global variable would be used for >> all FAT implementation instead of allocating additional two global >> variables >>

Re: [U-Boot] [PATCH 2/2] fs/fat: Optimizes memory size with single global variable instead of 3

2016-08-02 Thread Stephen Warren
On 07/28/2016 12:11 AM, Tien Fong Chee wrote: Single 64KB get_contents_vfatname_block global variable would be used for all FAT implementation instead of allocating additional two global variables which are get_denfromdir_block and do_fat_read_at_block. This implementation can help in saving up

[U-Boot] [PATCH 2/2] fs/fat: Optimizes memory size with single global variable instead of 3

2016-07-28 Thread Tien Fong Chee
Single 64KB get_contents_vfatname_block global variable would be used for all FAT implementation instead of allocating additional two global variables which are get_denfromdir_block and do_fat_read_at_block. This implementation can help in saving up 128KB memory space. Signed-off-by: Tien Fong