The patch titled lowmemorykiller: fix build error to move oom_adj has been removed from the -mm tree. Its filename was oom-move-oom_adj-value-from-task_struct-to-signal_struct-fix.patch This patch was dropped because other changes were merged, which wrecked this patch The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: lowmemorykiller: fix build error to move oom_adj From: KOSAKI Motohiro <kosaki.motohiro@xxxxxxxxxxxxxx> Recently, oom_adj moved from task_struct to signal_struct. Then, the oom_adj treating code in android driver also should be changed. Signed-off-by: KOSAKI Motohiro <kosaki.motohiro@xxxxxxxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/staging/android/lowmemorykiller.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/staging/android/lowmemorykiller.c~oom-move-oom_adj-value-from-task_struct-to-signal_struct-fix drivers/staging/android/lowmemorykiller.c --- a/drivers/staging/android/lowmemorykiller.c~oom-move-oom_adj-value-from-task_struct-to-signal_struct-fix +++ a/drivers/staging/android/lowmemorykiller.c @@ -106,7 +106,7 @@ static int lowmem_shrink(int nr_to_scan, task_unlock(p); continue; } - oom_adj = p->oomkilladj; + oom_adj = p->signal->oom_adj; if (oom_adj < min_adj) { task_unlock(p); continue; _ Patches currently in -mm which might be from kosaki.motohiro@xxxxxxxxxxxxxx are linux-next.patch oom-move-oom_adj-value-from-task_struct-to-signal_struct-fix.patch readahead-add-blk_run_backing_dev.patch mm-vsmcan-check-shrink_active_list-sc-isolate_pages-return-value.patch fs-symlink-write_begin-allocation-context-fix-reiser4-fix.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html