2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* linux/fs/ufs/file.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 1998
|
|
|
|
* Daniel Pirkl <daniel.pirkl@email.cz>
|
|
|
|
* Charles University, Faculty of Mathematics and Physics
|
|
|
|
*
|
|
|
|
* from
|
|
|
|
*
|
|
|
|
* linux/fs/ext2/file.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 1992, 1993, 1994, 1995
|
|
|
|
* Remy Card (card@masi.ibp.fr)
|
|
|
|
* Laboratoire MASI - Institut Blaise Pascal
|
|
|
|
* Universite Pierre et Marie Curie (Paris VI)
|
|
|
|
*
|
|
|
|
* from
|
|
|
|
*
|
|
|
|
* linux/fs/minix/file.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 1991, 1992 Linus Torvalds
|
|
|
|
*
|
|
|
|
* ext2 fs regular file handling primitives
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/fs.h>
|
2006-06-25 14:47:30 +02:00
|
|
|
|
2008-02-08 13:21:31 +01:00
|
|
|
#include "ufs_fs.h"
|
2007-10-17 08:26:51 +02:00
|
|
|
#include "ufs.h"
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* We have mostly NULL's here: the current defaults are ok for
|
|
|
|
* the ufs filesystem.
|
|
|
|
*/
|
|
|
|
|
2006-03-28 11:56:42 +02:00
|
|
|
const struct file_operations ufs_file_operations = {
|
2005-04-17 00:20:36 +02:00
|
|
|
.llseek = generic_file_llseek,
|
2006-10-01 08:28:48 +02:00
|
|
|
.read = do_sync_read,
|
|
|
|
.aio_read = generic_file_aio_read,
|
|
|
|
.write = do_sync_write,
|
|
|
|
.aio_write = generic_file_aio_write,
|
2005-04-17 00:20:36 +02:00
|
|
|
.mmap = generic_file_mmap,
|
2010-05-20 16:00:36 +02:00
|
|
|
.open = generic_file_open,
|
2010-05-26 17:53:41 +02:00
|
|
|
.fsync = generic_file_fsync,
|
2007-06-01 11:49:19 +02:00
|
|
|
.splice_read = generic_file_splice_read,
|
2005-04-17 00:20:36 +02:00
|
|
|
};
|