Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Macros | Variables
file.c File Reference
#include <linux/fs.h>
#include <linux/buffer_head.h>
#include "bfs.h"

Go to the source code of this file.

Macros

#define dprintf(x...)
 

Variables

struct file_operations bfs_file_operations
 
struct address_space_operations bfs_aops
 
struct inode_operations bfs_file_inops
 

Macro Definition Documentation

#define dprintf (   x...)

Definition at line 21 of file file.c.

Variable Documentation

Initial value:
= {
.readpage = bfs_readpage,
.writepage = bfs_writepage,
.write_begin = bfs_write_begin,
.write_end = generic_write_end,
.bmap = bfs_bmap,
}

Definition at line 186 of file file.c.

struct inode_operations bfs_file_inops

Definition at line 194 of file file.c.

struct file_operations bfs_file_operations
Initial value:
= {
.read = do_sync_read,
.aio_read = generic_file_aio_read,
.write = do_sync_write,
.aio_write = generic_file_aio_write,
.splice_read = generic_file_splice_read,
}

Definition at line 24 of file file.c.