The patch titled m68knommu: use TRHEAD_SIZE instead of hard constant has been removed from the -mm tree. Its filename was m68knommu-use-trhead_size-instead-of-hard-constant.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: m68knommu: use TRHEAD_SIZE instead of hard constant From: Greg Ungerer <gerg@xxxxxxxxxxxx> Use THREAD_SIZE instead of a hard constant. Signed-off-by: Philippe De Muyter <phdm@xxxxxxxxx> Signed-off-by: Greg Ungerer <gerg@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/m68knommu/kernel/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/m68knommu/kernel/process.c~m68knommu-use-trhead_size-instead-of-hard-constant arch/m68knommu/kernel/process.c --- a/arch/m68knommu/kernel/process.c~m68knommu-use-trhead_size-instead-of-hard-constant +++ a/arch/m68knommu/kernel/process.c @@ -377,7 +377,7 @@ unsigned long get_wchan(struct task_stru fp = ((struct switch_stack *)p->thread.ksp)->a6; do { if (fp < stack_page+sizeof(struct thread_info) || - fp >= 8184+stack_page) + fp >= THREAD_SIZE-8+stack_page) return 0; pc = ((unsigned long *)fp)[1]; if (!in_sched_functions(pc)) _ Patches currently in -mm which might be from gerg@xxxxxxxxxxxx are origin.patch git-mtd.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