@@ -6,6 +6,81 @@
static struct fscache_volume *volume;
+static int erofs_fscache_init_cookie(struct erofs_cookie_ctx *ctx, char *path)
+{
+ struct fscache_cookie *cookie;
+
+ /*
+ * @object_size shall be non-zero to avoid
+ * FSCACHE_COOKIE_NO_DATA_TO_READ.
+ */
+ cookie = fscache_acquire_cookie(volume, 0,
+ path, strlen(path),
+ NULL, 0, -1);
+ if (!cookie)
+ return -EINVAL;
+
+ fscache_use_cookie(cookie, false);
+ ctx->cookie = cookie;
+ return 0;
+}
+
+static void erofs_fscache_cleanup_cookie(struct erofs_cookie_ctx *ctx)
+{
+ struct fscache_cookie *cookie = ctx->cookie;
+
+ fscache_unuse_cookie(cookie, NULL, NULL);
+ fscache_relinquish_cookie(cookie, false);
+ ctx->cookie = NULL;
+}
+
+static int erofs_fscahce_init_ctx(struct erofs_cookie_ctx *ctx,
+ struct super_block *sb, char *path)
+{
+ int ret;
+
+ ret = erofs_fscache_init_cookie(ctx, path);
+ if (ret) {
+ erofs_err(sb, "failed to init cookie\n");
+ return ret;
+ }
+
+ return 0;
+}
+
+static void erofs_fscache_cleanup_ctx(struct erofs_cookie_ctx *ctx)
+{
+ erofs_fscache_cleanup_cookie(ctx);
+}
+
+struct erofs_cookie_ctx *erofs_fscache_get_ctx(struct super_block *sb,
+ char *path)
+{
+ struct erofs_cookie_ctx *ctx;
+ int ret;
+
+ ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
+ if (!ctx)
+ return ERR_PTR(-ENOMEM);
+
+ ret = erofs_fscahce_init_ctx(ctx, sb, path);
+ if (ret) {
+ kfree(ctx);
+ return ERR_PTR(ret);
+ }
+
+ return ctx;
+}
+
+void erofs_fscache_put_ctx(struct erofs_cookie_ctx *ctx)
+{
+ if (!ctx)
+ return;
+
+ erofs_fscache_cleanup_ctx(ctx);
+ kfree(ctx);
+}
+
int __init erofs_fscache_init(void)
{
volume = fscache_acquire_volume("erofs", NULL, NULL, 0);
@@ -91,6 +91,10 @@ struct erofs_sb_lz4_info {
u16 max_pclusterblks;
};
+struct erofs_cookie_ctx {
+ struct fscache_cookie *cookie;
+};
+
struct erofs_sb_info {
struct erofs_mount_opts opt; /* options */
#ifdef CONFIG_EROFS_FS_ZIP
@@ -574,6 +578,10 @@ static inline int z_erofs_load_lzma_config(struct super_block *sb,
int erofs_fscache_init(void);
void erofs_fscache_cleanup(void);
+struct erofs_cookie_ctx *erofs_fscache_get_ctx(struct super_block *sb,
+ char *path);
+void erofs_fscache_put_ctx(struct erofs_cookie_ctx *ctx);
+
#define EFSCORRUPTED EUCLEAN /* Filesystem is corrupted */
#endif /* __EROFS_INTERNAL_H */
Introduce 'struct erofs_cookie_ctx' for managing cookie for backing file, and the following introduced API for reading from backing file. Besides, introduce two helper functions for initializing and cleaning up erofs_cookie_ctx. struct erofs_cookie_ctx * erofs_fscache_get_ctx(struct super_block *sb, char *path); void erofs_fscache_put_ctx(struct erofs_cookie_ctx *ctx); Signed-off-by: Jeffle Xu <jefflexu@linux.alibaba.com> --- fs/erofs/fscache.c | 75 +++++++++++++++++++++++++++++++++++++++++++++ fs/erofs/internal.h | 8 +++++ 2 files changed, 83 insertions(+)