diff options
author | David Howells <dhowells@redhat.com> | 2022-03-08 00:57:24 +0300 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2022-03-18 12:29:05 +0300 |
commit | 3be01750d7ac5803ad6fa76801d4d80b3814229f (patch) | |
tree | 8ae577711d44157f878534884ed708ceb0c30ad4 /fs/netfs/Makefile | |
parent | 93345c3ba55f62f6b7189cdab354c7293fd45d75 (diff) | |
download | linux-3be01750d7ac5803ad6fa76801d4d80b3814229f.tar.xz |
netfs: Rename read_helper.c to io.c
Rename the read_helper.c file to io.c before splitting out the buffered
read functions and some other bits.
Changes
=======
ver #2)
- Rename read_helper.c before splitting.
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/164678216109.1200972.16567696909952495832.stgit@warthog.procyon.org.uk/ # v2
Link: https://lore.kernel.org/r/164692918076.2099075.8120961172717347610.stgit@warthog.procyon.org.uk/ # v3
Diffstat (limited to 'fs/netfs/Makefile')
-rw-r--r-- | fs/netfs/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/netfs/Makefile b/fs/netfs/Makefile index 939fd00a1fc9..51ece4f7bc77 100644 --- a/fs/netfs/Makefile +++ b/fs/netfs/Makefile @@ -1,8 +1,8 @@ # SPDX-License-Identifier: GPL-2.0 netfs-y := \ - objects.o \ - read_helper.o + io.o \ + objects.o netfs-$(CONFIG_NETFS_STATS) += stats.o |