symlink.c (617ba13b31fbf505cc21799826639ef24ed94af0) | symlink.c (dab291af8d6307a3075c3d67d0cc8f98e646cb94) |
---|---|
1/* 2 * linux/fs/ext4/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 --- 4 unchanged lines hidden (view full) --- 13 * linux/fs/minix/symlink.c 14 * 15 * Copyright (C) 1991, 1992 Linus Torvalds 16 * 17 * ext4 symlink handling code 18 */ 19 20#include <linux/fs.h> | 1/* 2 * linux/fs/ext4/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 --- 4 unchanged lines hidden (view full) --- 13 * linux/fs/minix/symlink.c 14 * 15 * Copyright (C) 1991, 1992 Linus Torvalds 16 * 17 * ext4 symlink handling code 18 */ 19 20#include <linux/fs.h> |
21#include <linux/jbd.h> | 21#include <linux/jbd2.h> |
22#include <linux/ext4_fs.h> 23#include <linux/namei.h> 24#include "xattr.h" 25 26static void * ext4_follow_link(struct dentry *dentry, struct nameidata *nd) 27{ 28 struct ext4_inode_info *ei = EXT4_I(dentry->d_inode); 29 nd_set_link(nd, (char*)ei->i_data); --- 25 unchanged lines hidden --- | 22#include <linux/ext4_fs.h> 23#include <linux/namei.h> 24#include "xattr.h" 25 26static void * ext4_follow_link(struct dentry *dentry, struct nameidata *nd) 27{ 28 struct ext4_inode_info *ei = EXT4_I(dentry->d_inode); 29 nd_set_link(nd, (char*)ei->i_data); --- 25 unchanged lines hidden --- |