/* * 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 | 40 | 47.06% | 5 | 62.50% |
Ian Kent | 31 | 36.47% | 1 | 12.50% |
Linus Torvalds (pre-git) | 11 | 12.94% | 1 | 12.50% |
David Howells | 3 | 3.53% | 1 | 12.50% |
Total | 85 | 100.00% | 8 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Al Viro | 42 | 41.58% | 5 | 45.45% |
Ian Kent | 32 | 31.68% | 2 | 18.18% |
Linus Torvalds (pre-git) | 21 | 20.79% | 1 | 9.09% |
David Howells | 3 | 2.97% | 1 | 9.09% |
Art Haas | 2 | 1.98% | 1 | 9.09% |
Arjan van de Ven | 1 | 0.99% | 1 | 9.09% |
Total | 101 | 100.00% | 11 | 100.00% |