blob: 45fc79a18594f1a21f9f5234c280187557ae720a [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/sysv/file.c
4 *
5 * minix/file.c
6 * Copyright (C) 1991, 1992 Linus Torvalds
7 *
8 * coh/file.c
9 * Copyright (C) 1993 Pascal Haible, Bruno Haible
10 *
11 * sysv/file.c
12 * Copyright (C) 1993 Bruno Haible
13 *
14 * SystemV/Coherent regular file handling primitives
15 */
16
17#include "sysv.h"
18
19/*
20 * We have mostly NULLs here: the current defaults are OK for
21 * the coh filesystem.
22 */
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080023const struct file_operations sysv_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 .llseek = generic_file_llseek,
Al Viroaad4f8b2014-04-02 14:33:16 -040025 .read_iter = generic_file_read_iter,
Al Viro81742022014-04-03 03:17:43 -040026 .write_iter = generic_file_write_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 .mmap = generic_file_mmap,
Christoph Hellwig1b061d92010-05-26 17:53:41 +020028 .fsync = generic_file_fsync,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +020029 .splice_read = generic_file_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -070030};
31
Christoph Hellwigd39aae92010-06-04 11:29:59 +020032static int sysv_setattr(struct dentry *dentry, struct iattr *attr)
33{
David Howells2b0143b2015-03-17 22:25:59 +000034 struct inode *inode = d_inode(dentry);
Christoph Hellwigd39aae92010-06-04 11:29:59 +020035 int error;
36
Jan Kara31051c82016-05-26 16:55:18 +020037 error = setattr_prepare(dentry, attr);
Christoph Hellwigd39aae92010-06-04 11:29:59 +020038 if (error)
39 return error;
Christoph Hellwig10257742010-06-04 11:30:02 +020040
41 if ((attr->ia_valid & ATTR_SIZE) &&
42 attr->ia_size != i_size_read(inode)) {
Marco Stornellifa4d62a2012-12-15 11:45:58 +010043 error = inode_newsize_ok(inode, attr->ia_size);
Christoph Hellwig10257742010-06-04 11:30:02 +020044 if (error)
45 return error;
Marco Stornellifa4d62a2012-12-15 11:45:58 +010046 truncate_setsize(inode, attr->ia_size);
47 sysv_truncate(inode);
Christoph Hellwig10257742010-06-04 11:30:02 +020048 }
49
50 setattr_copy(inode, attr);
51 mark_inode_dirty(inode);
52 return 0;
Christoph Hellwigd39aae92010-06-04 11:29:59 +020053}
54
Arjan van de Venc5ef1c42007-02-12 00:55:40 -080055const struct inode_operations sysv_file_inode_operations = {
Christoph Hellwigd39aae92010-06-04 11:29:59 +020056 .setattr = sysv_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 .getattr = sysv_getattr,
58};