Staging: android: lowmemorykiller: fix up remaining checkpatch warnings
This cleans up the last of the checkpatch warnings in the android lowmemorykiller driver. Cc: San Mehat <san@android.com> Cc: Arve Hjønnevåg <arve@android.com> Cc: David Rientjes <rientjes@google.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
@@ -34,18 +34,24 @@ static int lowmem_adj[6] = {
|
|||||||
};
|
};
|
||||||
static int lowmem_adj_size = 4;
|
static int lowmem_adj_size = 4;
|
||||||
static size_t lowmem_minfree[6] = {
|
static size_t lowmem_minfree[6] = {
|
||||||
3*512, // 6MB
|
3 * 512, /* 6MB */
|
||||||
2*1024, // 8MB
|
2 * 1024, /* 8MB */
|
||||||
4*1024, // 16MB
|
4 * 1024, /* 16MB */
|
||||||
16*1024, // 64MB
|
16 * 1024, /* 64MB */
|
||||||
};
|
};
|
||||||
static int lowmem_minfree_size = 4;
|
static int lowmem_minfree_size = 4;
|
||||||
|
|
||||||
#define lowmem_print(level, x...) do { if(lowmem_debug_level >= (level)) printk(x); } while(0)
|
#define lowmem_print(level, x...) \
|
||||||
|
do { \
|
||||||
|
if (lowmem_debug_level >= (level)) \
|
||||||
|
printk(x); \
|
||||||
|
} while (0)
|
||||||
|
|
||||||
module_param_named(cost, lowmem_shrinker.seeks, int, S_IRUGO | S_IWUSR);
|
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(adj, lowmem_adj, int, &lowmem_adj_size,
|
||||||
module_param_array_named(minfree, lowmem_minfree, uint, &lowmem_minfree_size, S_IRUGO | S_IWUSR);
|
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_param_named(debug_level, lowmem_debug_level, uint, S_IRUGO | S_IWUSR);
|
||||||
|
|
||||||
static int lowmem_shrink(int nr_to_scan, gfp_t gfp_mask)
|
static int lowmem_shrink(int nr_to_scan, gfp_t gfp_mask)
|
||||||
|
Reference in New Issue
Block a user