The patch titled Subject: arm64: fix missing include in asm/uaccess.h has been added to the -mm tree. Its filename is arm64-fix-missing-include-in-asm-uaccessh.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/arm64-fix-missing-include-in-asm-uaccessh.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/arm64-fix-missing-include-in-asm-uaccessh.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/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Ansuel Smith <ansuelsmth@xxxxxxxxx> Subject: arm64: fix missing include in asm/uaccess.h Fix a compilation error as PF_KTHREAD is defined in linux/sched.h and this is missing. [viro@xxxxxxxxxxxxxxxxxx: use linux/uaccess.h] Link: https://lkml.kernel.org/r/20201111005826.GY3576660@xxxxxxxxxxxxxxxxxx Link: https://lkml.kernel.org/r/20201111004440.8783-1-ansuelsmth@xxxxxxxxx Fixes: df325e05a682 ("arm64: Validate tagged addresses in access_ok() called from kernel threads") Signed-off-by: Ansuel Smith <ansuelsmth@xxxxxxxxx> Cc: Will Deacon <will@xxxxxxxxxx> Cc: Catalin Marinas <catalin.marinas@xxxxxxx> Cc: Mark Rutland <mark.rutland@xxxxxxx> Cc: Pavel Tatashin <pasha.tatashin@xxxxxxxxxx> Cc: <stable@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/arm64/include/asm/uaccess.h | 2 ++ 1 file changed, 2 insertions(+) --- a/arch/arm64/include/asm/uaccess.h~arm64-fix-missing-include-in-asm-uaccessh +++ a/arch/arm64/include/asm/uaccess.h @@ -7,6 +7,8 @@ #ifndef __ASM_UACCESS_H #define __ASM_UACCESS_H +#include <linux/uaccess.h> + #include <asm/alternative.h> #include <asm/kernel-pgtable.h> #include <asm/sysreg.h> _ Patches currently in -mm which might be from ansuelsmth@xxxxxxxxx are arm64-fix-missing-include-in-asm-uaccessh.patch