fscache/cachefiles used to serve as a local cache for remote fs.
This patch set introduces a new use case, in which local read-only
fs could implement demand read with fscache.

Thus 'mode' field is used to distinguish which mode cachefiles works in.
User daemon could set the specified mode with 'mode' command. If user
daemon doesn't ever explicitly set the mode, then cachefiles serves as
the local cache for remote fs by default.

Signed-off-by: Jeffle Xu <jeffl...@linux.alibaba.com>
---
 fs/cachefiles/daemon.c   | 35 +++++++++++++++++++++++++++++++++++
 fs/cachefiles/internal.h |  6 ++++++
 2 files changed, 41 insertions(+)

diff --git a/fs/cachefiles/daemon.c b/fs/cachefiles/daemon.c
index 40a792421fc1..951963e72b44 100644
--- a/fs/cachefiles/daemon.c
+++ b/fs/cachefiles/daemon.c
@@ -41,6 +41,7 @@ static int cachefiles_daemon_dir(struct cachefiles_cache *, 
char *);
 static int cachefiles_daemon_inuse(struct cachefiles_cache *, char *);
 static int cachefiles_daemon_secctx(struct cachefiles_cache *, char *);
 static int cachefiles_daemon_tag(struct cachefiles_cache *, char *);
+static int cachefiles_daemon_mode(struct cachefiles_cache *, char *);
 static int cachefiles_daemon_bind(struct cachefiles_cache *, char *);
 static void cachefiles_daemon_unbind(struct cachefiles_cache *);
 
@@ -75,6 +76,7 @@ static const struct cachefiles_daemon_cmd 
cachefiles_daemon_cmds[] = {
        { "inuse",      cachefiles_daemon_inuse         },
        { "secctx",     cachefiles_daemon_secctx        },
        { "tag",        cachefiles_daemon_tag           },
+       { "mode",       cachefiles_daemon_mode          },
        { "",           NULL                            }
 };
 
@@ -663,6 +665,39 @@ static int cachefiles_daemon_inuse(struct cachefiles_cache 
*cache, char *args)
        return -EINVAL;
 }
 
+/*
+ * Set the cache mode
+ * - command: "mode cache|demand"
+ */
+static int cachefiles_daemon_mode(struct cachefiles_cache *cache, char *args)
+{
+       enum cachefiles_mode mode;
+
+       _enter(",%s", args);
+
+       if (test_bit(CACHEFILES_READY, &cache->flags)) {
+               pr_err("Cache already started\n");
+               return -EINVAL;
+       }
+
+       if (!*args) {
+               pr_err("Empty mode specified\n");
+               return -EINVAL;
+       }
+
+       if (!strncmp(args, "cache", strlen("cache"))) {
+               mode = CACHEFILES_MODE_CACHE;
+       } else if (!strncmp(args, "demand", strlen("demand"))) {
+               mode = CACHEFILES_MODE_DEMAND;
+       } else {
+               pr_err("Invalid mode specified\n");
+               return -EINVAL;
+       }
+
+       cache->mode = mode;
+       return 0;
+}
+
 /*
  * Bind a directory as a cache
  */
diff --git a/fs/cachefiles/internal.h b/fs/cachefiles/internal.h
index f42021b3a0be..1366e4319b4e 100644
--- a/fs/cachefiles/internal.h
+++ b/fs/cachefiles/internal.h
@@ -60,6 +60,11 @@ struct cachefiles_object {
 #define CACHEFILES_OBJECT_USING_TMPFILE        0               /* Have an 
unlinked tmpfile */
 };
 
+enum cachefiles_mode {
+       CACHEFILES_MODE_CACHE,  /* local cache for netfs (Default) */
+       CACHEFILES_MODE_DEMAND, /* demand read for read-only fs */
+};
+
 /*
  * Cache files cache definition
  */
@@ -93,6 +98,7 @@ struct cachefiles_cache {
        sector_t                        brun;           /* when to stop culling 
*/
        sector_t                        bcull;          /* when to start 
culling */
        sector_t                        bstop;          /* when to stop 
allocating */
+       enum cachefiles_mode            mode;
        unsigned long                   flags;
 #define CACHEFILES_READY               0       /* T if cache prepared */
 #define CACHEFILES_DEAD                        1       /* T if cache dead */
-- 
2.27.0

--
Linux-cachefs mailing list
Linux-cachefs@redhat.com
https://listman.redhat.com/mailman/listinfo/linux-cachefs

Reply via email to