mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 14:42:37 +02:00
ANDROID: lowmemorykiller: fix declaration order warnings
drivers/staging/android/lowmemorykiller.c: In function ‘lowmem_scan’: drivers/staging/android/lowmemorykiller.c:174:3: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement] Change-Id: I9de6cf2c374bc43131725a7ed666a033a4449ea9 Signed-off-by: Brian Norris <briannorris@google.com>
This commit is contained in:
parent
4f27b251f2
commit
2e9117dd33
|
|
@ -161,6 +161,10 @@ static unsigned long lowmem_scan(struct shrinker *s, struct shrink_control *sc)
|
|||
p->comm, p->pid, oom_score_adj, tasksize);
|
||||
}
|
||||
if (selected) {
|
||||
long cache_size = other_file * (long)(PAGE_SIZE / 1024);
|
||||
long cache_limit = minfree * (long)(PAGE_SIZE / 1024);
|
||||
long free = other_free * (long)(PAGE_SIZE / 1024);
|
||||
|
||||
task_lock(selected);
|
||||
send_sig(SIGKILL, selected, 0);
|
||||
/*
|
||||
|
|
@ -171,9 +175,6 @@ static unsigned long lowmem_scan(struct shrinker *s, struct shrink_control *sc)
|
|||
if (selected->mm)
|
||||
mark_oom_victim(selected);
|
||||
task_unlock(selected);
|
||||
long cache_size = other_file * (long)(PAGE_SIZE / 1024);
|
||||
long cache_limit = minfree * (long)(PAGE_SIZE / 1024);
|
||||
long free = other_free * (long)(PAGE_SIZE / 1024);
|
||||
trace_lowmemory_kill(selected, cache_size, cache_limit, free);
|
||||
lowmem_print(1, "Killing '%s' (%d), adj %hd,\n" \
|
||||
" to free %ldkB on behalf of '%s' (%d) because\n" \
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user