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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/fs/ext3/symlink.c
  3.  *
  4.  * Only fast symlinks left here - the rest is done by generic code. AV, 1999
  5.  *
  6.  * Copyright (C) 1992, 1993, 1994, 1995
  7.  * Remy Card (card@masi.ibp.fr)
  8.  * Laboratoire MASI - Institut Blaise Pascal
  9.  * Universite Pierre et Marie Curie (Paris VI)
  10.  *
  11.  *  from
  12.  *
  13.  *  linux/fs/minix/symlink.c
  14.  *
  15.  *  Copyright (C) 1991, 1992  Linus Torvalds
  16.  *
  17.  *  ext3 symlink handling code
  18.  */
  19. #include <linux/fs.h>
  20. #include <linux/jbd.h>
  21. #include <linux/ext3_fs.h>
  22. static int ext3_readlink(struct dentry *dentry, char *buffer, int buflen)
  23. {
  24. char *s = (char *)dentry->d_inode->u.ext3_i.i_data;
  25. return vfs_readlink(dentry, buffer, buflen, s);
  26. }
  27. static int ext3_follow_link(struct dentry *dentry, struct nameidata *nd)
  28. {
  29. char *s = (char *)dentry->d_inode->u.ext3_i.i_data;
  30. return vfs_follow_link(nd, s);
  31. }
  32. struct inode_operations ext3_fast_symlink_inode_operations = {
  33. readlink: ext3_readlink, /* BKL not held.  Don't need */
  34. follow_link: ext3_follow_link, /* BKL not held.  Don't need */
  35. };