Contributors: 18
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Christoph Hellwig |
68 |
36.96% |
5 |
11.63% |
Linus Torvalds (pre-git) |
29 |
15.76% |
9 |
20.93% |
Linus Torvalds |
14 |
7.61% |
4 |
9.30% |
Evgeniy Dushistov |
14 |
7.61% |
1 |
2.33% |
Art Haas |
12 |
6.52% |
1 |
2.33% |
Christian Brauner |
11 |
5.98% |
3 |
6.98% |
Al Viro |
7 |
3.80% |
4 |
9.30% |
Marco Stornelli |
7 |
3.80% |
1 |
2.33% |
Andrew Morton |
7 |
3.80% |
4 |
9.30% |
David Howells |
4 |
2.17% |
2 |
4.65% |
Jan Kara |
2 |
1.09% |
1 |
2.33% |
Arjan van de Ven |
2 |
1.09% |
2 |
4.65% |
Badari Pulavarty |
2 |
1.09% |
1 |
2.33% |
Nicholas Piggin |
1 |
0.54% |
1 |
2.33% |
Neil Brown |
1 |
0.54% |
1 |
2.33% |
Greg Kroah-Hartman |
1 |
0.54% |
1 |
2.33% |
Jens Axboe |
1 |
0.54% |
1 |
2.33% |
Dave Hansen |
1 |
0.54% |
1 |
2.33% |
Total |
184 |
|
43 |
|
// SPDX-License-Identifier: GPL-2.0
/*
* 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 = filemap_splice_read,
};
static int minix_setattr(struct mnt_idmap *idmap,
struct dentry *dentry, struct iattr *attr)
{
struct inode *inode = d_inode(dentry);
int error;
error = setattr_prepare(&nop_mnt_idmap, dentry, 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(&nop_mnt_idmap, inode, attr);
mark_inode_dirty(inode);
return 0;
}
const struct inode_operations minix_file_inode_operations = {
.setattr = minix_setattr,
.getattr = minix_getattr,
};