Re: [U-Boot] [RFC V2 PATCH 1/3] drivers: block: add block device cache

2016-03-23 Thread Eric Nelson
Hi Stephen, Thanks again for the detailed review. On 03/23/2016 10:22 AM, Stephen Warren wrote: > On 03/20/2016 07:45 PM, Eric Nelson wrote: >> Add a block device cache to speed up repeated reads of block devices by >> various filesystems. >> >> This small amount of cache can dramatically speed

Re: [U-Boot] [RFC V2 PATCH 1/3] drivers: block: add block device cache

2016-03-23 Thread Stephen Warren
On 03/20/2016 07:45 PM, Eric Nelson wrote: Add a block device cache to speed up repeated reads of block devices by various filesystems. This small amount of cache can dramatically speed up filesystem operations by skipping repeated reads of common areas of a block device (typically directory

Re: [U-Boot] [RFC V2 PATCH 1/3] drivers: block: add block device cache

2016-03-21 Thread Eric Nelson
On 03/20/2016 06:45 PM, Eric Nelson wrote: > Add a block device cache to speed up repeated reads of block devices by > various filesystems. > ... > > Signed-off-by: Eric Nelson > --- > drivers/block/Makefile | 1 + > drivers/block/cache_block.c | 240 >

[U-Boot] [RFC V2 PATCH 1/3] drivers: block: add block device cache

2016-03-20 Thread Eric Nelson
Add a block device cache to speed up repeated reads of block devices by various filesystems. This small amount of cache can dramatically speed up filesystem operations by skipping repeated reads of common areas of a block device (typically directory structures). This has shown to have some