]> Git Repo - linux.git/blame - fs/9p/v9fs.c
powerpc/time: Remove unnecessary sanity check of decrementer expiration
[linux.git] / fs / 9p / v9fs.c
CommitLineData
9e82cf6a
EVH
1/*
2 * linux/fs/9p/v9fs.c
3 *
4 * This file contains functions assisting in mapping VFS to 9P2000
5 *
8a0dc95f 6 * Copyright (C) 2004-2008 by Eric Van Hensbergen <[email protected]>
9e82cf6a
EVH
7 * Copyright (C) 2002 by Ron Minnich <[email protected]>
8 *
9 * This program is free software; you can redistribute it and/or modify
42e8c509
EVH
10 * it under the terms of the GNU General Public License version 2
11 * as published by the Free Software Foundation.
9e82cf6a
EVH
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to:
20 * Free Software Foundation
21 * 51 Franklin Street, Fifth Floor
22 * Boston, MA 02111-1301 USA
23 *
24 */
25
9e82cf6a
EVH
26#include <linux/module.h>
27#include <linux/errno.h>
28#include <linux/fs.h>
914e2637 29#include <linux/sched.h>
9e82cf6a
EVH
30#include <linux/parser.h>
31#include <linux/idr.h>
5a0e3ad6 32#include <linux/slab.h>
bd238fb4 33#include <net/9p/9p.h>
bd238fb4 34#include <net/9p/client.h>
8b81ef58 35#include <net/9p/transport.h>
9e82cf6a 36#include "v9fs.h"
9e82cf6a 37#include "v9fs_vfs.h"
60e78d2c
AK
38#include "cache.h"
39
40static DEFINE_SPINLOCK(v9fs_sessionlist_lock);
41static LIST_HEAD(v9fs_sessionlist);
a78ce05d 42struct kmem_cache *v9fs_inode_cache;
9e82cf6a
EVH
43
44/*
60e78d2c
AK
45 * Option Parsing (code inspired by NFS code)
46 * NOTE: each transport will parse its own options
47 */
9e82cf6a
EVH
48
49enum {
50 /* Options that take integer arguments */
8a0dc95f 51 Opt_debug, Opt_dfltuid, Opt_dfltgid, Opt_afid,
9e82cf6a 52 /* String options */
60e78d2c 53 Opt_uname, Opt_remotename, Opt_trans, Opt_cache, Opt_cachetag,
9e82cf6a 54 /* Options that take no arguments */
8a0dc95f 55 Opt_nodevmap,
e03abc0c 56 /* Cache options */
60e78d2c 57 Opt_cache_loose, Opt_fscache,
ba17674f 58 /* Access options */
e782ef71 59 Opt_access, Opt_posixacl,
9e82cf6a
EVH
60 /* Error token */
61 Opt_err
62};
63
a447c093 64static const match_table_t tokens = {
9e2f6688 65 {Opt_debug, "debug=%x"},
bd32b82d
LI
66 {Opt_dfltuid, "dfltuid=%u"},
67 {Opt_dfltgid, "dfltgid=%u"},
9e82cf6a 68 {Opt_afid, "afid=%u"},
67543e50 69 {Opt_uname, "uname=%s"},
9e82cf6a 70 {Opt_remotename, "aname=%s"},
9e82cf6a 71 {Opt_nodevmap, "nodevmap"},
60e78d2c 72 {Opt_cache, "cache=%s"},
e03abc0c 73 {Opt_cache_loose, "loose"},
60e78d2c
AK
74 {Opt_fscache, "fscache"},
75 {Opt_cachetag, "cachetag=%s"},
ba17674f 76 {Opt_access, "access=%s"},
e782ef71 77 {Opt_posixacl, "posixacl"},
9e82cf6a
EVH
78 {Opt_err, NULL}
79};
80
a2dd43bb
PK
81/* Interpret mount options for cache mode */
82static int get_cache_mode(char *s)
83{
84 int version = -EINVAL;
85
86 if (!strcmp(s, "loose")) {
87 version = CACHE_LOOSE;
88 P9_DPRINTK(P9_DEBUG_9P, "Cache mode: loose\n");
89 } else if (!strcmp(s, "fscache")) {
90 version = CACHE_FSCACHE;
91 P9_DPRINTK(P9_DEBUG_9P, "Cache mode: fscache\n");
92 } else if (!strcmp(s, "none")) {
93 version = CACHE_NONE;
94 P9_DPRINTK(P9_DEBUG_9P, "Cache mode: none\n");
95 } else
96 printk(KERN_INFO "9p: Unknown Cache mode %s.\n", s);
97 return version;
98}
99
9e82cf6a
EVH
100/**
101 * v9fs_parse_options - parse mount options into session structure
9e82cf6a
EVH
102 * @v9ses: existing v9fs session information
103 *
ab31267d 104 * Return 0 upon success, -ERRNO upon failure.
9e82cf6a
EVH
105 */
106
4b53e4b5 107static int v9fs_parse_options(struct v9fs_session_info *v9ses, char *opts)
9e82cf6a 108{
d8c8a9e3 109 char *options, *tmp_options;
9e82cf6a 110 substring_t args[MAX_OPT_ARGS];
a80d923e 111 char *p;
8a0dc95f 112 int option = 0;
ba17674f 113 char *s, *e;
ab31267d 114 int ret = 0;
9e82cf6a
EVH
115
116 /* setup defaults */
9e82cf6a
EVH
117 v9ses->afid = ~0;
118 v9ses->debug = 0;
a2dd43bb 119 v9ses->cache = CACHE_NONE;
60e78d2c
AK
120#ifdef CONFIG_9P_FSCACHE
121 v9ses->cachetag = NULL;
122#endif
9e82cf6a 123
4b53e4b5 124 if (!opts)
ab31267d 125 return 0;
9e82cf6a 126
d8c8a9e3 127 tmp_options = kstrdup(opts, GFP_KERNEL);
bf2d29c6
EVH
128 if (!tmp_options) {
129 ret = -ENOMEM;
60e78d2c 130 goto fail_option_alloc;
bf2d29c6 131 }
d8c8a9e3 132 options = tmp_options;
ab31267d 133
9e82cf6a 134 while ((p = strsep(&options, ",")) != NULL) {
4d5077f1 135 int token, r;
9e82cf6a
EVH
136 if (!*p)
137 continue;
138 token = match_token(p, tokens, args);
4d5077f1
AK
139 switch (token) {
140 case Opt_debug:
141 r = match_int(&args[0], &option);
ab31267d 142 if (r < 0) {
bd238fb4 143 P9_DPRINTK(P9_DEBUG_ERROR,
4d5077f1 144 "integer field, but no integer?\n");
ab31267d 145 ret = r;
9e82cf6a
EVH
146 continue;
147 }
9e2f6688 148 v9ses->debug = option;
10fa16e7 149#ifdef CONFIG_NET_9P_DEBUG
9e2f6688 150 p9_debug_level = option;
10fa16e7 151#endif
9e2f6688 152 break;
8a0dc95f 153
bd32b82d 154 case Opt_dfltuid:
4d5077f1
AK
155 r = match_int(&args[0], &option);
156 if (r < 0) {
157 P9_DPRINTK(P9_DEBUG_ERROR,
158 "integer field, but no integer?\n");
159 ret = r;
160 continue;
161 }
bd32b82d 162 v9ses->dfltuid = option;
9e82cf6a 163 break;
bd32b82d 164 case Opt_dfltgid:
4d5077f1
AK
165 r = match_int(&args[0], &option);
166 if (r < 0) {
167 P9_DPRINTK(P9_DEBUG_ERROR,
168 "integer field, but no integer?\n");
169 ret = r;
170 continue;
171 }
bd32b82d 172 v9ses->dfltgid = option;
9e82cf6a
EVH
173 break;
174 case Opt_afid:
4d5077f1
AK
175 r = match_int(&args[0], &option);
176 if (r < 0) {
177 P9_DPRINTK(P9_DEBUG_ERROR,
178 "integer field, but no integer?\n");
179 ret = r;
180 continue;
181 }
9e82cf6a
EVH
182 v9ses->afid = option;
183 break;
67543e50 184 case Opt_uname:
b32a09db 185 match_strlcpy(v9ses->uname, &args[0], PATH_MAX);
9e82cf6a
EVH
186 break;
187 case Opt_remotename:
b32a09db 188 match_strlcpy(v9ses->aname, &args[0], PATH_MAX);
9e82cf6a 189 break;
9e82cf6a
EVH
190 case Opt_nodevmap:
191 v9ses->nodev = 1;
192 break;
e03abc0c
EVH
193 case Opt_cache_loose:
194 v9ses->cache = CACHE_LOOSE;
195 break;
60e78d2c
AK
196 case Opt_fscache:
197 v9ses->cache = CACHE_FSCACHE;
198 break;
199 case Opt_cachetag:
200#ifdef CONFIG_9P_FSCACHE
201 v9ses->cachetag = match_strdup(&args[0]);
202#endif
203 break;
204 case Opt_cache:
205 s = match_strdup(&args[0]);
bf2d29c6
EVH
206 if (!s) {
207 ret = -ENOMEM;
208 P9_DPRINTK(P9_DEBUG_ERROR,
209 "problem allocating copy of cache arg\n");
210 goto free_and_return;
211 }
a2dd43bb
PK
212 ret = get_cache_mode(s);
213 if (ret == -EINVAL) {
214 kfree(s);
215 goto free_and_return;
216 }
60e78d2c 217
a2dd43bb 218 v9ses->cache = ret;
60e78d2c
AK
219 kfree(s);
220 break;
ba17674f
LI
221
222 case Opt_access:
223 s = match_strdup(&args[0]);
bf2d29c6
EVH
224 if (!s) {
225 ret = -ENOMEM;
226 P9_DPRINTK(P9_DEBUG_ERROR,
227 "problem allocating copy of access arg\n");
228 goto free_and_return;
229 }
60e78d2c 230
ba17674f
LI
231 v9ses->flags &= ~V9FS_ACCESS_MASK;
232 if (strcmp(s, "user") == 0)
233 v9ses->flags |= V9FS_ACCESS_USER;
234 else if (strcmp(s, "any") == 0)
235 v9ses->flags |= V9FS_ACCESS_ANY;
76381a42 236 else if (strcmp(s, "client") == 0) {
76381a42 237 v9ses->flags |= V9FS_ACCESS_CLIENT;
76381a42 238 } else {
ba17674f 239 v9ses->flags |= V9FS_ACCESS_SINGLE;
f1d9e458 240 v9ses->uid = simple_strtoul(s, &e, 10);
a2dd43bb
PK
241 if (*e != '\0') {
242 ret = -EINVAL;
243 printk(KERN_INFO "9p: Unknown access "
244 "argument %s.\n", s);
245 kfree(s);
246 goto free_and_return;
247 }
ba17674f 248 }
a2dd43bb 249
0a976297 250 kfree(s);
ba17674f
LI
251 break;
252
e782ef71
VJJ
253 case Opt_posixacl:
254#ifdef CONFIG_9P_FS_POSIX_ACL
255 v9ses->flags |= V9FS_POSIX_ACL;
256#else
257 P9_DPRINTK(P9_DEBUG_ERROR,
258 "Not defined CONFIG_9P_FS_POSIX_ACL. "
259 "Ignoring posixacl option\n");
260#endif
261 break;
262
9e82cf6a
EVH
263 default:
264 continue;
265 }
266 }
d8c8a9e3 267
bf2d29c6 268free_and_return:
d8c8a9e3 269 kfree(tmp_options);
60e78d2c 270fail_option_alloc:
bf2d29c6 271 return ret;
9e82cf6a
EVH
272}
273
9e82cf6a
EVH
274/**
275 * v9fs_session_init - initialize session
276 * @v9ses: session information structure
277 * @dev_name: device being mounted
278 * @data: options
279 *
280 */
281
bd238fb4 282struct p9_fid *v9fs_session_init(struct v9fs_session_info *v9ses,
9e82cf6a
EVH
283 const char *dev_name, char *data)
284{
9e82cf6a 285 int retval = -EINVAL;
bd238fb4 286 struct p9_fid *fid;
ab31267d 287 int rc;
9e82cf6a 288
ba17674f
LI
289 v9ses->uname = __getname();
290 if (!v9ses->uname)
bd238fb4 291 return ERR_PTR(-ENOMEM);
9e82cf6a 292
ba17674f
LI
293 v9ses->aname = __getname();
294 if (!v9ses->aname) {
295 __putname(v9ses->uname);
bd238fb4 296 return ERR_PTR(-ENOMEM);
9e82cf6a 297 }
a534c8d1 298 init_rwsem(&v9ses->rename_sem);
9e82cf6a 299
0ed07ddb
JA
300 rc = bdi_setup_and_register(&v9ses->bdi, "9p", BDI_CAP_MAP_COPY);
301 if (rc) {
302 __putname(v9ses->aname);
303 __putname(v9ses->uname);
304 return ERR_PTR(rc);
305 }
306
60e78d2c
AK
307 spin_lock(&v9fs_sessionlist_lock);
308 list_add(&v9ses->slist, &v9fs_sessionlist);
309 spin_unlock(&v9fs_sessionlist_lock);
310
ba17674f
LI
311 strcpy(v9ses->uname, V9FS_DEFUSER);
312 strcpy(v9ses->aname, V9FS_DEFANAME);
313 v9ses->uid = ~0;
bd32b82d
LI
314 v9ses->dfltuid = V9FS_DEFUID;
315 v9ses->dfltgid = V9FS_DEFGID;
ab31267d 316
4b53e4b5 317 v9ses->clnt = p9_client_create(dev_name, data);
bd238fb4
LI
318 if (IS_ERR(v9ses->clnt)) {
319 retval = PTR_ERR(v9ses->clnt);
320 v9ses->clnt = NULL;
321 P9_DPRINTK(P9_DEBUG_ERROR, "problem initializing 9p client\n");
322 goto error;
9e82cf6a
EVH
323 }
324
6752a1eb
VJJ
325 v9ses->flags = V9FS_ACCESS_USER;
326
327 if (p9_is_proto_dotl(v9ses->clnt)) {
328 v9ses->flags = V9FS_ACCESS_CLIENT;
476ada04 329 v9ses->flags |= V9FS_PROTO_2000L;
6752a1eb 330 } else if (p9_is_proto_dotu(v9ses->clnt)) {
476ada04 331 v9ses->flags |= V9FS_PROTO_2000U;
6752a1eb
VJJ
332 }
333
334 rc = v9fs_parse_options(v9ses, data);
335 if (rc < 0) {
336 retval = rc;
337 goto error;
338 }
ba17674f 339
fbedadc1 340 v9ses->maxdata = v9ses->clnt->msize - P9_IOHDRSZ;
8a0dc95f 341
76381a42
AK
342 if (!v9fs_proto_dotl(v9ses) &&
343 ((v9ses->flags & V9FS_ACCESS_MASK) == V9FS_ACCESS_CLIENT)) {
344 /*
345 * We support ACCESS_CLIENT only for dotl.
346 * Fall back to ACCESS_USER
347 */
348 v9ses->flags &= ~V9FS_ACCESS_MASK;
349 v9ses->flags |= V9FS_ACCESS_USER;
350 }
351 /*FIXME !! */
ba17674f 352 /* for legacy mode, fall back to V9FS_ACCESS_ANY */
9ffaf63e 353 if (!(v9fs_proto_dotu(v9ses) || v9fs_proto_dotl(v9ses)) &&
ba17674f
LI
354 ((v9ses->flags&V9FS_ACCESS_MASK) == V9FS_ACCESS_USER)) {
355
356 v9ses->flags &= ~V9FS_ACCESS_MASK;
357 v9ses->flags |= V9FS_ACCESS_ANY;
358 v9ses->uid = ~0;
359 }
e782ef71
VJJ
360 if (!v9fs_proto_dotl(v9ses) ||
361 !((v9ses->flags & V9FS_ACCESS_MASK) == V9FS_ACCESS_CLIENT)) {
362 /*
363 * We support ACL checks on clinet only if the protocol is
364 * 9P2000.L and access is V9FS_ACCESS_CLIENT.
365 */
366 v9ses->flags &= ~V9FS_ACL_MASK;
367 }
ba17674f
LI
368
369 fid = p9_client_attach(v9ses->clnt, NULL, v9ses->uname, ~0,
370 v9ses->aname);
bd238fb4
LI
371 if (IS_ERR(fid)) {
372 retval = PTR_ERR(fid);
373 fid = NULL;
374 P9_DPRINTK(P9_DEBUG_ERROR, "cannot attach\n");
375 goto error;
9e82cf6a
EVH
376 }
377
ba17674f
LI
378 if ((v9ses->flags & V9FS_ACCESS_MASK) == V9FS_ACCESS_SINGLE)
379 fid->uid = v9ses->uid;
380 else
381 fid->uid = ~0;
382
60e78d2c
AK
383#ifdef CONFIG_9P_FSCACHE
384 /* register the session for caching */
385 v9fs_cache_session_get_cookie(v9ses);
386#endif
387
bd238fb4 388 return fid;
9e82cf6a 389
bd238fb4 390error:
0ed07ddb 391 bdi_destroy(&v9ses->bdi);
bd238fb4 392 return ERR_PTR(retval);
9e82cf6a
EVH
393}
394
395/**
396 * v9fs_session_close - shutdown a session
397 * @v9ses: session information structure
398 *
399 */
400
401void v9fs_session_close(struct v9fs_session_info *v9ses)
402{
bd238fb4
LI
403 if (v9ses->clnt) {
404 p9_client_destroy(v9ses->clnt);
405 v9ses->clnt = NULL;
3cf6429a 406 }
9e82cf6a 407
60e78d2c
AK
408#ifdef CONFIG_9P_FSCACHE
409 if (v9ses->fscache) {
410 v9fs_cache_session_put_cookie(v9ses);
411 kfree(v9ses->cachetag);
412 }
413#endif
ba17674f
LI
414 __putname(v9ses->uname);
415 __putname(v9ses->aname);
60e78d2c 416
0ed07ddb
JA
417 bdi_destroy(&v9ses->bdi);
418
60e78d2c
AK
419 spin_lock(&v9fs_sessionlist_lock);
420 list_del(&v9ses->slist);
421 spin_unlock(&v9fs_sessionlist_lock);
9e82cf6a
EVH
422}
423
322b329a 424/**
ee443996
EVH
425 * v9fs_session_cancel - terminate a session
426 * @v9ses: session to terminate
427 *
428 * mark transport as disconnected and cancel all pending requests.
322b329a 429 */
ee443996 430
322b329a 431void v9fs_session_cancel(struct v9fs_session_info *v9ses) {
bd238fb4
LI
432 P9_DPRINTK(P9_DEBUG_ERROR, "cancel session %p\n", v9ses);
433 p9_client_disconnect(v9ses->clnt);
322b329a
EVH
434}
435
6d96d3ab
AK
436/**
437 * v9fs_session_begin_cancel - Begin terminate of a session
438 * @v9ses: session to terminate
439 *
440 * After this call we don't allow any request other than clunk.
441 */
442
443void v9fs_session_begin_cancel(struct v9fs_session_info *v9ses)
444{
445 P9_DPRINTK(P9_DEBUG_ERROR, "begin cancel session %p\n", v9ses);
446 p9_client_begin_disconnect(v9ses->clnt);
447}
448
9e82cf6a
EVH
449extern int v9fs_error_init(void);
450
60e78d2c
AK
451static struct kobject *v9fs_kobj;
452
453#ifdef CONFIG_9P_FSCACHE
9e82cf6a 454/**
60e78d2c
AK
455 * caches_show - list caches associated with a session
456 *
457 * Returns the size of buffer written.
458 */
459
460static ssize_t caches_show(struct kobject *kobj,
461 struct kobj_attribute *attr,
462 char *buf)
463{
464 ssize_t n = 0, count = 0, limit = PAGE_SIZE;
465 struct v9fs_session_info *v9ses;
466
467 spin_lock(&v9fs_sessionlist_lock);
468 list_for_each_entry(v9ses, &v9fs_sessionlist, slist) {
469 if (v9ses->cachetag) {
470 n = snprintf(buf, limit, "%s\n", v9ses->cachetag);
471 if (n < 0) {
472 count = n;
473 break;
474 }
475
476 count += n;
477 limit -= n;
478 }
479 }
480
481 spin_unlock(&v9fs_sessionlist_lock);
482 return count;
483}
484
485static struct kobj_attribute v9fs_attr_cache = __ATTR_RO(caches);
486#endif /* CONFIG_9P_FSCACHE */
487
488static struct attribute *v9fs_attrs[] = {
489#ifdef CONFIG_9P_FSCACHE
490 &v9fs_attr_cache.attr,
491#endif
492 NULL,
493};
494
495static struct attribute_group v9fs_attr_group = {
496 .attrs = v9fs_attrs,
497};
498
499/**
500 * v9fs_sysfs_init - Initialize the v9fs sysfs interface
501 *
502 */
503
504static int v9fs_sysfs_init(void)
505{
506 v9fs_kobj = kobject_create_and_add("9p", fs_kobj);
507 if (!v9fs_kobj)
508 return -ENOMEM;
509
510 if (sysfs_create_group(v9fs_kobj, &v9fs_attr_group)) {
511 kobject_put(v9fs_kobj);
512 return -ENOMEM;
513 }
514
515 return 0;
516}
517
518/**
519 * v9fs_sysfs_cleanup - Unregister the v9fs sysfs interface
520 *
521 */
522
523static void v9fs_sysfs_cleanup(void)
524{
525 sysfs_remove_group(v9fs_kobj, &v9fs_attr_group);
526 kobject_put(v9fs_kobj);
527}
528
a78ce05d
AK
529static void v9fs_inode_init_once(void *foo)
530{
531 struct v9fs_inode *v9inode = (struct v9fs_inode *)foo;
532#ifdef CONFIG_9P_FSCACHE
533 v9inode->fscache = NULL;
a78ce05d 534#endif
fd2421f5 535 memset(&v9inode->qid, 0, sizeof(v9inode->qid));
a78ce05d
AK
536 inode_init_once(&v9inode->vfs_inode);
537}
538
539/**
540 * v9fs_init_inode_cache - initialize a cache for 9P
541 * Returns 0 on success.
542 */
543static int v9fs_init_inode_cache(void)
544{
545 v9fs_inode_cache = kmem_cache_create("v9fs_inode_cache",
546 sizeof(struct v9fs_inode),
547 0, (SLAB_RECLAIM_ACCOUNT|
548 SLAB_MEM_SPREAD),
549 v9fs_inode_init_once);
550 if (!v9fs_inode_cache)
551 return -ENOMEM;
552
553 return 0;
554}
555
556/**
557 * v9fs_destroy_inode_cache - destroy the cache of 9P inode
558 *
559 */
560static void v9fs_destroy_inode_cache(void)
561{
562 kmem_cache_destroy(v9fs_inode_cache);
563}
564
565static int v9fs_cache_register(void)
566{
567 int ret;
568 ret = v9fs_init_inode_cache();
569 if (ret < 0)
570 return ret;
571#ifdef CONFIG_9P_FSCACHE
572 return fscache_register_netfs(&v9fs_cache_netfs);
573#else
574 return ret;
575#endif
576}
577
578static void v9fs_cache_unregister(void)
579{
580 v9fs_destroy_inode_cache();
581#ifdef CONFIG_9P_FSCACHE
582 fscache_unregister_netfs(&v9fs_cache_netfs);
583#endif
584}
585
60e78d2c
AK
586/**
587 * init_v9fs - Initialize module
9e82cf6a
EVH
588 *
589 */
590
591static int __init init_v9fs(void)
592{
60e78d2c 593 int err;
f94b3470 594 printk(KERN_INFO "Installing v9fs 9p2000 file system support\n");
a80d923e 595 /* TODO: Setup list of registered trasnport modules */
60e78d2c
AK
596 err = register_filesystem(&v9fs_fs_type);
597 if (err < 0) {
598 printk(KERN_ERR "Failed to register filesystem\n");
599 return err;
600 }
601
602 err = v9fs_cache_register();
603 if (err < 0) {
604 printk(KERN_ERR "Failed to register v9fs for caching\n");
605 goto out_fs_unreg;
606 }
607
608 err = v9fs_sysfs_init();
609 if (err < 0) {
610 printk(KERN_ERR "Failed to register with sysfs\n");
611 goto out_sysfs_cleanup;
612 }
613
614 return 0;
615
616out_sysfs_cleanup:
617 v9fs_sysfs_cleanup();
618
619out_fs_unreg:
620 unregister_filesystem(&v9fs_fs_type);
621
622 return err;
9e82cf6a
EVH
623}
624
625/**
60e78d2c 626 * exit_v9fs - shutdown module
9e82cf6a
EVH
627 *
628 */
629
630static void __exit exit_v9fs(void)
631{
60e78d2c
AK
632 v9fs_sysfs_cleanup();
633 v9fs_cache_unregister();
9e82cf6a
EVH
634 unregister_filesystem(&v9fs_fs_type);
635}
636
637module_init(init_v9fs)
638module_exit(exit_v9fs)
639
bd238fb4 640MODULE_AUTHOR("Latchesar Ionkov <[email protected]>");
9e82cf6a
EVH
641MODULE_AUTHOR("Eric Van Hensbergen <[email protected]>");
642MODULE_AUTHOR("Ron Minnich <[email protected]>");
643MODULE_LICENSE("GPL");
This page took 0.662667 seconds and 4 git commands to generate.