Re: [PATCH 1/2] fs: Break generic_file_buffered_read up into multiple functions

2020-10-20 Thread Jens Axboe
On 10/17/20 2:10 PM, Kent Overstreet wrote: > This is prep work for changing generic_file_buffered_read() to use > find_get_pages_contig() to batch up all the pagecache lookups. > > This patch should be functionally identical to the existing code and > changes as little as of the flow control as p

[PATCH 1/2] fs: Break generic_file_buffered_read up into multiple functions

2020-10-17 Thread Kent Overstreet
This is prep work for changing generic_file_buffered_read() to use find_get_pages_contig() to batch up all the pagecache lookups. This patch should be functionally identical to the existing code and changes as little as of the flow control as possible. More refactoring could be done, this patch is

[PATCH 1/2] fs: Break generic_file_buffered_read up into multiple functions

2020-06-09 Thread Kent Overstreet
This is prep work for changing generic_file_buffered_read() to use find_get_pages_contig() to batch up all the pagecache lookups. This patch should be functionally identical to the existing code and changes as little as of the flow control as possible. More refactoring could be done, this patch is

[PATCH 1/2] fs: Break generic_file_buffered_read up into multiple functions

2018-08-15 Thread Kent Overstreet
This is prep work for changing generic_file_buffered_read() to use find_get_pages_contig() to batch up all the pagecache lookups. This patch should be functionally identical to the existing code and changes as little as of the flow control as possible. More refactoring could be done, this patch is