symlink.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/fs/ufs/symlink.c
  3.  *
  4.  * Only fast symlinks left here - the rest is done by generic code. AV, 1999
  5.  *
  6.  * Copyright (C) 1998
  7.  * Daniel Pirkl <daniel.pirkl@emai.cz>
  8.  * Charles University, Faculty of Mathematics and Physics
  9.  *
  10.  *  from
  11.  *
  12.  *  linux/fs/ext2/symlink.c
  13.  *
  14.  * Copyright (C) 1992, 1993, 1994, 1995
  15.  * Remy Card (card@masi.ibp.fr)
  16.  * Laboratoire MASI - Institut Blaise Pascal
  17.  * Universite Pierre et Marie Curie (Paris VI)
  18.  *
  19.  *  from
  20.  *
  21.  *  linux/fs/minix/symlink.c
  22.  *
  23.  *  Copyright (C) 1991, 1992  Linus Torvalds
  24.  *
  25.  *  ext2 symlink handling code
  26.  */
  27. #include <linux/fs.h>
  28. static int ufs_readlink(struct dentry *dentry, char *buffer, int buflen)
  29. {
  30. char *s = (char *)dentry->d_inode->u.ufs_i.i_u1.i_symlink;
  31. return vfs_readlink(dentry, buffer, buflen, s);
  32. }
  33. static int ufs_follow_link(struct dentry *dentry, struct nameidata *nd)
  34. {
  35. char *s = (char *)dentry->d_inode->u.ufs_i.i_u1.i_symlink;
  36. return vfs_follow_link(nd, s);
  37. }
  38. struct inode_operations ufs_fast_symlink_inode_operations = {
  39. readlink: ufs_readlink,
  40. follow_link: ufs_follow_link,
  41. };