From: David Howells Date: Sat, 11 Jun 2011 11:29:58 +0000 (+0100) Subject: linux/seqlock.h should #include asm/processor.h for cpu_relax() X-Git-Tag: firefly_0821_release~7613^2~920 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=56a210526adb2854d5b7c398a40260720390ee05;p=firefly-linux-kernel-4.4.55.git linux/seqlock.h should #include asm/processor.h for cpu_relax() It uses cpu_relax(), and so needs Without this patch, I see: CC arch/mn10300/kernel/asm-offsets.s In file included from include/linux/time.h:8, from include/linux/timex.h:56, from include/linux/sched.h:57, from arch/mn10300/kernel/asm-offsets.c:7: include/linux/seqlock.h: In function 'read_seqbegin': include/linux/seqlock.h:91: error: implicit declaration of function 'cpu_relax' whilst building asb2364_defconfig on MN10300. Signed-off-by: David Howells Signed-off-by: Linus Torvalds --- diff --git a/include/linux/seqlock.h b/include/linux/seqlock.h index e9811892844f..c6db9fb33c44 100644 --- a/include/linux/seqlock.h +++ b/include/linux/seqlock.h @@ -28,6 +28,7 @@ #include #include +#include typedef struct { unsigned sequence;