diff options
author | Boaz Harrosh <bharrosh@panasas.com> | 2008-10-27 12:37:02 -0400 |
---|---|---|
committer | Boaz Harrosh <bharrosh@panasas.com> | 2009-03-31 12:44:24 -0400 |
commit | e806271916ed6068a0e3e4e9298dff0688b88e0d (patch) | |
tree | 53669f4a55fecd82d289c035712d416e5b8dce35 /fs/exofs/Kbuild | |
parent | b14f8ab2844987f013253dd04b708bde7fc1b52d (diff) |
exofs: file and file_inode operations
implementation of the file_operations and inode_operations for
regular data files.
Most file_operations are generic vfs implementations except:
- exofs_truncate will truncate the OSD object as well
- Generic file_fsync is not good for none_bd devices so open code it
- The default for .flush in Linux is todo nothing so call exofs_fsync
on the file.
Signed-off-by: Boaz Harrosh <bharrosh@panasas.com>
Diffstat (limited to 'fs/exofs/Kbuild')
-rw-r--r-- | fs/exofs/Kbuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/exofs/Kbuild b/fs/exofs/Kbuild index 36d23ca79a58..c9546edaddeb 100644 --- a/fs/exofs/Kbuild +++ b/fs/exofs/Kbuild | |||
@@ -12,5 +12,5 @@ | |||
12 | # Kbuild - Gets included from the Kernels Makefile and build system | 12 | # Kbuild - Gets included from the Kernels Makefile and build system |
13 | # | 13 | # |
14 | 14 | ||
15 | exofs-y := osd.o | 15 | exofs-y := osd.o inode.o file.o |
16 | obj-$(CONFIG_EXOFS_FS) += exofs.o | 16 | obj-$(CONFIG_EXOFS_FS) += exofs.o |