Linux Kernel
3.7.1
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Groups
Pages
fs
adfs
file.c
Go to the documentation of this file.
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 (
[email protected]
)
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 "
adfs.h
"
23
24
const
struct
file_operations
adfs_file_operations
= {
25
.llseek =
generic_file_llseek
,
26
.read =
do_sync_read
,
27
.aio_read =
generic_file_aio_read
,
28
.mmap =
generic_file_mmap
,
29
.fsync =
generic_file_fsync
,
30
.write =
do_sync_write
,
31
.aio_write =
generic_file_aio_write
,
32
.splice_read =
generic_file_splice_read
,
33
};
34
35
const
struct
inode_operations
adfs_file_inode_operations
= {
36
.setattr =
adfs_notify_change
,
37
};
Generated on Thu Jan 10 2013 13:09:18 for Linux Kernel by
1.8.2