summaryrefslogtreecommitdiffstats
path: root/fs/sysv/file.c
blob: d68967b19c0232b56c7c9936d7915ef127b7d694 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
 *  linux/fs/sysv/file.c
 *
 *  minix/file.c
 *  Copyright (C) 1991, 1992  Linus Torvalds
 *
 *  coh/file.c
 *  Copyright (C) 1993  Pascal Haible, Bruno Haible
 *
 *  sysv/file.c
 *  Copyright (C) 1993  Bruno Haible
 *
 *  SystemV/Coherent regular file handling primitives
 */

#include <linux/fs.h>
#include <linux/sysv_fs.h>

/*
 * We have mostly NULLs here: the current defaults are OK for
 * the coh filesystem.
 */
struct file_operations sysv_file_operations = {
	read:		generic_file_read,
	write:		generic_file_write,
	mmap:		generic_file_mmap,
	fsync:		sysv_sync_file,
};

struct inode_operations sysv_file_inode_operations = {
	truncate:	sysv_truncate,
	setattr:	sysv_notify_change,
};