/* * 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; } const struct inode_operations autofs4_symlink_inode_operations = { .get_link = autofs4_get_link }; t.png' alt='cgit logo'/> index : net-next.git
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/include/pcmcia
diff options
context:
space:
mode:
authorIngo Molnar <mingo@kernel.org>2017-01-17 16:58:53 +0100
committerIngo Molnar <mingo@kernel.org>2017-01-17 17:03:16 +0100
commit31f5260a7653e6042ac28578db1c61e84f2d7898 (patch)
tree5a039c72253ffb0597917ef392dd142efb181b24 /include/pcmcia
parent4e71de7986386d5fd3765458f27d612931f27f5e (diff)
parent613f050d68a8ed3c0b18b9568698908ef7bbc1f7 (diff)
Merge tag 'perf-urgent-for-mingo-4.10-20170117' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/urgent
Pull 'perf probe' fixes from Arnaldo Carvalho de Melo <acme@redhat.com> - Show correct locations for 'perf probe' on modules (Masami Hiramatsu) - Correctly handle 'perf probe's on GCC generated functions in modules (Masami Hiramatsu) Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'include/pcmcia')