Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Mike Frysinger | e542059 | 2008-02-08 04:21:31 -0800 | [diff] [blame] | 28 | #include "ufs_fs.h" |
Christoph Hellwig | bcd6d4e | 2007-10-16 23:26:51 -0700 | [diff] [blame] | 29 | #include "ufs.h" |
| 30 | |
Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 31 | const struct inode_operations ufs_fast_symlink_inode_operations = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | .readlink = generic_readlink, |
Al Viro | 4b8061a | 2015-05-02 10:28:56 -0400 | [diff] [blame] | 33 | .follow_link = simple_follow_link, |
Dmitry Monakhov | 311b9549 | 2010-04-15 00:56:58 +0200 | [diff] [blame] | 34 | .setattr = ufs_setattr, |
| 35 | }; |
| 36 | |
| 37 | const struct inode_operations ufs_symlink_inode_operations = { |
| 38 | .readlink = generic_readlink, |
| 39 | .follow_link = page_follow_link_light, |
| 40 | .put_link = page_put_link, |
| 41 | .setattr = ufs_setattr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | }; |