2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* linux/fs/minix/file.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 1991, 1992 Linus Torvalds
|
|
|
|
*
|
|
|
|
* minix regular file handling primitives
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/buffer_head.h> /* for fsync_inode_buffers() */
|
|
|
|
#include "minix.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We have mostly NULLs here: the current defaults are OK for
|
|
|
|
* the minix filesystem.
|
|
|
|
*/
|
|
|
|
int minix_sync_file(struct file *, struct dentry *, int);
|
|
|
|
|
2006-03-28 09:56:42 +00:00
|
|
|
const struct file_operations minix_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,
|
|
|
|
.write = do_sync_write,
|
|
|
|
.aio_write = generic_file_aio_write,
|
2005-04-16 22:20:36 +00:00
|
|
|
.mmap = generic_file_mmap,
|
|
|
|
.fsync = minix_sync_file,
|
|
|
|
.sendfile = generic_file_sendfile,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct inode_operations minix_file_inode_operations = {
|
|
|
|
.truncate = minix_truncate,
|
|
|
|
.getattr = minix_getattr,
|
|
|
|
};
|
|
|
|
|
|
|
|
int minix_sync_file(struct file * file, struct dentry *dentry, int datasync)
|
|
|
|
{
|
|
|
|
struct inode *inode = dentry->d_inode;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err = sync_mapping_buffers(inode->i_mapping);
|
|
|
|
if (!(inode->i_state & I_DIRTY))
|
|
|
|
return err;
|
|
|
|
if (datasync && !(inode->i_state & I_DIRTY_DATASYNC))
|
|
|
|
return err;
|
|
|
|
|
|
|
|
err |= minix_sync_inode(inode);
|
|
|
|
return err ? -EIO : 0;
|
|
|
|
}
|