]> Git Repo - linux.git/blame - fs/sysv/symlink.c
Merge tag 'drm-intel-fixes-2013-07-11' of git://people.freedesktop.org/~danvet/drm...
[linux.git] / fs / sysv / symlink.c
CommitLineData
1da177e4
LT
1/*
2 * linux/fs/sysv/symlink.c
3 *
4 * Handling of System V filesystem fast symlinks extensions.
5 * Aug 2001, Christoph Hellwig ([email protected])
6 */
7
8#include "sysv.h"
9#include <linux/namei.h>
10
008b150a 11static void *sysv_follow_link(struct dentry *dentry, struct nameidata *nd)
1da177e4
LT
12{
13 nd_set_link(nd, (char *)SYSV_I(dentry->d_inode)->i_data);
008b150a 14 return NULL;
1da177e4
LT
15}
16
c5ef1c42 17const struct inode_operations sysv_fast_symlink_inode_operations = {
1da177e4
LT
18 .readlink = generic_readlink,
19 .follow_link = sysv_follow_link,
20};
This page took 0.716046 seconds and 4 git commands to generate.