Revision 6be382ea0c767a81be0e7980400b9b18167b3261 authored by Andi Kleen on 18 August 2005, 18:24:27 UTC, committed by Linus Torvalds on 18 August 2005, 19:53:59 UTC
Since early CPU identify is in this information is already available

Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
1 parent c6a3ea2
Raw File
symlink.c
/* -*- linux-c -*- --------------------------------------------------------- *
 *
 * linux/fs/autofs/symlink.c
 *
 *  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 int autofs_follow_link(struct dentry *dentry, struct nameidata *nd)
{
	char *s=((struct autofs_symlink *)dentry->d_inode->u.generic_ip)->data;
	nd_set_link(nd, s);
	return 0;
}

struct inode_operations autofs_symlink_inode_operations = {
	.readlink	= generic_readlink,
	.follow_link	= autofs_follow_link
};
back to top