Release 4.11 fs/autofs4/init.c
/*
* Copyright 1997-1998 Transmeta Corporation -- All Rights Reserved
*
* This file is part of the Linux kernel and is made available under
* the terms of the GNU General Public License, version 2, or at your
* option, any later version, incorporated herein by reference.
*/
#include <linux/module.h>
#include <linux/init.h>
#include "autofs_i.h"
static struct dentry *autofs_mount(struct file_system_type *fs_type,
int flags, const char *dev_name, void *data)
{
return mount_nodev(fs_type, flags, data, autofs4_fill_super);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Al Viro | 30 | 81.08% | 2 | 40.00% |
Linus Torvalds (pre-git) | 6 | 16.22% | 2 | 40.00% |
Andries E. Brouwer | 1 | 2.70% | 1 | 20.00% |
Total | 37 | 100.00% | 5 | 100.00% |
static struct file_system_type autofs_fs_type = {
.owner = THIS_MODULE,
.name = "autofs",
.mount = autofs_mount,
.kill_sb = autofs4_kill_sb,
};
MODULE_ALIAS_FS("autofs");
static int __init init_autofs4_fs(void)
{
int err;
autofs_dev_ioctl_init();
err = register_filesystem(&autofs_fs_type);
if (err)
autofs_dev_ioctl_exit();
return err;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 15 | 45.45% | 1 | 33.33% |
Ian Kent | 14 | 42.42% | 1 | 33.33% |
Al Viro | 4 | 12.12% | 1 | 33.33% |
Total | 33 | 100.00% | 3 | 100.00% |
static void __exit exit_autofs4_fs(void)
{
autofs_dev_ioctl_exit();
unregister_filesystem(&autofs_fs_type);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 15 | 83.33% | 1 | 50.00% |
Ian Kent | 3 | 16.67% | 1 | 50.00% |
Total | 18 | 100.00% | 2 | 100.00% |
module_init(init_autofs4_fs)
module_exit(exit_autofs4_fs)
MODULE_LICENSE("GPL");
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 53 | 37.06% | 2 | 15.38% |
Al Viro | 52 | 36.36% | 4 | 30.77% |
Ian Kent | 18 | 12.59% | 2 | 15.38% |
Art Haas | 8 | 5.59% | 1 | 7.69% |
Linus Torvalds | 5 | 3.50% | 1 | 7.69% |
Eric W. Biedermann | 5 | 3.50% | 1 | 7.69% |
David Howells | 1 | 0.70% | 1 | 7.69% |
Andries E. Brouwer | 1 | 0.70% | 1 | 7.69% |
Total | 143 | 100.00% | 13 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.