Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Functions | Variables
daemon.c File Reference
#include <linux/module.h>
#include <linux/init.h>
#include <linux/sched.h>
#include <linux/completion.h>
#include <linux/slab.h>
#include <linux/fs.h>
#include <linux/file.h>
#include <linux/namei.h>
#include <linux/poll.h>
#include <linux/mount.h>
#include <linux/statfs.h>
#include <linux/ctype.h>
#include <linux/string.h>
#include <linux/fs_struct.h>
#include "internal.h"

Go to the source code of this file.

Data Structures

struct  cachefiles_daemon_cmd
 

Functions

int cachefiles_has_space (struct cachefiles_cache *cache, unsigned fnr, unsigned bnr)
 

Variables

struct file_operations cachefiles_daemon_fops
 

Function Documentation

int cachefiles_has_space ( struct cachefiles_cache cache,
unsigned  fnr,
unsigned  bnr 
)

Definition at line 675 of file daemon.c.

Variable Documentation

struct file_operations cachefiles_daemon_fops
Initial value:
= {
.owner = THIS_MODULE,
.open = cachefiles_daemon_open,
.release = cachefiles_daemon_release,
.read = cachefiles_daemon_read,
.write = cachefiles_daemon_write,
.poll = cachefiles_daemon_poll,
.llseek = noop_llseek,
}

Definition at line 51 of file daemon.c.