cregit-Linux how code gets into the kernel

Release 4.10 fs/autofs4/init.c

Directory: fs/autofs4
/*
 * 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

PersonTokensPropCommitsCommitProp
al viroal viro3081.08%240.00%
pre-gitpre-git616.22%240.00%
andries brouwerandries brouwer12.70%120.00%
Total37100.00%5100.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

PersonTokensPropCommitsCommitProp
pre-gitpre-git1545.45%133.33%
ian kentian kent1442.42%133.33%
al viroal viro412.12%133.33%
Total33100.00%3100.00%


static void __exit exit_autofs4_fs(void) { autofs_dev_ioctl_exit(); unregister_filesystem(&autofs_fs_type); }

Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git1583.33%150.00%
ian kentian kent316.67%150.00%
Total18100.00%2100.00%

module_init(init_autofs4_fs) module_exit(exit_autofs4_fs) MODULE_LICENSE("GPL");

Overall Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git5337.06%215.38%
al viroal viro5236.36%430.77%
ian kentian kent1812.59%215.38%
art haasart haas85.59%17.69%
linus torvaldslinus torvalds53.50%17.69%
eric w. biedermaneric w. biederman53.50%17.69%
andries brouwerandries brouwer10.70%17.69%
david howellsdavid howells10.70%17.69%
Total143100.00%13100.00%
Directory: fs/autofs4
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.