cregit-Linux how code gets into the kernel

Release 4.10 fs/adfs/file.c

Directory: fs/adfs
/*
 *  linux/fs/adfs/file.c
 *
 * Copyright (C) 1997-1999 Russell King
 * from:
 *
 *  linux/fs/ext2/file.c
 *
 * 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/file.c
 *
 *  Copyright (C) 1991, 1992  Linus Torvalds
 *
 *  adfs regular file handling primitives           
 */
#include "adfs.h"


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


const struct inode_operations adfs_file_inode_operations = {
	.setattr	= adfs_notify_change,
};

Overall Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git2445.28%531.25%
russell kingrussell king1222.64%16.25%
al viroal viro47.55%212.50%
linus torvaldslinus torvalds35.66%16.25%
dave jonesdave jones23.77%16.25%
jens axboejens axboe23.77%16.25%
badari pulavartybadari pulavarty23.77%16.25%
arjan van de venarjan van de ven23.77%212.50%
christoph hellwigchristoph hellwig23.77%212.50%
Total53100.00%16100.00%
Directory: fs/adfs
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.