blob: c038727b405031fb91052c7af314d62508c3a5bd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* -*- c -*- --------------------------------------------------------------- *
2 *
3 * linux/fs/autofs/init.c
4 *
5 * Copyright 1997-1998 Transmeta Corporation -- All Rights Reserved
6 *
7 * This file is part of the Linux kernel and is made available under
8 * the terms of the GNU General Public License, version 2, or at your
9 * option, any later version, incorporated herein by reference.
10 *
11 * ------------------------------------------------------------------------- */
12
13#include <linux/module.h>
14#include <linux/init.h>
15#include "autofs_i.h"
16
Al Viro3c26ff62010-07-25 11:46:36 +040017static struct dentry *autofs_mount(struct file_system_type *fs_type,
18 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070019{
Al Viro3c26ff62010-07-25 11:46:36 +040020 return mount_nodev(fs_type, flags, data, autofs4_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -070021}
22
23static struct file_system_type autofs_fs_type = {
24 .owner = THIS_MODULE,
25 .name = "autofs",
Al Viro3c26ff62010-07-25 11:46:36 +040026 .mount = autofs_mount,
David Howells6ce31522006-10-11 01:22:15 -070027 .kill_sb = autofs4_kill_sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -070028};
29
30static int __init init_autofs4_fs(void)
31{
Ian Kent8d7b48e2008-10-15 22:02:54 -070032 int err;
33
34 err = register_filesystem(&autofs_fs_type);
35 if (err)
36 return err;
37
38 autofs_dev_ioctl_init();
39
40 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041}
42
43static void __exit exit_autofs4_fs(void)
44{
Ian Kent8d7b48e2008-10-15 22:02:54 -070045 autofs_dev_ioctl_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 unregister_filesystem(&autofs_fs_type);
47}
48
49module_init(init_autofs4_fs)
50module_exit(exit_autofs4_fs)
51MODULE_LICENSE("GPL");