The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/fs/ext3/symlink.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    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 
   20 #include <linux/fs.h>
   21 #include <linux/jbd.h>
   22 #include <linux/ext3_fs.h>
   23 
   24 static int ext3_readlink(struct dentry *dentry, char *buffer, int buflen)
   25 {
   26         char *s = (char *)dentry->d_inode->u.ext3_i.i_data;
   27         return vfs_readlink(dentry, buffer, buflen, s);
   28 }
   29 
   30 static int ext3_follow_link(struct dentry *dentry, struct nameidata *nd)
   31 {
   32         char *s = (char *)dentry->d_inode->u.ext3_i.i_data;
   33         return vfs_follow_link(nd, s);
   34 }
   35 
   36 struct inode_operations ext3_fast_symlink_inode_operations = {
   37         readlink:       ext3_readlink,          /* BKL not held.  Don't need */
   38         follow_link:    ext3_follow_link,       /* BKL not held.  Don't need */
   39 };

Cache object: 5e30e918dac3150c60ce1deec8c2d13b


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.