diff options
author | David Howells <dhowells@redhat.com> | 2022-02-17 16:30:38 +0300 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2022-03-18 12:24:00 +0300 |
commit | 3a4a38e66d2443ab3c27a689c62a6937b854010e (patch) | |
tree | 8593f3f30de17a1d2ac4f89fd33c0f7e732506a2 /fs/netfs/Makefile | |
parent | f18a378580a761c8559b7d90afaa157269559c05 (diff) | |
download | linux-3a4a38e66d2443ab3c27a689c62a6937b854010e.tar.xz |
netfs: Split netfs_io_* object handling out
Split netfs_io_* object handling out into a file that's going to contain
object allocation, get and put routines.
Signed-off-by: David Howells <dhowells@redhat.com>
Reviewed-by: Jeff Layton <jlayton@redhat.com>
cc: linux-cachefs@redhat.com
Link: https://lore.kernel.org/r/164622995118.3564931.6089530629052064470.stgit@warthog.procyon.org.uk/ # v1
Link: https://lore.kernel.org/r/164678197044.1200972.11511937252083343775.stgit@warthog.procyon.org.uk/ # v2
Link: https://lore.kernel.org/r/164692894693.2099075.7831091294248735173.stgit@warthog.procyon.org.uk/ # v3
Diffstat (limited to 'fs/netfs/Makefile')
-rw-r--r-- | fs/netfs/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/fs/netfs/Makefile b/fs/netfs/Makefile index c15bfc966d96..939fd00a1fc9 100644 --- a/fs/netfs/Makefile +++ b/fs/netfs/Makefile @@ -1,5 +1,9 @@ # SPDX-License-Identifier: GPL-2.0 -netfs-y := read_helper.o stats.o +netfs-y := \ + objects.o \ + read_helper.o + +netfs-$(CONFIG_NETFS_STATS) += stats.o obj-$(CONFIG_NETFS_SUPPORT) := netfs.o |