/* * 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
Person | Tokens | Prop | Commits | CommitProp | |
al viro | al viro | 40 | 47.06% | 5 | 62.50% |
ian kent | ian kent | 31 | 36.47% | 1 | 12.50% |
pre-git | pre-git | 11 | 12.94% | 1 | 12.50% |
david howells | david howells | 3 | 3.53% | 1 | 12.50% |
Total | 85 | 100.00% | 8 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
al viro | al viro | 43 | 40.57% | 6 | 50.00% |
ian kent | ian kent | 32 | 30.19% | 2 | 16.67% |
pre-git | pre-git | 23 | 21.70% | 1 | 8.33% |
art haas | art haas | 4 | 3.77% | 1 | 8.33% |
david howells | david howells | 3 | 2.83% | 1 | 8.33% |
arjan van de ven | arjan van de ven | 1 | 0.94% | 1 | 8.33% |
Total | 106 | 100.00% | 12 | 100.00% |