netfs: Implement unbuffered/DIO read support
authorDavid Howells <dhowells@redhat.com>
Fri, 14 Jan 2022 17:39:55 +0000 (17:39 +0000)
committerDavid Howells <dhowells@redhat.com>
Thu, 28 Dec 2023 09:45:23 +0000 (09:45 +0000)
commit016dc8516aec8719641e7aaaacd78d344759178e
tree15cc93a54ddfa05ffc558b1bff50aa655ce926ce
parente2e2e83924b1fe4c28bf5617db90e893755e9cbd
netfs: Implement unbuffered/DIO read support

Implement support for unbuffered and DIO reads in the netfs library,
utilising the existing read helper code to do block splitting and
individual queuing.  The code also handles extraction of the destination
buffer from the supplied iterator, allowing async unbuffered reads to take
place.

The read will be split up according to the rsize setting and, if supplied,
the ->clamp_length() method.  Note that the next subrequest will be issued
as soon as issue_op returns, without waiting for previous ones to finish.
The network filesystem needs to pause or handle queuing them if it doesn't
want to fire them all at the server simultaneously.

Once all the subrequests have finished, the state will be assessed and the
amount of data to be indicated as having being obtained will be
determined.  As the subrequests may finish in any order, if an intermediate
subrequest is short, any further subrequests may be copied into the buffer
and then abandoned.

In the future, this will also take care of doing an unbuffered read from
encrypted content, with the decryption being done by the library.

Signed-off-by: David Howells <dhowells@redhat.com>
cc: Jeff Layton <jlayton@kernel.org>
cc: linux-cachefs@redhat.com
cc: linux-fsdevel@vger.kernel.org
cc: linux-mm@kvack.org
fs/netfs/Makefile
fs/netfs/direct_read.c [new file with mode: 0644]
fs/netfs/internal.h
fs/netfs/io.c
fs/netfs/main.c
fs/netfs/objects.c
fs/netfs/stats.c
include/linux/netfs.h
include/trace/events/netfs.h
mm/filemap.c