#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/mm.h>
#include <linux/oom.h>
#include <linux/sched.h>
#include <linux/rcupdate.h>
#include <linux/profile.h>
#include <linux/notifier.h>
Go to the source code of this file.
|
| module_param_named (cost, lowmem_shrinker.seeks, int, S_IRUGO|S_IWUSR) |
|
| module_param_array_named (adj, lowmem_adj, int,&lowmem_adj_size, S_IRUGO|S_IWUSR) |
|
| module_param_array_named (minfree, lowmem_minfree, uint,&lowmem_minfree_size, S_IRUGO|S_IWUSR) |
|
| module_param_named (debug_level, lowmem_debug_level, uint, S_IRUGO|S_IWUSR) |
|
| module_init (lowmem_init) |
|
| module_exit (lowmem_exit) |
|
| MODULE_LICENSE ("GPL") |
|
#define lowmem_print |
( |
|
level, |
|
|
|
x... |
|
) |
| |
module_exit |
( |
lowmem_exit |
| ) |
|
module_init |
( |
lowmem_init |
| ) |
|
module_param_array_named |
( |
adj |
, |
|
|
lowmem_adj |
, |
|
|
int |
, |
|
|
& |
lowmem_adj_size, |
|
|
S_IRUGO| |
S_IWUSR |
|
) |
| |
module_param_array_named |
( |
minfree |
, |
|
|
lowmem_minfree |
, |
|
|
uint |
, |
|
|
& |
lowmem_minfree_size, |
|
|
S_IRUGO| |
S_IWUSR |
|
) |
| |
module_param_named |
( |
cost |
, |
|
|
lowmem_shrinker. |
seeks, |
|
|
int |
, |
|
|
S_IRUGO| |
S_IWUSR |
|
) |
| |
module_param_named |
( |
debug_level |
, |
|
|
lowmem_debug_level |
, |
|
|
uint |
, |
|
|
S_IRUGO| |
S_IWUSR |
|
) |
| |