blob: b3db517e89ec12b771a77f46deb2572782b83e09 [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};
Eric W. Biederman7f78e032013-03-02 19:39:14 -080029MODULE_ALIAS_FS("autofs");
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31static int __init init_autofs4_fs(void)
32{
Ian Kent8d7b48e2008-10-15 22:02:54 -070033 int err;
34
Al Viro54bf5862012-03-17 02:55:49 -040035 autofs_dev_ioctl_init();
36
Ian Kent8d7b48e2008-10-15 22:02:54 -070037 err = register_filesystem(&autofs_fs_type);
38 if (err)
Al Viro54bf5862012-03-17 02:55:49 -040039 autofs_dev_ioctl_exit();
Ian Kent8d7b48e2008-10-15 22:02:54 -070040
41 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042}
43
44static void __exit exit_autofs4_fs(void)
45{
Ian Kent8d7b48e2008-10-15 22:02:54 -070046 autofs_dev_ioctl_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 unregister_filesystem(&autofs_fs_type);
48}
49
50module_init(init_autofs4_fs)
51module_exit(exit_autofs4_fs)
52MODULE_LICENSE("GPL");