diff options
author | Jeff Layton <jlayton@kernel.org> | 2020-06-01 16:10:21 +0200 |
---|---|---|
committer | Ilya Dryomov <idryomov@gmail.com> | 2021-04-27 23:52:22 +0200 |
commit | f0702876e152f0443911514aec8b2bf563a2432b (patch) | |
tree | b44fd061cef9b002173114641a28516c2a9f2345 /fs/ceph/Kconfig | |
parent | ceph: fix fscache invalidation (diff) | |
download | linux-f0702876e152f0443911514aec8b2bf563a2432b.tar.xz linux-f0702876e152f0443911514aec8b2bf563a2432b.zip |
ceph: convert ceph_readpage to netfs_readpage
Have the ceph KConfig select NETFS_SUPPORT. Add a new netfs ops
structure and the operations for it. Convert ceph_readpage to use
the new netfs_readpage helper.
Signed-off-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Diffstat (limited to 'fs/ceph/Kconfig')
-rw-r--r-- | fs/ceph/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ceph/Kconfig b/fs/ceph/Kconfig index 471e40156065..94df854147d3 100644 --- a/fs/ceph/Kconfig +++ b/fs/ceph/Kconfig @@ -6,6 +6,7 @@ config CEPH_FS select LIBCRC32C select CRYPTO_AES select CRYPTO + select NETFS_SUPPORT default n help Choose Y or M here to include support for mounting the |