Release 4.7 fs/ext2/symlink.c
/*
* linux/fs/ext2/symlink.c
*
* Only fast symlinks left here - the rest is done by generic code. AV, 1999
*
* Copyright (C) 1992, 1993, 1994, 1995
* Remy Card (card@masi.ibp.fr)
* Laboratoire MASI - Institut Blaise Pascal
* Universite Pierre et Marie Curie (Paris VI)
*
* from
*
* linux/fs/minix/symlink.c
*
* Copyright (C) 1991, 1992 Linus Torvalds
*
* ext2 symlink handling code
*/
#include "ext2.h"
#include "xattr.h"
const struct inode_operations ext2_symlink_inode_operations = {
.readlink = generic_readlink,
.get_link = page_get_link,
.setattr = ext2_setattr,
#ifdef CONFIG_EXT2_FS_XATTR
.setxattr = generic_setxattr,
.getxattr = generic_getxattr,
.listxattr = ext2_listxattr,
.removexattr = generic_removexattr,
#endif
};
const struct inode_operations ext2_fast_symlink_inode_operations = {
.readlink = generic_readlink,
.get_link = simple_get_link,
.setattr = ext2_setattr,
#ifdef CONFIG_EXT2_FS_XATTR
.setxattr = generic_setxattr,
.getxattr = generic_getxattr,
.listxattr = ext2_listxattr,
.removexattr = generic_removexattr,
#endif
};
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
theodore tso | theodore tso | 48 | 46.60% | 1 | 9.09% |
james morris | james morris | 20 | 19.42% | 1 | 9.09% |
pre-git | pre-git | 11 | 10.68% | 3 | 27.27% |
dmitriy monakhov | dmitriy monakhov | 9 | 8.74% | 1 | 9.09% |
al viro | al viro | 8 | 7.77% | 2 | 18.18% |
andrew morton | andrew morton | 4 | 3.88% | 1 | 9.09% |
arjan van de ven | arjan van de ven | 2 | 1.94% | 1 | 9.09% |
linus torvalds | linus torvalds | 1 | 0.97% | 1 | 9.09% |
| Total | 103 | 100.00% | 11 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.