cregit-Linux how code gets into the kernel

Release 4.7 fs/minix/file.c

Directory: fs/minix
/*
 *  linux/fs/minix/file.c
 *
 *  Copyright (C) 1991, 1992 Linus Torvalds
 *
 *  minix regular file handling primitives
 */

#include "minix.h"

/*
 * We have mostly NULLs here: the current defaults are OK for
 * the minix filesystem.
 */

const struct file_operations minix_file_operations = {
	.llseek		= generic_file_llseek,
	.read_iter	= generic_file_read_iter,
	.write_iter	= generic_file_write_iter,
	.mmap		= generic_file_mmap,
	.fsync		= generic_file_fsync,
	.splice_read	= generic_file_splice_read,
};


static int minix_setattr(struct dentry *dentry, struct iattr *attr) { struct inode *inode = d_inode(dentry); int error; error = inode_change_ok(inode, attr); if (error) return error; if ((attr->ia_valid & ATTR_SIZE) && attr->ia_size != i_size_read(inode)) { error = inode_newsize_ok(inode, attr->ia_size); if (error) return error; truncate_setsize(inode, attr->ia_size); minix_truncate(inode); } setattr_copy(inode, attr); mark_inode_dirty(inode); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
christoph hellwigchristoph hellwig9584.07%250.00%
marco stornellimarco stornelli1513.27%125.00%
david howellsdavid howells32.65%125.00%
Total113100.00%4100.00%

const struct inode_operations minix_file_inode_operations = { .setattr = minix_setattr, .getattr = minix_getattr, };

Overall Contributors

PersonTokensPropCommitsCommitProp
christoph hellwigchristoph hellwig10259.30%417.39%
pre-gitpre-git2413.95%730.43%
marco stornellimarco stornelli158.72%14.35%
art haasart haas126.98%14.35%
al viroal viro74.07%417.39%
david howellsdavid howells31.74%14.35%
linus torvaldslinus torvalds31.74%14.35%
badari pulavartybadari pulavarty21.16%14.35%
arjan van de venarjan van de ven21.16%28.70%
jens axboejens axboe21.16%14.35%
Total172100.00%23100.00%
Directory: fs/minix
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}