1 /*
2 * linux/fs/sysv/file.c
3 *
4 * minix/file.c
5 * Copyright (C) 1991, 1992 Linus Torvalds
6 *
7 * coh/file.c
8 * Copyright (C) 1993 Pascal Haible, Bruno Haible
9 *
10 * sysv/file.c
11 * Copyright (C) 1993 Bruno Haible
12 *
13 * SystemV/Coherent regular file handling primitives
14 */
15
16 #include <linux/fs.h>
17 #include <linux/sysv_fs.h>
18
19 /*
20 * We have mostly NULLs here: the current defaults are OK for
21 * the coh filesystem.
22 */
23 struct file_operations sysv_file_operations = {
24 read: generic_file_read,
25 write: generic_file_write,
26 mmap: generic_file_mmap,
27 fsync: sysv_sync_file,
28 };
29
30 struct inode_operations sysv_file_inode_operations = {
31 truncate: sysv_truncate,
32 setattr: sysv_notify_change,
33 };
34
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.