blob: c2f605483cc5279d07c30b58c4f4c5bfa2916e8c [file] [log] [blame]
David Howells726dd7f2009-04-03 16:42:38 +01001/* FS-Cache netfs (client) registration
2 *
3 * Copyright (C) 2008 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
10 */
11
12#define FSCACHE_DEBUG_LEVEL COOKIE
13#include <linux/module.h>
14#include <linux/slab.h>
15#include "internal.h"
16
David Howells726dd7f2009-04-03 16:42:38 +010017/*
18 * register a network filesystem for caching
19 */
20int __fscache_register_netfs(struct fscache_netfs *netfs)
21{
David Howellsec0328e2018-04-04 13:41:28 +010022 struct fscache_cookie *candidate, *cookie;
David Howells726dd7f2009-04-03 16:42:38 +010023
24 _enter("{%s}", netfs->name);
25
David Howells726dd7f2009-04-03 16:42:38 +010026 /* allocate a cookie for the primary index */
David Howellsec0328e2018-04-04 13:41:28 +010027 candidate = fscache_alloc_cookie(&fscache_fsdef_index,
28 &fscache_fsdef_netfs_def,
29 netfs->name, strlen(netfs->name),
30 &netfs->version, sizeof(netfs->version),
31 netfs, 0);
32 if (!candidate) {
David Howells726dd7f2009-04-03 16:42:38 +010033 _leave(" = -ENOMEM");
34 return -ENOMEM;
35 }
36
David Howellsec0328e2018-04-04 13:41:28 +010037 candidate->flags = 1 << FSCACHE_COOKIE_ENABLED;
David Howells726dd7f2009-04-03 16:42:38 +010038
39 /* check the netfs type is not already present */
David Howellsec0328e2018-04-04 13:41:28 +010040 cookie = fscache_hash_cookie(candidate);
41 if (!cookie)
42 goto already_registered;
43 if (cookie != candidate) {
44 trace_fscache_cookie(candidate, fscache_cookie_discard, 1);
45 fscache_free_cookie(candidate);
David Howells726dd7f2009-04-03 16:42:38 +010046 }
47
David Howellsa18feb52018-04-04 13:41:27 +010048 fscache_cookie_get(cookie->parent, fscache_cookie_get_register_netfs);
Kinglong Meeb130ed52015-11-04 15:20:24 +000049 atomic_inc(&cookie->parent->n_children);
Kinglong Mee86108c22015-11-04 15:20:15 +000050
Kinglong Meeb130ed52015-11-04 15:20:24 +000051 netfs->primary_index = cookie;
David Howells726dd7f2009-04-03 16:42:38 +010052
Fabian Frederick36dfd112014-06-04 16:05:38 -070053 pr_notice("Netfs '%s' registered for caching\n", netfs->name);
David Howellsa18feb52018-04-04 13:41:27 +010054 trace_fscache_netfs(netfs);
David Howellsec0328e2018-04-04 13:41:28 +010055 _leave(" = 0");
56 return 0;
David Howells726dd7f2009-04-03 16:42:38 +010057
58already_registered:
David Howellsec0328e2018-04-04 13:41:28 +010059 fscache_cookie_put(candidate, fscache_cookie_put_dup_netfs);
60 _leave(" = -EEXIST");
61 return -EEXIST;
David Howells726dd7f2009-04-03 16:42:38 +010062}
63EXPORT_SYMBOL(__fscache_register_netfs);
64
65/*
66 * unregister a network filesystem from the cache
67 * - all cookies must have been released first
68 */
69void __fscache_unregister_netfs(struct fscache_netfs *netfs)
70{
71 _enter("{%s.%u}", netfs->name, netfs->version);
72
David Howells402cb8d2018-04-04 13:41:28 +010073 fscache_relinquish_cookie(netfs->primary_index, NULL, false);
David Howellsec0328e2018-04-04 13:41:28 +010074 pr_notice("Netfs '%s' unregistered from caching\n", netfs->name);
David Howells726dd7f2009-04-03 16:42:38 +010075
76 _leave("");
77}
78EXPORT_SYMBOL(__fscache_unregister_netfs);