The patch titled Subject: m32r: use generic current.h has been added to the -mm tree. Its filename is m32r-use-generic-currenth.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/m32r-use-generic-currenth.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/m32r-use-generic-currenth.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Davidlohr Bueso <dave@xxxxxxxxxxxx> Subject: m32r: use generic current.h Given that the arch does not add its own implementations, simply use the asm-generic/current.h (generic-y) header instead of duplicating code. Link: http://lkml.kernel.org/r/1482896994-25863-1-git-send-email-dave@xxxxxxxxxxxx Signed-off-by: Davidlohr Bueso <dbueso@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/m32r/include/asm/Kbuild | 1 + arch/m32r/include/asm/current.h | 15 --------------- 2 files changed, 1 insertion(+), 15 deletions(-) diff -puN arch/m32r/include/asm/Kbuild~m32r-use-generic-currenth arch/m32r/include/asm/Kbuild --- a/arch/m32r/include/asm/Kbuild~m32r-use-generic-currenth +++ a/arch/m32r/include/asm/Kbuild @@ -1,6 +1,7 @@ generic-y += clkdev.h generic-y += cputime.h +generic-y += current.h generic-y += exec.h generic-y += irq_work.h generic-y += kvm_para.h diff -puN arch/m32r/include/asm/current.h~m32r-use-generic-currenth /dev/null --- a/arch/m32r/include/asm/current.h +++ /dev/null @@ -1,15 +0,0 @@ -#ifndef _ASM_M32R_CURRENT_H -#define _ASM_M32R_CURRENT_H - -#include <linux/thread_info.h> - -struct task_struct; - -static __inline__ struct task_struct *get_current(void) -{ - return current_thread_info()->task; -} - -#define current (get_current()) - -#endif /* _ASM_M32R_CURRENT_H */ _ Patches currently in -mm which might be from dave@xxxxxxxxxxxx are m32r-use-generic-currenth.patch kernel-exit-compute-current-directly.patch drivers-tty-compute-current-directly.patch kernel-locking-compute-current-directly.patch sched-remove-set_task_state.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