erofs: register fscache volume
authorJeffle Xu <jefflexu@linux.alibaba.com>
Mon, 25 Apr 2022 12:21:33 +0000 (20:21 +0800)
committerGao Xiang <hsiangkao@linux.alibaba.com>
Tue, 17 May 2022 16:11:19 +0000 (00:11 +0800)
A new fscache based mode is going to be introduced for erofs, in which
case on-demand read semantics is implemented through fscache.

As the first step, register fscache volume for each erofs filesystem.
That means, data blobs can not be shared among erofs filesystems. In the
following iteration, we are going to introduce the domain semantics, in
which case several erofs filesystems can belong to one domain, and data
blobs can be shared among these erofs filesystems of one domain.

Signed-off-by: Jeffle Xu <jefflexu@linux.alibaba.com>
Reviewed-by: Gao Xiang <hsiangkao@linux.alibaba.com>
Link: https://lore.kernel.org/r/20220425122143.56815-12-jefflexu@linux.alibaba.com
Acked-by: Chao Yu <chao@kernel.org>
Signed-off-by: Gao Xiang <hsiangkao@linux.alibaba.com>
fs/erofs/Kconfig
fs/erofs/Makefile
fs/erofs/fscache.c [new file with mode: 0644]
fs/erofs/internal.h
fs/erofs/super.c

index f57255ab88ed4a0858ed10c96aea532a887c248c..85490370e0cad235670dbe3093dfa94c90cf45df 100644 (file)
@@ -98,3 +98,13 @@ config EROFS_FS_ZIP_LZMA
          systems will be readable without selecting this option.
 
          If unsure, say N.
+
+config EROFS_FS_ONDEMAND
+       bool "EROFS fscache-based on-demand read support"
+       depends on CACHEFILES_ONDEMAND && (EROFS_FS=m && FSCACHE || EROFS_FS=y && FSCACHE=y)
+       default n
+       help
+         This permits EROFS to use fscache-backed data blobs with on-demand
+         read support.
+
+         If unsure, say N.
index 8a3317e38e5a8a12ca6aeb07eb47123d1a074f47..99bbc597a3e923710905a66147accf906762c109 100644 (file)
@@ -5,3 +5,4 @@ erofs-objs := super.o inode.o data.o namei.o dir.o utils.o pcpubuf.o sysfs.o
 erofs-$(CONFIG_EROFS_FS_XATTR) += xattr.o
 erofs-$(CONFIG_EROFS_FS_ZIP) += decompressor.o zmap.o zdata.o
 erofs-$(CONFIG_EROFS_FS_ZIP_LZMA) += decompressor_lzma.o
+erofs-$(CONFIG_EROFS_FS_ONDEMAND) += fscache.o
diff --git a/fs/erofs/fscache.c b/fs/erofs/fscache.c
new file mode 100644 (file)
index 0000000..7a6d023
--- /dev/null
@@ -0,0 +1,37 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/*
+ * Copyright (C) 2022, Alibaba Cloud
+ */
+#include <linux/fscache.h>
+#include "internal.h"
+
+int erofs_fscache_register_fs(struct super_block *sb)
+{
+       struct erofs_sb_info *sbi = EROFS_SB(sb);
+       struct fscache_volume *volume;
+       char *name;
+       int ret = 0;
+
+       name = kasprintf(GFP_KERNEL, "erofs,%s", sbi->opt.fsid);
+       if (!name)
+               return -ENOMEM;
+
+       volume = fscache_acquire_volume(name, NULL, NULL, 0);
+       if (IS_ERR_OR_NULL(volume)) {
+               erofs_err(sb, "failed to register volume for %s", name);
+               ret = volume ? PTR_ERR(volume) : -EOPNOTSUPP;
+               volume = NULL;
+       }
+
+       sbi->volume = volume;
+       kfree(name);
+       return ret;
+}
+
+void erofs_fscache_unregister_fs(struct super_block *sb)
+{
+       struct erofs_sb_info *sbi = EROFS_SB(sb);
+
+       fscache_relinquish_volume(sbi->volume, NULL, false);
+       sbi->volume = NULL;
+}
index 52911eaf36f6a34b8cc3a82ba6f1cbee9399b9f4..71c28aa3f9ce206d3b1f03f0741ae2b886930605 100644 (file)
@@ -74,6 +74,7 @@ struct erofs_mount_opts {
        unsigned int max_sync_decompress_pages;
 #endif
        unsigned int mount_opt;
+       char *fsid;
 };
 
 struct erofs_dev_context {
@@ -146,6 +147,9 @@ struct erofs_sb_info {
        /* sysfs support */
        struct kobject s_kobj;          /* /sys/fs/erofs/<devname> */
        struct completion s_kobj_unregister;
+
+       /* fscache support */
+       struct fscache_volume *volume;
 };
 
 #define EROFS_SB(sb) ((struct erofs_sb_info *)(sb)->s_fs_info)
@@ -593,6 +597,18 @@ static inline int z_erofs_load_lzma_config(struct super_block *sb,
 }
 #endif /* !CONFIG_EROFS_FS_ZIP */
 
+/* fscache.c */
+#ifdef CONFIG_EROFS_FS_ONDEMAND
+int erofs_fscache_register_fs(struct super_block *sb);
+void erofs_fscache_unregister_fs(struct super_block *sb);
+#else
+static inline int erofs_fscache_register_fs(struct super_block *sb)
+{
+       return 0;
+}
+static inline void erofs_fscache_unregister_fs(struct super_block *sb) {}
+#endif
+
 #define EFSCORRUPTED    EUCLEAN         /* Filesystem is corrupted */
 
 #endif /* __EROFS_INTERNAL_H */
index 46ca7917cb2a4e089c4db1ab64c0fb8bb7e88f43..402f919eef6b522b648ea4825e9c6221075ba822 100644 (file)
@@ -641,6 +641,10 @@ static int erofs_fc_fill_super(struct super_block *sb, struct fs_context *fc)
        if (erofs_is_fscache_mode(sb)) {
                sb->s_blocksize = EROFS_BLKSIZ;
                sb->s_blocksize_bits = LOG_BLOCK_SIZE;
+
+               err = erofs_fscache_register_fs(sb);
+               if (err)
+                       return err;
        } else {
                if (!sb_set_blocksize(sb, EROFS_BLKSIZ)) {
                        erofs_err(sb, "failed to set erofs blksize");
@@ -808,6 +812,7 @@ static void erofs_kill_sb(struct super_block *sb)
 
        erofs_free_dev_context(sbi->devs);
        fs_put_dax(sbi->dax_dev);
+       erofs_fscache_unregister_fs(sb);
        kfree(sbi);
        sb->s_fs_info = NULL;
 }