diff options
author | David Howells <dhowells@redhat.com> | 2022-03-01 17:35:58 +0300 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2022-03-18 12:29:05 +0300 |
commit | 16211268fcb36672a84359362c2fc2c4695b0fc4 (patch) | |
tree | 1d84eab80b22b9488594b612029ad53f79fddcdf /fs/netfs/Makefile | |
parent | 3be01750d7ac5803ad6fa76801d4d80b3814229f (diff) | |
download | linux-16211268fcb36672a84359362c2fc2c4695b0fc4.tar.xz |
netfs: Split fs/netfs/read_helper.c
Split fs/netfs/read_helper.c into two pieces, one to deal with buffered
writes and one to deal with the I/O mechanism.
Changes
=======
ver #2)
- Add kdoc reference to new file.
Signed-off-by: David Howells <dhowells@redhat.com>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
cc: linux-cachefs@redhat.com
Link: https://lore.kernel.org/r/164623005586.3564931.6149556072728481767.stgit@warthog.procyon.org.uk/ # v1
Link: https://lore.kernel.org/r/164678217075.1200972.5101072043126828757.stgit@warthog.procyon.org.uk/ # v2
Link: https://lore.kernel.org/r/164692919953.2099075.7156989585513833046.stgit@warthog.procyon.org.uk/ # v3
Diffstat (limited to 'fs/netfs/Makefile')
-rw-r--r-- | fs/netfs/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/netfs/Makefile b/fs/netfs/Makefile index 51ece4f7bc77..88b904532bc7 100644 --- a/fs/netfs/Makefile +++ b/fs/netfs/Makefile @@ -1,6 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 netfs-y := \ + buffered_read.o \ io.o \ objects.o |