The patch titled Subject: frv: delete incorrect task prototypes causing compile fail has been removed from the -mm tree. Its filename was frv-delete-incorrect-task-prototypes-causing-compile-fail.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ From: Paul Gortmaker <paul.gortmaker@xxxxxxxxxxxxx> Subject: frv: delete incorrect task prototypes causing compile fail Commit 41101809 ("fork: Provide weak arch_release_[task_struct|thread_info] functions") highlights a problem in the frv arch, where it has needles prototypes for alloc_task_struct_node and free_task_struct. This now shows up as: kernel/fork.c:120:66: error: static declaration of 'alloc_task_struct_node' follows non-static declaration kernel/fork.c:127:51: error: static declaration of 'free_task_struct' follows non-static declaration since 41101809 turned them into real functions. Since arch/frv does does not define define __HAVE_ARCH_TASK_STRUCT_ALLOCATOR (i.e. it just uses the generic ones) it shouldn't list these at all. Signed-off-by: Paul Gortmaker <paul.gortmaker@xxxxxxxxxxxxx> Cc: David Howells <dhowells@xxxxxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/frv/include/asm/processor.h | 4 ---- 1 file changed, 4 deletions(-) diff -puN arch/frv/include/asm/processor.h~frv-delete-incorrect-task-prototypes-causing-compile-fail arch/frv/include/asm/processor.h --- a/arch/frv/include/asm/processor.h~frv-delete-incorrect-task-prototypes-causing-compile-fail +++ a/arch/frv/include/asm/processor.h @@ -135,10 +135,6 @@ unsigned long get_wchan(struct task_stru #define KSTK_EIP(tsk) ((tsk)->thread.frame0->pc) #define KSTK_ESP(tsk) ((tsk)->thread.frame0->sp) -/* Allocation and freeing of basic task resources. */ -extern struct task_struct *alloc_task_struct_node(int node); -extern void free_task_struct(struct task_struct *p); - #define cpu_relax() barrier() /* data cache prefetch */ _ Patches currently in -mm which might be from paul.gortmaker@xxxxxxxxxxxxx are origin.patch linux-next.patch pagemaph-fix-warning-about-possibly-used-before-init-var.patch time-dont-inline-export_symbol-functions.patch locking-add-kern_cont-when-needed-to-self-test.patch sethostname-setdomainname-notify-userspace-when-there-is-a-change-in-uts_kern_table.patch rapidio-add-dma-engine-support-for-rio-data-transfers.patch rapidio-tsi721-add-dma-engine-support.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