blob: 97e23b4e69820200c5c4859588168761d97d12f8 [file] [log] [blame]
Thomas Gleixner1f327612019-05-28 09:57:16 -07001// SPDX-License-Identifier: GPL-2.0-only
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -07002/*
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -07003 *
4 * Copyright (C) 2004 by Eric Van Hensbergen <ericvh@gmail.com>
5 * Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov>
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -07006 */
7
8#include <linux/kernel.h>
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -07009#include <linux/module.h>
10#include <linux/errno.h>
11#include <linux/fs.h>
12#include <linux/file.h>
13#include <linux/stat.h>
14#include <linux/string.h>
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -070015#include <linux/inet.h>
16#include <linux/pagemap.h>
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -070017#include <linux/mount.h>
18#include <linux/idr.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040019#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Sripathi Kodibda8e772010-03-25 12:45:30 +000021#include <linux/statfs.h>
M. Mohan Kumar368c09d2010-09-27 14:17:24 +053022#include <linux/magic.h>
David Howells93c84612020-11-18 09:06:42 +000023#include <linux/fscache.h>
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050024#include <net/9p/9p.h>
25#include <net/9p/client.h>
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -070026
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -070027#include "v9fs.h"
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -070028#include "v9fs_vfs.h"
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -070029#include "fid.h"
Aneesh Kumar K.Vebf46262010-05-31 13:22:56 +053030#include "xattr.h"
Aneesh Kumar K.V85ff8722010-09-28 00:27:39 +053031#include "acl.h"
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -070032
Sripathi Kodi9b6533c2010-03-25 12:41:54 +000033static const struct super_operations v9fs_super_ops, v9fs_super_ops_dotl;
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -070034
35/**
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -070036 * v9fs_set_super - set the superblock
37 * @s: super block
38 * @data: file system specific data
39 *
40 */
41
42static int v9fs_set_super(struct super_block *s, void *data)
43{
44 s->s_fs_info = data;
45 return set_anon_super(s, data);
46}
47
48/**
49 * v9fs_fill_super - populate superblock with info
50 * @sb: superblock
51 * @v9ses: session information
Al Virod2d1ea92010-07-25 23:56:43 +040052 * @flags: flags propagated from v9fs_mount()
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -070053 *
54 */
55
Jan Kara71304fe2017-04-12 12:24:31 +020056static int
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -070057v9fs_fill_super(struct super_block *sb, struct v9fs_session_info *v9ses,
Bharath Vedarthamaafee432019-05-23 22:26:20 +053058 int flags)
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -070059{
Jan Kara71304fe2017-04-12 12:24:31 +020060 int ret;
61
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -070062 sb->s_maxbytes = MAX_LFS_FILESIZE;
63 sb->s_blocksize_bits = fls(v9ses->maxdata - 1);
64 sb->s_blocksize = 1 << sb->s_blocksize_bits;
65 sb->s_magic = V9FS_MAGIC;
Aneesh Kumar K.Vebf46262010-05-31 13:22:56 +053066 if (v9fs_proto_dotl(v9ses)) {
Sripathi Kodi9b6533c2010-03-25 12:41:54 +000067 sb->s_op = &v9fs_super_ops_dotl;
Aneesh Kumar K.Vebf46262010-05-31 13:22:56 +053068 sb->s_xattr = v9fs_xattr_handlers;
Deepa Dinamanid5c6e2d2019-03-06 14:09:42 -080069 } else {
Sripathi Kodi9b6533c2010-03-25 12:41:54 +000070 sb->s_op = &v9fs_super_ops;
Deepa Dinamanid5c6e2d2019-03-06 14:09:42 -080071 sb->s_time_max = U32_MAX;
72 }
73
74 sb->s_time_min = 0;
Jan Kara71304fe2017-04-12 12:24:31 +020075
76 ret = super_setup_bdi(sb);
77 if (ret)
78 return ret;
79
Christoph Hellwig55b25982020-09-24 08:51:32 +020080 if (!v9ses->cache) {
81 sb->s_bdi->ra_pages = 0;
82 sb->s_bdi->io_pages = 0;
Dominique Martinetb1843d22021-11-04 21:01:27 +090083 } else {
84 sb->s_bdi->ra_pages = v9ses->maxdata >> PAGE_SHIFT;
85 sb->s_bdi->io_pages = v9ses->maxdata >> PAGE_SHIFT;
Christoph Hellwig55b25982020-09-24 08:51:32 +020086 }
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -070087
Yiwen Jiang7ff3c202018-04-05 16:19:57 -070088 sb->s_flags |= SB_ACTIVE | SB_DIRSYNC;
Aneesh Kumar K.Vdb5841d2011-02-28 17:03:59 +053089 if (!v9ses->cache)
Linus Torvalds1751e8a2017-11-27 13:05:09 -080090 sb->s_flags |= SB_SYNCHRONOUS;
Abhishek Kulkarni4b53e4b2009-08-17 16:42:28 -050091
Aneesh Kumar K.V85ff8722010-09-28 00:27:39 +053092#ifdef CONFIG_9P_FS_POSIX_ACL
Venkateswararao Jujjuri (JV)e782ef72011-01-25 15:40:54 -080093 if ((v9ses->flags & V9FS_ACL_MASK) == V9FS_POSIX_ACL)
Linus Torvalds1751e8a2017-11-27 13:05:09 -080094 sb->s_flags |= SB_POSIXACL;
Aneesh Kumar K.V85ff8722010-09-28 00:27:39 +053095#endif
96
Jan Kara71304fe2017-04-12 12:24:31 +020097 return 0;
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -070098}
99
100/**
Al Virod2d1ea92010-07-25 23:56:43 +0400101 * v9fs_mount - mount a superblock
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -0700102 * @fs_type: file system type
103 * @flags: mount flags
104 * @dev_name: device name that was mounted
105 * @data: mount options
106 *
107 */
108
Al Virod2d1ea92010-07-25 23:56:43 +0400109static struct dentry *v9fs_mount(struct file_system_type *fs_type, int flags,
110 const char *dev_name, void *data)
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -0700111{
112 struct super_block *sb = NULL;
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -0700113 struct inode *inode = NULL;
114 struct dentry *root = NULL;
115 struct v9fs_session_info *v9ses = NULL;
Dominique Martinet6e195b02021-11-02 22:16:43 +0900116 umode_t mode = 0777 | S_ISVTX;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500117 struct p9_fid *fid;
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -0700118 int retval = 0;
119
Joe Perches5d385152011-11-28 10:40:46 -0800120 p9_debug(P9_DEBUG_VFS, "\n");
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -0700121
Latchesar Ionkov1dac06b2006-01-08 01:05:02 -0800122 v9ses = kzalloc(sizeof(struct v9fs_session_info), GFP_KERNEL);
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -0700123 if (!v9ses)
Al Virod2d1ea92010-07-25 23:56:43 +0400124 return ERR_PTR(-ENOMEM);
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -0700125
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500126 fid = v9fs_session_init(v9ses, dev_name, data);
127 if (IS_ERR(fid)) {
128 retval = PTR_ERR(fid);
Tejun Heo412a19b2015-06-08 14:57:31 +0900129 goto free_session;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500130 }
131
David Howells9249e172012-06-25 12:55:37 +0100132 sb = sget(fs_type, NULL, v9fs_set_super, flags, v9ses);
David Howells454e2392006-06-23 02:02:57 -0700133 if (IS_ERR(sb)) {
134 retval = PTR_ERR(sb);
Sripathi Kodif0853122010-07-12 20:07:23 +0530135 goto clunk_fid;
David Howells454e2392006-06-23 02:02:57 -0700136 }
Bharath Vedarthamaafee432019-05-23 22:26:20 +0530137 retval = v9fs_fill_super(sb, v9ses, flags);
Jan Kara71304fe2017-04-12 12:24:31 +0200138 if (retval)
139 goto release_sb;
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -0700140
Dominique Martinetfb89b452014-01-10 13:44:09 +0100141 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE)
Al Viro98cd3fb2011-01-12 17:10:55 -0500142 sb->s_d_op = &v9fs_cached_dentry_operations;
143 else
144 sb->s_d_op = &v9fs_dentry_operations;
145
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000146 inode = v9fs_get_inode(sb, S_IFDIR | mode, 0);
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -0700147 if (IS_ERR(inode)) {
148 retval = PTR_ERR(inode);
Eric Van Hensbergen887b3ec2008-05-08 20:26:37 -0500149 goto release_sb;
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -0700150 }
Aneesh Kumar K.Vdf5d8c82011-03-24 20:38:35 +0530151
Al Viro48fde702012-01-08 22:15:13 -0500152 root = d_make_root(inode);
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -0700153 if (!root) {
154 retval = -ENOMEM;
Eric Van Hensbergen887b3ec2008-05-08 20:26:37 -0500155 goto release_sb;
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -0700156 }
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -0700157 sb->s_root = root;
Sripathi Kodif0853122010-07-12 20:07:23 +0530158 if (v9fs_proto_dotl(v9ses)) {
159 struct p9_stat_dotl *st = NULL;
Dominique Martinet6e195b02021-11-02 22:16:43 +0900160
Sripathi Kodif0853122010-07-12 20:07:23 +0530161 st = p9_client_getattr_dotl(fid, P9_STATS_BASIC);
162 if (IS_ERR(st)) {
163 retval = PTR_ERR(st);
Aneesh Kumar K.V5c25f342010-08-24 10:30:49 +0000164 goto release_sb;
Sripathi Kodif0853122010-07-12 20:07:23 +0530165 }
David Howells2b0143b2015-03-17 22:25:59 +0000166 d_inode(root)->i_ino = v9fs_qid2ino(&st->qid);
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800167 v9fs_stat2inode_dotl(st, d_inode(root), 0);
Sripathi Kodif0853122010-07-12 20:07:23 +0530168 kfree(st);
169 } else {
170 struct p9_wstat *st = NULL;
Dominique Martinet6e195b02021-11-02 22:16:43 +0900171
Sripathi Kodif0853122010-07-12 20:07:23 +0530172 st = p9_client_stat(fid);
173 if (IS_ERR(st)) {
174 retval = PTR_ERR(st);
Aneesh Kumar K.V5c25f342010-08-24 10:30:49 +0000175 goto release_sb;
Sripathi Kodif0853122010-07-12 20:07:23 +0530176 }
177
David Howells2b0143b2015-03-17 22:25:59 +0000178 d_inode(root)->i_ino = v9fs_qid2ino(&st->qid);
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800179 v9fs_stat2inode(st, d_inode(root), sb, 0);
Sripathi Kodif0853122010-07-12 20:07:23 +0530180
181 p9stat_free(st);
182 kfree(st);
183 }
Aneesh Kumar K.V85ff8722010-09-28 00:27:39 +0530184 retval = v9fs_get_acl(inode, fid);
185 if (retval)
186 goto release_sb;
Aneesh Kumar K.Vdf5d8c82011-03-24 20:38:35 +0530187 v9fs_fid_add(root, fid);
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -0700188
Joe Perches5d385152011-11-28 10:40:46 -0800189 p9_debug(P9_DEBUG_VFS, " simple set mount, return 0\n");
Al Virod2d1ea92010-07-25 23:56:43 +0400190 return dget(sb->s_root);
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -0700191
Eric Van Hensbergen887b3ec2008-05-08 20:26:37 -0500192clunk_fid:
193 p9_client_clunk(fid);
Eric Van Hensbergen887b3ec2008-05-08 20:26:37 -0500194 v9fs_session_close(v9ses);
Tejun Heo412a19b2015-06-08 14:57:31 +0900195free_session:
Eric Van Hensbergen887b3ec2008-05-08 20:26:37 -0500196 kfree(v9ses);
Al Virod2d1ea92010-07-25 23:56:43 +0400197 return ERR_PTR(retval);
Aneesh Kumar K.Vdf5d8c82011-03-24 20:38:35 +0530198
Abhishek Kulkarni1b5ab3e2009-07-19 13:41:52 -0600199release_sb:
Aneesh Kumar K.V5c25f342010-08-24 10:30:49 +0000200 /*
Aneesh Kumar K.Vdf5d8c82011-03-24 20:38:35 +0530201 * we will do the session_close and root dentry release
202 * in the below call. But we need to clunk fid, because we haven't
203 * attached the fid to dentry so it won't get clunked
204 * automatically.
Aneesh Kumar K.V5c25f342010-08-24 10:30:49 +0000205 */
Aneesh Kumar K.Vdf5d8c82011-03-24 20:38:35 +0530206 p9_client_clunk(fid);
Abhishek Kulkarni1b5ab3e2009-07-19 13:41:52 -0600207 deactivate_locked_super(sb);
Al Virod2d1ea92010-07-25 23:56:43 +0400208 return ERR_PTR(retval);
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -0700209}
210
211/**
212 * v9fs_kill_super - Kill Superblock
213 * @s: superblock
214 *
215 */
216
217static void v9fs_kill_super(struct super_block *s)
218{
219 struct v9fs_session_info *v9ses = s->s_fs_info;
220
Joe Perches5d385152011-11-28 10:40:46 -0800221 p9_debug(P9_DEBUG_VFS, " %p\n", s);
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -0700222
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -0700223 kill_anon_super(s);
Aneesh Kumar K.Vdf5d8c82011-03-24 20:38:35 +0530224
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -0500225 v9fs_session_cancel(v9ses);
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -0700226 v9fs_session_close(v9ses);
227 kfree(v9ses);
Abhishek Kulkarni1b5ab3e2009-07-19 13:41:52 -0600228 s->s_fs_info = NULL;
Joe Perches5d385152011-11-28 10:40:46 -0800229 p9_debug(P9_DEBUG_VFS, "exiting kill_super\n");
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -0700230}
231
Eric Van Hensbergen322b3292005-09-09 13:04:23 -0700232static void
Al Viro42faad92008-04-24 07:21:56 -0400233v9fs_umount_begin(struct super_block *sb)
Eric Van Hensbergen322b3292005-09-09 13:04:23 -0700234{
Alessio Igor Bogani67e55202009-04-24 09:06:53 +0200235 struct v9fs_session_info *v9ses;
Eric Van Hensbergen322b3292005-09-09 13:04:23 -0700236
Alessio Igor Bogani67e55202009-04-24 09:06:53 +0200237 v9ses = sb->s_fs_info;
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -0500238 v9fs_session_begin_cancel(v9ses);
Eric Van Hensbergen322b3292005-09-09 13:04:23 -0700239}
240
Sripathi Kodibda8e772010-03-25 12:45:30 +0000241static int v9fs_statfs(struct dentry *dentry, struct kstatfs *buf)
242{
243 struct v9fs_session_info *v9ses;
244 struct p9_fid *fid;
245 struct p9_rstatfs rs;
246 int res;
247
248 fid = v9fs_fid_lookup(dentry);
249 if (IS_ERR(fid)) {
250 res = PTR_ERR(fid);
251 goto done;
252 }
253
Aneesh Kumar K.V42869c82011-03-08 16:39:50 +0530254 v9ses = v9fs_dentry2v9ses(dentry);
Sripathi Kodibda8e772010-03-25 12:45:30 +0000255 if (v9fs_proto_dotl(v9ses)) {
256 res = p9_client_statfs(fid, &rs);
257 if (res == 0) {
Jim Garlick5bdad932011-06-30 09:03:38 -0700258 buf->f_type = rs.type;
Sripathi Kodibda8e772010-03-25 12:45:30 +0000259 buf->f_bsize = rs.bsize;
260 buf->f_blocks = rs.blocks;
261 buf->f_bfree = rs.bfree;
262 buf->f_bavail = rs.bavail;
263 buf->f_files = rs.files;
264 buf->f_ffree = rs.ffree;
Al Viro6d1349c2020-09-18 16:45:50 -0400265 buf->f_fsid = u64_to_fsid(rs.fsid);
Sripathi Kodibda8e772010-03-25 12:45:30 +0000266 buf->f_namelen = rs.namelen;
267 }
268 if (res != -ENOSYS)
269 goto done;
270 }
271 res = simple_statfs(dentry, buf);
272done:
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800273 p9_client_clunk(fid);
Sripathi Kodibda8e772010-03-25 12:45:30 +0000274 return res;
275}
276
Aneesh Kumar K.Vedd73cf2011-02-28 17:04:05 +0530277static int v9fs_drop_inode(struct inode *inode)
278{
279 struct v9fs_session_info *v9ses;
Dominique Martinet6e195b02021-11-02 22:16:43 +0900280
Aneesh Kumar K.Vedd73cf2011-02-28 17:04:05 +0530281 v9ses = v9fs_inode2v9ses(inode);
Dominique Martinetfb89b452014-01-10 13:44:09 +0100282 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE)
Aneesh Kumar K.Vedd73cf2011-02-28 17:04:05 +0530283 return generic_drop_inode(inode);
284 /*
285 * in case of non cached mode always drop the
Dominique Martinet6e195b02021-11-02 22:16:43 +0900286 * inode because we want the inode attribute
Aneesh Kumar K.Vedd73cf2011-02-28 17:04:05 +0530287 * to always match that on the server.
288 */
289 return 1;
290}
291
Aneesh Kumar K.Vc2ed3882011-03-23 15:11:27 +0530292static int v9fs_write_inode(struct inode *inode,
293 struct writeback_control *wbc)
294{
295 int ret;
296 struct p9_wstat wstat;
297 struct v9fs_inode *v9inode;
298 /*
299 * send an fsync request to server irrespective of
300 * wbc->sync_mode.
301 */
Joe Perches5d385152011-11-28 10:40:46 -0800302 p9_debug(P9_DEBUG_VFS, "%s: inode %p\n", __func__, inode);
Aneesh Kumar K.Vc2ed3882011-03-23 15:11:27 +0530303 v9inode = V9FS_I(inode);
304 if (!v9inode->writeback_fid)
305 return 0;
306 v9fs_blank_wstat(&wstat);
307
308 ret = p9_client_wstat(v9inode->writeback_fid, &wstat);
309 if (ret < 0) {
310 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
311 return ret;
312 }
David Howells93c84612020-11-18 09:06:42 +0000313 fscache_unpin_writeback(wbc, v9fs_inode_cookie(v9inode));
Aneesh Kumar K.Vc2ed3882011-03-23 15:11:27 +0530314 return 0;
315}
316
317static int v9fs_write_inode_dotl(struct inode *inode,
318 struct writeback_control *wbc)
319{
320 int ret;
321 struct v9fs_inode *v9inode;
322 /*
323 * send an fsync request to server irrespective of
324 * wbc->sync_mode.
325 */
Aneesh Kumar K.Vc2ed3882011-03-23 15:11:27 +0530326 v9inode = V9FS_I(inode);
Dominique Martinetfb89b452014-01-10 13:44:09 +0100327 p9_debug(P9_DEBUG_VFS, "%s: inode %p, writeback_fid %p\n",
328 __func__, inode, v9inode->writeback_fid);
Aneesh Kumar K.Vc2ed3882011-03-23 15:11:27 +0530329 if (!v9inode->writeback_fid)
330 return 0;
Dominique Martinetfb89b452014-01-10 13:44:09 +0100331
Aneesh Kumar K.Vc2ed3882011-03-23 15:11:27 +0530332 ret = p9_client_fsync(v9inode->writeback_fid, 0);
333 if (ret < 0) {
334 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
335 return ret;
336 }
David Howells93c84612020-11-18 09:06:42 +0000337 fscache_unpin_writeback(wbc, v9fs_inode_cookie(v9inode));
Aneesh Kumar K.Vc2ed3882011-03-23 15:11:27 +0530338 return 0;
339}
340
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800341static const struct super_operations v9fs_super_ops = {
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500342 .alloc_inode = v9fs_alloc_inode,
Al Viro5e8a0772019-04-10 15:00:26 -0400343 .free_inode = v9fs_free_inode,
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -0700344 .statfs = simple_statfs,
Al Virob57922d2010-06-07 14:34:48 -0400345 .evict_inode = v9fs_evict_inode,
David Howellsc4fac912017-07-05 16:25:37 +0100346 .show_options = v9fs_show_options,
Eric Van Hensbergen322b3292005-09-09 13:04:23 -0700347 .umount_begin = v9fs_umount_begin,
Aneesh Kumar K.Vc2ed3882011-03-23 15:11:27 +0530348 .write_inode = v9fs_write_inode,
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -0700349};
350
Sripathi Kodi9b6533c2010-03-25 12:41:54 +0000351static const struct super_operations v9fs_super_ops_dotl = {
Sripathi Kodi9b6533c2010-03-25 12:41:54 +0000352 .alloc_inode = v9fs_alloc_inode,
Al Viro5e8a0772019-04-10 15:00:26 -0400353 .free_inode = v9fs_free_inode,
Sripathi Kodibda8e772010-03-25 12:45:30 +0000354 .statfs = v9fs_statfs,
Aneesh Kumar K.Vedd73cf2011-02-28 17:04:05 +0530355 .drop_inode = v9fs_drop_inode,
Al Virob57922d2010-06-07 14:34:48 -0400356 .evict_inode = v9fs_evict_inode,
David Howellsc4fac912017-07-05 16:25:37 +0100357 .show_options = v9fs_show_options,
Sripathi Kodi9b6533c2010-03-25 12:41:54 +0000358 .umount_begin = v9fs_umount_begin,
Aneesh Kumar K.Vc2ed3882011-03-23 15:11:27 +0530359 .write_inode = v9fs_write_inode_dotl,
Sripathi Kodi9b6533c2010-03-25 12:41:54 +0000360};
361
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -0700362struct file_system_type v9fs_fs_type = {
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800363 .name = "9p",
Al Virod2d1ea92010-07-25 23:56:43 +0400364 .mount = v9fs_mount,
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -0700365 .kill_sb = v9fs_kill_super,
366 .owner = THIS_MODULE,
Jeff Laytonecf3d1f2013-02-20 11:19:05 -0500367 .fs_flags = FS_RENAME_DOES_D_MOVE,
Eric Van Hensbergen9e82cf62005-09-09 13:04:20 -0700368};
Eric W. Biederman7f78e032013-03-02 19:39:14 -0800369MODULE_ALIAS_FS("9p");