/* * linux/fs/sysv/symlink.c * * Handling of System V filesystem fast symlinks extensions. * Aug 2001, Christoph Hellwig (hch@infradead.org) */#include "sysv.h"#include <linux/namei.h>staticvoid*sysv_follow_link(structdentry*dentry,structnameidata*nd){nd_set_link(nd,(char*)SYSV_I(dentry->d_inode)->i_data);returnNULL;}conststructinode_operationssysv_fast_symlink_inode_operations={.readlink=generic_readlink,.follow_link=sysv_follow_link,};