aboutsummaryrefslogtreecommitdiffstats
path: root/fs/adfs/file.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /fs/adfs/file.c
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'fs/adfs/file.c')
-rw-r--r--fs/adfs/file.c43
1 files changed, 43 insertions, 0 deletions
diff --git a/fs/adfs/file.c b/fs/adfs/file.c
new file mode 100644
index 000000000000..afebbfde6968
--- /dev/null
+++ b/fs/adfs/file.c
@@ -0,0 +1,43 @@
1/*
2 * linux/fs/adfs/file.c
3 *
4 * Copyright (C) 1997-1999 Russell King
5 * from:
6 *
7 * linux/fs/ext2/file.c
8 *
9 * Copyright (C) 1992, 1993, 1994, 1995
10 * Remy Card (card@masi.ibp.fr)
11 * Laboratoire MASI - Institut Blaise Pascal
12 * Universite Pierre et Marie Curie (Paris VI)
13 *
14 * from
15 *
16 * linux/fs/minix/file.c
17 *
18 * Copyright (C) 1991, 1992 Linus Torvalds
19 *
20 * adfs regular file handling primitives
21 */
22#include <linux/errno.h>
23#include <linux/fs.h>
24#include <linux/fcntl.h>
25#include <linux/time.h>
26#include <linux/stat.h>
27#include <linux/buffer_head.h> /* for file_fsync() */
28#include <linux/adfs_fs.h>
29
30#include "adfs.h"
31
32struct file_operations adfs_file_operations = {
33 .llseek = generic_file_llseek,
34 .read = generic_file_read,
35 .mmap = generic_file_mmap,
36 .fsync = file_fsync,
37 .write = generic_file_write,
38 .sendfile = generic_file_sendfile,
39};
40
41struct inode_operations adfs_file_inode_operations = {
42 .setattr = adfs_notify_change,
43};