Will Deacon d15155824c linux/compiler.h: Split into compiler.h and compiler_types.h
linux/compiler.h is included indirectly by linux/types.h via
uapi/linux/types.h -> uapi/linux/posix_types.h -> linux/stddef.h
-> uapi/linux/stddef.h and is needed to provide a proper definition of
offsetof.

Unfortunately, compiler.h requires a definition of
smp_read_barrier_depends() for defining lockless_dereference() and soon
for defining READ_ONCE(), which means that all
users of READ_ONCE() will need to include asm/barrier.h to avoid splats
such as:

   In file included from include/uapi/linux/stddef.h:1:0,
                    from include/linux/stddef.h:4,
                    from arch/h8300/kernel/asm-offsets.c:11:
   include/linux/list.h: In function 'list_empty':
>> include/linux/compiler.h:343:2: error: implicit declaration of function 'smp_read_barrier_depends' [-Werror=implicit-function-declaration]
     smp_read_barrier_depends(); /* Enforce dependency ordering from x */ \
     ^

A better alternative is to include asm/barrier.h in linux/compiler.h,
but this requires a type definition for "bool" on some architectures
(e.g. x86), which is defined later by linux/types.h. Type "bool" is also
used directly in linux/compiler.h, so the whole thing is pretty fragile.

This patch splits compiler.h in two: compiler_types.h contains type
annotations, definitions and the compiler-specific parts, whereas
compiler.h #includes compiler-types.h and additionally defines macros
such as {READ,WRITE.ACCESS}_ONCE().

uapi/linux/stddef.h and linux/linkage.h are then moved over to include
linux/compiler_types.h, which fixes the build for h8 and blackfin.

Signed-off-by: Will Deacon <will.deacon@arm.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/1508840570-22169-2-git-send-email-will.deacon@arm.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
2017-10-24 13:17:32 +02:00
..
2008-12-09 00:50:13 -08:00
2016-01-12 20:46:57 +02:00
2012-03-28 18:30:03 +01:00
2015-05-13 10:55:42 +02:00
2012-03-28 18:30:03 +01:00
2014-08-26 13:45:55 -04:00
2014-04-29 01:12:25 -04:00
2008-08-31 20:56:15 -07:00
2013-03-20 11:06:54 -07:00
2017-08-15 21:48:07 -07:00
2017-06-10 14:10:54 -07:00
2012-05-15 10:22:00 -07:00
2017-06-06 13:45:28 -07:00
2012-03-28 18:30:03 +01:00
2017-08-15 21:48:07 -07:00
2014-05-02 01:30:20 -04:00
2017-06-06 13:45:29 -07:00
2016-01-12 20:46:49 +02:00
2017-06-12 15:44:01 -07:00
2016-03-22 15:36:02 -07:00
2012-04-15 10:28:50 -07:00
2017-02-23 08:30:28 -08:00
2017-08-15 21:48:07 -07:00
2016-12-11 18:01:51 -08:00
2017-05-15 23:40:22 -04:00
2017-03-28 16:43:25 -04:00
2012-07-26 16:46:16 -07:00
2017-09-08 18:26:48 -07:00