cregit-Linux how code gets into the kernel

Release 4.10 fs/autofs4/symlink.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 "autofs_i.h"


static const char *autofs4_get_link(struct dentry *dentry, struct inode *inode, struct delayed_call *done) { struct autofs_sb_info *sbi; struct autofs_info *ino; if (!dentry) return ERR_PTR(-ECHILD); sbi = autofs4_sbi(dentry->d_sb); ino = autofs4_dentry_ino(dentry); if (ino && !autofs4_oz_mode(sbi)) ino->last_used = jiffies; return d_inode(dentry)->i_private; }

Contributors

PersonTokensPropCommitsCommitProp
al viroal viro4047.06%562.50%
ian kentian kent3136.47%112.50%
pre-gitpre-git1112.94%112.50%
david howellsdavid howells33.53%112.50%
Total85100.00%8100.00%

const struct inode_operations autofs4_symlink_inode_operations = { .get_link = autofs4_get_link };

Overall Contributors

PersonTokensPropCommitsCommitProp
al viroal viro4241.58%545.45%
ian kentian kent3231.68%218.18%
pre-gitpre-git2120.79%19.09%
david howellsdavid howells32.97%19.09%
art haasart haas21.98%19.09%
arjan van de venarjan van de ven10.99%19.09%
Total101100.00%11100.00%
Directory: fs/autofs4
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.