aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs/fscache.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/cifs/fscache.c')
-rw-r--r--fs/cifs/fscache.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/fs/cifs/fscache.c b/fs/cifs/fscache.c
index ea97b76f8aa..eba9beb94a4 100644
--- a/fs/cifs/fscache.c
+++ b/fs/cifs/fscache.c
@@ -39,3 +39,20 @@ void cifs_fscache_release_client_cookie(struct TCP_Server_Info *server)
39 server->fscache = NULL; 39 server->fscache = NULL;
40} 40}
41 41
42void cifs_fscache_get_super_cookie(struct cifsTconInfo *tcon)
43{
44 struct TCP_Server_Info *server = tcon->ses->server;
45
46 tcon->fscache =
47 fscache_acquire_cookie(server->fscache,
48 &cifs_fscache_super_index_def, tcon);
49 cFYI(1, "CIFS: get superblock cookie (0x%p/0x%p)",
50 server->fscache, tcon->fscache);
51}
52
53void cifs_fscache_release_super_cookie(struct cifsTconInfo *tcon)
54{
55 cFYI(1, "CIFS: releasing superblock cookie (0x%p)", tcon->fscache);
56 fscache_relinquish_cookie(tcon->fscache, 0);
57 tcon->fscache = NULL;
58}