blob: 12c0ae29f1857cb9cceaac3473cb47cef645d4b8 [file] [log] [blame]
Thomas Gleixner1f327612019-05-28 09:57:16 -07001// SPDX-License-Identifier: GPL-2.0-only
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -05002/*
3 * V9FS cache definitions.
4 *
5 * Copyright (C) 2009 by Abhishek Kulkarni <adkulkar@umail.iu.edu>
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -05006 */
7
8#include <linux/jiffies.h>
9#include <linux/file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -050011#include <linux/stat.h>
12#include <linux/sched.h>
13#include <linux/fs.h>
14#include <net/9p/9p.h>
15
16#include "v9fs.h"
17#include "cache.h"
18
David Howells24e42e32020-11-18 09:06:42 +000019int v9fs_cache_session_get_cookie(struct v9fs_session_info *v9ses,
20 const char *dev_name)
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -050021{
David Howells24e42e32020-11-18 09:06:42 +000022 struct fscache_volume *vcookie;
23 char *name, *p;
24
25 name = kasprintf(GFP_KERNEL, "9p,%s,%s",
26 dev_name, v9ses->cachetag ?: v9ses->aname);
27 if (!name)
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -050028 return -ENOMEM;
29
David Howells24e42e32020-11-18 09:06:42 +000030 for (p = name; *p; p++)
31 if (*p == '/')
32 *p = ';';
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -050033
David Howells24e42e32020-11-18 09:06:42 +000034 vcookie = fscache_acquire_volume(name, NULL, NULL, 0);
35 p9_debug(P9_DEBUG_FSC, "session %p get volume %p (%s)\n",
36 v9ses, vcookie, name);
37 if (IS_ERR(vcookie)) {
38 if (vcookie != ERR_PTR(-EBUSY)) {
39 kfree(name);
40 return PTR_ERR(vcookie);
David Howells402cb8d2018-04-04 13:41:28 +010041 }
David Howells24e42e32020-11-18 09:06:42 +000042 pr_err("Cache volume key already in use (%s)\n", name);
43 vcookie = NULL;
David Howells402cb8d2018-04-04 13:41:28 +010044 }
David Howells24e42e32020-11-18 09:06:42 +000045 v9ses->fscache = vcookie;
46 kfree(name);
47 return 0;
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -050048}
49
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -050050void v9fs_cache_inode_get_cookie(struct inode *inode)
51{
David Howellsbc899ee2021-06-29 22:37:05 +010052 struct v9fs_inode *v9inode = V9FS_I(inode);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -050053 struct v9fs_session_info *v9ses;
David Howells24e42e32020-11-18 09:06:42 +000054 __le32 version;
55 __le64 path;
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -050056
57 if (!S_ISREG(inode->i_mode))
58 return;
David Howellsbc899ee2021-06-29 22:37:05 +010059 if (WARN_ON(v9fs_inode_cookie(v9inode)))
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -050060 return;
61
David Howells24e42e32020-11-18 09:06:42 +000062 version = cpu_to_le32(v9inode->qid.version);
63 path = cpu_to_le64(v9inode->qid.path);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -050064 v9ses = v9fs_inode2v9ses(inode);
David Howells874c8ca12022-06-09 21:46:04 +010065 v9inode->netfs.cache =
David Howells24e42e32020-11-18 09:06:42 +000066 fscache_acquire_cookie(v9fs_session_cache(v9ses),
67 0,
68 &path, sizeof(path),
69 &version, sizeof(version),
David Howells874c8ca12022-06-09 21:46:04 +010070 i_size_read(&v9inode->netfs.inode));
David Howellsb4fa9662023-06-28 11:48:52 +010071 if (v9inode->netfs.cache)
72 mapping_set_release_always(inode->i_mapping);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -050073
Joe Perches5d385152011-11-28 10:40:46 -080074 p9_debug(P9_DEBUG_FSC, "inode %p get cookie %p\n",
David Howellsbc899ee2021-06-29 22:37:05 +010075 inode, v9fs_inode_cookie(v9inode));
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -050076}