aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorMarco Navarra <fromenglish@gmail.com>2011-12-22 13:28:23 +0100
committerSimon Shields <keepcalm444@gmail.com>2016-06-13 14:47:33 +1000
commitfa24b26d017dc88a9b1956dab2ed898e4d4f17ad (patch)
tree5e1028a12d5c8ba62dda260a391b5aefeaecbdcd /drivers
parent27173842294abf228b58ccc011025cacb7639c8d (diff)
downloadkernel_samsung_smdk4412-fa24b26d017dc88a9b1956dab2ed898e4d4f17ad.tar.gz
kernel_samsung_smdk4412-fa24b26d017dc88a9b1956dab2ed898e4d4f17ad.tar.bz2
kernel_samsung_smdk4412-fa24b26d017dc88a9b1956dab2ed898e4d4f17ad.zip
Staging: android: fixed 80 characters warnings in lowmemorykiller.c
This patch fixes some 80 chatacters limit warnings in the lowmemorykiller.c file Signed-off-by: Marco Navarra <fromenglish@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/staging/android/lowmemorykiller.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/staging/android/lowmemorykiller.c b/drivers/staging/android/lowmemorykiller.c
index d412581d8a3..fa3f5217745 100644
--- a/drivers/staging/android/lowmemorykiller.c
+++ b/drivers/staging/android/lowmemorykiller.c
@@ -7,10 +7,10 @@
* files take a comma separated list of numbers in ascending order.
*
* For example, write "0,8" to /sys/module/lowmemorykiller/parameters/adj and
- * "1024,4096" to /sys/module/lowmemorykiller/parameters/minfree to kill processes
- * with a oom_adj value of 8 or higher when the free memory drops below 4096 pages
- * and kill processes with a oom_adj value of 0 or higher when the free memory
- * drops below 1024 pages.
+ * "1024,4096" to /sys/module/lowmemorykiller/parameters/minfree to kill
+ * processes with a oom_adj value of 8 or higher when the free memory drops
+ * below 4096 pages and kill processes with a oom_adj value of 0 or higher
+ * when the free memory drops below 1024 pages.
*
* The driver considers memory used for caches to be free, but if a large
* percentage of the cached memory is locked this can be very inaccurate
@@ -159,8 +159,8 @@ static int lowmem_shrink(struct shrinker *s, struct shrink_control *sc)
}
if (sc->nr_to_scan > 0)
lowmem_print(3, "lowmem_shrink %lu, %x, ofree %d %d, ma %d\n",
- sc->nr_to_scan, sc->gfp_mask, other_free, other_file,
- min_adj);
+ sc->nr_to_scan, sc->gfp_mask, other_free,
+ other_file, min_adj);
rem = global_page_state(NR_ACTIVE_ANON) +
global_page_state(NR_ACTIVE_FILE) +
global_page_state(NR_INACTIVE_ANON) +