2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* linux/fs/adfs/file.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 1997-1999 Russell King
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
* adfs regular file handling primitives
|
|
|
|
*/
|
|
|
|
#include "adfs.h"
|
|
|
|
|
2006-03-28 09:56:42 +00:00
|
|
|
const struct file_operations adfs_file_operations = {
|
2005-04-16 22:20:36 +00:00
|
|
|
.llseek = generic_file_llseek,
|
2006-10-01 06:28:48 +00:00
|
|
|
.read = do_sync_read,
|
|
|
|
.aio_read = generic_file_aio_read,
|
2005-04-16 22:20:36 +00:00
|
|
|
.mmap = generic_file_mmap,
|
2010-05-26 15:53:41 +00:00
|
|
|
.fsync = generic_file_fsync,
|
2006-10-01 06:28:48 +00:00
|
|
|
.write = do_sync_write,
|
|
|
|
.aio_write = generic_file_aio_write,
|
2007-06-01 09:49:19 +00:00
|
|
|
.splice_read = generic_file_splice_read,
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
2007-02-12 08:55:38 +00:00
|
|
|
const struct inode_operations adfs_file_inode_operations = {
|
2005-04-16 22:20:36 +00:00
|
|
|
.setattr = adfs_notify_change,
|
|
|
|
};
|