Commit 23687af9 authored by Corentin Chary's avatar Corentin Chary Committed by Greg Kroah-Hartman

staging/android: fix build issues

Signed-off-by: default avatarCorentin Chary <corentincj@iksaif.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 355b0502
......@@ -17,6 +17,7 @@
* GNU General Public License for more details.
*/
#include <linux/sched.h>
#include <linux/module.h>
#include <linux/fs.h>
#include <linux/miscdevice.h>
......
......@@ -100,15 +100,17 @@ static int lowmem_shrink(int nr_to_scan, gfp_t gfp_mask)
read_lock(&tasklist_lock);
for_each_process(p) {
struct mm_struct *mm;
struct signal_struct *sig;
int oom_adj;
task_lock(p);
mm = p->mm;
if (!mm) {
sig = p->signal;
if (!mm || !sig) {
task_unlock(p);
continue;
}
oom_adj = mm->oom_adj;
oom_adj = sig->oom_adj;
if (oom_adj < min_adj) {
task_unlock(p);
continue;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment