From e806271916ed6068a0e3e4e9298dff0688b88e0d Mon Sep 17 00:00:00 2001 From: Boaz Harrosh Date: Mon, 27 Oct 2008 18:37:02 +0200 Subject: 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 --- fs/exofs/Kbuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fs/exofs/Kbuild') 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 @@ # Kbuild - Gets included from the Kernels Makefile and build system # -exofs-y := osd.o +exofs-y := osd.o inode.o file.o obj-$(CONFIG_EXOFS_FS) += exofs.o -- cgit