Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Functions | Variables
file.c File Reference
#include <linux/time.h>
#include <linux/fs.h>
#include <linux/jbd2.h>
#include <linux/mount.h>
#include <linux/path.h>
#include <linux/quotaops.h>
#include "ext4.h"
#include "ext4_jbd2.h"
#include "xattr.h"
#include "acl.h"

Go to the source code of this file.

Functions

void ext4_unwritten_wait (struct inode *inode)
 
loff_t ext4_llseek (struct file *file, loff_t offset, int origin)
 

Variables

struct file_operations ext4_file_operations
 
struct inode_operations ext4_file_inode_operations
 

Function Documentation

loff_t ext4_llseek ( struct file file,
loff_t  offset,
int  origin 
)

Definition at line 293 of file file.c.

void ext4_unwritten_wait ( struct inode inode)

Definition at line 58 of file file.c.

Variable Documentation

struct inode_operations ext4_file_inode_operations
Initial value:
= {
.setattr = ext4_setattr,
.getattr = ext4_getattr,
.get_acl = ext4_get_acl,
.fiemap = ext4_fiemap,
}

Definition at line 326 of file file.c.

struct file_operations ext4_file_operations
Initial value:
= {
.llseek = ext4_llseek,
.read = do_sync_read,
.write = do_sync_write,
.aio_read = generic_file_aio_read,
.aio_write = ext4_file_write,
.unlocked_ioctl = ext4_ioctl,
.mmap = ext4_file_mmap,
.open = ext4_file_open,
.release = ext4_release_file,
.fsync = ext4_sync_file,
.splice_read = generic_file_splice_read,
.splice_write = generic_file_splice_write,
.fallocate = ext4_fallocate,
}

Definition at line 307 of file file.c.