Linux Kernel
3.7.1
|
#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/mount.h>
#include <linux/statfs.h>
#include <linux/sysctl.h>
#include <linux/miscdevice.h>
#include "internal.h"
Go to the source code of this file.
Functions | |
module_param_named (debug, cachefiles_debug, uint, S_IWUSR|S_IRUGO) | |
MODULE_PARM_DESC (cachefiles_debug,"CacheFiles debugging mask") | |
MODULE_DESCRIPTION ("Mounted-filesystem based cache") | |
MODULE_AUTHOR ("Red Hat, Inc.") | |
MODULE_LICENSE ("GPL") | |
fs_initcall (cachefiles_init) | |
module_exit (cachefiles_exit) | |
Variables | |
unsigned | cachefiles_debug |
struct kmem_cache * | cachefiles_object_jar |
fs_initcall | ( | cachefiles_init | ) |
MODULE_AUTHOR | ( | "Red | Hat, |
Inc." | |||
) |
MODULE_DESCRIPTION | ( | "Mounted-filesystem based cache" | ) |
module_exit | ( | cachefiles_exit | ) |
MODULE_LICENSE | ( | "GPL" | ) |
module_param_named | ( | debug | , |
cachefiles_debug | , | ||
uint | , | ||
S_IWUSR| | S_IRUGO | ||
) |
MODULE_PARM_DESC | ( | cachefiles_debug | , |
"CacheFiles debugging mask" | |||
) |
struct kmem_cache* cachefiles_object_jar |