cregit-Linux how code gets into the kernel

Release 4.7 fs/jffs2/symlink.c

Directory: fs/jffs2
/*
 * JFFS2 -- Journalling Flash File System, Version 2.
 *
 * Copyright © 2001-2007 Red Hat, Inc.
 *
 * Created by David Woodhouse <dwmw2@infradead.org>
 *
 * For licensing information, see the file 'LICENCE' in this directory.
 *
 */

#include "nodelist.h"


const struct inode_operations jffs2_symlink_inode_operations =
{
	.readlink =	generic_readlink,
	.get_link =	simple_get_link,
	.setattr =	jffs2_setattr,
	.setxattr =	jffs2_setxattr,
	.getxattr =	jffs2_getxattr,
	.listxattr =	jffs2_listxattr,
	.removexattr =	jffs2_removexattr
};

Overall Contributors

PersonTokensPropCommitsCommitProp
kaigai koheikaigai kohei2043.48%114.29%
linus torvaldslinus torvalds1328.26%114.29%
david woodhousedavid woodhouse715.22%228.57%
al viroal viro510.87%228.57%
arjan van de venarjan van de ven12.17%114.29%
Total46100.00%7100.00%
Directory: fs/jffs2
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}