#include <linux/module.h>
#include <linux/init.h>
#include <linux/sched.h>
#include <linux/completion.h>
#include <linux/slab.h>
#include <linux/seq_file.h>
#include "internal.h"
Go to the source code of this file.
|
| MODULE_DESCRIPTION ("FS Cache Manager") |
|
| MODULE_AUTHOR ("Red Hat, Inc.") |
|
| MODULE_LICENSE ("GPL") |
|
| module_param_named (defer_lookup, fscache_defer_lookup, uint, S_IWUSR|S_IRUGO) |
|
| MODULE_PARM_DESC (fscache_defer_lookup,"Defer cookie lookup to background thread") |
|
| module_param_named (defer_create, fscache_defer_create, uint, S_IWUSR|S_IRUGO) |
|
| MODULE_PARM_DESC (fscache_defer_create,"Defer cookie creation to background thread") |
|
| module_param_named (debug, fscache_debug, uint, S_IWUSR|S_IRUGO) |
|
| MODULE_PARM_DESC (fscache_debug,"FS-Cache debugging mask") |
|
| DEFINE_PER_CPU (wait_queue_head_t, fscache_object_cong_wait) |
|
| fs_initcall (fscache_init) |
|
| module_exit (fscache_exit) |
|
int | fscache_wait_bit (void *flags) |
|
| EXPORT_SYMBOL (fscache_wait_bit) |
|
int | fscache_wait_bit_interruptible (void *flags) |
|
| EXPORT_SYMBOL (fscache_wait_bit_interruptible) |
|
#define FSCACHE_DEBUG_LEVEL CACHE |
fs_initcall |
( |
fscache_init |
| ) |
|
int fscache_wait_bit |
( |
void * |
flags | ) |
|
int fscache_wait_bit_interruptible |
( |
void * |
flags | ) |
|
MODULE_AUTHOR |
( |
"Red |
Hat, |
|
|
Inc." |
|
|
) |
| |
MODULE_DESCRIPTION |
( |
"FS Cache Manager" |
| ) |
|
module_exit |
( |
fscache_exit |
| ) |
|
unsigned fscache_defer_create = 1 |
unsigned fscache_defer_lookup = 1 |